/* ========================================
   Easy Digify - Professional Components
   ======================================== */

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-small);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Primary Button */
.btn-primary {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(0, 31, 92, 0.2);
}

.btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--color-navy-light) 0%, var(--color-navy) 100%);
    box-shadow: 0 6px 20px rgba(0, 31, 92, 0.3);
    transform: translateY(-2px);
}

.btn-primary:active:not(:disabled) {
    transform: translateY(0);
}

/* Secondary Button */
.btn-secondary {
    background: var(--color-white);
    color: var(--color-navy);
    border-color: var(--color-navy);
    border-width: 2px;
}

.btn-secondary:hover:not(:disabled) {
    background: var(--color-gray-light);
    border-color: var(--color-navy-light);
    transform: translateY(-2px);
}

/* Tertiary Button (Text only) */
.btn-tertiary {
    background: transparent;
    color: var(--color-navy);
    padding: var(--space-sm) var(--space-md);
}

.btn-tertiary:hover:not(:disabled) {
    color: var(--color-purple);
    background: rgba(91, 127, 236, 0.1);
}

/* Large Button */
.btn-lg {
    padding: var(--space-md) var(--space-2xl);
    font-size: var(--font-size-body);
}

/* Small Button */
.btn-sm {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--font-size-xs);
}

/* Success Button */
.btn-success {
    background: var(--color-success);
    color: var(--color-white);
}

.btn-success:hover:not(:disabled) {
    background: #00b383;
    transform: translateY(-2px);
}

/* Danger Button */
.btn-danger {
    background: var(--color-danger);
    color: var(--color-white);
}

.btn-danger:hover:not(:disabled) {
    background: #ff3a47;
    transform: translateY(-2px);
}

/* ========================================
   Cards
   ======================================== */

.card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-base);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.card-header {
    padding: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.card-body {
    padding: var(--space-lg);
}

.card-footer {
    padding: var(--space-lg);
    border-top: 1px solid var(--color-border);
    background: var(--color-gray-light);
}

/* Service Card */
.service-card {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
}

.service-card-icon {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
}

.service-card h3 {
    color: var(--color-navy);
    margin-bottom: var(--space-md);
}

.service-card p {
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
}

/* Blog Card */
.blog-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.blog-card:hover .blog-card-image {
    transform: scale(1.05);
}

.blog-card-content {
    padding: var(--space-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-purple) 100%);
    color: var(--color-white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-md);
    width: fit-content;
}

.blog-card-title {
    color: var(--color-navy);
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.blog-card-meta {
    color: var(--color-text-secondary);
    font-size: var(--font-size-small);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

/* Testimonial Card */
.testimonial-card {
    padding: var(--space-2xl) var(--space-lg);
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto var(--space-lg);
    object-fit: cover;
    border: 3px solid var(--color-purple);
}

.testimonial-text {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    line-height: var(--line-height-relaxed);
    font-style: italic;
}

.testimonial-quote-mark {
    font-size: 2rem;
    color: var(--color-purple);
    opacity: 0.3;
    margin-bottom: var(--space-md);
}

.testimonial-author {
    color: var(--color-navy);
    font-weight: var(--font-weight-semibold);
}

.testimonial-position {
    color: var(--color-text-secondary);
    font-size: var(--font-size-small);
}

/* ========================================
   Forms
   ======================================== */

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
}

.form-label .required {
    color: var(--color-danger);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-secondary);
    font-size: var(--font-size-body);
    transition: all var(--transition-base);
    background-color: var(--color-white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-navy);
    box-shadow: 0 0 0 3px rgba(0, 31, 92, 0.1);
}

.form-input:disabled,
.form-textarea:disabled,
.form-select:disabled {
    background-color: var(--color-gray-light);
    cursor: not-allowed;
    opacity: 0.6;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23001F5C' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-md) center;
    padding-right: var(--space-2xl);
}

.form-checkbox,
.form-radio {
    margin-right: var(--space-sm);
    cursor: pointer;
    accent-color: var(--color-navy);
}

