:root {
    --gc-navy: #0c1e3d;
    --gc-navy-mid: #152a52;
    --gc-primary: #1e4fd9;
    --gc-primary-light: #3b6ef0;
    --gc-primary-soft: #e8efff;
    --gc-accent: #0ea5e9;
    --gc-dark: #0f172a;
    --gc-text: #1e293b;
    --gc-muted: #64748b;
    --gc-light: #eef3f9;
    --gc-surface: #ffffff;
    --gc-header-bg: #f7f9fc;
    --gc-border: #dde5f0;
    --gc-radius: 16px;
    --gc-radius-sm: 10px;
    --gc-shadow-sm: 0 1px 3px rgba(12, 30, 61, 0.04);
    --gc-shadow: 0 8px 32px rgba(12, 30, 61, 0.07);
    --gc-shadow-lg: 0 20px 48px rgba(12, 30, 61, 0.1);
    --gc-font: 'Plus Jakarta Sans', system-ui, sans-serif;
    --gc-transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    --gc-header-height: 68px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: var(--gc-font);
    color: var(--gc-text);
    background: var(--gc-light);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

/* ── Header (full navy bar — logo blends naturally) ── */
.site-header {
    background: linear-gradient(135deg, var(--gc-navy) 0%, #132d5c 55%, var(--gc-navy-mid) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 4px 20px rgba(12, 30, 61, 0.18);
}

.navbar { padding: 0.75rem 0; }

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0;
}

.brand-logo {
    height: 50px;
    width: auto;
    min-width: 175px;
    max-width: 280px;
    object-fit: contain;
    display: block;
}

.footer-logo {
    height: 46px;
    width: auto;
    min-width: 160px;
    max-width: none;
    margin-left: -17px;
    object-fit: contain;
    display: block;
    margin-bottom: 0.85rem;
}

@media (max-width: 991px) {
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
    }

    body {
        padding-top: var(--gc-header-height);
    }

    body.mobile-nav-open {
        overflow: hidden;
    }

    .site-header .navbar {
        position: relative;
    }

    .site-header .container {
        position: static;
    }

    .brand-logo {
        height: 42px;
        min-width: 0;
        max-width: 210px;
    }

    .site-header .navbar-toggler {
        width: 44px;
        height: 44px;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        border: 1.5px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.08);
        transition: background var(--gc-transition), border-color var(--gc-transition), transform var(--gc-transition);
    }

    .site-header .navbar-toggler:active {
        transform: scale(0.96);
    }

    .site-header .navbar-toggler.is-open {
        background: rgba(255, 255, 255, 0.14);
        border-color: rgba(255, 255, 255, 0.45);
    }

    .mobile-nav-backdrop {
        position: fixed;
        top: var(--gc-header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(8, 18, 38, 0.55);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.24s ease, visibility 0.24s ease;
        z-index: 1025;
    }

    body.mobile-nav-open .mobile-nav-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .site-header .navbar-collapse {
        position: fixed;
        top: var(--gc-header-height);
        left: 0;
        right: 0;
        width: 100%;
        margin: 0;
        background: linear-gradient(180deg, #132d5c 0%, var(--gc-navy) 100%);
        border-radius: 0;
        padding: 0.85rem 1rem 1.25rem;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 16px 40px rgba(8, 18, 38, 0.35);
        z-index: 1040;
        max-height: calc(100dvh - var(--gc-header-height));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        display: block !important;
        height: auto !important;
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.26s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.24s ease, visibility 0.24s ease;
    }

    .site-header .navbar-collapse.show,
    .site-header .navbar-collapse.collapsing {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .site-header .navbar-collapse.collapsing {
        transition: transform 0.26s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.24s ease, visibility 0.24s ease;
    }

    .site-header .navbar-nav {
        width: 100%;
        gap: 0.2rem;
        padding-top: 0.15rem;
    }

    .site-header .navbar-nav > .nav-item {
        width: 100%;
        margin: 0 !important;
    }

    .site-header .nav-link {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 0.9rem 1rem !important;
        border-radius: 12px;
        font-size: 0.95rem;
        letter-spacing: 0.02em;
        border: 1px solid transparent;
    }

    .site-header .nav-link:hover {
        background: rgba(255, 255, 255, 0.08) !important;
    }

    .site-header .nav-link.active {
        background: rgba(255, 255, 255, 0.12) !important;
        border-color: rgba(255, 255, 255, 0.14);
        color: #fff !important;
        font-weight: 700;
    }

    .nav-actions-wrap {
        margin-top: 0.65rem !important;
        padding-top: 0.85rem;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .header-nav-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
        width: 100%;
    }

    .header-nav-actions .btn {
        width: 100%;
        margin: 0 !important;
        padding: 0.72rem 0.85rem !important;
        font-size: 0.86rem !important;
        border-radius: 12px !important;
        justify-content: center;
    }

    .site-header .nav-link .mobile-nav-icon {
        display: inline-flex;
        width: 1.35rem;
        margin-right: 0.55rem;
        opacity: 0.72;
        font-size: 1rem;
    }

    .site-header .nav-link.active .mobile-nav-icon {
        opacity: 1;
    }

    .site-header .dropdown-menu-nav {
        position: static !important;
        float: none;
        width: 100%;
        margin: 0.15rem 0 0.35rem;
        padding: 0.35rem;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        box-shadow: none;
    }

    .site-header .dropdown-menu-nav .dropdown-item {
        color: rgba(255, 255, 255, 0.92);
        border-radius: 8px;
        padding: 0.65rem 0.85rem;
        font-size: 0.88rem;
        white-space: normal;
    }

    .site-header .dropdown-menu-nav .dropdown-item:hover,
    .site-header .dropdown-menu-nav .dropdown-item:focus {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

    .site-header .dropdown-menu-nav .dropdown-divider {
        border-color: rgba(255, 255, 255, 0.12);
        margin: 0.35rem 0;
    }

    .site-header .dropdown-menu-nav .dropdown-item-all {
        font-weight: 700;
        color: #fff;
    }

    .site-header .dropdown-toggle::after {
        margin-left: auto;
    }

    .services-nav-section {
        top: var(--gc-header-height);
    }
}

@media (min-width: 992px) {
    .mobile-nav-backdrop { display: none !important; }

    .site-header .nav-link .mobile-nav-icon {
        display: none;
    }

    .dropdown-menu-nav {
        border: 1px solid var(--gc-border);
        border-radius: 12px;
        padding: 0.45rem;
        margin-top: 0.5rem !important;
        box-shadow: var(--gc-shadow);
        min-width: 240px;
    }

    .dropdown-menu-nav .dropdown-item {
        border-radius: 8px;
        font-size: 0.88rem;
        padding: 0.55rem 0.85rem;
        font-weight: 500;
    }

    .dropdown-menu-nav .dropdown-item-all {
        font-weight: 700;
        color: var(--gc-primary);
    }

    .dropdown-menu-nav .dropdown-item-all i {
        font-size: 0.75rem;
        margin-left: 0.25rem;
    }

    .header-nav-actions {
        display: flex;
        align-items: center;
        gap: 0.55rem;
    }

    .nav-actions-wrap {
        margin-left: 0.65rem !important;
    }
}

.brand-icon {
    width: 38px;
    height: 38px;
    background: var(--gc-navy);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-text strong {
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--gc-navy);
}

.brand-text small {
    font-size: 0.6rem;
    color: var(--gc-muted);
    letter-spacing: 0.1em;
    font-weight: 500;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--gc-text) !important;
    padding: 0.45rem 0.9rem !important;
    border-radius: 8px;
    transition: color var(--gc-transition), background var(--gc-transition);
}

.nav-link:hover { color: var(--gc-primary) !important; background: var(--gc-primary-soft); }
.nav-link.active { color: var(--gc-primary) !important; }

/* Dark header overrides */
.site-header .nav-link {
    color: rgba(255, 255, 255, 0.82) !important;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1);
}

.site-header .btn-outline-primary {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    background: transparent;
}

.site-header .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.7) !important;
    color: #fff !important;
}

