/* ====================================================
   CMCU – Caucasus Management Consultancies
   styles.css — Navy, Orange, White Brand Theme
   ==================================================== */

/* ===================== VARIABLES ===================== */
:root {
    --navy:       #1F275C;
    --navy-deep:  #161c46;
    --navy-mid:   #2a3470;
    --orange:     #F9AF5D;
    --orange-dark:#e8973d;
    --orange-lt:  #fde8c8;
    --white:      #FFFFFF;
    --off-white:  #F7F8FC;
    --gray:       #6B7280;
    --gray-lt:    #EEF0F8;
    --text:       #111827;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;

    --sh-sm:  0 4px 12px rgba(31,39,92,.08);
    --sh-md:  0 12px 32px rgba(31,39,92,.14);
    --sh-lg:  0 24px 60px rgba(31,39,92,.22);
    --sh-org: 0 8px 24px rgba(249,175,93,.30);

    --radius: 14px;
    --radius-sm: 8px;
}

/* ===================== RESET ===================== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { display:block; max-width:100%; }
a { color:inherit; }

.container { max-width:1200px; margin:0 auto; padding:0 24px; }
h1,h2,h3 { font-family:var(--font-display); font-weight:700; line-height:1.2; }

/* ===================== UTILITIES ===================== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--orange-dark);
    margin-bottom: 12px;
}
.section-label::before {
    content:'';
    display:block;
    width:24px; height:3px;
    background:var(--orange);
    border-radius:2px;
}
.section-title {
    font-size: 44px;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 14px;
}
.section-sub {
    font-size: 16px;
    color: var(--gray);
    max-width: 600px;
}
.section-header-center { text-align:center; margin-bottom:56px; }
.section-header-center .section-label { justify-content:center; }
.section-header-center .section-sub { margin:0 auto; }
.accent-text { color:var(--orange); }

/* Buttons */
.btn-navy {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    padding: 15px 38px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .02em;
    transition: all .25s ease;
    border: 2px solid var(--navy);
}
.btn-navy:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--sh-org);
}
.btn-white {
    display: inline-block;
    background: var(--white);
    color: var(--navy);
    padding: 15px 38px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all .25s ease;
    border: 2px solid var(--white);
}
.btn-white:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--navy);
    transform: scale(1.04);
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease-out, transform .65s ease-out;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== HEADER ===================== */
.header {
    background: var(--white);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(31,39,92,.1), var(--sh-sm);
    transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(31,39,92,.15); }
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo { height:52px; width:auto; }
.header-nav { display:flex; gap:28px; }
.header-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
    transition: color .2s;
}
.header-nav a:hover { color:var(--orange-dark); }
.header-right { display:flex; align-items:center; gap:16px; }
.header-phone {
    font-size: 13px;
    color: var(--navy);
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}
.header-cta {
    background: var(--navy);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all .25s;
    border: 2px solid var(--navy);
    white-space: nowrap;
}
.header-cta:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--navy);
    box-shadow: var(--sh-org);
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--navy);
    padding: 4px;
}
.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--gray-lt);
    padding: 12px 24px 16px;
    gap: 4px;
}
.mobile-nav.open { display:flex; }
.mobile-nav a {
    font-size: 15px;
    color: var(--navy);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-lt);
    font-weight: 500;
}
.mobile-apply-btn {
    background: var(--navy) !important;
    color: var(--white) !important;
    padding: 12px 20px !important;
    border-radius: 6px;
    text-align: center;
    margin-top: 8px;
    border-bottom: none !important;
}

/* ===================== HERO ===================== */
.hero {
    background: var(--navy);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content:'';
    position:absolute; inset:0;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(249,175,93,.07) 0%, transparent 50%),
        radial-gradient(circle at 85% 20%, rgba(249,175,93,.04) 0%, transparent 40%);
    pointer-events:none;
}
.hero::after {
    content:'';
    position:absolute; inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events:none;
}
.hero-accent {
    position:absolute; right:0; top:0; bottom:0;
    width:5px;
    background:var(--orange);
    z-index:2;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.hero-content { color:var(--white); animation: fadeUp .75s ease-out both; }
@keyframes fadeUp {
    from { opacity:0; transform:translateY(28px); }
    to   { opacity:1; transform:translateY(0); }
}
.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249,175,93,.15);
    border: 1px solid rgba(249,175,93,.4);
    color: var(--orange);
    padding: 7px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
    letter-spacing: .02em;
}
.hero-content h1 {
    font-size: 52px;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -.01em;
}
.hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,.8);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 560px;
}
.hero-badges {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 11px;
    margin-bottom: 42px;
}
.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255,255,255,.92);
    transition: all .2s;
}
.badge:hover { background:rgba(249,175,93,.12); border-color:rgba(249,175,93,.3); }
.badge-dot {
    width:7px; height:7px;
    background:var(--orange);
    border-radius:50%;
    flex-shrink:0;
}
.hero-highlights { display:flex; flex-direction:column; gap:13px; }
.hl-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 15px 20px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-left: 3px solid var(--orange);
    border-radius: var(--radius-sm);
    transition: all .25s;
}
.hl-row:hover { background:rgba(249,175,93,.08); transform:translateX(4px); }
.hl-icon { font-size:26px; flex-shrink:0; }
.hl-content strong { display:block; font-size:15px; color:var(--white); font-weight:600; }
.hl-content span { font-size:13px; color:rgba(255,255,255,.65); }

