/* ============================================================
   EXAM SLOT — DESIGN SYSTEM
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #2955A8;
    --primary-dark: #1B3E82;
    --primary-light: #4B7BD4;
    --primary-pale: #EAF1FC;
    --accent: #D82828;
    --accent-dark: #A81F1F;
    --accent-light: #F16A5F;
    --accent-pale: #FDEDEC;
    --navy: #0E1B33;
    --navy-alt: #16294A;
    --text: #182234;
    --text-light: #5C6B80;
    --bg-light: #F7F9FC;
    --bg-alt: #EEF2F9;
    --white: #ffffff;
    --border: #E1E7F0;
    --shadow: 0 4px 22px rgba(14,27,51,0.10);
    --shadow-lg: 0 22px 56px rgba(14,27,51,0.18);
    --radius: 14px;
    --radius-lg: 24px;
    --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Manrope', sans-serif; color: var(--text); line-height: 1.75; background: var(--white); overflow-x: hidden; font-size: 16px; padding-top: 86px; }
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; color: var(--navy); line-height: 1.28; }
img, svg { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: 100%; margin: 0; padding: 0 7%; }

/* ===== ANIMATIONS ===== */
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-14px); } }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulse-wa { 0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37,211,102,0.55); } 70% { transform: scale(1.05); box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@keyframes pulse-accent { 0% { box-shadow: 0 0 0 0 rgba(216,40,40,0.45); } 70% { box-shadow: 0 0 0 14px rgba(216,40,40,0); } 100% { box-shadow: 0 0 0 0 rgba(216,40,40,0); } }

.fade-in { opacity: 0; transform: translateY(36px); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-46px); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(46px); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.fade-in-scale { opacity: 0; transform: scale(0.88); transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1); }
.fade-in-scale.visible { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.1s !important; } .delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; } .delay-4 { transition-delay: 0.4s !important; }