.site-header .btn-primary {
    background: #fff;
    color: var(--gc-navy);
    font-weight: 700;
}

.site-header .btn-primary:hover {
    background: var(--gc-primary-soft);
    color: var(--gc-navy);
    transform: translateY(-1px);
}

.navbar-toggler {
    border: 1px solid var(--gc-border);
    padding: 0.4rem 0.55rem;
}

.site-header .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.35);
}

.site-header .navbar-toggler i {
    display: inline-block;
    color: #fff;
    font-size: 1.45rem;
    line-height: 1;
    vertical-align: middle;
}

.site-header .navbar-toggler .mobile-nav-icon-close {
    display: none;
}

.site-header .navbar-toggler.is-open .mobile-nav-icon-open {
    display: none;
}

.site-header .navbar-toggler.is-open .mobile-nav-icon-close {
    display: inline-block;
}

.navbar-toggler:focus { box-shadow: 0 0 0 3px var(--gc-primary-soft); }

/* Buttons */
.btn {
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all var(--gc-transition);
}

.btn-primary {
    background: var(--gc-navy);
    border: none;
    border-radius: 50px;
    padding: 0.55rem 1.4rem;
}

.btn-primary:hover {
    background: var(--gc-primary);
    transform: translateY(-2px);
    box-shadow: var(--gc-shadow);
}

.btn-outline-primary {
    border-radius: 50px;
    border-color: var(--gc-border);
    color: var(--gc-navy);
    background: var(--gc-surface);
}

.btn-outline-primary:hover {
    background: var(--gc-primary-soft);
    border-color: var(--gc-primary);
    color: var(--gc-primary);
}

.btn-sm { padding: 0.4rem 1rem; font-size: 0.82rem; }

/* ── Hero ── */
.hero-section {
    position: relative;
    padding: 3.25rem 0 3.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 55%, #ffffff 100%);
    border-bottom: 1px solid var(--gc-border);
    overflow: hidden;
}

/* .hero-bg-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    color: rgba(30, 79, 217, 0.12);
} */

.hero-wave {
    position: absolute;
    width: 220px;
    height: 220px;
}

.hero-wave--tl {
    top: 8%;
    left: 2%;
    transform: rotate(-8deg);
}

.hero-wave--br {
    bottom: 6%;
    right: 3%;
    transform: rotate(165deg);
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.hero-content {
    max-width: 640px;
}

@media (min-width: 992px) {
    .hero-content {
        max-width: 100%;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--gc-primary-soft);
    color: var(--gc-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(30, 79, 217, 0.15);
}

.hero-badge i { font-size: 0.85rem; }

.hero-section h1 {
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--gc-navy);
    max-width: 100%;
}

.hero-section h1 .highlight {
    color: var(--gc-primary);
}

.hero-subtitle {
    color: var(--gc-muted);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 1rem 0 0;
    line-height: 1.7;
}

.hero-grid--v1 {
    gap: 2rem;
}

@media (min-width: 992px) {
    .hero-grid--v1 {
        grid-template-columns: 1.5fr 0.92fr;
        gap: 1.5rem 2.5rem;
        align-items: center;
    }

    .hero-stats-card--v1 {
        grid-column: 1 / -1;
    }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #fff;
    color: var(--gc-navy);
    border: 1.5px solid var(--gc-border);
    border-radius: 50px;
    padding: 0.82rem 1.35rem;
    font-size: 0.9rem;
    font-weight: 600;
    transition: border-color var(--gc-transition), background var(--gc-transition);
}

.btn-hero-outline:hover,
.btn-hero-outline:focus {
    color: var(--gc-navy);
    border-color: #b8c9e0;
    background: #f8fafc;
}

/* Hero stats — v1 card layout */
.hero-stats-card--v1 {
    margin-top: 0;
    background: var(--gc-surface);
    border: 1px solid var(--gc-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(12, 30, 61, 0.07);
    overflow: hidden;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-stat-cell {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.85rem;
    padding: 1.25rem 1.5rem;
    min-width: 0;
    position: relative;
}

.hero-stat-cell:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 18%;
    height: 64%;
    width: 1px;
    background: var(--gc-border);
}

.hero-stat-icon--v1 {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--gc-primary-soft);
    color: var(--gc-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.hero-stat-icon--v1 i,
.hero-checklist .check i,
.btn-hero-icon i,
.hero-badge i,
.hero-shield-float i,
.hero-approved-badge i {
    display: inline-block;
    line-height: 1;
    font-style: normal;
}

.hero-stat-copy {
    min-width: 0;
}

.hero-stat-copy strong {
    display: block;
    font-size: 1.28rem;
    font-weight: 800;
    color: var(--gc-navy);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.hero-stat-copy span {
    display: block;
    font-size: 0.74rem;
    color: var(--gc-muted);
    font-weight: 500;
    margin-top: 0.22rem;
    line-height: 1.35;
}

@media (min-width: 992px) {
    .hero-stats-card--v1 {
        margin-top: 0.5rem;
    }

    .hero-stat-cell {
        padding: 1.35rem 1.65rem;
        gap: 0.9rem;
    }

    .hero-stat-copy strong {
        font-size: 1.35rem;
    }
}

/* Hero visual — dotted map + FSSAI approval card */
.hero-visual--approval {
    position: relative;
    width: 100%;
    min-height: auto;
    display: block;
}

.hero-visual-stage {
    position: relative;
    min-height: 465px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0 1rem;
}

.hero-map {
    position: absolute;
    inset: -8% 8% 0 -30%;
    z-index: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-map-svg {
    width: 100%;
    height: 100%;
    max-width: 500px;
    max-height: 100%;
    object-fit: contain;
}

.hero-visual-pedestal {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: min(72%, 300px);
    height: 56px;
    background: radial-gradient(ellipse at center, rgba(30, 79, 217, 0.14) 0%, rgba(30, 79, 217, 0.04) 55%, transparent 72%);
    border-radius: 50%;
    z-index: 1;
}

.hero-visual-pedestal::before {
    content: '';
    position: absolute;
    inset: 18% 8% auto;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(30, 79, 217, 0.15), transparent);
    border-radius: 50%;
}

.hero-approval-card {
    background: var(--gc-surface);
    border-radius: 18px;
    box-shadow: 0 16px 48px rgba(12, 30, 61, 0.12), 0 4px 12px rgba(12, 30, 61, 0.06);
    border: 1px solid rgba(221, 229, 240, 0.9);
    width: 100%;
    max-width: 250px;
    overflow: visible;
    position: relative;
    z-index: 2;
    transform: translateY(25px);
    display: flex;
    flex-direction: column;
}

.hero-approval-top {
    background: linear-gradient(180deg, #fafbfd 0%, #f3f6fb 100%);
    padding: 1.35rem 1.25rem 1.1rem;
    text-align: center;
    border-bottom: 1px solid var(--gc-border);
    border-radius: 18px 18px 0 0;
}

.hero-fssai-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-fssai-logo {
    width: auto;
    height: 42px;
    max-width: 140px;
    object-fit: contain;
    display: block;
}

.hero-approval-govt {
    font-size: 0.62rem;
    color: var(--gc-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 600;
}

.hero-approval-top h3 {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gc-navy);
    margin: 0;
    line-height: 1.45;
}

.hero-approval-body {
    padding: 1.15rem 1.25rem 0.85rem;
    text-align: left;
}

.hero-approval-footer {
    padding: 0 1.25rem 1.25rem;
    margin-top: auto;
}

.hero-approved-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 100%;
    background: #dcfce7;
    color: #16a34a;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0.55rem 1rem;
    border-radius: 50px;
    border: 1px solid #bbf7d0;
}

.hero-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-checklist li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: var(--gc-text);
    padding: 0.42rem 0;
}

.hero-checklist .check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.hero-shield-float {
    position: absolute;
    right: -18px;
    top: 42%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(145deg, #2563eb, #1e4fd9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    box-shadow: 0 10px 24px rgba(30, 79, 217, 0.38);
    z-index: 3;
}

.hero-stats-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 1.75rem;
    padding: 1.15rem 0.5rem;
    background: var(--gc-surface);
    border: 1px solid var(--gc-border);
    border-radius: var(--gc-radius);
    box-shadow: var(--gc-shadow);
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.35rem 1rem;
    position: relative;
    min-width: 0;
}

.hero-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 12%;
    height: 76%;
    width: 1px;
    background: var(--gc-border);
}

.hero-stat-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.hero-stat-body {
    min-width: 0;
}

.hero-stat-body strong {
    display: block;
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    font-variant-numeric: tabular-nums;
}

.hero-stat-body span {
    display: block;
    font-size: 0.72rem;
    color: var(--gc-muted);
    font-weight: 500;
    margin-top: 0.2rem;
    line-height: 1.35;
}

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

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    background: var(--gc-navy);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.9rem 1.6rem 0.9rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(12, 30, 61, 0.22);
    transition: transform var(--gc-transition), box-shadow var(--gc-transition), background var(--gc-transition);
}

.btn-hero-cta:hover,
.btn-hero-cta:focus {
    background: var(--gc-navy-mid);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(12, 30, 61, 0.28);
}

.btn-hero-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

/* Legacy hero visual (unused on homepage) */
.hero-visual {
    position: relative;
    min-height: 340px;
    display: none;
}

@media (min-width: 992px) {
    .hero-visual:not(.hero-visual--approval) {
        display: block;
        min-height: 400px;
    }
}

.hero-visual-bg {
    position: absolute;
    inset: 10% 5% 10% 15%;
    background: var(--gc-primary-soft);
    border-radius: 24px;
    border: 1px solid rgba(30, 79, 217, 0.1);
}

.hero-license-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    background: #fff;
    border: 1px solid var(--gc-border);
    border-radius: 16px;
    box-shadow: var(--gc-shadow-lg);
    overflow: hidden;
    z-index: 2;
}

