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

:root {
    --primary: #035397;
    --primary-dark: #023d6e;
    --primary-light: #1f78c1;
    --primary-pale: #e8f1fa;
    --secondary: #071c30;
    --secondary-alt: #0a2947;
    --accent: #0f8b8d;
    --text: #16232f;
    --text-light: #5b6b7b;
    --bg-light: #f6f9fc;
    --bg-alt: #eaf3fb;
    --white: #ffffff;
    --border: #dde6ee;
    --shadow: 0 4px 24px rgba(3,83,151,0.10);
    --shadow-lg: 0 20px 60px rgba(3,83,151,0.16);
    --radius: 14px;
    --radius-lg: 22px;
    --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; color: var(--text); line-height: 1.75; background: var(--white); overflow-x: hidden; font-size: 16px; padding-top: 117px; }
h1, h2, h3, h4, h5, h6 { font-family: 'Sora', sans-serif; color: var(--secondary); line-height: 1.25; }
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: 88%; max-width: 1360px; margin: 0 auto; }

/* ===== ANIMATIONS ===== */
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-14px); } }
@keyframes float-slow { 0%, 100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-10px) rotate(3deg); } }
@keyframes pulse-ring { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(3,83,151,0.45); } 70% { transform: scale(1); box-shadow: 0 0 0 16px rgba(3,83,151,0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(3,83,151,0); } }
@keyframes pulse-whatsapp { 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 spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes gradient-shift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.fade-in { opacity: 0; transform: translateY(40px); transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1); }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(50px); transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s 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.85); 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-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; }
.delay-5 { transition-delay: 0.5s !important; } .delay-6 { transition-delay: 0.6s !important; }