/* ===== NAVBAR (SINGLE ROW) ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(16px); box-shadow: 0 2px 18px rgba(14,27,51,0.06); border-bottom: 1px solid rgba(225,231,240,0.8); transition: var(--transition); }
.navbar.scrolled { box-shadow: 0 6px 24px rgba(14,27,51,0.10); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 86px; gap: 20px; transition: height 0.3s ease; }
.navbar.scrolled .container { height: 72px; }
.navbar-brand { display: flex; align-items: center; flex-shrink: 0; }
.navbar-logo { height: 54px; width: auto; transition: var(--transition); }
.navbar.scrolled .navbar-logo { height: 44px; }
.navbar-mobile-actions { display: none; align-items: center; gap: 10px; }
.navbar-icon-btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--primary-pale); border: none; color: var(--primary); font-size: 16px; flex-shrink: 0; transition: var(--transition); }
.navbar-icon-btn-wa { background: #e7f9ee; color: #1ebc59; }
.navbar-icon-btn:hover { transform: translateY(-2px); }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu li { position: relative; }
.nav-menu > li > a { display: flex; align-items: center; padding: 10px 16px; font-weight: 600; font-size: 15px; color: var(--text); border-radius: 8px; transition: var(--transition); transform: scale(1); }
.nav-menu > li > a:hover { color: var(--primary); transform: scale(1.1); }
.nav-menu > li > a.active { color: var(--primary); font-weight: 800; }

.navbar-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.navbar-call { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14.5px; color: var(--navy); }
.navbar-call i { color: var(--primary); }
.btn-nav-book { display: flex; align-items: center; gap: 9px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: var(--white); padding: 12px 22px; border-radius: 30px; font-weight: 700; font-size: 14.5px; box-shadow: 0 10px 24px rgba(216,40,40,0.32); animation: pulse-accent 2.6s infinite; }
.btn-nav-book:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(216,40,40,0.42); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 5px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.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 drawer */
.mob-overlay { position: fixed; inset: 0; background: rgba(14,27,51,0.6); z-index: 1400; opacity: 0; visibility: hidden; transition: var(--transition); }
.mob-overlay.open { opacity: 1; visibility: visible; }
.mob-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 84%; max-width: 340px; background: var(--white); z-index: 1500; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; box-shadow: -10px 0 40px rgba(0,0,0,0.2); }
.mob-drawer.open { transform: translateX(0); }
.mob-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--border); }
.mob-logo img { height: 40px; }
.mob-close { background: var(--bg-light); border: none; width: 34px; height: 34px; border-radius: 50%; color: var(--text); font-size: 15px; }
.mob-nav { flex: 1; overflow-y: auto; padding: 10px 12px; }
.mob-link { display: flex; align-items: center; gap: 12px; padding: 13px 12px; border-radius: 10px; font-weight: 600; color: var(--text); font-size: 15px; }
.mob-link i { width: 20px; text-align: center; color: var(--primary); }
.mob-link:hover, .mob-link.active { background: var(--primary-pale); color: var(--primary); }
.mob-drawer-footer { padding: 16px 20px 22px; border-top: 1px solid var(--border); }
.mob-cta-row { display: flex; gap: 10px; }
.mob-cta-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; border-radius: 10px; font-weight: 700; font-size: 13.5px; }
.mob-cta-btn.call { background: var(--primary-pale); color: var(--primary); }
.mob-cta-btn.book { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: var(--white); }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 9px; padding: 15px 28px; border-radius: 12px; font-weight: 700; font-size: 15.5px; border: none; transition: var(--transition); white-space: nowrap; }
.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 10px 26px rgba(41,85,168,0.3); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 14px 32px rgba(41,85,168,0.4); }
.btn-accent { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: var(--white); box-shadow: 0 10px 26px rgba(216,40,40,0.32); }
.btn-accent:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(216,40,40,0.42); }
.btn-white { background: var(--white); color: var(--primary); box-shadow: 0 10px 26px rgba(0,0,0,0.14); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0,0,0,0.2); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.55); }
.btn-outline:hover { background: var(--white); color: var(--primary); transform: translateY(-3px); }
.btn-outline-navy { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.btn-outline-navy:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); border-color: var(--white); transform: translateY(-3px); }
.btn-wa { background: linear-gradient(135deg, #25d366, #1ebc59); color: var(--white); box-shadow: 0 10px 24px rgba(37,211,102,0.32); }
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(37,211,102,0.42); }
.btn-block { width: 100%; justify-content: center; }

/* ===== SECTIONS ===== */
.section { padding: 96px 0; position: relative; }
.section-light { background: var(--white); }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--navy); color: #B9C6DA; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark .section-subtitle { color: #93A4BE; }