.hero-license-header {
    background: var(--gc-navy);
    color: #fff;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 0.95rem;
}

.hero-license-header i {
    font-size: 1.35rem;
    color: #93c5fd;
}

.hero-license-body {
    padding: 1.25rem;
}

.hero-license-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--gc-border);
}

.hero-license-row span {
    color: var(--gc-muted);
}

.hero-license-row strong {
    color: var(--gc-navy);
    font-size: 0.82rem;
}

.hero-license-id {
    margin-top: 1rem;
    padding: 0.65rem;
    background: var(--gc-light);
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gc-muted);
    text-align: center;
    letter-spacing: 0.05em;
}

.hero-license-stamp {
    position: absolute;
    bottom: 1.25rem;
    right: -0.5rem;
    background: #dcfce7;
    color: #15803d;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.35rem 0.65rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    border: 1px solid #bbf7d0;
    box-shadow: var(--gc-shadow-sm);
}

.hero-float {
    position: absolute;
    background: #fff;
    border: 1px solid var(--gc-border);
    border-radius: 12px;
    padding: 0.55rem 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gc-navy);
    box-shadow: var(--gc-shadow);
    z-index: 3;
    white-space: nowrap;
}

.hero-float i {
    font-size: 1rem;
    color: var(--gc-primary);
}

.hero-float-1 { top: 8%; left: 0; }
.hero-float-2 { top: 18%; right: -2%; }
.hero-float-3 { bottom: 22%; left: -4%; }
.hero-float-4 { bottom: 10%; right: 2%; }

/* Mobile icon strip */
.hero-icons-mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.75rem;
}

.hero-icon-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--gc-light);
    border: 1px solid var(--gc-border);
    border-radius: 50px;
    padding: 0.4rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gc-navy);
}

.hero-icon-pill i {
    color: var(--gc-primary);
    font-size: 0.9rem;
}

@media (prefers-reduced-motion: no-preference) {
    .hero-float {
        animation: heroFloat 5s ease-in-out infinite;
    }
    .hero-float-1 { animation-delay: 0s; }
    .hero-float-2 { animation-delay: 1.2s; }
    .hero-float-3 { animation-delay: 2.4s; }
    .hero-float-4 { animation-delay: 0.8s; }
    .hero-license-card {
        animation: heroCardIn 0.8s ease-out both;
    }
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes heroCardIn {
    from { opacity: 0; transform: translate(-50%, -46%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

.hero-stats {
    display: none;
}

/* ── Sections ── */
.section { padding: 5rem 0; }
.section-alt { background: var(--gc-surface); }
.section-muted { background: var(--gc-light); }

.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gc-primary);
    margin-bottom: 0.6rem;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--gc-navy);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--gc-muted);
    font-size: 1.02rem;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-view-all-desktop {
    white-space: nowrap;
}

.gc-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gc-primary);
    text-decoration: none;
    transition: gap 0.2s ease, color var(--gc-transition);
}

.gc-text-link:hover {
    color: var(--gc-navy);
    gap: 0.55rem;
}

.gc-text-link i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.gc-text-link:hover i {
    transform: translateX(3px);
}

.btn-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: fit-content;
    margin: 1.5rem auto 0;
    padding: 0.72rem 1.35rem;
    border-radius: 50px;
    border: 1.5px solid var(--gc-border);
    background: var(--gc-surface);
    color: var(--gc-navy);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: border-color var(--gc-transition), box-shadow var(--gc-transition), color var(--gc-transition);
}

.btn-view-all:hover {
    color: var(--gc-primary);
    border-color: #b8c9e0;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.section-center { text-align: center; }
.section-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── Service cards ── */
.service-card {
    background: var(--gc-surface);
    border: 1px solid var(--gc-border);
    border-radius: var(--gc-radius);
    padding: 1.75rem;
    height: 100%;
    transition: box-shadow var(--gc-transition), transform var(--gc-transition), border-color var(--gc-transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gc-primary);
    opacity: 0;
    transition: opacity var(--gc-transition);
}

.service-card:hover {
    box-shadow: var(--gc-shadow);
    transform: translateY(-4px);
    border-color: transparent;
}

.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 1.15rem;
    background: var(--gc-light);
    transition: transform var(--gc-transition);
}

.service-card:hover .service-icon { transform: scale(1.05); }

.service-card a,
.service-card-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gc-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.25s ease, color var(--gc-transition);
}

