/* ============================================================
   GREAT PLACE TO WORK® INDIA — Main Stylesheet
   ============================================================ */

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

:root {
    --red:       #C8102E;
    --red-dark:  #a00020;
    --navy:      #003087;
    --navy-dark: #001a5c;
    --navy-deep: #00124a;
    --gray-bg:   #f5f7fa;
    --gray-lt:   #f0f2f5;
    --border:    #e5e8ef;
    --text:      #2d2d2d;
    --text-muted:#666;
    --white:     #ffffff;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', 'Segoe UI', sans-serif; color: var(--text); line-height: 1.6; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── TOPBAR ───────────────────────────────────────────────── */
.topbar {
    background: var(--navy-dark);
    color: rgba(255,255,255,.75);
    font-size: 12.5px;
    padding: 7px 0;
}
.topbar-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; gap: 24px;
}
.topbar span { display: flex; align-items: center; gap: 7px; }
.topbar span i { color: var(--red); font-size: 11px; }
.topbar-right { margin-left: auto; display: flex; gap: 20px; }
.topbar-right a {
    color: rgba(255,255,255,.75); text-decoration: none;
    display: flex; align-items: center; gap: 6px; font-size: 12px;
    transition: color .2s;
}
.topbar-right a:hover { color: #fff; }
.topbar-right a i { font-size: 11px; }

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
    position: sticky; top: 0; z-index: 999;
    background: #fff;
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.12); }

.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; gap: 6px; height: 68px;
}

/* Logo */
.logo { text-decoration: none; flex-shrink: 0; display: flex; align-items: center; }
.nav-gsei-logo {
    height: 44px; width: auto;
    object-fit: contain; display: block;
}

/* Footer logo */
.footer-gsei-logo {
    height: 56px; width: auto;
    object-fit: contain; display: block;
    background: #fff; border-radius: 8px;
    padding: 6px 10px;
    margin-bottom: 16px;
}

/* Nav links */
.nav-links {
    display: flex; list-style: none; gap: 2px; margin-left: 28px;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
    display: flex; align-items: center; gap: 5px;
    padding: 8px 12px; border-radius: 6px;
    text-decoration: none; color: #333;
    font-size: 13.5px; font-weight: 500;
    transition: color .2s, background .2s;
    white-space: nowrap;
}
.nav-links > li > a i { font-size: 10px; transition: transform .2s; }
.nav-links > li:hover > a,
.nav-links > li.open > a { color: var(--red); background: #fef0f2; }
.nav-links > li.open > a i { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
    position: absolute; top: calc(100% + 8px); left: 0;
    background: #fff; border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,.14);
    border: 1px solid var(--border);
    min-width: 210px; padding: 8px;
    opacity: 0; pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s, transform .2s;
    z-index: 100;
}
.nav-links > li.open .dropdown {
    opacity: 1; pointer-events: all; transform: translateY(0);
}
.dropdown a {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 12px; border-radius: 8px;
    text-decoration: none; color: #444;
    font-size: 13.5px; font-weight: 500; transition: all .15s;
}
.dropdown a i { width: 16px; text-align: center; color: var(--red); font-size: 13px; }
.dropdown a:hover { background: var(--gray-lt); color: var(--navy); }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.btn-get-certified {
    padding: 9px 20px; background: var(--red); color: #fff;
    border-radius: 7px; text-decoration: none;
    font-size: 13px; font-weight: 700;
    transition: background .2s, transform .15s;
    white-space: nowrap;
}
.btn-get-certified:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-admin {
    padding: 8px 14px; border: 1.5px solid var(--border);
    color: #555; border-radius: 7px; text-decoration: none;
    font-size: 12.5px; font-weight: 600; transition: all .2s;
    display: flex; align-items: center; gap: 5px;
}
.btn-admin:hover { border-color: var(--navy); color: var(--navy); }

/* Hamburger */
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--navy); border-radius: 2px;
    transition: all .3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    display: none; flex-direction: column;
    border-top: 1px solid var(--border);
    background: #fff;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    padding: 13px 24px; text-decoration: none;
    color: #333; font-size: 15px; font-weight: 500;
    border-bottom: 1px solid #f5f5f5; transition: background .15s;
}
.mobile-menu a:hover { background: var(--gray-lt); color: var(--red); }
.mobile-menu .mob-admin { color: var(--navy); font-weight: 700; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    min-height: 88vh; display: flex; align-items: center;
    position: relative; overflow: hidden; padding: 80px 24px;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
    position: absolute; border-radius: 50%;
    background: rgba(255,255,255,.04);
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -150px; }
.shape-2 { width: 300px; height: 300px; bottom: -80px; left: 10%; background: rgba(232,0,28,.06); }
.shape-3 { width: 150px; height: 150px; top: 30%; left: 5%; }