.section-head { text-align: center; max-width: 700px; margin: 0 auto 52px; }
.section-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--primary-pale); color: var(--primary); padding: 7px 17px; border-radius: 30px; font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 18px; }
.section-dark .section-badge { background: rgba(255,255,255,0.1); color: #8FB2ED; }
.section-title { font-size: 40px; font-weight: 700; margin-bottom: 18px; letter-spacing: -0.01em; }
.section-title span { color: var(--accent); }
.section-subtitle { font-size: 16.5px; color: var(--text-light); }

/* ===== HERO (HOME) ===== */
.hero { position: relative; display: flex; align-items: center; padding: 118px 0 56px; background: linear-gradient(115deg, rgba(14,27,51,0.94) 0%, rgba(14,27,51,0.88) 38%, rgba(41,85,168,0.68) 72%, rgba(216,40,40,0.42) 100%), url('https://images.unsplash.com/photo-1695425173758-37e9c23b962a?auto=format&fit=crop&w=1740&q=75') center 28%/cover no-repeat; overflow: hidden; }
.hero-shape { position: absolute; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(216,40,40,0.28), transparent 70%); bottom: -180px; right: -120px; z-index: 0; }
.hero-grid { position: relative; z-index: 1; max-width: 68%; }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22); backdrop-filter: blur(6px); padding: 9px 18px; border-radius: 30px; font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 24px; }
.hero-badge i { color: #ffc84a; }
.hero-title { font-size: 54px; font-weight: 700; line-height: 1.14; letter-spacing: -0.02em; margin-bottom: 22px; color: var(--white); }
.hero-title span { color: #FF8A7E; }
.hero-subtitle { font-size: 17.5px; color: rgba(255,255,255,0.82); margin-bottom: 32px; max-width: 640px; }
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-trust-stars { display: flex; align-items: center; gap: 5px; color: #ffb524; font-size: 13.5px; }
.hero-trust-row span { font-size: 13.5px; color: rgba(255,255,255,0.75); font-weight: 500; }

/* Hero voucher capsules */
.hero-pills-label { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.hero-pills-label::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.16); }
.hero-voucher-pills { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero-voucher-pill { display: inline-flex; align-items: center; gap: 10px; padding: 9px 20px 9px 10px; border-radius: 40px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22); backdrop-filter: blur(8px); color: var(--white); font-weight: 700; font-size: 14px; transition: var(--transition); }
.hero-voucher-pill:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.hero-voucher-pill-icon { width: 30px; height: 30px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; padding: 4px; }
.hero-voucher-pill-icon img { width: 100%; height: 100%; object-fit: contain; }
.hero-voucher-pill-icon i { font-size: 13px; }

.hero-stat-strip { position: relative; z-index: 1; display: flex; gap: 0; max-width: 620px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); backdrop-filter: blur(10px); border-radius: 16px; overflow: hidden; }
.hero-stat-item { flex: 1; display: flex; align-items: center; gap: 12px; padding: 18px 22px; border-right: 1px solid rgba(255,255,255,0.14); }
.hero-stat-item:last-child { border-right: none; }
.hero-stat-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.14); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.hero-stat-item strong { display: block; font-family: 'Poppins', sans-serif; font-size: 17px; color: var(--white); }
.hero-stat-item span { font-size: 11.5px; color: rgba(255,255,255,0.7); }

/* ===== VOUCHER LOGOS BAND (ABOVE FOOTER, BIG LOGOS) ===== */
.logos-band { background: var(--bg-light); padding: 70px 0; }
.logos-band-label { text-align: center; font-size: 12.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 32px; }
.logos-band-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 28px; }
.logos-band-item { display: flex; align-items: center; justify-content: center; height: 132px; width: 240px; padding: 26px 34px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); transition: var(--transition); }
.logos-band-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.logos-band-item img { max-height: 84px; max-width: 100%; width: auto; height: auto; object-fit: contain; }
.logos-band-item i { font-size: 46px; }

/* ===== CARD SLIDER (SHARED: VOUCHERS + TESTIMONIALS) ===== */
.card-slider { position: relative; }
.card-slider-viewport { overflow: hidden; }
.card-slider-track { display: flex; gap: 28px; will-change: transform; }
.card-slider-item { flex: 0 0 calc((100% - 56px) / 3); min-width: 0; display: flex; }
.card-slider-nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 40px; }
.card-slider-arrow { width: 46px; height: 46px; border-radius: 50%; background: var(--white); border: 1.5px solid var(--border); color: var(--primary); display: flex; align-items: center; justify-content: center; transition: var(--transition); flex-shrink: 0; }
.card-slider-arrow:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.card-slider-dots { display: flex; gap: 8px; }
.card-slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: var(--transition); }
.card-slider-dot.active { background: var(--accent); width: 26px; border-radius: 4px; }