.service-card a:hover,
.service-card-link:hover {
    gap: 0.6rem;
    color: var(--gc-navy);
}

.service-card-link i,
.service-card a i {
    transition: transform 0.25s ease;
}

.service-card-link:hover i,
.service-card a:hover i {
    transform: translateX(4px);
}

.service-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0;
}

.service-card-top .service-icon {
    margin-bottom: 0;
    flex-shrink: 0;
    background: var(--gc-primary-soft);
    border: 1px solid rgba(30, 79, 217, 0.08);
}

.service-price-badge {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gc-navy);
    background: #fff;
    border: 1px solid var(--gc-border);
    padding: 0.35rem 0.7rem;
    border-radius: 8px;
    box-shadow: var(--gc-shadow-sm);
    white-space: nowrap;
    line-height: 1.3;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gc-navy);
    margin-bottom: 0.35rem;
    margin-top: 1rem;
    line-height: 1.35;
}

/* Clean typographic pricing — no loud pills */
.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.45rem;
    margin-bottom: 0.65rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--gc-border);
}

.service-price-label {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--gc-muted);
}

.service-price-value {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--gc-navy);
    letter-spacing: -0.02em;
    line-height: 1;
}

.service-price-value.is-request {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--gc-muted);
    letter-spacing: 0;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gc-muted);
    margin-bottom: 1.25rem;
    line-height: 1.6;
    margin-top: 0;
}

.service-card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gc-border);
    gap: 0.5rem;
}

.service-meta {
    font-size: 0.8rem;
    color: var(--gc-muted);
    margin-bottom: 0.5rem;
}

.service-meta i { margin-right: 0.25rem; }

/* Category-wise services page */
.services-nav-section {
    position: sticky;
    top: 72px;
    z-index: 50;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--gc-border);
    padding: 0.75rem 0;
}

.services-category-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: thin;
}

.services-category-nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--gc-border);
    background: var(--gc-surface);
    color: var(--gc-text);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.services-category-nav a:hover,
.services-category-nav a.active {
    background: var(--gc-primary);
    border-color: var(--gc-primary);
    color: #fff;
}

.services-category-nav .cat-count {
    font-size: 0.68rem;
    opacity: 0.85;
    background: rgba(255,255,255,0.2);
    padding: 0.1rem 0.4rem;
    border-radius: 999px;
}

.service-category-block {
    margin-bottom: 3.5rem;
    scroll-margin-top: 140px;
}

.service-category-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gc-border);
}

.service-category-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--gc-primary-light, #eff6ff);
    color: var(--gc-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.service-category-head h2 {
    font-size: 1.35rem;
    margin: 0 0 0.15rem;
}

.service-category-head p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--gc-muted);
}

.services-cta {
    text-align: center;
    padding: 2.5rem 0 1rem;
    border-top: 1px solid var(--gc-border);
}

.home-category-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.home-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    border: 1px solid var(--gc-border);
    background: var(--gc-surface);
    color: var(--gc-text);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: var(--gc-shadow-sm);
}

.home-cat-pill:hover {
    border-color: var(--gc-primary);
    color: var(--gc-primary);
    background: #fff;
}

.home-cat-pill-all {
    background: var(--gc-navy);
    border-color: var(--gc-navy);
    color: #fff;
}

.home-cat-pill-all:hover {
    color: #fff;
    background: var(--gc-primary);
    border-color: var(--gc-primary);
}

.service-item.is-hidden { display: none !important; }
.service-category-block.is-hidden { display: none !important; }

/* ── Partners ── */
.partners-section {
    background: var(--gc-surface);
    border-top: 1px solid var(--gc-border);
    border-bottom: 1px solid var(--gc-border);
    padding: 3.5rem 0;
}

.partners-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gc-light);
    border: 1px solid var(--gc-border);
    border-radius: var(--gc-radius-sm);
    padding: 0.85rem 1.35rem;
    min-height: 56px;
    transition: border-color var(--gc-transition), box-shadow var(--gc-transition), transform var(--gc-transition);
}

.partner-logo:hover {
    border-color: #cbd5e1;
    box-shadow: var(--gc-shadow-sm);
}

.partner-logo-img {
    width: auto;
    height: 28px;
    max-width: 120px;
    object-fit: contain;
    display: block;
}

.partner-logo-img--wide {
    height: 34px;
    max-width: 140px;
}

/* ── Article cards ── */
.article-card {
    border: 1px solid var(--gc-border);
    border-radius: var(--gc-radius);
    overflow: hidden;
    height: 100%;
    background: var(--gc-surface);
    transition: box-shadow var(--gc-transition);
}

.article-card:hover {
    box-shadow: var(--gc-shadow);
}

.article-thumb {
    height: 140px;
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 50%, #ede9fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gc-primary);
    font-size: 2.5rem;
    opacity: 0.7;
}

.article-body { padding: 1.15rem; }

.article-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gc-primary);
    background: var(--gc-primary-soft);
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.article-card h3 {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--gc-navy);
    margin: 0 0 0.4rem;
}

.article-meta {
    font-size: 0.75rem;
    color: var(--gc-muted);
    margin: 0 0 0.75rem;
}

/* ── Testimonials ── */
.testimonial-card {
    border: 1px solid var(--gc-border);
    border-radius: var(--gc-radius);
    padding: 1.25rem;
    height: 100%;
    background: var(--gc-surface);
    transition: box-shadow var(--gc-transition);
}

.testimonial-card:hover { box-shadow: var(--gc-shadow-sm); }

.testimonial-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gc-primary-soft);
    color: var(--gc-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.testimonial-head strong {
    display: block;
    font-size: 0.88rem;
    color: var(--gc-navy);
}

.testimonial-head small {
    font-size: 0.75rem;
    color: var(--gc-muted);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 0.75rem;
    margin-bottom: 0.65rem;
}

.testimonial-quote {
    font-size: 0.85rem;
    color: var(--gc-muted);
    margin: 0;
    line-height: 1.55;
    font-style: italic;
}

/* ── Mobile card carousel (articles + testimonials) ── */
.gc-card-carousel {
    position: relative;
}

.gc-card-carousel__track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    padding: 0.25rem 0 0.5rem;
    margin: 0 -0.25rem;
    scrollbar-width: none;
}

.gc-card-carousel__track::-webkit-scrollbar {
    display: none;
}

.gc-card-carousel__slide {
    flex: 0 0 86%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    min-width: 0;
}

.gc-card-carousel__slide .article-card,
.gc-card-carousel__slide .testimonial-card {
    height: 100%;
}

.gc-card-carousel__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.1rem;
}

.gc-card-carousel__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: transform var(--gc-transition), background var(--gc-transition), width var(--gc-transition);
}

.gc-card-carousel__dot.is-active {
    width: 22px;
    border-radius: 999px;
    background: var(--gc-primary);
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .gc-card-carousel__slide {
        flex-basis: 58%;
    }
}