.form-help-text {
    display: block;
    margin-top: var(--space-xs);
    font-size: var(--font-size-small);
    color: var(--color-text-secondary);
}

.form-error {
    color: var(--color-danger);
    font-size: var(--font-size-small);
}

.form-success {
    color: var(--color-success);
    font-size: var(--font-size-small);
}

.form-input.error,
.form-textarea.error {
    border-color: var(--color-danger);
    background-color: rgba(255, 71, 87, 0.05);
}

.form-input.success,
.form-textarea.success {
    border-color: var(--color-success);
    background-color: rgba(0, 200, 150, 0.05);
}

/* ========================================
   Badges
   ======================================== */

.badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
}

.badge-primary {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-purple) 100%);
    color: var(--color-white);
}

.badge-success {
    background: rgba(0, 200, 150, 0.1);
    color: var(--color-success);
}

.badge-danger {
    background: rgba(255, 71, 87, 0.1);
    color: var(--color-danger);
}

.badge-warning {
    background: rgba(255, 165, 2, 0.1);
    color: var(--color-warning);
}

/* ========================================
   Alerts
   ======================================== */

.alert {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid;
    margin-bottom: var(--space-lg);
}

.alert-success {
    background: rgba(0, 200, 150, 0.1);
    border-color: var(--color-success);
    color: var(--color-success);
}

.alert-danger {
    background: rgba(255, 71, 87, 0.1);
    border-color: var(--color-danger);
    color: var(--color-danger);
}

.alert-warning {
    background: rgba(255, 165, 2, 0.1);
    border-color: var(--color-warning);
    color: var(--color-warning);
}

.alert-info {
    background: rgba(0, 99, 204, 0.1);
    border-color: var(--color-navy);
    color: var(--color-navy);
}

.alert-close {
    float: right;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition-base);
}

.alert-close:hover {
    opacity: 1;
}

/* ========================================
   Pagination
   ======================================== */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin: var(--space-2xl) 0;
}

.pagination-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--color-text);
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition-base);
}

.pagination-item:hover {
    border-color: var(--color-navy);
    color: var(--color-navy);
}

.pagination-item.active {
    background: var(--color-navy);
    color: var(--color-white);
    border-color: var(--color-navy);
}

.pagination-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========================================
   Modal/Dialog
   ======================================== */

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal-backdrop);
}

.modal-backdrop.show {
    display: flex;
}

.modal {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: var(--z-modal);
}

.modal-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-secondary);
    transition: color var(--transition-base);
}

.modal-close:hover {
    color: var(--color-text);
}

/* ========================================
   Tags
   ======================================== */

.tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: var(--color-gray-light);
    border-radius: var(--radius-full);
    font-size: var(--font-size-small);
    color: var(--color-text-secondary);
    margin-right: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.tag-primary {
    background: linear-gradient(135deg, rgba(0, 31, 92, 0.1) 0%, rgba(91, 127, 236, 0.1) 100%);
    color: var(--color-navy);
}

/* ========================================
   Premium Hero Slider
   ======================================== */

.hero-pro {
    position: relative;
    overflow: hidden;
    background: linear-gradient(140deg, #001f5c 0%, #0036ad 48%, #1a58df 100%);
}

.hero-pro-track {
    display: flex;
    transition: transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-pro-slide {
    min-width: 100%;
    min-height: 76vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 72px 0;
}

.hero-pro-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.18) 0, rgba(255, 255, 255, 0) 34%),
        radial-gradient(circle at 10% 90%, rgba(91, 127, 236, 0.22) 0, rgba(91, 127, 236, 0) 36%);
    pointer-events: none;
}

.hero-pro-content {
    position: relative;
    z-index: 2;
}

.hero-pro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(24px, 4vw, 54px);
    align-items: center;
}

.hero-pro-kicker {
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    margin-bottom: 14px;
}

.hero-pro h1,
.hero-pro h2 {
    color: #fff;
    margin-bottom: 14px;
    font-size: clamp(2rem, 4.2vw, 3.6rem);
    line-height: 1.08;
}