/* ===== VOUCHERS (CLEAN RECEIPT CARDS) ===== */
.vouchers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.voucher-card { position: relative; width: 100%; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; }
.voucher-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.voucher-card-tag { position: absolute; top: 16px; left: 16px; background: var(--navy); color: var(--white); font-size: 10.5px; font-weight: 800; padding: 6px 13px; border-radius: 20px; letter-spacing: 0.05em; z-index: 2; }
.voucher-card-save { position: absolute; top: 16px; right: 16px; background: var(--accent); color: var(--white); font-size: 11px; font-weight: 800; padding: 6px 13px; border-radius: 20px; z-index: 2; box-shadow: 0 6px 14px rgba(216,40,40,0.35); }
.voucher-card-logo-panel { padding: 42px 24px; min-height: 160px; display: flex; align-items: center; justify-content: center; }
.voucher-card-logo-panel img { max-height: 58px; max-width: 68%; width: auto; object-fit: contain; }
.voucher-card-logo-panel i { font-size: 46px; }
.voucher-card-body { padding: 28px 30px 30px; flex: 1; display: flex; flex-direction: column; text-align: center; }
.voucher-card-title { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 800; letter-spacing: 0.01em; text-transform: uppercase; color: var(--primary); margin-bottom: 6px; }
.voucher-card-fullname { font-size: 12.5px; color: var(--text-light); margin-bottom: 18px; }
.voucher-card-divider { width: 46px; height: 3px; background: var(--accent); margin: 0 auto 20px; border-radius: 3px; }
.voucher-card-price-row { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--border); }
.voucher-card-price-row .label { font-size: 14px; font-weight: 600; color: var(--text-light); }
.voucher-card-price-row .was { font-size: 15px; font-weight: 700; color: var(--accent-dark); text-decoration: line-through; }
.voucher-card-price-row.now { border-bottom: none; }
.voucher-card-price-row.now .label { color: var(--navy); font-weight: 700; font-size: 15px; }
.voucher-card-price-row.now .value { font-family: 'Poppins', sans-serif; font-size: 25px; font-weight: 800; color: var(--navy); }
.voucher-card-cta { margin-top: 20px; display: flex; align-items: center; justify-content: center; gap: 9px; background: var(--primary); color: var(--white); padding: 14px; border-radius: 10px; font-weight: 700; font-size: 15px; width: 100%; transition: var(--transition); }
.voucher-card-cta:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(41,85,168,0.35); }

/* ===== WHY CHOOSE US (FEATURE ROWS) ===== */
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 40px; }
.feature-row { display: flex; gap: 20px; align-items: flex-start; padding: 24px; border-radius: var(--radius); transition: var(--transition); border: 1px solid transparent; }
.feature-row:hover { background: var(--white); border-color: var(--border); box-shadow: var(--shadow); transform: translateX(6px); }
.feature-row-icon { width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 21px; flex-shrink: 0; box-shadow: 0 10px 22px rgba(41,85,168,0.28); }
.feature-row:nth-child(even) .feature-row-icon { background: linear-gradient(135deg, var(--accent), var(--accent-light)); box-shadow: 0 10px 22px rgba(216,40,40,0.28); }
.feature-row-text h3 { font-size: 18px; margin-bottom: 6px; }
.feature-row-text p { font-size: 14px; color: var(--text-light); }

/* ===== HOW IT WORKS (STEPPER) ===== */
.stepper { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }
.stepper-step { text-align: center; position: relative; padding: 0 8px; }
.stepper-num { width: 60px; height: 60px; border-radius: 16px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 22px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 12px 26px rgba(41,85,168,0.3); position: relative; z-index: 1; }
.stepper-step:nth-child(even) .stepper-num { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); box-shadow: 0 12px 26px rgba(216,40,40,0.3); }
.stepper-connector { position: absolute; top: 28px; left: 50%; width: calc(100% + 20px); height: 3px; z-index: 0; background-image: repeating-linear-gradient(90deg, var(--accent) 0 8px, transparent 8px 16px); background-size: 32px 3px; animation: stepper-flow 0.9s linear infinite; }
.stepper-step:last-child .stepper-connector { display: none; }
@keyframes stepper-flow { from { background-position: 0 0; } to { background-position: -32px 0; } }
.stepper-step h3 { font-size: 17px; margin-bottom: 8px; }
.stepper-step p { font-size: 13.5px; color: var(--text-light); }

/* ===== SPLIT SECTIONS ===== */
.split-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.split-grid.reverse { grid-template-columns: 1.1fr 0.9fr; }
.split-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--primary-pale); color: var(--primary); padding: 7px 16px; border-radius: 30px; font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.split-text h2 { font-size: 34px; margin-bottom: 18px; }
.split-text p { color: var(--text-light); margin-bottom: 16px; font-size: 15.5px; }
.split-list { margin: 22px 0; }
.split-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 15px; color: var(--text); }
.split-list i { color: var(--white); background: var(--accent); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; margin-top: 2px; }