/* ===== TOP BAR ===== */
.top-bar { background: var(--secondary); color: #9fb3c8; padding: 8px 0; font-size: 12.5px; position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 1001; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.top-bar-left a { color: #c3d4e3; display: flex; align-items: center; gap: 7px; }
.top-bar-left a:hover { color: var(--white); }
.top-bar-right { display: flex; align-items: center; gap: 14px; }
.top-bar-badge { display: flex; align-items: center; gap: 6px; color: #cfe0ef; font-weight: 500; }
.top-bar-badge i { color: #ffc84a; }

/* ===== NAVBAR ===== */
.mob-drawer, .mob-overlay { display: none; }
.navbar { position: fixed; top: 38px; left: 0; right: 0; width: 100%; z-index: 1000; background: rgba(255,255,255,0.96); backdrop-filter: blur(20px); box-shadow: 0 2px 20px rgba(3,83,151,0.08); transition: box-shadow 0.3s ease, height 0.3s ease, top 0.3s ease; border-bottom: 1px solid rgba(221,230,238,0.7); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 78px; transition: height 0.3s ease; }
.navbar.scrolled .container { height: 64px; }
.navbar-brand { display: flex; align-items: center; gap: 11px; }
.navbar-brand .brand-mark { width: 42px; height: 42px; border-radius: 11px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 19px; flex-shrink: 0; box-shadow: 0 6px 16px rgba(3,83,151,0.3); transition: var(--transition); }
.navbar.scrolled .brand-mark { transform: scale(0.86); }
.navbar-brand .brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.navbar-brand .brand-name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 19px; color: var(--secondary); }
.navbar-brand .brand-tag { font-size: 10.5px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--primary); font-weight: 600; }
.navbar-mobile-actions { display: none; align-items: center; gap: 10px; }
.navbar-icon-btn { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: transparent; border: 1.5px solid var(--primary); color: var(--primary); font-size: 15px; flex-shrink: 0; transition: var(--transition); }
.navbar-icon-btn:hover { background: var(--primary); color: var(--white); }
.nav-menu { display: flex; align-items: center; gap: 3px; }
.nav-menu li { position: relative; }
.nav-menu > li > a { display: flex; align-items: center; gap: 6px; padding: 10px 16px; font-weight: 500; font-size: 15px; color: var(--text); border-radius: 8px; position: relative; }
.nav-menu > li > a::after { content: ''; position: absolute; bottom: 4px; left: 50%; right: 50%; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--transition); }
.nav-menu > li > a:hover::after, .nav-menu > li > a.active::after { left: 14px; right: 14px; }
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--primary); }
.btn-nav-wa { background: var(--primary) !important; color: var(--white) !important; padding: 11px 20px !important; border-radius: 9px !important; font-weight: 600 !important; display: flex; align-items: center; gap: 8px; animation: pulse-ring 2.5s infinite; }
.btn-nav-wa::after { display: none !important; }
.btn-nav-wa:hover { background: var(--primary-dark) !important; color: var(--white) !important; transform: translateY(-2px); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 5px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--text); 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(7,28,48,0.55); 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: 20px; border-bottom: 1px solid var(--border); }
.mob-logo { display: flex; align-items: center; gap: 9px; font-family: 'Sora', sans-serif; font-weight: 700; color: var(--secondary); }
.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: 500; 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: 600; font-size: 13.5px; }
.mob-cta-btn.call { background: var(--primary-pale); color: var(--primary); }
.mob-cta-btn.enquire { background: var(--primary); color: var(--white); }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 9px; padding: 15px 28px; border-radius: 11px; font-weight: 600; font-size: 15.5px; border: none; transition: var(--transition); white-space: nowrap; }
.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 10px 28px rgba(3,83,151,0.28); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 14px 34px rgba(3,83,151,0.36); }
.btn-white { background: var(--white); color: var(--primary); box-shadow: 0 10px 28px rgba(0,0,0,0.12); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(0,0,0,0.18); }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); 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: var(--primary); color: var(--white); box-shadow: 0 10px 24px rgba(3,83,151,0.3); }
.btn-wa:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(3,83,151,0.4); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-block { width: 100%; justify-content: center; }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; position: relative; }
.section-sm { padding: 70px 0; }
.section-light { background: var(--white); }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--secondary); color: #cdd9e4; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark .section-subtitle { color: #9db3c7; }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head.left { text-align: left; margin: 0 0 44px; }
.section-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--primary-pale); color: var(--primary); padding: 7px 16px; border-radius: 30px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.section-dark .section-badge { background: rgba(255,255,255,0.1); color: #7cc0f5; }
.section-title { font-size: 42px; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.01em; }
.section-line { width: 60px; height: 3px; background: var(--primary); border-radius: 3px; margin: 0 auto 20px; }
.section-head.left .section-line { margin: 0 0 20px; }
.section-subtitle { font-size: 17px; color: var(--text-light); }

/* ===== HERO (HOME) ===== */
.hero { position: relative; padding: 76px 0 100px; background: linear-gradient(160deg, #f4f9fd 0%, #eaf3fb 55%, #ddeaf6 100%); overflow: hidden; }
.hero-glow { position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(3,83,151,0.14), transparent 70%); top: -160px; right: -120px; z-index: 0; }
.hero-glow-2 { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(15,139,141,0.12), transparent 70%); bottom: -140px; left: -100px; z-index: 0; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; background: var(--white); padding: 9px 18px; border-radius: 30px; font-size: 13.5px; font-weight: 600; color: var(--primary); box-shadow: var(--shadow); margin-bottom: 24px; }
.hero-badge i { color: #ffc84a; }
.hero-title { font-size: 52px; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 22px; }
.hero-title span { color: var(--primary); position: relative; }
.hero-subtitle { font-size: 18px; color: var(--text-light); margin-bottom: 34px; max-width: 520px; }
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-trust-stars { display: flex; align-items: center; gap: 6px; color: #ffb524; font-size: 14px; }
.hero-trust-row span { font-size: 13.5px; color: var(--text-light); font-weight: 500; }

.hero-visual { position: relative; }
.mockup-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; transform: perspective(1000px) rotateY(-6deg) rotateX(2deg); animation: float 6s ease-in-out infinite; transition: background 0.6s ease; }
.mockup-bar { display: flex; align-items: center; gap: 6px; padding: 14px 18px; background: rgba(0,0,0,0.025); border-bottom: 1px solid rgba(0,0,0,0.06); }
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; background: #dde6ee; }
.mockup-dot:nth-child(1) { background: #ff5f57; } .mockup-dot:nth-child(2) { background: #febc2e; } .mockup-dot:nth-child(3) { background: #28c840; }
.mockup-body { padding: 26px; }
.mockup-voucher-slider { position: relative; margin-bottom: 18px; }
.mockup-voucher-slide { display: none; }
.mockup-voucher-slide.active { display: block; animation: heroSlideIn 0.55s cubic-bezier(0.4,0,0.2,1); }
@keyframes heroSlideIn { from { opacity: 0; transform: translateY(10px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.hero-slide-dots { display: flex; justify-content: center; gap: 7px; margin-top: -6px; margin-bottom: 4px; }
.hero-slide-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border); cursor: pointer; transition: var(--transition); }
.hero-slide-dot.active { background: var(--primary); width: 22px; border-radius: 4px; }
.mockup-voucher { background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 16px; padding: 22px; color: var(--white); position: relative; overflow: hidden; }
.mockup-voucher::after { content: ''; position: absolute; right: -30px; top: -30px; width: 120px; height: 120px; border-radius: 50%; background: rgba(255,255,255,0.08); }
.mockup-voucher-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 22px; }
.mockup-voucher-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; font-size: 17px; }
.mockup-voucher-icon-logo { background: var(--white); padding: 7px; }
.mockup-voucher-icon-logo img { width: 100%; height: 100%; object-fit: contain; }
.mockup-voucher-badge { background: rgba(255,255,255,0.2); padding: 5px 12px; border-radius: 20px; font-size: 11.5px; font-weight: 700; }
.mockup-voucher-name { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.mockup-voucher-sub { font-size: 12.5px; opacity: 0.85; }
.mockup-voucher-price { display: flex; align-items: baseline; gap: 8px; margin-top: 16px; }
.mockup-voucher-price .now { font-size: 24px; font-weight: 700; }
.mockup-voucher-price .was { font-size: 13.5px; text-decoration: line-through; opacity: 0.65; }
.mockup-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.mockup-row:last-child { border-bottom: none; }
.mockup-row-icon { width: 34px; height: 34px; border-radius: 9px; background: var(--primary-pale); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.mockup-row-text { flex: 1; }
.mockup-row-text strong { display: block; font-size: 13.5px; color: var(--secondary); }
.mockup-row-text span { font-size: 12px; color: var(--text-light); }
.mockup-row-check { color: var(--accent); font-size: 15px; }

.float-chip { position: absolute; background: var(--white); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 14px 18px; display: flex; align-items: center; gap: 12px; z-index: 2; }
.float-chip-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.float-chip strong { display: block; font-size: 16px; color: var(--secondary); font-family: 'Sora', sans-serif; }
.float-chip span { font-size: 11.5px; color: var(--text-light); }
.chip-1 { top: 6%; left: -8%; animation: float 5s ease-in-out infinite; }
.chip-1 .float-chip-icon { background: #e6f8ee; color: #1ebc59; }
.chip-2 { bottom: 10%; right: -10%; animation: float 5.5s ease-in-out infinite 0.6s; }
.chip-2 .float-chip-icon { background: #fff4de; color: #ffab00; }

/* ===== TRUST / MARQUEE ===== */
.trust-bar { background: var(--white); padding: 34px 0; border-bottom: 1px solid var(--border); overflow: hidden; }
.trust-label { text-align: center; font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 22px; }
.marquee-track { display: flex; gap: 40px; width: max-content; animation: marquee-scroll 26s linear infinite; }
.marquee-item { display: flex; align-items: center; gap: 10px; padding: 12px 22px; background: var(--bg-light); border-radius: 30px; font-weight: 700; font-size: 14.5px; color: var(--secondary); white-space: nowrap; border: 1px solid var(--border); }
.marquee-item i { color: var(--primary); font-size: 15px; }
.marquee-logo-card { display: flex; align-items: center; justify-content: center; height: 64px; padding: 10px 26px; background: var(--white); border-radius: 14px; border: 1px solid var(--border); transition: var(--transition); }
.marquee-logo-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: transparent; }
.marquee-logo-card img { max-height: 32px; max-width: 130px; width: auto; height: auto; object-fit: contain; }

/* ===== WHY CHOOSE US ===== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card { background: var(--white); border-radius: var(--radius-lg); padding: 34px 28px; box-shadow: var(--shadow); border: 1px solid var(--border); transition: var(--transition); position: relative; }
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.why-icon { width: 58px; height: 58px; 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: 23px; margin-bottom: 20px; box-shadow: 0 10px 24px rgba(3,83,151,0.25); }
.why-card h3 { font-size: 19px; margin-bottom: 10px; }
.why-card p { font-size: 14.5px; color: var(--text-light); }
.why-num { position: absolute; top: 24px; right: 28px; font-family: 'Sora', sans-serif; font-size: 34px; font-weight: 800; color: var(--bg-alt); }

/* ===== VOUCHERS / SERVICES ===== */
.vouchers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.voucher-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--border); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; position: relative; }
.voucher-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.voucher-logo-banner { position: relative; width: 100%; height: 128px; display: flex; align-items: center; justify-content: center; padding: 22px 32px; border-bottom: 1px solid var(--border); }
.voucher-logo-img { max-height: 54px; max-width: 100%; width: auto; object-fit: contain; }
.voucher-icon-fallback { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; box-shadow: 0 10px 22px rgba(0,0,0,0.18); }
.voucher-ribbon { position: absolute; top: 18px; right: 0; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); font-weight: 700; font-size: 13px; padding: 8px 22px 8px 28px; clip-path: polygon(16px 0, 100% 0, 100% 100%, 16px 100%, 0 50%); box-shadow: 0 6px 16px rgba(0,0,0,0.2); z-index: 2; letter-spacing: 0.01em; }
.voucher-body { padding: 22px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.voucher-body h3 { font-size: 20px; margin-bottom: 4px; }
.voucher-body .voucher-full-name { font-size: 13px; color: var(--text-light); margin-bottom: 18px; }
.voucher-price-row { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; margin-bottom: 18px; }
.voucher-price-row .price-now { font-family: 'Sora', sans-serif; font-size: 27px; font-weight: 700; color: var(--primary); }
.voucher-price-row .price-was { font-size: 13.5px; font-weight: 700; color: #c0392b; text-decoration: line-through; text-decoration-thickness: 1.5px; background: #fdeaea; padding: 2px 9px; border-radius: 6px; }
.voucher-features { margin-bottom: 22px; flex: 1; }
.voucher-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--text-light); margin-bottom: 9px; }
.voucher-features i { color: var(--accent); font-size: 12px; margin-top: 3px; }
.voucher-enquire-btn { display: flex; align-items: center; justify-content: center; gap: 9px; background: var(--primary); color: var(--white); padding: 13px; border-radius: 10px; font-weight: 600; font-size: 14.5px; width: 100%; transition: var(--transition); }
.voucher-enquire-btn:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(3,83,151,0.35); }
.voucher-tag-popular { position: absolute; top: -1px; left: 24px; background: var(--secondary); color: var(--white); font-size: 11px; font-weight: 700; padding: 6px 14px; border-radius: 0 0 8px 8px; letter-spacing: 0.04em; z-index: 2; }

/* ===== HOW IT WORKS ===== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-step { text-align: center; position: relative; padding: 0 10px; }
.process-num { width: 64px; height: 64px; border-radius: 50%; background: var(--white); border: 2px solid var(--primary); color: var(--primary); font-family: 'Sora', sans-serif; font-weight: 700; font-size: 22px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; position: relative; z-index: 1; box-shadow: var(--shadow); }
.process-step h3 { font-size: 17px; margin-bottom: 8px; }
.process-step p { font-size: 13.5px; color: var(--text-light); }
.process-line { position: absolute; top: 32px; left: 50%; width: 100%; height: 2px; background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px); z-index: 0; }
.process-step:last-child .process-line { display: none; }

/* ===== ABOUT SNIPPET / SPLIT ===== */
.split-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.split-grid.reverse { grid-template-columns: 1.1fr 0.9fr; }
.split-visual { position: relative; }
.about-illustration { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 30px; }
.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: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.split-text h2 { font-size: 36px; 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(--primary); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; margin-top: 2px; }

/* ===== STATS ===== */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; padding: 12px; }
.stat-icon { width: 62px; height: 62px; border-radius: 16px; background: linear-gradient(135deg, var(--primary-light), var(--primary)); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 25px; margin: 0 auto 18px; box-shadow: 0 10px 26px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.15); }
.stat-num { font-family: 'Sora', sans-serif; font-size: 40px; font-weight: 800; color: var(--white); }
.stat-item span:not(.stat-icon) { display: block; font-size: 14px; color: #9db3c7; margin-top: 6px; font-weight: 500; }
.section-light .stat-num, .section-alt .stat-num { color: var(--primary); }
.section-light .stat-icon, .section-alt .stat-icon { box-shadow: 0 10px 26px rgba(3,83,151,0.28); }
.section-light .stat-item span:not(.stat-icon), .section-alt .stat-item span:not(.stat-icon) { color: var(--text-light); }

/* ===== MISSION / VISION (FULL WIDTH) ===== */
.mv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.mv-card { background: var(--white); border-radius: var(--radius-lg); padding: 48px 44px; box-shadow: var(--shadow); border: 1px solid var(--border); border-top: 4px solid var(--primary); transition: var(--transition); position: relative; overflow: hidden; }
.mv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mv-card::after { content: ''; position: absolute; width: 160px; height: 160px; border-radius: 50%; background: var(--primary-pale); top: -70px; right: -70px; z-index: 0; }
.mv-icon { position: relative; z-index: 1; width: 72px; height: 72px; border-radius: 18px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 30px; margin-bottom: 26px; box-shadow: 0 12px 28px rgba(3,83,151,0.3); }
.mv-card h3 { position: relative; z-index: 1; font-size: 24px; margin-bottom: 14px; }
.mv-card p { position: relative; z-index: 1; font-size: 15.5px; color: var(--text-light); line-height: 1.8; }

/* ===== VALUES (ABOUT) ===== */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.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: 21px; margin: 0 auto 16px; }
.value-card h4 { font-size: 16.5px; margin-bottom: 8px; }
.value-card p { font-size: 13.5px; color: var(--text-light); }