.hero-inner {
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: flex; align-items: center; gap: 80px; position: relative;
}

.hero-text { flex: 1; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(232,0,28,.15); color: #ff6b7a;
    border: 1px solid rgba(232,0,28,.3);
    padding: 7px 16px; border-radius: 50px;
    font-size: 13px; font-weight: 600; margin-bottom: 24px;
}
.hero-badge i { font-size: 12px; }

.hero-text h1 {
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 22px;
}
.text-red { color: var(--red); }

.hero-sub {
    font-size: 17px; color: rgba(255,255,255,.75);
    line-height: 1.75; max-width: 520px; margin-bottom: 36px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; background: var(--red); color: #fff;
    border-radius: 8px; text-decoration: none;
    font-size: 15px; font-weight: 700;
    transition: background .2s, transform .15s, box-shadow .2s;
    border: none; cursor: pointer;
}
.cta-primary:hover {
    background: var(--red-dark); transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(232,0,28,.4);
}
.cta-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border: 2px solid rgba(255,255,255,.35);
    color: #fff; border-radius: 8px; text-decoration: none;
    font-size: 15px; font-weight: 600; transition: all .2s;
}
.cta-secondary:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

/* Hero right — cert card */
.hero-right { flex-shrink: 0; position: relative; }
.hero-cert-card {
    background: #fff; border-radius: 20px;
    padding: 32px 28px; width: 240px; text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,.4);
    position: relative; z-index: 2;
}
.cert-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.cert-logo-box { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.clb-gp { font-size: 9px; font-weight: 900; color: var(--navy); letter-spacing: .5px; }
.clb-tw { font-size: 7px; font-weight: 700; color: var(--red); letter-spacing: 1.5px; }
.clb-tw sup { font-size: 5px; }
.cert-year { font-size: 13px; font-weight: 800; color: var(--navy); }

.cert-card-seal { margin: 8px 0; }
.cert-card-seal i { font-size: 52px; color: var(--red); display: block; margin-bottom: 6px; }
.cert-card-seal span { font-size: 15px; font-weight: 900; color: var(--navy); letter-spacing: 2px; }

.cert-card-bottom { font-size: 12px; font-weight: 700; color: var(--text-muted); margin-top: 8px; letter-spacing: 1px; text-transform: uppercase; }

.cert-ribbon {
    position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%);
    background: var(--red); color: #fff; font-size: 10px; font-weight: 700;
    padding: 5px 16px; border-radius: 50px; white-space: nowrap;
    letter-spacing: .5px;
}

/* Floating stat pills */
.hero-float {
    position: absolute; background: #fff; border-radius: 12px;
    padding: 10px 16px; display: flex; align-items: center; gap: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,.18); z-index: 3;
}
.hero-float i { font-size: 18px; color: var(--red); }
.hero-float strong { display: block; font-size: 14px; font-weight: 800; color: var(--navy); }
.hero-float span { font-size: 11px; color: var(--text-muted); }
.hero-float-1 { top: -20px; left: -60px; }
.hero-float-2 { bottom: -18px; right: -40px; }