.media-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3.3; }
.media-frame-full { width: 100%; aspect-ratio: 4 / 3.6; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,27,51,0) 55%, rgba(14,27,51,0.4) 100%); pointer-events: none; }
.media-badge { position: absolute; z-index: 2; background: var(--white); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 14px 18px; display: flex; align-items: center; gap: 12px; }
.media-badge-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; background: var(--accent-pale); color: var(--accent); }
.media-badge strong { display: block; font-size: 16px; color: var(--navy); font-family: 'Poppins', sans-serif; }
.media-badge span { font-size: 11.5px; color: var(--text-light); }
.media-badge.pos-br { bottom: -18px; right: -14px; }
.media-badge.pos-tl { top: -18px; left: -14px; }

/* ===== STATS BAND (BOXED, DIAMOND ICONS, FLIP-IN REVEAL) ===== */
.stats-band { position: relative; overflow: hidden; background: radial-gradient(circle at 12% 20%, rgba(41,85,168,0.45), transparent 46%), radial-gradient(circle at 88% 80%, rgba(216,40,40,0.4), transparent 46%), var(--navy); }
.stats-band::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 24px 24px; pointer-events: none; }
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; position: relative; z-index: 1; }
.stat-block { position: relative; text-align: center; padding: 36px 22px; background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.14); border-radius: 20px; backdrop-filter: blur(8px); transition: var(--transition); overflow: hidden; }
.stat-block::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary-light), var(--accent)); }
.stat-block:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.32); background: rgba(255,255,255,0.08); }
.stat-icon { position: relative; z-index: 1; width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg, var(--primary-light), var(--accent)); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; transform: rotate(45deg); box-shadow: 0 10px 24px rgba(0,0,0,0.35); }
.stat-icon i { transform: rotate(-45deg); color: var(--white); font-size: 20px; }
.stat-num { position: relative; z-index: 1; font-family: 'Poppins', sans-serif; font-size: 36px; font-weight: 800; color: var(--white); letter-spacing: -0.01em; }
.stat-block span:not(.stat-icon) { position: relative; z-index: 1; display: block; font-size: 12.5px; color: #93A4BE; margin-top: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.stat-flip { opacity: 0; transform: perspective(800px) rotateX(-65deg); transform-origin: center top; transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1); }
.stat-flip.visible { opacity: 1; transform: perspective(800px) rotateX(0deg); }

/* ===== TESTIMONIALS (PREMIUM SPOTLIGHT SLIDER) ===== */
.testimonial-card-premium { position: relative; width: 100%; background: linear-gradient(150deg, var(--navy) 0%, var(--navy-alt) 100%); border-radius: 24px; padding: 36px 30px; box-shadow: 0 20px 46px rgba(14,27,51,0.3); border: 1px solid rgba(255,255,255,0.08); text-align: center; overflow: hidden; display: flex; flex-direction: column; }
.testimonial-card-premium::before { content: ''; position: absolute; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(216,40,40,0.22), transparent 70%); top: -90px; right: -70px; }
.testimonial-quote-icon { position: relative; z-index: 1; width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-light), var(--accent)); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 16px; margin: 0 auto 18px; box-shadow: 0 12px 24px rgba(0,0,0,0.3); }
.testimonial-stars { position: relative; z-index: 1; color: #ffb524; font-size: 12.5px; margin-bottom: 16px; }
.testimonial-quote-text { position: relative; z-index: 1; font-family: 'Manrope', sans-serif; font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,0.9); line-height: 1.7; margin-bottom: 22px; flex: 1; }
.testimonial-person { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-light), var(--accent)); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14.5px; margin-bottom: 10px; border: 2px solid rgba(255,255,255,0.15); }
.testimonial-person strong { display: block; font-size: 14.5px; color: var(--white); }
.testimonial-person span { font-size: 11.5px; color: rgba(255,255,255,0.55); margin-top: 2px; }

