/* ═══════════════════════════════════════════════════════
   MAUPAL EDUCATIONAL CONSULTANCY — Shared CSS
   Font: Plus Jakarta Sans | Accent: #1A56DB
═══════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
    --blue:       #1A56DB;
    --blue-dark:  #1241A8;
    --blue-soft:  #EFF4FF;
    --blue-mid:   #DBEAFE;
    --navy:       #0F1A3A;
    --ink:        #111827;
    --ink-mid:    #374151;
    --ink-light:  #6B7280;
    --white:      #FFFFFF;
    --bg:         #F9FAFB;
    --bg-alt:     #F0F4FA;
    --border:     #E5E7EB;
    --border-lt:  #F3F4F6;
    --green:      #059669;
    --green-bg:   #ECFDF5;
    --amber:      #D97706;
    --amber-bg:   #FFFBEB;
    --red:        #DC2626;
    --red-bg:     #FEF2F2;
    --radius:     12px;
    --radius-sm:  8px;
    --shadow:     0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.06);
    --shadow-lg:  0 8px 32px rgba(0,0,0,.12);
    --shadow-xl:  0 20px 60px rgba(0,0,0,.15);
    --nav-h:      68px;
    --topbar-h:   38px;
    --header-h:   calc(var(--nav-h) + var(--topbar-h));
    --container:  1200px;
    --transition: .22s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── Scroll progress bar ── */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--blue) 0%, #60A5FA 50%, #34D399 100%);
    z-index: 9999;
    transition: width .1s linear;
    box-shadow: 0 0 8px rgba(26,86,219,.5);
}

/* ── Top bar ── */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--topbar-h);
    background: var(--navy);
    z-index: 501;
    transition: transform .35s ease, opacity .35s ease;
}
.top-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}
.top-bar-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 5%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.top-bar-left span, .top-bar-right a {
    font-size: 12.5px;
    color: rgba(255,255,255,.65);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: color .18s;
}
.top-bar-right a:hover { color: white; }
.top-bar-left span i, .top-bar-right a i { font-size: 11px; color: rgba(255,255,255,.45); }
.top-bar-divider { color: rgba(255,255,255,.2) !important; }

/* ── Nav phone link (desktop only) ── */
.nav-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink-mid);
    padding: 6px 12px;
    border-radius: 6px;
    transition: color .18s;
    white-space: nowrap;
}
.nav-phone-link:hover { color: var(--blue); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── Utility ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 5%; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.text-blue  { color: var(--blue); }
.text-muted { color: var(--ink-light); }
.fw-700     { font-weight: 700; }

/* ── Badges / Labels ── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--blue-soft);
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.section-label::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--blue);
    border-radius: 50%;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background .18s, color .18s, border-color .18s, transform .12s, box-shadow .18s;
    white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn-primary {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
    box-shadow: 0 4px 14px rgba(26,86,219,.3);
}
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); box-shadow: 0 6px 20px rgba(26,86,219,.4); }

.btn-secondary {
    background: white;
    color: var(--blue);
    border-color: var(--border);
}
.btn-secondary:hover { border-color: var(--blue); background: var(--blue-soft); }

.btn-white {
    background: white;
    color: var(--blue);
    border-color: white;
}
.btn-white:hover { background: var(--blue-soft); }

.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 15px 32px; font-size: 16px; }

/* ═══════════════ NAVBAR ═══════════════ */
.nav {
    position: fixed;
    top: var(--topbar-h);
    left: 0; width: 100%;
    z-index: 500;
    height: var(--nav-h);
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: box-shadow .3s, top .35s ease;
}
.nav.scrolled {
    top: 0;
    box-shadow: 0 2px 24px rgba(0,0,0,.09);
    border-bottom-color: transparent;
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 5%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 17px;
    color: var(--ink);
    flex-shrink: 0;
    text-decoration: none;
}
.nav-logo-mark {
    width: 36px; height: 36px;
    background: var(--blue);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
}
.nav-logo-img {
    height: 36px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}
.nav-logo span { color: var(--ink); }
.nav-logo span span { color: var(--blue); }

/* Desktop links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}
.nav-link {
    padding: 7px 13px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-mid);
    transition: color .18s, background .18s;
    white-space: nowrap;
}
.nav-link:hover { color: var(--blue); background: var(--blue-soft); }
.nav-link.active { color: var(--blue); background: var(--blue-soft); }

/* Desktop CTA + hamburger wrapper */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    flex-shrink: 0;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    padding: 9px 20px;
    background: var(--blue);
    color: white !important;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    transition: background .18s, box-shadow .18s;
    box-shadow: 0 3px 10px rgba(26,86,219,.25);
}
.btn-cta:hover { background: var(--blue-dark); box-shadow: 0 4px 16px rgba(26,86,219,.4); }

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px; height: 36px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 7px;
    cursor: pointer;
    padding: 6px;
}
.nav-hamburger span {
    display: block;
    width: 18px; height: 2px;
    background: var(--ink-mid);
    border-radius: 2px;
    transition: all .25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
    display: none;
    flex-direction: column;
    background: white;
    border-top: 1px solid var(--border);
    padding: 16px 5% 20px;
    gap: 4px;
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    color: var(--ink-mid);
    transition: color .18s, background .18s;
}
.nav-mobile-link:hover { color: var(--blue); background: var(--blue-soft); }
.nav-mobile-link.active { color: var(--blue); background: var(--blue-soft); }