@media (min-width: 992px) {
    .gc-card-carousel__track {
        display: grid;
        gap: 1.5rem;
        overflow: visible;
        margin: 0;
        padding: 0;
        scroll-snap-type: none;
    }

    .gc-card-carousel--articles .gc-card-carousel__track {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .gc-card-carousel--testimonials .gc-card-carousel__track {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .gc-card-carousel--cols-4 .gc-card-carousel__track {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .gc-card-carousel--cols-5 .gc-card-carousel__track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gc-card-carousel--cols-3 .gc-card-carousel__track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gc-card-carousel__slide {
        flex: none;
        scroll-snap-align: none;
    }

    .gc-card-carousel__dots {
        display: none;
    }

    .btn-view-all {
        display: none;
    }

    .section-view-all-desktop {
        display: inline-flex;
    }
}

@media (max-width: 991.98px) {
    .section-view-all-desktop {
        display: none;
    }

    .section-learning .section-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 1.5rem;
    }

    .section-testimonials .section-subtitle {
        margin-bottom: 1.75rem;
    }
}

@media (min-width: 1200px) {
    .gc-card-carousel--cols-5 .gc-card-carousel__track {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

/* ── FAQ ── */
.faq-section { background: var(--gc-surface); }

.faq-section .accordion-item {
    border: 1px solid var(--gc-border);
    border-radius: var(--gc-radius-sm) !important;
    margin-bottom: 0.65rem;
    overflow: hidden;
    background: var(--gc-light);
}

.faq-section .accordion-button {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gc-navy);
    background: transparent;
    box-shadow: none;
    padding: 1.1rem 1.25rem;
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--gc-primary-soft);
    color: var(--gc-primary);
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-section .accordion-body {
    padding: 0 1.25rem 1.1rem;
    color: var(--gc-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ── CTA ── */
.cta-box {
    background: var(--gc-navy);
    border-radius: var(--gc-radius);
    padding: 3.5rem 2rem;
    text-align: center;
    position: relative;
}

.cta-box > * { position: relative; z-index: 1; }

.cta-box h2 {
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.72);
    max-width: 520px;
    margin: 0.85rem auto 1.75rem;
    font-size: 1rem;
}

.btn-dark-rounded,
.cta-box .btn-dark-rounded {
    background: #fff;
    color: var(--gc-navy);
    border: none;
    border-radius: 50px;
    padding: 0.7rem 1.75rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-dark-rounded:hover {
    background: var(--gc-primary-soft);
    color: var(--gc-navy);
    transform: translateY(-1px);
}

.cta-section {
    padding-top: 2.5rem;
    padding-bottom: 2.25rem;
}

/* ── Footer ── */
.site-footer {
    background: var(--gc-navy);
    color: rgba(255, 255, 255, 0.6);
    padding: 4rem 0 1.75rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: #fff;
    margin-bottom: 0.85rem;
}

.footer-brand .brand-icon { box-shadow: none; }

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    text-decoration: none;
    transition: background var(--gc-transition), color var(--gc-transition), border-color var(--gc-transition), transform var(--gc-transition);
}

.footer-social a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.footer-desc {
    font-size: 0.88rem;
    max-width: 280px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
}

.site-footer h6 {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.45rem; }
.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.86rem;
    transition: color var(--gc-transition);
}
.footer-links a:hover { color: #fff; }

.footer-disclaimer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.78rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.42);
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom p {
    margin: 0;
}

/* ── Floating widgets ── */
.gc-float-widgets {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1020;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    pointer-events: none;
    max-width: calc(100vw - 32px);
}

.gc-float-widgets > * {
    pointer-events: auto;
    flex-shrink: 0;
}

.float-whatsapp,
.float-callback {
    position: static;
    width: auto;
    max-width: 100%;
    margin: 0;
    border: none;
    white-space: nowrap;
    line-height: 1.2;
}

.float-whatsapp {
    background: #25d366;
    color: #fff;
    padding: 0.65rem 1.15rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform var(--gc-transition), box-shadow var(--gc-transition), background var(--gc-transition);
}

.float-whatsapp:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.float-callback {
    background: var(--gc-surface);
    color: var(--gc-navy);
    border: 1.5px solid var(--gc-border) !important;
    padding: 0.55rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.78rem;
    box-shadow: var(--gc-shadow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    cursor: pointer;
    transition: border-color var(--gc-transition), box-shadow var(--gc-transition), transform var(--gc-transition);
}

.float-callback:hover {
    border-color: var(--gc-primary) !important;
    box-shadow: var(--gc-shadow-lg);
}

.float-whatsapp i,
.float-callback i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    line-height: 1;
    flex-shrink: 0;
    width: 1.1rem;
    height: 1.1rem;
}

.float-label {
    display: inline-block;
    line-height: 1.2;
}

/* ── Modals ── */
.modal-content {
    border: none;
    border-radius: var(--gc-radius);
    box-shadow: var(--gc-shadow-lg);
}

.modal-header { padding: 1.5rem 1.5rem 0; }
.modal-body { padding: 1.25rem 1.5rem; }
.modal-footer { padding: 0 1.5rem 1.5rem; }

.modal-title { font-weight: 800; color: var(--gc-navy); }

.form-control, .form-select {
    border-color: var(--gc-border);
    border-radius: var(--gc-radius-sm);
    padding: 0.6rem 0.85rem;
    font-size: 0.92rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--gc-primary);
    box-shadow: 0 0 0 3px var(--gc-primary-soft);
}

.apply-steps { display: flex; gap: 0.5rem; }

.apply-step {
    flex: 1;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gc-muted);
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--gc-border);
}

.apply-step span {
    display: inline-flex;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gc-border);
    color: var(--gc-muted);
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    margin-right: 0.2rem;
}

.apply-step.active { color: var(--gc-primary); border-color: var(--gc-primary); }
.apply-step.active span { background: var(--gc-primary); color: #fff; }
.apply-step.done { color: #16a34a; border-color: #16a34a; }
.apply-step.done span { background: #16a34a; color: #fff; }

.apply-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.65rem;
}

.apply-modal-footer #applyNext {
    min-width: 8.5rem;
}

.service-select-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 0.65rem;
}

.service-select-wrap {
    max-height: 340px;
    overflow-y: auto;
    padding-right: 0.25rem;
}

.service-select-cat {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--gc-muted);
    margin: 0.85rem 0 0.4rem;
}

.service-select-group:first-child .service-select-cat { margin-top: 0; }

.service-select-card {
    border: 1.5px solid var(--gc-border);
    border-radius: var(--gc-radius-sm);
    padding: 0.9rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    transition: border-color var(--gc-transition), background var(--gc-transition);
}

.service-select-card input { display: none; }
.service-select-card:has(input:checked) {
    border-color: var(--gc-primary);
    background: var(--gc-primary-soft);
}
.service-select-card .ssc-title { font-weight: 700; font-size: 0.82rem; color: var(--gc-navy); }
.service-select-card .ssc-price { font-size: 0.73rem; color: var(--gc-muted); }
.service-select-card .ssc-icon { font-size: 1.2rem; }

/* ── Inner pages ── */
.page-hero {
    background: linear-gradient(180deg, #ffffff 0%, var(--gc-light) 100%);
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--gc-border);
}

.page-hero .container { position: relative; }

.page-hero h1 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--gc-navy);
    letter-spacing: -0.02em;
}

.breadcrumb-nav { font-size: 0.82rem; color: var(--gc-muted); font-weight: 500; }
.breadcrumb-nav a { color: var(--gc-primary); text-decoration: none; font-weight: 600; }

.about-mission {
    background: var(--gc-light);
    width: 100%;
    max-width: none;
    padding-left: clamp(1.25rem, 5vw, 5rem);
    padding-right: clamp(1.25rem, 5vw, 5rem);
}
.about-mission-inner {
    width: 100%;
    max-width: none;
    margin: 0;
}
.about-mission .section-title { margin-bottom: 1.75rem; }
.about-mission-body {
    width: 100%;
    max-width: none;
    color: var(--gc-muted);
    font-size: clamp(1rem, 1.15vw, 1.12rem);
    line-height: 1.8;
}
.about-mission-body p + p { margin-top: 1.35rem; }