/* Hero Form */
.hero-form { animation: slideRight .7s ease-out .2s both; }
@keyframes slideRight {
    from { opacity:0; transform:translateX(20px); }
    to   { opacity:1; transform:translateX(0); }
}
.form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 32px;
    box-shadow: var(--sh-lg);
    position: sticky;
    top: 84px;
    border-top: 4px solid var(--orange);
}
.form-card-label {
    display: inline-block;
    background: var(--orange-lt);
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}
.form-card h3 { font-size:25px; color:var(--navy); margin-bottom:5px; }
.form-subtitle { font-size:13px; color:var(--gray); margin-bottom:22px; }
/* Form card stays white always */
.form-card { background: var(--white) !important; }

/* ---- Firmli widget overrides: force white bg + readable text ---- */
/* Nuclear-level reset so no injected dark background survives */
#signup-form-container { background: var(--white) !important; }
#signup-form-container > * { background: var(--white) !important; }
#signup-form-container div,
#signup-form-container section,
#signup-form-container article,
#signup-form-container aside,
#signup-form-container span:not(.badge-dot) {
    background-color: transparent !important;
}
#signup-form-container p,
#signup-form-container h1,
#signup-form-container h2,
#signup-form-container h3,
#signup-form-container h4,
#signup-form-container label,
#signup-form-container span {
    color: var(--navy) !important;
}
#signup-form-container input,
#signup-form-container select,
#signup-form-container textarea {
    background: #f8f9fc !important;
    color: #111827 !important;
    border: 1.5px solid #d1d5db !important;
    border-radius: 6px !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
    font-family: var(--font-body) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    -webkit-appearance: none;
    appearance: none;
}
#signup-form-container input:focus,
#signup-form-container select:focus,
#signup-form-container textarea:focus {
    outline: 2px solid var(--orange) !important;
    border-color: var(--orange) !important;
}
#signup-form-container input::placeholder,
#signup-form-container textarea::placeholder {
    color: #9ca3af !important;
}
#signup-form-container label {
    color: var(--navy) !important;
    font-weight: 600 !important;
    font-size: 13.5px !important;
    font-family: var(--font-body) !important;
    display: block !important;
    margin-bottom: 6px !important;
}
#signup-form-container button,
#signup-form-container button[type="submit"],
#signup-form-container input[type="submit"],
#signup-form-container input[type="button"] {
    background: var(--navy) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 7px !important;
    padding: 13px 24px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    font-family: var(--font-body) !important;
    cursor: pointer !important;
    width: 100% !important;
    letter-spacing: .02em !important;
    transition: background .25s !important;
}
#signup-form-container button:hover,
#signup-form-container button[type="submit"]:hover,
#signup-form-container input[type="submit"]:hover {
    background: var(--orange-dark) !important;
}