/* ═══════════════ PAGE HERO ═══════════════ */
.page-hero {
    padding: calc(var(--nav-h) + 60px) 0 80px;
    background: linear-gradient(135deg, var(--navy) 0%, #1A2C55 60%, #1A56DB 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}
/* page-hero overlay removed */
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.9);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 18px;
    transition: background .2s;
}
.page-hero-title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.page-hero-subtitle {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255,255,255,.75);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ═══════════════ STAT STRIP ═══════════════ */
.stat-strip {
    background: linear-gradient(135deg, var(--navy) 0%, #1A2C55 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}
/* stat-strip pattern removed */
.stat-strip-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}
.stat-item {
    text-align: center;
    padding: 20px 16px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    transition: background var(--transition), transform var(--transition);
}
.stat-item:hover {
    background: rgba(255,255,255,.1);
    transform: translateY(-3px);
}
.stat-value {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -.02em;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,.65); font-weight: 600; }
.stat-icon {
    font-size: 20px;
    margin-bottom: 6px;
    color: rgba(255,255,255,.4);
}

/* ═══════════════ SECTION HEADINGS ═══════════════ */
.section-head { text-align: center; margin-bottom: 56px; }
.section-title {
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -.02em;
}
.section-title span { color: var(--blue); }
.section-subtitle {
    font-size: 16px;
    color: var(--ink-light);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
}
/* section-head decorative rule removed */

/* ═══════════════ CARDS ═══════════════ */
.card {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform .22s, box-shadow .22s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-body { padding: 24px; }

/* Icon card */
.icon-card { padding: 28px 24px; }
.icon-card-icon {
    width: 48px; height: 48px;
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}
.icon-card-icon.blue   { background: var(--blue-soft);  color: var(--blue); }
.icon-card-icon.green  { background: var(--green-bg);   color: var(--green); }
.icon-card-icon.amber  { background: var(--amber-bg);   color: var(--amber); }
.icon-card-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.icon-card-body  { font-size: 14px; color: var(--ink-light); line-height: 1.65; }

/* ═══════════════ TWO-COLUMN SPLIT ═══════════════ */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg);
    aspect-ratio: 4/3;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 100%;
    min-height: 280px;
    background: linear-gradient(135deg, #F0F4FA 0%, #E8EFFA 100%);
    border-radius: var(--radius);
    color: var(--blue);
}
.split-image-placeholder i {
    font-size: 52px;
    opacity: .45;
}
.split-image-placeholder span {
    font-size: 11px;
    font-weight: 700;
    color: var(--ink-light);
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .6;
}