.hero-pro p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 680px;
    margin-bottom: 20px;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero-pro-lead {
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    font-weight: 500;
}

.hero-pro-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-pro-outline-btn {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}

.hero-pro-outline-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.hero-pro-showcase {
    display: grid;
    gap: 14px;
}

.hero-pro-stat-card {
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 16px;
    padding: 18px 20px;
}

.hero-pro-stat-card strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.hero-pro-stat-card span {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.95rem;
}

.hero-pro-service-slide {
    text-align: center;
}

.hero-pro-service-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.hero-pro-service-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.hero-pro-actions-center {
    justify-content: center;
}

.hero-pro-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    z-index: 4;
    font-size: 20px;
    line-height: 1;
}

.hero-pro-arrow.prev { left: 18px; }
.hero-pro-arrow.next { right: 18px; }

.hero-pro-arrow:hover {
    background: rgba(255, 255, 255, 0.28);
}

.hero-pro-dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 8px;
}

.hero-pro-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.hero-pro-dot.active {
    width: 24px;
    background: #fff;
}

/* ========================================
   Home Section Backgrounds
   ======================================== */

.about-preview-section {
    position: relative;
    background:
        radial-gradient(circle at 12% 15%, rgba(91, 127, 236, 0.14) 0, rgba(91, 127, 236, 0) 30%),
        radial-gradient(circle at 92% 78%, rgba(0, 31, 92, 0.1) 0, rgba(0, 31, 92, 0) 34%),
        linear-gradient(180deg, #f8fbff 0%, #f2f6ff 100%);
}

.about-preview-card {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(0, 51, 160, 0.12);
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(20, 39, 94, 0.1);
    backdrop-filter: blur(5px);
    padding: clamp(24px, 3vw, 42px);
}

.services-overview-section {
    position: relative;
    background:
        linear-gradient(135deg, rgba(0, 31, 92, 0.98) 0%, rgba(0, 51, 160, 0.95) 56%, rgba(27, 84, 214, 0.95) 100%);
}

.services-overview-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.26;
    pointer-events: none;
}

.services-overview-section .container {
    position: relative;
    z-index: 2;
}

.services-overview-section h2,
.services-overview-section h3,
.services-overview-section p {
    color: #fff !important;
}

.services-overview-section .service-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: none;
}

.services-overview-section .service-card p {
    color: rgba(255, 255, 255, 0.86) !important;
}

.services-overview-section .service-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-6px);
}

.services-overview-section .btn-secondary {
    background: #fff;
    color: var(--color-navy);
    border-color: #fff;
}

.services-overview-section .service-know-more {
    display: inline-block;
    margin-top: var(--space-md);
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    transition: all var(--transition-base);
}

.services-overview-section .service-know-more:hover {
    background: rgba(255, 255, 255, 0.18);
}

/* ========================================
   Why Choose Spotlight
   ======================================== */