/* ── STATS BAR ────────────────────────────────────────────── */
.stats-bar { background: var(--navy); padding: 0; }
.stats-bar-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: stretch;
}
.sbar-item {
    flex: 1; padding: 28px 20px; text-align: center;
    display: flex; flex-direction: column; gap: 4px;
}
.sbar-item strong { font-size: 28px; font-weight: 900; color: #fff; }
.sbar-item span { font-size: 12.5px; color: rgba(255,255,255,.65); font-weight: 500; }
.sbar-divider { width: 1px; background: rgba(255,255,255,.15); margin: 16px 0; }

/* ── SHARED SECTION STYLES ────────────────────────────────── */
section { padding: 90px 0; }
.sec-head { margin-bottom: 52px; }
.sec-head.center { text-align: center; }
.sec-head.center .section-desc,
.sec-head.center p { margin-left: auto; margin-right: auto; }

.sec-tag {
    display: inline-block;
    background: rgba(0,48,135,.09); color: var(--navy);
    font-size: 11.5px; font-weight: 700; padding: 5px 14px;
    border-radius: 50px; letter-spacing: 1.2px; text-transform: uppercase;
    margin-bottom: 12px;
}
.sec-tag.light { background: rgba(255,255,255,.18); color: #fff; }

.sec-head h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800; color: var(--navy); line-height: 1.2;
    margin-bottom: 14px;
}
.sec-head p {
    font-size: 16px; color: var(--text-muted);
    line-height: 1.75; max-width: 600px;
}

/* ── GOLD STANDARD BANNER ─────────────────────────────────── */
.gsei-banner {
    background: #0a0e1a;
    padding: 28px 24px;
    border-top: 3px solid var(--red);
    border-bottom: 3px solid var(--navy);
}
.gsei-banner-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center;
    gap: 36px; flex-wrap: wrap; justify-content: center;
}
.gsei-logo-wrap img {
    height: 72px; width: auto;
    background: #fff; border-radius: 10px;
    padding: 6px 12px; display: block;
}
.gsei-divider {
    width: 1px; height: 60px;
    background: rgba(255,255,255,.15);
    flex-shrink: 0;
}
.gsei-text { text-align: center; }
.gsei-line1 {
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 900; color: var(--red);
    letter-spacing: 2px; line-height: 1.1;
    font-family: 'Inter', sans-serif;
}
.gsei-line2 {
    font-size: clamp(14px, 2vw, 22px);
    font-weight: 800; color: var(--navy);
    letter-spacing: 3px;
    /* navy on dark bg — use lighter shade */
    color: #4d7cc7;
}
.gsei-desc {
    display: flex; align-items: center; gap: 12px;
    max-width: 320px;
}
.gsei-desc i { color: var(--red); font-size: 22px; flex-shrink: 0; }
.gsei-desc span { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; }

@media (max-width: 700px) {
    .gsei-divider { display: none; }
    .gsei-desc { justify-content: center; text-align: center; }
}

/* ── OFFERINGS ────────────────────────────────────────────── */
.offerings { background: var(--gray-bg); }
.offerings-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.offering-card {
    background: #fff; border-radius: 16px; padding: 36px 30px;
    border-top: 4px solid transparent;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    transition: transform .3s, box-shadow .3s;
    display: flex; flex-direction: column;
}
.offering-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.12); }
.oc-blue { border-top-color: var(--navy); }
.oc-red  { border-top-color: var(--red); }

.oc-icon {
    width: 60px; height: 60px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px; font-size: 24px;
}
.oc-blue .oc-icon { background: rgba(0,48,135,.1); color: var(--navy); }
.oc-red  .oc-icon { background: rgba(232,0,28,.1); color: var(--red); }

.offering-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.offering-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; flex: 1; margin-bottom: 22px; }

.oc-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 14px; font-weight: 700; text-decoration: none;
    transition: gap .2s;
}
.oc-blue .oc-link { color: var(--navy); }
.oc-red  .oc-link { color: var(--red); }
.oc-link:hover { gap: 10px; }