.split-content h2 {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
}
.split-content h2 span { color: var(--blue); }
.split-content p {
    font-size: 15px;
    color: var(--ink-mid);
    line-height: 1.75;
    margin-bottom: 16px;
}
.split-content p:last-of-type { margin-bottom: 24px; }

/* ═══════════════ CTA BANNER ═══════════════ */
.cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, #162850 40%, #1A56DB 100%);
    color: white;
    padding: 88px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}
/* cta-banner overlays removed */
.cta-banner-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-banner h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 18px; letter-spacing: -.02em; }
.cta-banner p  { font-size: 17px; color: rgba(255,255,255,.8); margin-bottom: 36px; line-height: 1.7; }
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════ PROCESS STEPS ═══════════════ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    position: relative;
    counter-reset: step-counter;
}
/* Connecting dotted line between steps */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 10px;
    left: calc(40px / 2);
    right: calc(40px / 2);
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--blue-mid) 0, var(--blue-mid) 8px, transparent 8px, transparent 16px);
    z-index: 0;
    top: 28px;
}
.step-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 20px 24px;
    margin: 0 12px;
    position: relative;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    text-align: center;
    z-index: 1;
}
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-mid);
}
.step-card:first-child { margin-left: 0; }
.step-card:last-child  { margin-right: 0; }
.step-num {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 16px;
    margin: 0 auto 16px;
    box-shadow: 0 4px 14px rgba(26,86,219,.35);
    position: relative;
    z-index: 2;
}
.step-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.step-body  { font-size: 13px; color: var(--ink-light); line-height: 1.65; }

/* ═══════════════ PROGRAM CARDS ═══════════════ */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.program-card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
}
.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(26,86,219,.14);
    border-color: var(--blue-mid);
}
.program-card-header {
    background: linear-gradient(135deg, var(--navy), #1A3A6A);
    padding: 28px 24px;
    color: white;
    position: relative;
    overflow: hidden;
}
/* program-card-header decorative circles removed */
.program-icon { font-size: 32px; margin-bottom: 12px; position: relative; z-index: 1; }
.program-title { font-size: 18px; font-weight: 800; line-height: 1.3; position: relative; z-index: 1; }
.program-degree {
    font-size: 11.5px;
    color: rgba(255,255,255,.55);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .07em;
    font-weight: 600;
    position: relative; z-index: 1;
}
.program-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.program-details { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; flex: 1; }
.program-detail {
    display: flex; align-items: center; gap: 10px;
    font-size: 13.5px; color: var(--ink-mid);
    font-weight: 500;
}
.program-detail i { color: var(--blue); width: 14px; font-size: 12px; flex-shrink: 0; }

/* ═══════════════ SCHOLARSHIP CARDS ═══════════════ */
.scholarships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}
.scholarship-card {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
    transition: transform .22s, box-shadow .22s;
}
.scholarship-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.scholarship-ribbon {
    position: absolute;
    top: 16px; right: -8px;
    background: var(--green);
    color: white;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 4px 14px 4px 10px;
    border-radius: 2px 0 0 2px;
    transform: skewX(-4deg);
}
.scholarship-amount {
    background: linear-gradient(135deg, var(--blue-soft), var(--blue-mid));
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid var(--blue-mid);
}
.scholarship-amount-value {
    font-size: 28px; font-weight: 800; color: var(--blue); line-height: 1.1;
}
.scholarship-amount-label { font-size: 12px; color: var(--ink-light); font-weight: 600; margin-top: 4px; }
.scholarship-body { padding: 20px; }
.scholarship-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.scholarship-desc  { font-size: 13.5px; color: var(--ink-light); line-height: 1.65; margin-bottom: 14px; }
.scholarship-tags  { display: flex; flex-wrap: wrap; gap: 6px; }
.scholarship-tag {
    background: var(--blue-soft);
    color: var(--blue-dark);
    font-size: 11.5px; font-weight: 600;
    padding: 3px 10px; border-radius: 20px;
}