.why-choose-pro-section {
    background:
        radial-gradient(circle at 85% 12%, rgba(91, 127, 236, 0.15) 0, rgba(91, 127, 236, 0) 35%),
        linear-gradient(180deg, #f5f8ff 0%, #eef3ff 100%);
}

.reason-spotlight {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(0, 31, 92, 0.11);
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(12, 28, 74, 0.12);
    padding: clamp(22px, 3vw, 40px);
}

.reason-spotlight-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.reason-icon-badge {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    background: linear-gradient(135deg, #001f5c 0%, #245ed4 100%);
    box-shadow: 0 12px 24px rgba(0, 31, 92, 0.28);
}

.reason-caption {
    margin: 0 0 6px;
    color: var(--color-text-secondary);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: var(--font-weight-semibold);
}

.reason-title {
    margin: 0;
    color: var(--color-navy);
    min-height: 1.4em;
}

.reason-description {
    margin: 0;
    color: var(--color-text-secondary);
    font-size: var(--font-size-h6);
    line-height: 1.8;
    min-height: 60px;
}

.reason-writing {
    border-right: 2px solid rgba(0, 31, 92, 0.6);
    animation: reasonCursor 0.7s steps(1) infinite;
}

.reason-vanish {
    animation: reasonVanish 380ms ease forwards;
}

.reason-dots {
    margin-top: 18px;
    display: flex;
    gap: 9px;
    justify-content: center;
}

.reason-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: rgba(0, 31, 92, 0.25);
}

.reason-dot.active {
    width: 26px;
    background: linear-gradient(90deg, #001f5c 0%, #5b7fec 100%);
}

.reason-items {
    display: none;
}

.home-blog-card {
    height: 100%;
    border: 1px solid rgba(0, 31, 92, 0.08);
    box-shadow: 0 10px 26px rgba(15, 29, 78, 0.08);
}

.home-blog-read-more {
    display: inline-block;
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-semibold);
    color: var(--color-navy);
    text-decoration: none;
    border-bottom: 2px solid rgba(0, 31, 92, 0.2);
    padding-bottom: 2px;
    transition: all var(--transition-base);
}

.home-blog-read-more:hover {
    color: var(--color-purple-dark);
    border-bottom-color: var(--color-purple-dark);
}

/* ========================================
   Home CTA + Footer Premium
   ======================================== */

.home-cta-pro {
    padding: var(--space-4xl) var(--space-lg);
    background: linear-gradient(180deg, #f2f6ff 0%, #e9f0ff 100%);
}

.home-cta-pro-card {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(24px, 4vw, 48px);
    border-radius: 24px;
    background:
        radial-gradient(circle at 12% 10%, rgba(91, 127, 236, 0.22), transparent 32%),
        linear-gradient(135deg, #001f5c 0%, #003cb3 56%, #1f60de 100%);
    color: #fff;
    box-shadow: 0 24px 50px rgba(9, 28, 78, 0.3);
}

.home-cta-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    margin-bottom: 10px;
    opacity: 0.82;
}

.home-cta-pro-card h2 {
    color: #fff;
    margin-bottom: var(--space-md);
}

.home-cta-pro-card p {
    color: rgba(255, 255, 255, 0.92);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.home-cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-lg);
}

.home-cta-outline-btn {
    border: 2px solid rgba(255, 255, 255, 0.75);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.home-cta-outline-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.site-footer-pro {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #071a4f 0%, #041238 100%);
    color: #fff;
    padding: clamp(48px, 6vw, 78px) var(--space-lg) 20px;
}

.site-footer-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91, 127, 236, 0.25) 0%, rgba(91, 127, 236, 0) 70%);
    top: -220px;
    right: -120px;
    pointer-events: none;
}

.site-footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-bottom: 34px;
}

.site-footer-brand-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.site-footer-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.site-footer-brand-row h3 {
    color: #fff;
    margin: 0;
    font-size: 1.2rem;
}

.site-footer-brand-row p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
}

.site-footer-about {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.site-footer-socials {
    display: flex;
    gap: 10px;
}

.site-footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.site-footer-socials a:hover {
    background: rgba(255, 255, 255, 0.24);
}

.site-footer-pro h4 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 1rem;
}

.site-footer-links,
.site-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer-links li,
.site-footer-contact li {
    margin-bottom: 10px;
}

.site-footer-links a,
.site-footer-contact a {
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
}

.site-footer-links a:hover,
.site-footer-contact a:hover {
    color: #fff;
}

.site-footer-contact span {
    display: block;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
    margin-bottom: 2px;
}

.site-footer-contact p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.6;
}

.site-footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.site-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.86rem;
}

.site-footer-bottom div {
    display: flex;
    gap: 14px;
}

.site-footer-bottom a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.86rem;
    text-decoration: none;
}

.site-footer-bottom a:hover {
    color: #fff;
}

/* ========================================
   Services Page Premium
   ======================================== */

.services-hero-pro {
    padding: clamp(68px, 9vw, 112px) 0;
    text-align: center;
    color: #fff;
    background:
        radial-gradient(circle at 85% 15%, rgba(91, 127, 236, 0.24), transparent 34%),
        linear-gradient(135deg, #001f5c 0%, #0038aa 58%, #1e5bd6 100%);
}

.services-hero-pro h1 {
    color: #fff;
    margin-bottom: 10px;
    font-size: clamp(2rem, 5vw, 3.4rem);
}

.services-hero-pro p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 760px;
    margin: 0 auto;
}