/* ===== FAQ (SINGLE COLUMN) ===== */
.faq-single { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; transition: var(--transition); }
.faq-item.active { border-color: var(--primary); box-shadow: var(--shadow); }
.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; font-weight: 700; font-size: 15.5px; color: var(--navy); border: none; background: none; width: 100%; text-align: left; }
.faq-question-icon { width: 30px; height: 30px; border-radius: 8px; background: var(--primary-pale); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); }
.faq-item.active .faq-question-icon { background: var(--accent); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 24px 22px; font-size: 14.5px; color: var(--text-light); }

/* ===== CTA PANEL (DIAGONAL) ===== */
.cta-panel { position: relative; background: linear-gradient(120deg, var(--navy) 0%, var(--primary-dark) 55%, var(--accent-dark) 130%); border-radius: var(--radius-lg); padding: 58px 60px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; overflow: hidden; box-shadow: 0 26px 60px rgba(14,27,51,0.35); }
.cta-panel::before { content: ''; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,0.06); top: -160px; right: -60px; }
.cta-panel-text { position: relative; z-index: 1; max-width: 620px; }
.cta-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.14); color: var(--white); padding: 7px 16px; border-radius: 30px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; border: 1px solid rgba(255,255,255,0.18); }
.cta-panel h2 { color: var(--white); font-size: 32px; margin-bottom: 10px; }
.cta-panel p { color: rgba(255,255,255,0.85); font-size: 15.5px; }
.cta-trust-row { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 22px; }
.cta-trust-row span { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.92); }
.cta-trust-row i { color: #FF8A7E; font-size: 12px; }
.cta-panel-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ===== CTA WITH BACKGROUND IMAGE ===== */
.cta-image-panel { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 420px; display: flex; align-items: center; box-shadow: 0 26px 60px rgba(14,27,51,0.35); background: linear-gradient(115deg, rgba(14,27,51,0.92) 0%, rgba(14,27,51,0.82) 45%, rgba(216,40,40,0.55) 100%), url('https://images.unsplash.com/photo-1765005343987-6bf51ae692c4?auto=format&fit=crop&w=1740&q=75') center 22%/cover no-repeat; }
.cta-image-content { position: relative; z-index: 1; padding: 64px; max-width: 640px; }
.cta-image-content h2 { color: var(--white); font-size: 36px; margin-bottom: 14px; }
.cta-image-content p { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 28px; }
.cta-image-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== PAGE HERO (INNER PAGES) — PHOTO BACKGROUND ===== */
.page-hero { position: relative; padding: 168px 0 84px; background-size: cover; background-position: center; background-repeat: no-repeat; overflow: hidden; }
.page-hero-content { position: relative; z-index: 1; max-width: 620px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.breadcrumb a { color: var(--white); font-weight: 700; }
.page-hero-title { font-size: 42px; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.01em; color: var(--white); }
.page-hero-title span { color: #FF8A7E; }
.page-hero-sub { font-size: 16px; color: rgba(255,255,255,0.82); max-width: 520px; }
.title-icon-badge { width: 52px; height: 52px; border-radius: 14px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22); color: var(--white); display: inline-flex; align-items: center; justify-content: center; font-size: 21px; flex-shrink: 0; }

/* ===== FORMS ===== */
.form-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 40px; border: 1px solid var(--border); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 14.5px; font-family: inherit; color: var(--text); transition: var(--transition); background: var(--bg-light); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 4px rgba(41,85,168,0.12); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--text-light); margin-top: 16px; justify-content: center; }
.form-alert { padding: 14px 18px; border-radius: 10px; font-size: 14px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.form-alert.success { background: #e6f8ee; color: #1a8a4a; }
.form-alert.error { background: var(--accent-pale); color: var(--accent-dark); }

.contact-panel { background: linear-gradient(150deg, var(--navy) 0%, var(--navy-alt) 100%); border-radius: var(--radius-lg); padding: 46px 42px; box-shadow: 0 26px 60px rgba(14,27,51,0.3); height: 100%; }
.contact-panel-item { display: flex; gap: 16px; align-items: flex-start; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.contact-panel-item:first-child { padding-top: 0; }
.contact-panel-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-panel-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.08); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.contact-panel-item h4 { color: var(--white); font-size: 14.5px; margin-bottom: 4px; }
.contact-panel-item p, .contact-panel-item a { font-size: 13.5px; color: rgba(255,255,255,0.65); display: block; }
.contact-panel-item a:hover { color: var(--white); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 320px; border: none; display: block; }

/* ===== MISSION / VISION ===== */
.mv-banner { background: linear-gradient(150deg, var(--navy) 0%, var(--navy-alt) 100%); border-radius: var(--radius-lg); padding: 64px 60px; position: relative; overflow: hidden; box-shadow: 0 26px 60px rgba(14,27,51,0.35); }
.mv-banner-grid { display: grid; grid-template-columns: 1fr 1fr; position: relative; z-index: 1; }
.mv-banner-col { padding: 0 44px; position: relative; }
.mv-banner-col:first-child { border-right: 1px solid rgba(255,255,255,0.12); }
.mv-banner-icon-bg { position: absolute; top: -34px; right: -6px; font-size: 130px; color: rgba(255,255,255,0.05); z-index: 0; }
.mv-banner-label { position: relative; z-index: 1; display: block; font-size: 12.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.mv-banner-col h3 { position: relative; z-index: 1; color: var(--white); font-size: 24px; margin-bottom: 16px; }
.mv-banner-col p { position: relative; z-index: 1; color: rgba(255,255,255,0.72); font-size: 15px; line-height: 1.8; }

/* ===== VALUES ===== */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card { text-align: center; padding: 30px 22px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition); }
.value-card:hover { border-color: var(--primary); transform: translateY(-6px); box-shadow: var(--shadow); }
.value-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--primary-pale); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 20px; margin: 0 auto 16px; }
.value-card:nth-child(even) .value-icon { background: var(--accent-pale); color: var(--accent); }
.value-card h4 { font-size: 16px; margin-bottom: 8px; }
.value-card p { font-size: 13.5px; color: var(--text-light); }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h2 { font-size: 23px; margin: 38px 0 14px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--text-light); margin-bottom: 14px; font-size: 15px; }
.legal-content ul { margin: 0 0 16px 0; }
.legal-content ul li { color: var(--text-light); font-size: 15px; margin-bottom: 8px; padding-left: 24px; position: relative; }
.legal-content ul li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; top: 2px; color: var(--primary); font-size: 11px; }
.legal-updated { display: inline-flex; align-items: center; gap: 8px; background: var(--primary-pale); color: var(--primary); padding: 8px 16px; border-radius: 30px; font-size: 13px; font-weight: 700; margin-bottom: 30px; }