/* ═══════════════ TEAM GRID ═══════════════ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}
.team-card {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 28px 22px;
    text-align: center;
    transition: transform .22s, box-shadow .22s;
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.team-avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--blue-soft);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    margin: 0 auto 14px;
    overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--blue); font-weight: 600; margin-bottom: 8px; }
.team-bio  { font-size: 13px; color: var(--ink-light); line-height: 1.6; }

/* ═══════════════ CONTACT FORM ═══════════════ */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: start;
}
.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.contact-info-icon {
    width: 44px; height: 44px;
    background: var(--blue-soft);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue);
    font-size: 16px;
    flex-shrink: 0;
}
.contact-info-label { font-size: 12px; font-weight: 700; color: var(--ink-light); text-transform: uppercase; letter-spacing: .07em; }
.contact-info-value { font-size: 15px; font-weight: 600; color: var(--ink); margin-top: 2px; }
.contact-info-value a { color: var(--blue); }
.contact-info-value a:hover { text-decoration: underline; }

.form-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px;
}
.form-title { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.form-subtitle { font-size: 14px; color: var(--ink-light); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-mid); margin-bottom: 6px; }
.form-label span { color: var(--red); }
.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    color: var(--ink);
    background: white;
    outline: none;
    transition: border-color .18s, box-shadow .18s;
}
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,86,219,.12); }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control  { cursor: pointer; }
.form-submit {
    width: 100%;
    padding: 13px;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background .18s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 4px;
}
.form-submit:hover { background: var(--blue-dark); }
.form-success { background: var(--green-bg); color: #065F46; padding: 13px 16px; border-radius: 8px; font-size: 14px; font-weight: 600; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.form-error   { background: var(--red-bg);   color: #7F1D1D; padding: 13px 16px; border-radius: 8px; font-size: 14px; font-weight: 600; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }

/* ═══════════════ FOOTER ═══════════════ */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,.7);
    padding: 60px 0 0;
}
.footer-inner { max-width: var(--container); margin: 0 auto; padding: 0 5%; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 17px;
    color: white;
    margin-bottom: 14px;
    text-decoration: none;
}
.footer-logo-mark {
    width: 34px; height: 34px;
    background: var(--blue);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 800; font-size: 14px;
    flex-shrink: 0;
}
.footer-logo-img {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}
.footer-about {
    font-size: 13.5px;
    line-height: 1.75;
    color: rgba(255,255,255,.5);
    margin-bottom: 20px;
    max-width: 280px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 34px; height: 34px;
    background: rgba(255,255,255,.08);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6);
    font-size: 14px;
    transition: background .18s, color .18s;
}
.footer-socials a:hover { background: var(--blue); color: white; }
.footer-col-title { color: white; font-size: 13px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,.55); transition: color .18s; }
.footer-links a:hover { color: white; }
.footer-contacts { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact-item i { color: var(--blue); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span, .footer-contact-item a { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.5; }
.footer-contact-item a:hover { color: white; }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 12.5px;
    color: rgba(255,255,255,.35);
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom-links { display: flex; gap: 12px; align-items: center; }
.footer-bottom-links a { color: rgba(255,255,255,.35); transition: color .18s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }
.footer-bottom-links span { color: rgba(255,255,255,.2); }

/* ═══════════════ WHATSAPP FLOAT ═══════════════ */
.wa-float {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 52px; height: 52px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    z-index: 999;
    transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.5); }

/* ═══════════════ BACK TO TOP ═══════════════ */
.btt-btn {
    position: fixed;
    bottom: 90px; right: 28px;
    width: 44px; height: 44px;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 16px rgba(15,26,58,.3);
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    transform: translateY(12px) scale(.85);
    transition: opacity .25s, transform .25s, background .2s;
    pointer-events: none;
}
.btt-btn.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.btt-btn:hover { background: var(--blue); transform: translateY(-2px) scale(1.05); }

/* On mobile, shift floating buttons above the sticky CTA bar */
@media (max-width: 768px) {
    .wa-float  { bottom: 90px; }
    .btt-btn   { bottom: 150px; }
}

/* ═══════════════ REVEAL ANIMATION ═══════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s, transform .55s; }
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .split { gap: 40px; }
}

@media (max-width: 1024px) {
    .nav-phone-link { display: none; }
}

@media (max-width: 768px) {
    :root {
        --nav-h: 62px;
        --topbar-h: 0px;
        --header-h: var(--nav-h);
    }
    .top-bar { display: none; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .btn-cta { display: none; }
    .nav-hamburger + .btn-cta { display: none !important; }
    .nav.scrolled { top: 0; }

    .stat-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .split { grid-template-columns: 1fr; gap: 32px; }
    .split.reverse { direction: ltr; }
    .contact-wrap { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .section { padding: 56px 0; }
    .page-hero { padding: calc(var(--nav-h) + 40px) 0 50px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-about { max-width: 100%; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .steps-grid { gap: 28px; }
    .steps-grid::before { display: none; }
    .step-card { margin: 0; }
}

@media (max-width: 480px) {
    .stat-strip-inner { grid-template-columns: repeat(2, 1fr); }
    .cta-banner-btns { flex-direction: column; align-items: center; }
}

/* ═══════════════ ADVANCED UTILITIES ═══════════════ */

/* Glass card */
.glass-card {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--radius);
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--blue) 0%, #60A5FA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Accent top-border cards */
.card-accent-blue  { border-top: 3px solid var(--blue); }
.card-accent-green { border-top: 3px solid var(--green); }
.card-accent-amber { border-top: 3px solid var(--amber); }