.services-hero-chip-row {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.services-hero-chip-row span {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.95);
    font-size: 12px;
    font-weight: var(--font-weight-medium);
}

.services-catalog-pro {
    padding: var(--space-4xl) var(--space-lg);
    background:
        linear-gradient(180deg, #f8fbff 0%, #f1f6ff 100%);
}

.services-card-grid {
    gap: var(--space-xl);
}

.service-card-pro {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0, 31, 92, 0.1);
    box-shadow: 0 14px 30px rgba(13, 34, 86, 0.1);
}

.service-card-pro:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 36px rgba(13, 34, 86, 0.15);
    transition: all var(--transition-base);
}

.service-card-pro-media {
    min-height: 190px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 14px;
}

.service-card-pro-pill {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--color-navy);
    font-size: 11px;
    font-weight: var(--font-weight-semibold);
}

.service-card-pro-body {
    padding: 18px 18px 20px;
}

.service-card-pro-body h3 {
    color: var(--color-navy);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.service-card-pro-body p {
    color: var(--color-text-secondary);
    margin-bottom: 12px;
    line-height: 1.7;
}

.service-card-pro-body ul {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
}

.service-card-pro-body li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--color-text-secondary);
    font-size: 0.92rem;
}

.service-card-pro-body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00aa66 0%, #25d366 100%);
}

.service-card-pro-link {
    display: inline-block;
    padding: 9px 14px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #001f5c 0%, #245ed4 100%);
    font-size: 0.85rem;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
}

.service-card-pro-link:hover {
    filter: brightness(1.07);
}

.services-cta-pro {
    padding: var(--space-4xl) var(--space-lg);
    background: linear-gradient(135deg, #071a4f 0%, #0c2f86 60%, #245ed4 100%);
}

.services-cta-card {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    padding: clamp(24px, 4vw, 42px);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.services-cta-card h2 {
    color: #fff;
    margin-bottom: 8px;
}

.services-cta-card p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 760px;
    margin: 0 auto 18px;
}

.services-cta-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ========================================
   Contact Page Premium
   ======================================== */

.contact-hero-pro {
    padding: clamp(68px, 9vw, 112px) 0;
    text-align: center;
    color: #fff;
    background:
        radial-gradient(circle at 84% 16%, rgba(91, 127, 236, 0.24), transparent 32%),
        linear-gradient(135deg, #001f5c 0%, #003cb3 58%, #1f60de 100%);
}

.contact-hero-pro h1 {
    color: #fff;
    margin-bottom: 10px;
    font-size: clamp(2rem, 5vw, 3.4rem);
}

.contact-hero-pro p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 760px;
    margin: 0 auto;
}

.contact-main-pro {
    padding: var(--space-4xl) var(--space-lg);
    background: linear-gradient(180deg, #f7faff 0%, #eef4ff 100%);
}

.contact-main-grid {
    gap: var(--space-2xl);
}

.contact-form-card,
.contact-info-card,
.contact-map-card {
    background: #fff;
    border: 1px solid rgba(0, 31, 92, 0.1);
    border-radius: 20px;
    box-shadow: 0 14px 30px rgba(12, 33, 87, 0.1);
}

.contact-form-card {
    padding: clamp(22px, 3.5vw, 36px);
}

.contact-form-card h2,
.contact-info-card h2 {
    color: var(--color-navy);
    margin-bottom: 6px;
}

.contact-card-subtitle {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

.contact-submit-btn {
    width: 100%;
}

.contact-info-column {
    display: grid;
    gap: var(--space-lg);
}

.contact-info-card {
    padding: clamp(22px, 3vw, 30px);
}

.contact-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-info-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 31, 92, 0.08);
}

.contact-info-list li:last-child {
    border-bottom: none;
}

.contact-info-list span {
    display: block;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(0, 31, 92, 0.62);
    margin-bottom: 4px;
}

.contact-info-list p,
.contact-info-list a {
    margin: 0;
    color: var(--color-text-secondary);
    text-decoration: none;
    line-height: 1.6;
}

.contact-info-list a:hover {
    color: var(--color-navy);
}

.contact-map-card {
    overflow: hidden;
}

.contact-map-card h3 {
    color: var(--color-navy);
    padding: 18px 20px 0;
    margin-bottom: 12px;
}

.contact-map-card iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}