/* ===================== ABOUT ===================== */
.about { padding:100px 0; background:var(--white); }
.about-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 80px;
    align-items: center;
}
.about-left .lead {
    font-size: 19px;
    color: var(--navy);
    line-height: 1.8;
    margin-bottom: 26px;
}
.about-body p {
    font-size: 15.5px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 13px;
}
.about-body strong { color:var(--navy); }
.highlight-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 20px;
    color: var(--navy);
    border-left: 4px solid var(--orange);
    padding: 16px 20px;
    background: var(--off-white);
    border-radius: 0 10px 10px 0;
    margin-top: 24px;
}
.stats-side { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.stat-card {
    background: var(--navy);
    padding: 32px 22px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform .25s;
}
.stat-card:hover { transform:translateY(-4px); }
.stat-card::before {
    content:'';
    position:absolute; bottom:0; right:0;
    width:60px; height:60px;
    background:var(--orange);
    opacity:.1;
    border-radius:50% 0 0 0;
}
.stat-num {
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-desc { font-size:13px; color:rgba(255,255,255,.8); font-weight:500; letter-spacing:.02em; }
.stat-card.accent { background:var(--orange); }
.stat-card.accent .stat-num { color:var(--navy); }
.stat-card.accent .stat-desc { color:rgba(31,39,92,.85); }
.stat-card.accent::before { background:var(--navy); }

/* ===================== MEDICINE ===================== */
.medicine { padding:90px 0; background:var(--off-white); }
.medicine-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }
.medicine-card {
    background: var(--white);
    padding: 38px;
    border-radius: var(--radius);
    box-shadow: var(--sh-sm);
    border-top: 4px solid transparent;
    transition: all .3s;
}
.medicine-card:hover {
    border-top-color: var(--orange);
    box-shadow: var(--sh-md);
    transform: translateY(-4px);
}
.mc-icon {
    width:50px; height:50px;
    background:var(--navy);
    border-radius:12px;
    display:flex; align-items:center; justify-content:center;
    font-size:22px;
    margin-bottom:20px;
}
.medicine-card h2 { font-size:26px; color:var(--navy); margin-bottom:14px; }
.medicine-card p { font-size:15px; color:var(--gray); line-height:1.75; margin-bottom:10px; }

#signup-form-container { margin:4px 0 10px; }
.privacy-note { text-align:center; font-size:12px; color:var(--gray); margin-top:10px; }

/* ===================== CAUCASUS FEATURE ===================== */
.caucasus-feature { padding:90px 0; background:var(--white); }
.cf-inner { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }

/* Image Slider */
.cf-slider {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--navy);
    box-shadow: var(--sh-lg);
}
/* IMPORTANT: slides wrapper must be absolute so height resolves correctly */
.cf-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.cf-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .65s ease;
    pointer-events: none;
}
.cf-slide.active {
    opacity: 1;
    pointer-events: auto;
}
.cf-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cf-slider-prev,
.cf-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(4px);
    border: none;
    width: 40px; height: 40px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    color: var(--navy);
    display: flex; align-items: center; justify-content: center;
    z-index: 10;
    transition: all .2s;
}
.cf-slider-prev { left:14px; }
.cf-slider-next { right:14px; }
.cf-slider-prev:hover,
.cf-slider-next:hover { background:var(--orange); color:var(--navy); }
.cf-slider-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.cf-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    cursor: pointer;
    transition: all .25s;
    border: 2px solid rgba(255,255,255,.3);
}
.cf-dot.active { background:var(--orange); border-color:var(--orange); transform:scale(1.3); }

.cf-visual { position:relative; }
.cf-float {
    position:absolute;
    bottom:-20px; right:-20px;
    background:var(--orange);
    color:var(--navy);
    padding:20px 24px;
    border-radius:var(--radius);
    box-shadow:var(--sh-org);
    text-align:center;
}
.cf-float strong { display:block; font-size:28px; font-family:var(--font-display); line-height:1; }
.cf-float span { font-size:12px; font-weight:600; }
.cf-content .section-title { font-size:38px; }
.cf-content p { font-size:15.5px; color:var(--gray); line-height:1.8; margin-bottom:13px; }
.cf-content strong { color:var(--navy); }
.cf-points { margin-top:26px; display:flex; flex-direction:column; gap:12px; }
.cf-point { display:flex; align-items:flex-start; gap:12px; font-size:15px; color:var(--text); }
.cf-check {
    flex-shrink:0;
    width:22px; height:22px;
    background:var(--orange);
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-size:11px; color:var(--navy); font-weight:700;
    margin-top:2px;
}


/* ===================== CTA BANNER ===================== */
.cta-banner { padding:80px 0; background:linear-gradient(135deg,var(--orange) 0%,var(--orange-dark) 100%); position:relative; overflow:hidden; }
.cta-banner::before {
    content:'';
    position:absolute; inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size:50px 50px;
}
.cta-banner-inner { position:relative; z-index:1; text-align:center; }
.cta-banner h2 { font-size:42px; color:var(--navy); margin-bottom:12px; }
.cta-banner p { font-size:18px; color:rgba(31,39,92,.8); margin-bottom:30px; }