/* ===== TESTIMONIALS ===== */
.testimonial-slider-wrap { position: relative; overflow: hidden; }
.testimonial-track { display: flex; gap: 24px; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); border: 1px solid var(--border); flex-shrink: 0; }
.t-stars { color: #ffb524; font-size: 14px; margin-bottom: 14px; }
.testimonial-card p.t-text { font-size: 15px; color: var(--text); margin-bottom: 22px; font-style: italic; }
.t-person { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.t-person strong { display: block; font-size: 14.5px; color: var(--secondary); }
.t-person span { font-size: 12.5px; color: var(--text-light); }
.slider-nav { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 36px; }
.slider-arrow { width: 44px; height: 44px; 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); }
.slider-arrow:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: var(--transition); cursor: pointer; }
.slider-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-columns { display: flex; gap: 28px; max-width: 1180px; margin: 0 auto; align-items: flex-start; }
.faq-col { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.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; padding: 20px 24px; font-weight: 600; font-size: 15.5px; color: var(--secondary); border: none; background: none; width: 100%; text-align: left; }
.faq-question i { color: var(--primary); transition: var(--transition); flex-shrink: 0; margin-left: 16px; }
.faq-item.active .faq-question i { 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 BANNER ===== */
.cta-banner { background: linear-gradient(135deg, var(--primary-dark), var(--primary) 55%, var(--primary-light)); border-radius: var(--radius-lg); padding: 60px 64px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; position: relative; overflow: hidden; box-shadow: 0 24px 60px rgba(3,83,151,0.35); border: 1px solid rgba(255,255,255,0.08); }
.cta-banner::before { content: ''; position: absolute; width: 340px; height: 340px; border-radius: 50%; background: rgba(255,255,255,0.07); top: -160px; right: -80px; }
.cta-banner::after { content: ''; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,0.05); bottom: -120px; left: -60px; }
.cta-banner-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: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; border: 1px solid rgba(255,255,255,0.18); }
.cta-banner h2 { color: var(--white); font-size: 33px; margin-bottom: 10px; position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,0.88); font-size: 15.5px; position: relative; z-index: 1; margin-bottom: 0; }
.cta-trust-row { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 22px; }
.cta-trust-row span { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.92); }
.cta-trust-row i { color: #ffd76a; font-size: 12px; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ===== PAGE HERO (INNER PAGES) ===== */
.page-hero { padding: 60px 0 90px; background: linear-gradient(160deg, #f4f9fd 0%, #eaf3fb 60%, #ddeaf6 100%); position: relative; overflow: hidden; }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-light); margin-bottom: 20px; }
.breadcrumb a { color: var(--primary); font-weight: 600; }
.page-hero-title { font-size: 44px; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.01em; }
.page-hero-title span { color: var(--primary); }
.page-hero-sub { font-size: 16.5px; color: var(--text-light); max-width: 500px; }

/* ===== PHOTO FRAME (REAL IMAGES) ===== */
.photo-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3.4; z-index: 1; border: 6px solid var(--white); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3,83,151,0) 55%, rgba(3,25,45,0.35) 100%); pointer-events: none; }