.contact-faq-pro {
    padding: var(--space-4xl) var(--space-lg);
    background: #fff;
}

.contact-faq-wrap {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item-pro {
    border: 1px solid rgba(0, 31, 92, 0.12);
    border-radius: 14px;
    background: linear-gradient(135deg, #f9fbff 0%, #f2f7ff 100%);
    padding: 0 16px;
}

.faq-item-pro summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 24px 14px 0;
    color: var(--color-navy);
    font-weight: var(--font-weight-semibold);
    position: relative;
}

.faq-item-pro summary::-webkit-details-marker {
    display: none;
}

.faq-item-pro summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 12px;
    font-size: 20px;
    color: var(--color-navy);
}

.faq-item-pro[open] summary::after {
    content: '-';
}

.faq-item-pro p {
    color: var(--color-text-secondary);
    margin: 0 0 16px;
    line-height: 1.75;
}

/* ========================================
   About Page Premium
   ======================================== */

.about-hero-pro {
    padding: clamp(64px, 10vw, 120px) 0;
    text-align: center;
    color: #fff;
    background:
        radial-gradient(circle at 18% 18%, rgba(91, 127, 236, 0.24), transparent 34%),
        linear-gradient(135deg, #001f5c 0%, #003cb3 60%, #1f60de 100%);
}

.about-hero-pro h1 {
    color: #fff;
    margin-bottom: 12px;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.about-hero-pro p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 760px;
    margin: 0 auto;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.about-hero-inner {
    position: relative;
    z-index: 2;
}

.about-hero-chips {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.about-hero-chips span {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.95);
    font-size: 12px;
    font-weight: var(--font-weight-medium);
}

.about-story-pro {
    padding: var(--space-4xl) var(--space-lg);
    background: linear-gradient(180deg, #f8fbff 0%, #f3f7ff 100%);
}

.about-story-card {
    max-width: 980px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 31, 92, 0.1);
    border-radius: 22px;
    box-shadow: 0 16px 36px rgba(14, 33, 86, 0.1);
    padding: clamp(24px, 4vw, 44px);
}

.about-story-card:hover,
.about-mv-card:hover,
.about-value-card:hover,
.about-service-item:hover {
    transform: translateY(-4px);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.about-story-card h2 {
    color: var(--color-navy);
    margin-bottom: var(--space-md);
}

.about-story-card p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.85;
}

.about-story-card p:last-child {
    margin-bottom: 0;
}

.about-mission-vision-pro {
    position: relative;
    padding: var(--space-3xl) var(--space-lg);
    background:
        radial-gradient(circle at 88% 14%, rgba(91, 127, 236, 0.2) 0, rgba(91, 127, 236, 0) 35%),
        linear-gradient(180deg, #eef4ff 0%, #f7faff 100%);
}

.about-mission-vision-pro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 38px;
    background: linear-gradient(90deg, rgba(0, 31, 92, 0.08) 0%, rgba(91, 127, 236, 0.08) 100%);
    mask-image: repeating-linear-gradient(135deg, #000 0 16px, transparent 16px 32px);
    opacity: 0.55;
    pointer-events: none;
}

.about-mission-grid {
    gap: var(--space-xl);
}

.about-mv-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 31, 92, 0.1);
    border-radius: 20px;
    padding: clamp(20px, 2.8vw, 34px);
    box-shadow: 0 14px 30px rgba(17, 36, 91, 0.09);
}

.about-mv-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, #001f5c 0%, #2f69df 100%);
    box-shadow: 0 12px 24px rgba(6, 28, 84, 0.24);
}

.about-mv-card h3 {
    color: var(--color-navy);
    margin-bottom: var(--space-sm);
}