/* ===================== ADVANTAGES ===================== */
.advantages { padding:100px 0; background:var(--white); }
.adv-intro {
    font-size:17px; color:var(--gray); line-height:1.85;
    max-width:820px; margin:0 auto 56px; text-align:center;
}
.adv-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.adv-item {
    padding:28px 22px; border:2px solid var(--gray-lt);
    border-radius:var(--radius); text-align:center;
    transition:all .3s; position:relative; overflow:hidden;
}
.adv-item::after {
    content:'';
    position:absolute; bottom:0; left:0; right:0;
    height:3px; background:var(--orange);
    transform:scaleX(0); transition:transform .3s;
}
.adv-item:hover { border-color:var(--orange); box-shadow:var(--sh-md); transform:translateY(-4px); }
.adv-item:hover::after { transform:scaleX(1); }
.adv-icon { font-size:36px; margin-bottom:12px; }
.adv-item h4 { font-family:var(--font-display); font-size:18px; color:var(--navy); margin-bottom:7px; }
.adv-item p { font-size:13px; color:var(--gray); line-height:1.6; }

/* ===================== INSTAGRAM ===================== */
.instagram-section { padding:100px 0; background:var(--navy); position:relative; }
.instagram-section::before {
    content:'';
    position:absolute; inset:0;
    background-image:
        radial-gradient(circle at 90% 80%, rgba(249,175,93,.06) 0%, transparent 40%);
}
.instagram-section .section-label { color:var(--orange); }
.instagram-section .section-label::before { background:var(--orange); }
.instagram-section .section-title { color:var(--white); }
.instagram-section .section-sub { color:rgba(255,255,255,.7); }
.ig-handle { color:var(--orange); text-decoration:none; font-weight:600; }
.ig-handle:hover { text-decoration:underline; }
.ig-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}
.ig-embed-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.ig-embed-wrap .instagram-media {
    border-radius: var(--radius) !important;
    box-shadow: var(--sh-md) !important;
    min-width: unset !important;
    width: 100% !important;
    margin: 0 !important;
}
.ig-follow-cta { text-align:center; margin-top:44px; position:relative; z-index:1; }
.ig-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid var(--orange);
    color: var(--orange);
    padding: 13px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all .25s;
}
.ig-follow-btn:hover { background:var(--orange); color:var(--navy); }

/* ===================== TESTIMONIALS ===================== */
.testimonials { padding:100px 0; background:var(--off-white); }
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.testi-card {
    background: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius);
    box-shadow: var(--sh-sm);
    position: relative;
    border-top: 4px solid var(--orange);
    transition: all .3s;
    display: flex;
    flex-direction: column;
}
.testi-card:hover { transform:translateY(-4px); box-shadow:var(--sh-md); }
.testi-quote-mark {
    font-family: var(--font-display);
    font-size: 80px;
    line-height: .8;
    color: var(--orange);
    opacity: .35;
    margin-bottom: 8px;
    font-style: italic;
}
.testi-text {
    font-size: 15.5px;
    color: var(--gray);
    line-height: 1.8;
    flex: 1;
    margin-bottom: 28px;
    font-style: italic;
}
.testi-profile { display:flex; align-items:center; gap:14px; }
.testi-img {
    width: 52px; height:52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--orange);
    flex-shrink: 0;
}
.testi-info strong { display:block; font-size:15px; color:var(--navy); font-weight:700; }
.testi-info span { font-size:12.5px; color:var(--gray); }