.service-detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 2rem; align-items: start; }
@media (max-width: 991px) { .service-detail-grid { grid-template-columns: 1fr; } }

/* Service detail — mockup-style layout */
.service-masthead {
    position: relative;
    padding: 1.75rem 0 3rem;
    background: var(--gc-light);
    border-bottom: 1px solid var(--gc-border);
}

.service-masthead .container { position: relative; z-index: 1; }

.service-masthead .breadcrumb-nav {
    margin-bottom: 1.25rem;
}

.detail-hero-card {
    background: var(--gc-surface);
    border: 1px solid var(--gc-border);
    border-radius: var(--gc-radius);
    padding: 1.5rem 1.75rem;
    box-shadow: var(--gc-shadow-sm);
}

.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 1.35rem;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-detail-header-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: var(--gc-primary-soft);
    border: 1px solid rgba(30, 79, 217, 0.12);
    box-shadow: 0 4px 16px rgba(12, 30, 61, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.service-detail-header-body { min-width: 0; }

.service-detail-header h1 {
    font-size: clamp(1.55rem, 2.8vw, 2.05rem);
    font-weight: 800;
    color: var(--gc-navy);
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin: 0 0 0.5rem;
}

.service-detail-lead {
    font-size: 1rem;
    color: var(--gc-muted);
    line-height: 1.6;
    margin: 0;
    max-width: 56ch;
}

.detail-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.detail-feature-card {
    background: var(--gc-surface);
    border: 1px solid var(--gc-border);
    border-radius: var(--gc-radius);
    padding: 1.15rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    box-shadow: var(--gc-shadow-sm);
}

.detail-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gc-primary-soft);
    color: var(--gc-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.detail-feature-card strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gc-navy);
    margin-bottom: 0.2rem;
}

.detail-feature-card span {
    font-size: 0.8rem;
    color: var(--gc-muted);
    line-height: 1.45;
}

.detail-intro-text {
    color: var(--gc-muted);
    line-height: 1.75;
    font-size: 0.95rem;
}

.detail-intro-text p:last-child { margin-bottom: 0; }

.detail-duo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.detail-block-full { margin-bottom: 0; }

.service-sidebar-col {
    position: sticky;
    top: 84px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-self: start;
}

.service-sidebar-card {
    background: var(--gc-surface);
    border: 1px solid var(--gc-border);
    border-radius: var(--gc-radius);
    padding: 1.75rem;
    box-shadow: var(--gc-shadow-sm);
}

.sidebar-related-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gc-muted);
    margin: 0 0 1rem;
}

.sidebar-related-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.sidebar-related-list a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0.65rem;
    border-radius: var(--gc-radius-sm);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--gc-navy);
    transition: background var(--gc-transition);
}

.sidebar-related-list a:hover { background: var(--gc-light); }

.sidebar-related-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--gc-primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.service-related-section {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
}

@media (max-width: 991px) {
    .service-sidebar-col { position: static; }
    .detail-feature-grid { grid-template-columns: 1fr; }
    .detail-duo-grid { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
    .service-detail-header { flex-direction: column; gap: 1rem; }
    .service-masthead { padding-top: 1.25rem; }
}

.service-detail-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-detail-cat {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gc-primary);
    background: var(--gc-primary-soft);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.65rem;
}

.detail-intro-card {
    background: var(--gc-surface);
    border: 1px solid var(--gc-border);
    border-radius: var(--gc-radius);
    padding: 1.5rem 1.75rem;
    box-shadow: var(--gc-shadow-sm);
    color: var(--gc-muted);
    line-height: 1.75;
}

.detail-intro-card p:last-child { margin-bottom: 0; }

.detail-block {
    background: var(--gc-surface);
    border: 1px solid var(--gc-border);
    border-radius: var(--gc-radius);
    padding: 1.5rem 1.75rem;
    box-shadow: var(--gc-shadow-sm);
}

.detail-block-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.detail-block-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--gc-primary-soft);
    color: var(--gc-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.detail-block h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gc-navy);
    margin: 0;
}

.service-faq-block .detail-block-head {
    align-items: flex-start;
}

.service-faq-sub {
    margin: 0.25rem 0 0;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gc-muted);
}

.service-faq-accordion {
    margin-top: 1rem;
}

.service-faq-accordion .accordion-item {
    border: 1px solid var(--gc-border);
    border-radius: var(--gc-radius-sm);
    margin-bottom: 0.65rem;
    overflow: hidden;
    background: #fff;
}

.service-faq-accordion .accordion-button {
    font-size: 0.95rem;
    font-weight: 600;
    padding: 1rem 1.15rem;
    background: #fff;
    color: var(--gc-navy);
}

.service-faq-accordion .accordion-button:not(.collapsed) {
    background: var(--gc-primary-soft);
    color: var(--gc-primary);
    box-shadow: none;
}

.service-faq-accordion .accordion-body {
    padding: 0 1.15rem 1rem;
    color: var(--gc-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.detail-icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.detail-icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: var(--gc-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.detail-icon-list li i {
    color: var(--gc-primary);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.detail-process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.detail-process-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    color: var(--gc-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.detail-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gc-primary);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sidebar-price-card {
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--gc-border);
}

.sidebar-price-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--gc-muted);
    margin-bottom: 0.35rem;
}

.related-services-panel {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gc-border);
}

.related-services-panel h4 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gc-muted);
    margin-bottom: 0.85rem;
}

.related-services-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.related-services-panel a {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 0.65rem;
    border-radius: var(--gc-radius-sm);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--gc-navy);
    transition: background var(--gc-transition);
}

.related-services-panel a:hover {
    background: var(--gc-light);
}

.related-services-panel a i {
    font-size: 1rem;
    flex-shrink: 0;
}

.related-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.85rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gc-primary);
    text-decoration: none;
    transition: gap 0.25s ease;
}

.related-view-all:hover { gap: 0.55rem; }

.service-related-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Legacy alias — keep for any other pages */
.service-sidebar {
    background: var(--gc-surface);
    border: 1px solid var(--gc-border);
    border-radius: var(--gc-radius);
    padding: 1.75rem;
    box-shadow: var(--gc-shadow-sm);
}

.price-tag {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gc-navy);
    letter-spacing: -0.02em;
}
.price-tag small { font-size: 0.85rem; color: var(--gc-muted); font-weight: 500; }

.info-list { list-style: none; padding: 0; margin: 1rem 0; }
.info-list li {
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--gc-border);
    font-size: 0.88rem;
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    color: var(--gc-muted);
}
.info-list li i { color: var(--gc-primary); margin-top: 2px; }