.about-mv-card p {
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.8;
}

.about-core-values-pro {
    position: relative;
    padding: var(--space-4xl) var(--space-lg);
    background:
        linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}

.about-core-values-pro::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 31, 92, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 31, 92, 0.035) 1px, transparent 1px);
    background-size: 38px 38px;
    pointer-events: none;
}

.about-core-values-pro .container {
    position: relative;
    z-index: 2;
}

.about-values-grid {
    gap: var(--space-lg);
}

.about-value-card {
    background: linear-gradient(135deg, #f8fbff 0%, #eff5ff 100%);
    border: 1px solid rgba(0, 31, 92, 0.1);
    border-radius: 18px;
    padding: 20px 20px 18px;
    box-shadow: 0 10px 24px rgba(18, 34, 84, 0.07);
}

.about-value-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-bottom: var(--space-sm);
    background: linear-gradient(135deg, #0f8a3f 0%, #18b45a 100%);
    color: #fff;
    font-weight: var(--font-weight-bold);
}

.about-value-card h3 {
    color: var(--color-navy);
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.about-value-card p {
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.75;
}

.about-services-pro {
    position: relative;
    padding: var(--space-4xl) var(--space-lg);
    background:
        radial-gradient(circle at 10% 14%, rgba(0, 31, 92, 0.09) 0, rgba(0, 31, 92, 0) 30%),
        linear-gradient(135deg, #f2f6ff 0%, #ecf2ff 100%);
}

.about-services-pro::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 28px;
    background: linear-gradient(90deg, rgba(91, 127, 236, 0.18), rgba(0, 31, 92, 0.08));
    clip-path: polygon(0 0, 100% 0, 100% 42%, 0 100%);
    opacity: 0.8;
    pointer-events: none;
}

.about-services-pro .container {
    position: relative;
    z-index: 2;
}

.about-service-grid {
    gap: var(--space-lg);
}

.about-service-item {
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(0, 31, 92, 0.1);
    background: linear-gradient(135deg, #f7faff 0%, #eef4ff 100%);
    color: var(--color-navy);
    font-weight: var(--font-weight-semibold);
    text-align: center;
}

.about-service-item:hover {
    box-shadow: 0 14px 28px rgba(18, 40, 98, 0.1);
}

.about-cta-pro {
    padding: var(--space-4xl) var(--space-lg);
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, #071a4f 0%, #0c2f86 60%, #245ed4 100%);
}

.about-cta-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 24px;
    padding: clamp(24px, 3.5vw, 44px);
    backdrop-filter: blur(4px);
}

.about-cta-pro h2 {
    color: #fff;
    margin-bottom: 10px;
}

.about-cta-pro p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto var(--space-xl);
}

.about-cta-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.about-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 650ms ease, transform 650ms ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.about-reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 650ms ease, transform 650ms ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.scroll-reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .about-reveal,
    .scroll-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@keyframes reasonCursor {
    0%, 49% { border-right-color: rgba(0, 31, 92, 0.6); }
    50%, 100% { border-right-color: transparent; }
}

@keyframes reasonVanish {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-6px); }
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 768px) {
    .btn {
        padding: var(--space-sm) var(--space-md);
        font-size: var(--font-size-xs);
    }

    .btn-lg {
        padding: var(--space-md) var(--space-lg);
    }

    .card {
        border-radius: var(--radius-md);
    }

    .service-card {
        padding: var(--space-lg);
    }

    .blog-card-image {
        height: 150px;
    }

    .testimonial-card {
        padding: var(--space-lg);
    }

    .hero-pro-slide {
        min-height: 72vh;
        padding: 64px 0 84px;
    }

    .hero-pro-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-pro p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-pro-actions {
        justify-content: center;
    }

    .hero-pro-showcase {
        grid-template-columns: 1fr;
        max-width: 540px;
        margin: 0 auto;
    }

    .hero-pro-arrow {
        display: none;
    }

    .reason-spotlight-head {
        align-items: flex-start;
    }

    .reason-icon-badge {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
}