/* ===== ILLUSTRATION WRAPPER ===== */
.illus-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.illus-ring { position: absolute; border-radius: 50%; border: 2px dashed rgba(3,83,151,0.18); }
.illus-ring.r1 { width: 90%; height: 90%; animation: spin-slow 30s linear infinite; }
.illus-ring.r2 { width: 70%; height: 70%; animation: spin-slow 22s linear infinite reverse; }

/* ===== 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: 600; color: var(--secondary); 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(3,83,151,0.1); }
.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: #fdeaea; color: #c0392b; }

.contact-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 34px; }
.contact-info-card { background: var(--white); border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); display: flex; gap: 16px; align-items: flex-start; transition: var(--transition); }
.contact-info-card:hover { box-shadow: var(--shadow); border-color: transparent; transform: translateY(-4px); }
.contact-info-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--primary-pale); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-info-card h4 { font-size: 15px; margin-bottom: 5px; }
.contact-info-card p, .contact-info-card a { font-size: 13.5px; color: var(--text-light); display: block; }
.contact-info-card a:hover { color: var(--primary); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 340px; border: none; display: block; }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h2 { font-size: 24px; margin: 40px 0 14px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 17px; margin: 22px 0 10px; color: var(--primary); }
.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: 22px; 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: 600; margin-bottom: 30px; }

/* ===== FOOTER ===== */
.footer { background: var(--secondary); color: #9fb3c8; }
.footer-top { padding: 76px 0 44px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 44px; }
.footer-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.footer-brand .brand-mark { width: 42px; height: 42px; border-radius: 11px; background: linear-gradient(135deg, var(--primary-light), var(--primary)); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 19px; }
.footer-brand .brand-name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 19px; color: var(--white); }
.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: var(--primary); color: var(--white); padding: 11px 20px; border-radius: 9px; font-weight: 600; font-size: 14px; margin-bottom: 20px; }
.footer-wa-btn:hover { background: var(--primary-dark); }
.footer-social { display: flex; gap: 10px; margin-bottom: 18px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06); color: #9fb3c8; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.footer-social a:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.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: 'Sora', sans-serif; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 14px; color: #9fb3c8; display: flex; align-items: center; gap: 8px; }
.footer-col ul li a i { font-size: 10px; color: var(--primary-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(--primary-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-rating { display: flex; align-items: center; gap: 10px; padding: 14px; background: rgba(255,255,255,0.05); border-radius: 12px; margin-top: 18px; }
.footer-rating-stars { color: #ffb524; font-size: 13px; }
.footer-rating-text { font-size: 12px; color: #9fb3c8; margin-top: 2px; }
.footer-bottom { 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: #9fb3c8; }
.footer-bottom a:hover { color: var(--white); }

/* ===== FLOATING WHATSAPP + SCROLL TOP ===== */
.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-whatsapp 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; }
    .hero-grid { gap: 40px; }
    .vouchers-grid, .why-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-row, .process-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 968px) {
    .nav-menu, .top-bar { display: none; }
    .navbar-mobile-actions { display: flex; }
    .hamburger { display: flex; }
    .mob-drawer, .mob-overlay { display: block; }
    .navbar { top: 0; }
    body { padding-top: 79px; }
    .hero { padding: 40px 0 70px; }
    .hero-grid, .split-grid, .split-grid.reverse, .page-hero-grid, .mv-grid { grid-template-columns: 1fr; }
    .hero-visual { max-width: 420px; margin: 0 auto 20px; }
    .split-text { order: 1; }
    .split-visual { order: 2; margin-top: 24px; }
    .hero-title { font-size: 36px; }
    .section { padding: 70px 0; }
    .section-title { font-size: 32px; }
    .cta-banner { padding: 40px; flex-direction: column; text-align: center; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .chip-1, .chip-2 { display: none; }
    .faq-columns { flex-direction: column; gap: 14px; }
}
@media (max-width: 720px) {
    .vouchers-grid, .why-grid, .values-grid, .process-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
    .mv-card { padding: 32px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .form-row-2 { grid-template-columns: 1fr; }
    .hero-title { font-size: 30px; }
    .section-title { font-size: 27px; }
    .page-hero-title { font-size: 32px; }
    .cta-banner h2 { font-size: 25px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .container { width: 90%; }
    .form-card { padding: 26px; }
}