/* ── Contact page ── */
.contact-hero {
    position: relative;
    padding: 3.5rem 0 4rem;
    background:
        radial-gradient(ellipse 80% 60% at 90% 10%, rgba(30, 79, 217, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 5% 90%, rgba(14, 165, 233, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, var(--gc-light) 100%);
    border-bottom: 1px solid var(--gc-border);
    overflow: hidden;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 992px) {
    .contact-hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 3rem;
        align-items: center;
    }
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--gc-primary-soft);
    color: var(--gc-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.1rem;
    border: 1px solid rgba(30, 79, 217, 0.14);
}

.contact-hero-copy h1 {
    font-size: clamp(2rem, 4vw, 2.85rem);
    font-weight: 800;
    color: var(--gc-navy);
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 1rem;
}

.contact-hero-copy p {
    color: var(--gc-muted);
    font-size: 1.05rem;
    max-width: 520px;
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.contact-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.contact-stat {
    background: var(--gc-surface);
    border: 1px solid var(--gc-border);
    border-radius: 14px;
    padding: 0.85rem 1.1rem;
    min-width: 120px;
    box-shadow: var(--gc-shadow-sm);
}

.contact-stat strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--gc-navy);
    line-height: 1.2;
}

.contact-stat span {
    font-size: 0.78rem;
    color: var(--gc-muted);
    font-weight: 500;
}

.contact-channel-stack {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.contact-channel-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--gc-surface);
    border: 1px solid var(--gc-border);
    border-radius: var(--gc-radius);
    padding: 1.1rem 1.25rem;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--gc-shadow-sm);
    transition: transform var(--gc-transition), box-shadow var(--gc-transition), border-color var(--gc-transition);
}

a.contact-channel-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--gc-shadow);
    border-color: rgba(30, 79, 217, 0.2);
}

.contact-channel-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-channel-icon--mail { background: #e8efff; color: var(--gc-primary); }
.contact-channel-icon--phone { background: #ecfdf5; color: #059669; }
.contact-channel-icon--whatsapp { background: #dcfce7; color: #16a34a; }

.contact-channel-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.contact-channel-body small {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gc-muted);
}

.contact-channel-body strong,
.contact-phone-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gc-navy);
    line-height: 1.35;
}

.contact-phone-link {
    text-decoration: none;
    display: block;
    transition: color var(--gc-transition);
}

.contact-phone-link:hover { color: var(--gc-primary); }

.contact-channel-card--phones { cursor: default; }
.contact-channel-card--phones .contact-phone-link + .contact-phone-link { margin-top: 0.1rem; }

.contact-channel-arrow {
    color: var(--gc-muted);
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform var(--gc-transition), color var(--gc-transition);
}

a.contact-channel-card:hover .contact-channel-arrow {
    transform: translate(2px, -2px);
    color: var(--gc-primary);
}

.contact-main-section { padding-top: 3.5rem; padding-bottom: 2rem; }

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 992px) {
    .contact-main-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
        gap: 2.5rem;
    }
}

.contact-form-card {
    background: var(--gc-surface);
    border: 1px solid var(--gc-border);
    border-radius: calc(var(--gc-radius) + 4px);
    padding: 2rem;
    box-shadow: var(--gc-shadow);
}

.contact-form-head h2,
.contact-offices-head h2 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--gc-navy);
    letter-spacing: -0.02em;
    margin-bottom: 0.45rem;
}

.contact-form-head p,
.contact-offices-head p {
    color: var(--gc-muted);
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gc-navy);
    margin-bottom: 0.35rem;
}

.contact-form .form-control {
    border-radius: 12px;
    border-color: var(--gc-border);
    padding: 0.7rem 0.95rem;
    font-size: 0.92rem;
    transition: border-color var(--gc-transition), box-shadow var(--gc-transition);
}

.contact-form .form-control:focus {
    border-color: var(--gc-primary);
    box-shadow: 0 0 0 3px rgba(30, 79, 217, 0.12);
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
}

.contact-offices-head { margin-bottom: 1rem; }

.contact-offices-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-office-card {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    text-align: left;
    background: var(--gc-surface);
    border: 1px solid var(--gc-border);
    border-radius: var(--gc-radius);
    padding: 1rem 1.1rem;
    cursor: pointer;
    transition: border-color var(--gc-transition), box-shadow var(--gc-transition), background var(--gc-transition);
}

.contact-office-card:hover {
    border-color: rgba(30, 79, 217, 0.25);
    box-shadow: var(--gc-shadow-sm);
}

.contact-office-card.is-active {
    border-color: var(--gc-primary);
    background: linear-gradient(135deg, #ffffff 0%, var(--gc-primary-soft) 100%);
    box-shadow: 0 8px 24px rgba(30, 79, 217, 0.12);
}

.contact-office-marker {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--gc-primary-soft);
    color: var(--gc-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.05rem;
}

.contact-office-card.is-active .contact-office-marker {
    background: var(--gc-primary);
    color: #fff;
}

.contact-office-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-office-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.contact-office-top strong {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--gc-navy);
}

.contact-office-badge {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    background: #f1f5f9;
    color: var(--gc-muted);
}

.contact-office-badge--hq {
    background: var(--gc-navy);
    color: #fff;
}

.contact-office-city {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gc-primary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-office-address {
    font-size: 0.84rem;
    color: var(--gc-muted);
    line-height: 1.55;
}

.contact-office-chevron {
    color: var(--gc-muted);
    margin-top: 0.35rem;
    flex-shrink: 0;
    transition: transform var(--gc-transition), color var(--gc-transition);
}

.contact-office-card.is-active .contact-office-chevron,
.contact-office-card:hover .contact-office-chevron {
    color: var(--gc-primary);
    transform: translateX(2px);
}

.contact-map-section {
    padding: 0 0 4.5rem;
}

.contact-map-card {
    background: var(--gc-surface);
    border: 1px solid var(--gc-border);
    border-radius: calc(var(--gc-radius) + 4px);
    overflow: hidden;
    box-shadow: var(--gc-shadow-lg);
}

.contact-map-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 1.5rem;
    border-bottom: 1px solid var(--gc-border);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.contact-map-eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gc-primary);
    margin-bottom: 0.35rem;
}

.contact-map-head h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--gc-navy);
    margin-bottom: 0.35rem;
}

.contact-map-head p {
    font-size: 0.88rem;
    color: var(--gc-muted);
    max-width: 640px;
}

.contact-map-frame {
    position: relative;
    width: 100%;
    height: 420px;
    background: var(--gc-light);
}

.contact-map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 767px) {
    .contact-hero { padding: 2.75rem 0 3rem; }
    .contact-form-card { padding: 1.35rem; }
    .contact-map-frame { height: 300px; }
    .contact-map-head { padding: 1.1rem 1.15rem; }
    .contact-hero-copy h1 { font-size: 1.85rem; }
    .contact-hero-copy p { font-size: 0.95rem; margin-bottom: 1.25rem; }
    .contact-hero-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
    }
    .contact-stat {
        min-width: 0;
        padding: 0.75rem 0.8rem;
    }
    .contact-stat:last-child { grid-column: 1 / -1; }
    .contact-stat strong { font-size: 0.92rem; }
    .contact-channel-card { padding: 0.95rem 1rem; gap: 0.85rem; }
    .contact-channel-icon { width: 42px; height: 42px; font-size: 1.05rem; }
    .contact-channel-body strong,
    .contact-phone-link { font-size: 0.88rem; word-break: break-word; overflow-wrap: anywhere; }
    .contact-map-head .btn { width: 100%; justify-content: center; }
    .contact-submit-btn { width: 100%; justify-content: center; }
}

.content-block h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gc-navy);
    margin: 1.75rem 0 0.75rem;
}
.content-block ul, .content-block p { color: var(--gc-muted); line-height: 1.7; }

/* Dashboard / Admin */
.dash-sidebar {
    background: var(--gc-navy);
    min-height: 100vh;
    padding: 1.5rem;
    color: rgba(255, 255, 255, 0.55);
}