/* ── WHY GPTW ─────────────────────────────────────────────── */
.why-gptw { background: #fff; }
.why-inner { display: flex; gap: 80px; align-items: center; }
.why-left { flex: 1; }
.why-left .sec-tag { margin-bottom: 14px; }
.why-left h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.why-left > p { font-size: 15.5px; color: var(--text-muted); line-height: 1.75; margin-bottom: 36px; }

.why-points { display: flex; flex-direction: column; gap: 22px; }
.wp-item { display: flex; gap: 16px; align-items: flex-start; }
.wp-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: rgba(0,48,135,.08); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy); font-size: 18px;
}
.wp-item h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.wp-item p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

.why-right { flex-shrink: 0; width: 360px; }
.why-visual { position: relative; display: flex; flex-direction: column; gap: 14px; }
.wv-card {
    background: #fff; border-radius: 14px; padding: 18px 20px;
    box-shadow: 0 6px 24px rgba(0,0,0,.1);
    display: flex; align-items: center; gap: 16px;
    border-left: 4px solid var(--red);
    position: relative; z-index: 2;
}
.wv-card-2 { border-left-color: var(--navy); margin-left: 30px; }
.wv-card-3 { border-left-color: var(--red); }
.wv-card i { font-size: 24px; color: var(--red); flex-shrink: 0; }
.wv-card-2 i { color: var(--navy); }
.wv-card strong { display: block; font-size: 22px; font-weight: 900; color: var(--navy); }
.wv-card span { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }
.wv-bg-circle {
    position: absolute; width: 250px; height: 250px;
    background: rgba(0,48,135,.04); border-radius: 50%;
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    z-index: 1; pointer-events: none;
}

/* ── CERTIFY STEPS ────────────────────────────────────────── */
.certify-sec {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.certify-sec .sec-head h2 { color: #fff; }
.certify-sec .sec-head p { color: rgba(255,255,255,.7); }

.cert-steps-grid {
    display: flex; align-items: flex-start; gap: 0;
    margin-bottom: 60px;
}
.cert-step {
    flex: 1; background: rgba(255,255,255,.06); border-radius: 16px;
    padding: 32px 28px; text-align: center; position: relative;
    border: 1px solid rgba(255,255,255,.12);
}
.cert-step-arrow {
    display: flex; align-items: center; padding: 0 8px;
    color: rgba(255,255,255,.3); font-size: 20px; flex-shrink: 0;
    margin-top: 60px;
}

.cs-num {
    font-size: 48px; font-weight: 900;
    color: rgba(255,255,255,.08); margin-bottom: 10px;
    line-height: 1;
}
.cs-icon {
    width: 56px; height: 56px; background: var(--red);
    border-radius: 14px; display: flex; align-items: center;
    justify-content: center; margin: 0 auto 18px;
    font-size: 22px; color: #fff;
}
.cert-step h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.cert-step p { font-size: 13.5px; color: rgba(255,255,255,.65); line-height: 1.65; }

/* Benefits */
.cert-benefits {
    background: rgba(255,255,255,.06); border-radius: 20px;
    padding: 40px; border: 1px solid rgba(255,255,255,.12);
    text-align: center;
}
.cert-benefits h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 24px; }
.cb-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
    margin-bottom: 32px;
}
.cb-item {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.06); border-radius: 8px;
    padding: 12px 16px; color: rgba(255,255,255,.85);
    font-size: 13.5px; font-weight: 500;
}
.cb-item i { color: var(--red); flex-shrink: 0; }