/* ===== FOOTER ===== */
.footer { position: relative; overflow: hidden; color: #9FB0C8; background: radial-gradient(circle at 12% 15%, rgba(41,85,168,0.5), transparent 42%), radial-gradient(circle at 90% 85%, rgba(216,40,40,0.4), transparent 42%), linear-gradient(rgba(14,27,51,0.8), rgba(14,27,51,0.85)), url('https://images.unsplash.com/photo-1758873269276-9518d0cb4a0b?auto=format&fit=crop&w=1740&q=70') center/cover no-repeat; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary-light), var(--accent)); z-index: 2; }
.footer-top { padding: 72px 0 0; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 44px; padding-bottom: 46px; }
.footer-brand { margin-bottom: 18px; }
.footer-logo-badge { display: inline-flex; background: var(--white); border-radius: 12px; padding: 8px 14px; }
.footer-logo-badge img { height: 42px; }
.footer-col p { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.footer-wa-btn { display: inline-flex; align-items: center; gap: 9px; background: linear-gradient(135deg, #25d366, #1ebc59); color: var(--white); padding: 11px 20px; border-radius: 9px; font-weight: 700; font-size: 14px; margin-bottom: 20px; }
.footer-wa-btn:hover { filter: brightness(1.08); }
.footer-gst { font-size: 12.5px; color: #7C93A8; display: flex; align-items: center; gap: 8px; }
.footer-col h4 { color: var(--white); font-size: 16px; margin-bottom: 22px; font-family: 'Poppins', sans-serif; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 14px; color: #9FB0C8; display: flex; align-items: center; gap: 8px; }
.footer-col ul li a i { font-size: 10px; color: var(--accent-light); }
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.footer-contact-list i { color: var(--accent-light); font-size: 15px; margin-top: 3px; flex-shrink: 0; }
.footer-contact-list a, .footer-contact-list span { font-size: 13.5px; color: #B7C6D4; line-height: 1.6; }
.footer-trust-strip { position: relative; z-index: 1; display: flex; flex-wrap: wrap; justify-content: center; gap: 36px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; color: #B7C6D4; }
.footer-trust-item i { width: 30px; height: 30px; border-radius: 9px; background: rgba(255,255,255,0.07); color: var(--accent-light); display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.footer-bottom { position: relative; z-index: 1; border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 13px; }
.footer-bottom a { color: #9FB0C8; }
.footer-bottom a:hover { color: var(--white); }

/* ===== FLOATING WHATSAPP ===== */
.floating-wa-btn { position: fixed; bottom: 28px; right: 28px; width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, #25d366, #1ebc59); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: 0 12px 30px rgba(37,211,102,0.5); z-index: 900; animation: pulse-wa 2.5s infinite; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease; }
.floating-wa-btn:hover { transform: scale(1.08); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .hero-title { font-size: 42px; }
    .card-slider-item { flex-basis: calc((100% - 28px) / 2); }
    .vouchers-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-list { grid-template-columns: 1fr; }
    .stepper { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .stepper-connector { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 968px) {
    .nav-menu { display: none; }
    .navbar-actions { display: none; }
    .navbar-mobile-actions { display: flex; }
    .hamburger { display: flex; }
    body { padding-top: 74px; }
    .navbar .container { height: 74px; }
    .navbar-logo { height: 42px; }
    .hero { padding: 98px 0 44px; }
    .hero-grid { max-width: 100%; }
    .page-hero { padding: 118px 0 60px; }
    .split-grid, .split-grid.reverse { grid-template-columns: 1fr; }
    .hero-stat-strip { flex-wrap: wrap; max-width: 100%; }
    .hero-stat-item { flex: 1 1 50%; border-bottom: 1px solid rgba(255,255,255,0.14); }
    .split-text { order: 1; }
    .split-visual { order: 2; margin-top: 24px; }
    .hero-title { font-size: 34px; }
    .section { padding: 64px 0; }
    .section-title { font-size: 30px; }
    .cta-panel { padding: 38px; flex-direction: column; text-align: center; }
    .cta-trust-row { justify-content: center; }
    .cta-image-content { padding: 44px 32px; }
    .media-badge { display: none; }
    .logos-band-item { width: 200px; height: 112px; padding: 20px 26px; }
    .logos-band-item img { max-height: 64px; }
}
@media (max-width: 720px) {
    .stepper, .values-grid, .vouchers-grid { grid-template-columns: 1fr; }
    .card-slider-item { flex-basis: 100%; }
    .mv-banner { padding: 40px 28px; }
    .mv-banner-grid { grid-template-columns: 1fr; gap: 36px; }
    .mv-banner-col { padding: 0; }
    .mv-banner-col:first-child { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .form-row-2 { grid-template-columns: 1fr; }
    .hero-title { font-size: 28px; }
    .section-title { font-size: 26px; }
    .page-hero-title { font-size: 30px; }
    .cta-panel h2 { font-size: 24px; }
    .cta-image-content h2 { font-size: 27px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .container { padding: 0 6%; }
    .form-card { padding: 26px; }
    .logos-band-item { width: 44%; height: 96px; padding: 16px 20px; }
}