.dash-sidebar a {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    padding: 0.6rem 0.85rem;
    border-radius: var(--gc-radius-sm);
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
    transition: background var(--gc-transition), color var(--gc-transition);
}

.dash-sidebar a:hover, .dash-sidebar a.active {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    font-size: 0.73rem;
    font-weight: 700;
}

.status-submitted { background: #dbeafe; color: #1d4ed8; }
.status-documents_pending { background: #fef3c7; color: #b45309; }
.status-under_review { background: #e0e7ff; color: #4338ca; }
.status-submitted_to_fssai { background: #cffafe; color: #0e7490; }
.status-approved, .status-completed { background: #dcfce7; color: #15803d; }
.status-rejected { background: #fee2e2; color: #b91c1c; }

.admin-table { font-size: 0.88rem; }
.admin-table th { font-weight: 700; background: var(--gc-light); color: var(--gc-navy); }

.legal-content { max-width: 720px; margin: 0 auto; }
.legal-content h1 { font-weight: 800; color: var(--gc-navy); }
.legal-content h2 { font-size: 1.2rem; font-weight: 700; color: var(--gc-navy); margin-top: 2rem; }
.legal-content ul { padding-left: 1.25rem; margin: 0.75rem 0 1rem; }
.legal-content li { margin-bottom: 0.45rem; color: var(--gc-text); }
.legal-content p { margin-bottom: 1rem; }

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .hero-grid--v1 {
        gap: 1.25rem;
    }

    .hero-content {
        order: 1;
    }

    .hero-stats-card--v1 {
        order: 2;
    }

    .hero-visual--approval {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .hero-section { padding: 1.75rem 0 2rem; }
    .hero-subtitle { font-size: 0.92rem; margin-top: 0.75rem; }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin-top: 1.25rem;
    }
    .hero-actions .btn-hero-cta,
    .hero-actions .btn-hero-outline {
        width: 100%;
        justify-content: center;
    }
    .hero-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .hero-stat-cell {
        padding: 1rem 1.1rem;
        gap: 0.65rem;
    }
    .hero-stat-cell:nth-child(odd)::after {
        display: block;
    }
    .hero-stat-cell:nth-child(even)::after,
    .hero-stat-cell:last-child::after {
        display: none;
    }
    .hero-stat-cell:nth-child(1),
    .hero-stat-cell:nth-child(2) {
        border-bottom: 1px solid var(--gc-border);
    }
    .hero-stat-icon--v1 {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    .hero-stat-copy strong {
        font-size: 1.08rem;
    }
    .hero-stat-copy span {
        font-size: 0.68rem;
        margin-top: 0.15rem;
    }
    .hero-stats-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem 0.5rem;
        padding: 1rem 0.75rem;
    }
    .hero-stat-item {
        padding: 0.25rem 0.5rem;
    }
    .hero-stat-item::after {
        display: none;
    }
    .hero-stat-item:nth-child(odd) {
        border-right: 1px solid var(--gc-border);
        padding-right: 0.85rem;
    }
    .hero-stat-item:nth-child(1),
    .hero-stat-item:nth-child(2) {
        border-bottom: 1px solid var(--gc-border);
        padding-bottom: 0.85rem;
    }
    .hero-stat-body strong { font-size: 1.25rem; }
    .hero-wave { width: 140px; height: 140px; opacity: 0.7; }
    .section { padding: 3rem 0; }
    .section-title { font-size: 1.55rem; }
    .section-subtitle { font-size: 0.92rem; margin-bottom: 1.75rem; }
    .section-header {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .section-header .btn { align-self: center; }
    .home-category-pills {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-left: -0.25rem;
        margin-right: -0.25rem;
        padding: 0 0.25rem 0.5rem;
        margin-bottom: 1.5rem;
    }
    .home-category-pills::-webkit-scrollbar { display: none; }
    .home-cat-pill { flex-shrink: 0; font-size: 0.74rem; padding: 0.4rem 0.8rem; }
    .service-card { padding: 1.25rem; }
    .service-card-top { margin-bottom: 0.25rem; }
    .service-icon { width: 46px; height: 46px; font-size: 1.25rem; margin-bottom: 0.85rem; }
    .partners-row { gap: 0.65rem; }
    .partner-logo { padding: 0.65rem 1rem; min-height: 48px; }
    .partner-logo-img { height: 24px; max-width: 100px; }
    .partner-logo-img--wide { height: 28px; max-width: 110px; }
    main { padding-bottom: 0; }
    .cta-section { padding-top: 2rem; padding-bottom: 2rem; }
    .gc-float-widgets {
        right: 1.25rem;
        left: auto;
        bottom: max(1.25rem, env(safe-area-inset-bottom));
        transform: none;
        flex-direction: column;
        align-items: flex-end;
        gap: 0;
        max-width: none;
    }
    .float-whatsapp {
        width: auto;
        height: auto;
        padding: 0.65rem 1.15rem;
        border-radius: 50px;
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }
    .float-label {
        display: inline;
    }
    .float-whatsapp i {
        font-size: 1.05rem;
        width: auto;
        height: auto;
    }
    .cta-box { padding: 2rem 1.25rem; }
    .container { padding-left: 1rem; padding-right: 1rem; }
    .gc-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (min-width: 768px) {
    .hero-stats-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .hero-stat-cell:nth-child(1),
    .hero-stat-cell:nth-child(2) {
        border-bottom: none;
    }

    .hero-stat-cell:not(:last-child)::after {
        display: block;
    }
}

@media (max-width: 420px) {
    :root { --gc-header-height: 62px; }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero-stats-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .hero-stat-item::after { display: none; }
    .hero-stat-item:nth-child(odd) { border-right: 1px solid var(--gc-border); }
    .hero-stat-item:nth-child(1),
    .hero-stat-item:nth-child(2) { border-bottom: 1px solid var(--gc-border); }
}

@media (min-width: 992px) {
    .hero-grid {
        align-items: center;
    }
}

/* ── Scroll reveal animations ── */
.gc-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.gc-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.gc-reveal-delay-1 { transition-delay: 0.08s; }
.gc-reveal-delay-2 { transition-delay: 0.16s; }
.gc-reveal-delay-3 { transition-delay: 0.24s; }
.gc-reveal-delay-4 { transition-delay: 0.32s; }

/* ── Enhanced hover interactions ── */
.service-card,
.article-card,
.testimonial-card,
.stat-item,
.partner-logo {
    will-change: transform;
}

.service-card:hover .service-icon {
    background: var(--gc-primary-soft);
}

.article-card:hover .article-thumb i {
    transform: scale(1.08);
}

.article-thumb i {
    display: inline-block;
    transition: transform var(--gc-transition);
}

.partner-logo:hover {
    transform: translateY(-2px);
}

.btn-outline-primary:hover {
    transform: translateY(-1px);
}

.nav-link,
.btn,
.service-card a,
.float-whatsapp,
.float-callback {
    transition: color var(--gc-transition), background var(--gc-transition), border-color var(--gc-transition), box-shadow var(--gc-transition), transform var(--gc-transition);
}

.faq-section .accordion-item {
    transition: border-color var(--gc-transition), box-shadow var(--gc-transition);
}

.faq-section .accordion-item:hover {
    border-color: #cbd5e1;
}

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

    .service-card:hover,
    .article-card:hover,
    .stat-item:hover,
    .btn-primary:hover,
    .partner-logo:hover {
        transform: none;
    }
}