/* Pill badge variants */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.badge-blue   { background: var(--blue-soft); color: var(--blue-dark); }
.badge-green  { background: var(--green-bg);  color: #065F46; }
.badge-amber  { background: var(--amber-bg);  color: #92400E; }
.badge-navy   { background: var(--navy);      color: rgba(255,255,255,.9); }

/* Info row */
.info-row { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-mid); }
.info-row i { color: var(--blue); font-size: 13px; width: 16px; }

/* Highlight block */
.highlight-block {
    background: var(--blue-soft);
    border-left: 4px solid var(--blue);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 16px 20px;
    font-size: 14px;
    color: var(--ink-mid);
    line-height: 1.7;
}

/* Tag cloud */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink-mid);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.tag:hover { background: var(--blue-soft); color: var(--blue); border-color: var(--blue-mid); }

/* Number highlight */
.num-highlight {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    letter-spacing: -.03em;
}

/* Divider with text */
.divider-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 32px 0;
}
.divider-label::before, .divider-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}
.divider-label span {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink-light);
    text-transform: uppercase;
    letter-spacing: .08em;
    white-space: nowrap;
}

/* Split placeholder: duplicate definition removed */

/* Floating action hint */
.scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.5);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: 40px;
    animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-hint i { font-size: 18px; }
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: .5; }
    50% { transform: translateY(6px); opacity: 1; }
}

/* Intake table */
.intake-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.intake-table th {
    background: var(--navy);
    color: white;
    padding: 12px 16px;
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .07em;
    font-weight: 700;
}
.intake-table th:first-child { border-radius: 8px 0 0 0; }
.intake-table th:last-child  { border-radius: 0 8px 0 0; }
.intake-table td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--ink-mid);
    font-weight: 500;
}
.intake-table tr:last-child td { border-bottom: none; }
.intake-table tr:hover td { background: var(--bg); }\n.intake-status { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 12.5px; }\n.intake-status.open   { color: var(--green); }\n.intake-status.soon   { color: var(--amber); }\n.intake-status.closed { color: var(--ink-light); }