/* ===================== FAQ ===================== */
.faq { padding:100px 0; background:var(--white); }
.faq-inner {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: start;
}
.faq-left { position:sticky; top:100px; }
.faq-left .section-title { font-size:38px; }
.faq-right { display:flex; flex-direction:column; gap:0; }
.faq-item {
    border-bottom: 1px solid var(--gray-lt);
    overflow: hidden;
}
.faq-item:first-child { border-top:1px solid var(--gray-lt); }
.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 4px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 15.5px;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    transition: color .2s;
}
.faq-q:hover { color:var(--orange-dark); }
.faq-icon {
    font-size: 22px;
    font-weight: 300;
    color: var(--orange);
    flex-shrink: 0;
    transition: transform .3s;
}
.faq-item.open .faq-icon { transform:rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p {
    padding: 0 4px 20px;
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
}

/* ===================== COUNSELLING CTA ===================== */
.counselling { padding:80px 0; background:var(--navy); text-align:center; }
.counselling-inner h2 { font-size:40px; color:var(--white); margin-bottom:12px; }
.counselling-inner > p { font-size:18px; color:rgba(255,255,255,.8); margin-bottom:24px; }
.features-row { display:flex; justify-content:center; gap:28px; margin-bottom:12px; flex-wrap:wrap; }
.features-row span { font-size:15px; font-weight:600; color:var(--orange); }
.privacy-small { font-size:13px; color:rgba(255,255,255,.5); margin-bottom:30px; }

/* ===================== SUCCESS STORIES ===================== */
.success { padding:100px 0; background:var(--off-white); }
.videos-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.video-card {
    background:var(--white); border-radius:12px; overflow:hidden;
    box-shadow:var(--sh-sm); transition:all .3s;
    text-decoration:none; display:block;
    border:2px solid transparent;
}
.video-card:hover { border-color:var(--orange); transform:translateY(-5px); box-shadow:var(--sh-md); }
.video-thumb { position:relative; width:100%; padding-bottom:56.25%; background:var(--navy); overflow:hidden; }
.video-thumb img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .3s; }
.video-card:hover .video-thumb img { transform:scale(1.05); }
.play-btn {
    position:absolute; top:50%; left:50%;
    transform:translate(-50%,-50%);
    width:54px; height:54px;
    background:var(--orange);
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    color:var(--navy); font-size:18px;
    border:3px solid rgba(255,255,255,.9);
    transition:all .3s;
}
.video-card:hover .play-btn { background:var(--navy); color:var(--white); transform:translate(-50%,-50%) scale(1.1); }
.video-meta { padding:16px 18px; }
.video-meta h4 { font-size:14.5px; color:var(--navy); font-weight:600; margin-bottom:4px; }
.video-meta span { font-size:13px; color:var(--orange-dark); font-weight:500; }

/* ===================== FOOTER ===================== */
.footer { background:var(--navy-deep); color:var(--white); padding:64px 0 28px; }
.footer-grid { display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:44px; margin-bottom:44px; }
.footer-logo { height:46px; width:auto; margin-bottom:14px; filter:brightness(0) invert(1); }
.footer-col p { font-size:14px; color:rgba(255,255,255,.65); line-height:1.7; margin-bottom:7px; }
.footer-col p a { color:rgba(255,255,255,.65); text-decoration:none; transition:color .2s; }
.footer-col p a:hover { color:var(--orange); }
.footer-col h4 { font-size:12px; font-weight:700; letter-spacing:.09em; text-transform:uppercase; color:var(--orange); margin-bottom:14px; }
.footer-tagline { font-style:italic; color:rgba(255,255,255,.4) !important; }
.social-links { display:flex; gap:12px; margin-top:18px; }
.social-link {
    width:36px; height:36px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    border-radius:8px;
    display:flex; align-items:center; justify-content:center;
    color:rgba(255,255,255,.7);
    transition:all .25s;
}
.social-link:hover { background:var(--orange); color:var(--navy); border-color:var(--orange); }
.footer-divider { height:1px; background:rgba(249,175,93,.2); margin-bottom:22px; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.footer-bottom p { font-size:13px; color:rgba(255,255,255,.4); }

/* ===================== RESPONSIVE ===================== */
@media (max-width:1200px) {
    .section-title { font-size:38px; }
    .hero-content h1 { font-size:46px; }
}
@media (max-width:1024px) {
    .header-nav { display:none; }
    .mobile-menu-btn { display:block; }
    .hero-inner { grid-template-columns:1fr; gap:48px; }
    .hero-content h1 { font-size:40px; }
    .about-grid, .cf-inner, .faq-inner { grid-template-columns:1fr; gap:48px; }
    .cf-float { right:0; }
    .faq-left { position:static; }
    .adv-grid { grid-template-columns:repeat(2,1fr); }
    .footer-grid { grid-template-columns:repeat(2,1fr); }
    .ig-grid { grid-template-columns:repeat(2,1fr); }
    .testimonials-grid { grid-template-columns:1fr; }
}
@media (max-width:768px) {
    .hero { padding:60px 0 80px; }
    .hero-content h1 { font-size:34px; }
    .hero-badges { grid-template-columns:1fr; }
    .section-title { font-size:32px; }
    .medicine-grid, .uni-grid, .videos-grid { grid-template-columns:1fr; }
    .stats-side { grid-template-columns:repeat(2,1fr); }
    .adv-grid { grid-template-columns:1fr; }
    .footer-grid { grid-template-columns:1fr; }
    .cta-banner h2 { font-size:28px; }
    .counselling-inner h2 { font-size:30px; }
    .ig-grid { grid-template-columns:1fr; }
    .header-phone { display:none; }
    .testimonials-grid { grid-template-columns:1fr; }
}