/* ── BEST WORKPLACES ──────────────────────────────────────── */
.bw-lists { background: var(--gray-bg); }
.bw-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    margin-bottom: 36px;
}
.bw-card {
    background: #fff; border-radius: 14px; overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    transition: transform .3s, box-shadow .3s;
    display: flex; flex-direction: column;
}
.bw-card:hover { transform: translateY(-5px); box-shadow: 0 16px 44px rgba(0,0,0,.12); }
.bw-icon {
    padding: 28px; display: flex; align-items: center; justify-content: center;
    font-size: 32px; color: #fff;
}
.bw-body { padding: 20px 22px; flex: 1; }
.bw-body h3 { font-size: 15.5px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.bw-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.bw-link {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 22px; font-size: 13px; font-weight: 700;
    color: var(--navy); text-decoration: none;
    border-top: 1px solid var(--border); transition: color .2s;
}
.bw-link:hover { color: var(--red); }

.bw-cta-row { text-align: center; }
.cta-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; border: 2px solid var(--navy);
    color: var(--navy); border-radius: 8px; text-decoration: none;
    font-size: 14px; font-weight: 700; transition: all .2s;
}
.cta-outline:hover { background: var(--navy); color: #fff; }

/* ── COMPANIES CAROUSEL ───────────────────────────────────── */
.companies-sec { background: #fff; overflow: hidden; }
.carousel-wrap {
    overflow: hidden; border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--gray-lt);
}
.carousel-track {
    display: flex; gap: 16px; padding: 20px 16px;
    width: max-content; will-change: transform;
}
.carousel-card {
    background: #fff; border-radius: 10px;
    padding: 18px 22px; min-width: 170px;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    border: 1px solid var(--border);
    text-align: center; flex-shrink: 0;
}
.carousel-card img { max-width: 100%; max-height: 48px; object-fit: contain; }
.cc-name {
    font-size: 12.5px; font-weight: 700;
    color: var(--navy); padding: 10px 0;
}
.cc-badge {
    font-size: 10.5px; background: rgba(0,48,135,.08);
    color: var(--navy); padding: 3px 10px;
    border-radius: 50px; font-weight: 600;
}

/* ── RESOURCES ────────────────────────────────────────────── */
.resources-sec { background: var(--gray-bg); }
.res-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.res-card {
    background: #fff; border-radius: 16px; overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    transition: transform .3s, box-shadow .3s;
}
.res-card:hover { transform: translateY(-5px); box-shadow: 0 16px 44px rgba(0,0,0,.12); }
.res-img {
    height: 140px; display: flex; align-items: center;
    justify-content: center; font-size: 44px;
}
.res-img-1 { background: linear-gradient(135deg, var(--navy), #0055cc); color: #fff; }
.res-img-2 { background: linear-gradient(135deg, var(--red), #ff4d6d); color: #fff; }
.res-img-3 { background: linear-gradient(135deg, #1a1a2e, var(--navy)); color: #fff; }
.res-body { padding: 24px; }
.res-tag {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; color: var(--red); margin-bottom: 10px; display: block;
}
.res-body h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.res-body p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; }
.res-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13.5px; font-weight: 700; color: var(--red);
    text-decoration: none; transition: gap .2s;
}
.res-link:hover { gap: 10px; }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testi-sec { background: #fff; }
.testi-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.testi-card {
    background: var(--gray-lt); border-radius: 16px;
    padding: 28px; border: 1px solid var(--border);
    transition: box-shadow .3s;
}
.testi-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.08); }
.tc-quote { color: var(--red); font-size: 28px; margin-bottom: 14px; opacity: .6; }
.testi-card > p { font-size: 14.5px; color: #555; line-height: 1.75; margin-bottom: 22px; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--navy), var(--red));
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 800;
}
.tc-info strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); }
.tc-info span { font-size: 12.5px; color: var(--text-muted); }

/* ── RED BANNER ───────────────────────────────────────────── */
.red-banner {
    background: linear-gradient(135deg, var(--red) 0%, #a00018 100%);
    padding: 64px 0;
}
.rb-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; text-align: center;
}
.rb-item strong { display: block; font-size: 40px; font-weight: 900; color: #fff; margin-bottom: 6px; }
.rb-item span { font-size: 13px; color: rgba(255,255,255,.8); font-weight: 500; }

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-sec {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.contact-inner { display: flex; gap: 80px; align-items: flex-start; }
.contact-left { flex: 1; }
.contact-left .sec-tag { margin-bottom: 14px; }
.contact-left h2 {
    font-size: clamp(26px, 3vw, 38px); font-weight: 800;
    color: #fff; margin-bottom: 16px; line-height: 1.25;
}
.contact-left > p { font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.75; margin-bottom: 32px; }

.contact-info { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.ci-item { display: flex; align-items: center; gap: 14px; }
.ci-icon {
    width: 42px; height: 42px; background: rgba(255,255,255,.1);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 15px; flex-shrink: 0;
}
.ci-item span { font-size: 11.5px; color: rgba(255,255,255,.5); display: block; }
.ci-item strong { font-size: 14.5px; color: #fff; font-weight: 600; }

.social-row { display: flex; gap: 10px; }
.sr-link {
    width: 38px; height: 38px; background: rgba(255,255,255,.1);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7); text-decoration: none; font-size: 15px;
    transition: background .2s, color .2s;
}
.sr-link:hover { background: var(--red); color: #fff; }

/* Contact form */
.contact-right {
    flex: 1; background: #fff; border-radius: 20px; padding: 40px;
}
.contact-right h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: #444; }
.form-group input,
.form-group textarea {
    padding: 11px 14px; border: 1.5px solid var(--border);
    border-radius: 8px; font-size: 14px; font-family: inherit;
    color: var(--text); outline: none; transition: border .2s;
    background: #fafafa;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--navy); background: #fff; }
.form-group textarea { resize: vertical; }

.form-success {
    background: #ecfdf5; border: 1.5px solid #6ee7b7;
    color: #065f46; padding: 12px 16px; border-radius: 8px;
    font-size: 14px; display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer { background: #0a0e1a; }
.footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px; padding: 64px 0 44px;
}
.footer-logo { margin-bottom: 4px; }

.footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.45); max-width: 240px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
    width: 34px; height: 34px; background: rgba(255,255,255,.07);
    border-radius: 7px; display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.5); text-decoration: none; font-size: 13px;
    transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--red); color: #fff; }

.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 16px; letter-spacing: .3px; }
.footer-col a {
    display: block; color: rgba(255,255,255,.45); text-decoration: none;
    font-size: 13px; margin-bottom: 10px; transition: color .2s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 22px 0; display: flex;
    justify-content: space-between; align-items: center;
    font-size: 12.5px; color: rgba(255,255,255,.35); flex-wrap: wrap; gap: 10px;
}
.fb-links { display: flex; gap: 20px; }
.fb-links a { color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; }
.fb-links a:hover { color: rgba(255,255,255,.8); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }
    .offerings-grid { grid-template-columns: 1fr 1fr; }
    .res-grid { grid-template-columns: 1fr 1fr; }
    .why-right { width: 300px; }
    .why-inner { gap: 50px; }
}

@media (max-width: 900px) {
    .topbar { display: none; }
    .nav-links, .nav-actions .btn-get-certified, .nav-actions .btn-admin { display: none; }
    .hamburger { display: flex; }
    .nav-actions { margin-left: auto; }

    .hero-inner { flex-direction: column; text-align: center; gap: 50px; }
    .hero-right { display: none; }
    .hero-text h1 { font-size: clamp(36px, 8vw, 54px); }
    .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-ctas { justify-content: center; }

    .stats-bar-inner { flex-wrap: wrap; }
    .sbar-item { min-width: 50%; }
    .sbar-divider { display: none; }

    .why-inner { flex-direction: column; }
    .why-right { width: 100%; }
    .why-visual { flex-direction: column; gap: 14px; }
    .wv-card-2 { margin-left: 0; }
    .wv-bg-circle { display: none; }

    .cert-steps-grid { flex-direction: column; gap: 20px; }
    .cert-step-arrow { display: none; }

    .cb-grid { grid-template-columns: 1fr 1fr; }

    .bw-grid { grid-template-columns: 1fr 1fr; }
    .offerings-grid { grid-template-columns: 1fr; }
    .res-grid { grid-template-columns: 1fr; }
    .rb-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

    .contact-inner { flex-direction: column; gap: 40px; }
    .contact-right { width: 100%; }

    .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 600px) {
    section { padding: 60px 0; }
    .hero { padding: 60px 20px; min-height: auto; }
    .bw-grid { grid-template-columns: 1fr; }
    .cb-grid { grid-template-columns: 1fr; }
    .rb-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-ctas { flex-direction: column; align-items: center; }
}
