    /* ── DESIGN TOKENS ── */
    :root {
        --orange:        #F4A51D;
        --orange-dark:   #d48910;
        --orange-light:  #f7bc55;
        --yellow:        #FAD93A;
        --yellow-dark:   #e0c020;
        --yellow-light:  #fde96e;
        --blue:          #5A8AC0;
        --blue-dark:     #3a6a9e;
        --blue-light:    #86b3d8;
        --blue-sky:      #86CDE8;
        --green:         #4FA97B;
        --green-dark:    #37855d;
        --green-light:   #72c49a;
        --red:           #CC6857;
        --red-dark:      #a84a3a;
        --red-light:     #e08a7a;
        --navy:          #1a2e4a;
        --navy-light:    #243d60;
        --white:         #ffffff;
        --off-white:     #fffdf8;
        --light-bg:      #f9f6f0;
        --text-dark:     #1a1e2a;
        --text-body:     #485060;
        --text-light:    #7a8290;
        --shadow-sm:     0 2px 10px rgba(0,0,0,0.08);
        --shadow-md:     0 6px 28px rgba(0,0,0,0.12);
        --shadow-lg:     0 16px 52px rgba(0,0,0,0.16);
        --shadow-orange: 0 8px 28px rgba(244,165,29,0.35);
        --shadow-blue:   0 8px 28px rgba(90,138,192,0.30);
        --shadow-green:  0 8px 28px rgba(79,169,123,0.30);
        --shadow-red:    0 8px 28px rgba(204,104,87,0.30);
        --radius-sm:     8px;
        --radius-md:     16px;
        --radius-lg:     24px;
        --radius-xl:     40px;
        --transition:    all 0.35s cubic-bezier(0.4,0,0.2,1);
        --font-heading:  'Playfair Display', Georgia, serif;
        --font-body:     'Inter', -apple-system, sans-serif;
    }

    /* ── RESET ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: var(--font-body); color: var(--text-body); background: var(--white); line-height: 1.7; overflow-x: hidden; }
    img  { display: block; max-width: 100%; height: auto; }
    a    { text-decoration: none; color: inherit; transition: var(--transition); }
    ul   { list-style: none; }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section    { padding: 96px 0; }

    /* ── TYPOGRAPHY ── */
    .section-title    { font-family: var(--font-heading); font-size: clamp(2rem,4vw,2.8rem); font-weight: 700; color: var(--text-dark); line-height: 1.25; margin-bottom: 16px; }
    .section-subtitle { font-size: 1.05rem; color: var(--text-light); max-width: 620px; margin: 0 auto 48px; line-height: 1.75; }
    .section-label    { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
    .section-label.center { justify-content: center; }
    .label-line { display: block; height: 3px; width: 36px; border-radius: 3px; flex-shrink: 0; }
    .label-line.orange { background: linear-gradient(90deg, var(--orange), var(--yellow)); }
    .label-line.blue   { background: linear-gradient(90deg, var(--blue), var(--blue-sky)); }
    .label-line.green  { background: linear-gradient(90deg, var(--green), var(--green-light)); }
    .label-line.red    { background: linear-gradient(90deg, var(--red), var(--red-light)); }
    .label-text { font-size: 0.80rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
    .label-text.orange { color: var(--orange); }
    .label-text.blue   { color: var(--blue); }
    .label-text.green  { color: var(--green); }
    .label-text.red    { color: var(--red); }
    .text-orange { color: var(--orange); }
    .text-blue   { color: var(--blue); }
    .text-green  { color: var(--green); }
    .text-red    { color: var(--red); }
    .text-yellow { color: var(--yellow-dark); }
    .text-center { text-align: center; }

    /* ── BUTTONS ── */
    .btn { display: inline-flex; align-items: center; gap: 9px; padding: 14px 28px; border-radius: var(--radius-xl); font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: var(--transition); border: 2px solid transparent; white-space: nowrap; }
    .btn-lg { padding: 16px 34px; font-size: 1rem; }
    .btn-xl { padding: 18px 40px; font-size: 1.05rem; }

    .btn-orange { background: linear-gradient(135deg, var(--orange), var(--orange-light)); color: var(--white); box-shadow: var(--shadow-orange); }
    .btn-orange:hover { background: linear-gradient(135deg, var(--orange-dark), var(--orange)); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(244,165,29,0.45); color: var(--white); }

    .btn-blue { background: linear-gradient(135deg, var(--blue), var(--blue-light)); color: var(--white); box-shadow: var(--shadow-blue); }
    .btn-blue:hover { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); transform: translateY(-2px); color: var(--white); }

    .btn-green { background: linear-gradient(135deg, var(--green), var(--green-light)); color: var(--white); box-shadow: var(--shadow-green); }
    .btn-green:hover { background: linear-gradient(135deg, var(--green-dark), var(--green)); transform: translateY(-2px); color: var(--white); }

    .btn-yellow { background: linear-gradient(135deg, var(--yellow), var(--yellow-light)); color: var(--text-dark); font-weight: 700; box-shadow: 0 8px 28px rgba(250,217,58,0.40); }
    .btn-yellow:hover { background: linear-gradient(135deg, var(--yellow-dark), var(--yellow)); transform: translateY(-2px); color: var(--text-dark); }

    .btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.65); }
    .btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); color: var(--white); transform: translateY(-2px); }

    .btn-outline-dark { background: transparent; color: var(--text-dark); border-color: rgba(26,30,42,0.3); }
    .btn-outline-dark:hover { background: rgba(26,30,42,0.07); border-color: var(--text-dark); color: var(--text-dark); }

    /* ================================================================
       NAVBAR
    ================================================================ */
    .navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: var(--transition); background: transparent; }
    .navbar.scrolled { background: rgba(26,46,74,0.96); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 10px 0; box-shadow: 0 4px 24px rgba(0,0,0,0.22); }
    .nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

    .nav-brand { display: flex; align-items: center; }
    .brand-logo-img { height: 54px; width: auto; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.22)); transition: var(--transition); }
    .brand-logo-img:hover { transform: scale(1.04); }
    .navbar.scrolled .brand-logo-img { filter: brightness(1.08) drop-shadow(0 2px 8px rgba(0,0,0,0.3)); }

    .nav-menu { display: flex; align-items: center; gap: 2px; }
    .nav-link { padding: 9px 15px; border-radius: var(--radius-xl); font-size: 0.91rem; font-weight: 500; color: rgba(255,255,255,0.88); transition: var(--transition); }
    .nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.13); }
    .nav-link.nav-cta { background: linear-gradient(135deg, var(--orange), var(--orange-light)); color: var(--white); font-weight: 600; padding: 10px 22px; margin-left: 8px; box-shadow: var(--shadow-orange); }
    .nav-link.nav-cta:hover { background: linear-gradient(135deg, var(--orange-dark), var(--orange)); transform: translateY(-1px); }

    .nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
    .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

    /* ================================================================
       HERO — Navy + Orange/Blue gradient
    ================================================================ */
    .about-hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: linear-gradient(145deg, #1a2e4a 0%, #0f1e34 50%, #1d3250 100%);
    }
    .about-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            radial-gradient(ellipse at 15% 60%, rgba(244,165,29,0.20) 0%, transparent 50%),
            radial-gradient(ellipse at 85% 25%, rgba(90,138,192,0.22) 0%, transparent 45%),
            radial-gradient(ellipse at 50% 90%, rgba(79,169,123,0.12) 0%, transparent 40%);
    }
    .hero-dot-bg {
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255,255,255,0.045) 1px, transparent 1px);
        background-size: 36px 36px;
        z-index: 0;
    }
    .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, transparent 50%, rgba(0,0,0,0.25) 100%); z-index: 1; }
    .hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

    .hero-content { position: relative; z-index: 2; text-align: center; padding: 130px 24px 80px; max-width: 900px; margin: 0 auto; }

    .hero-badges { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
    .hero-tag {
        display: inline-flex; align-items: center; gap: 7px;
        padding: 7px 18px; border-radius: var(--radius-xl);
        font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
        backdrop-filter: blur(10px);
    }
    .hero-tag.orange { background: rgba(244,165,29,0.18); border: 1px solid rgba(244,165,29,0.5); color: #fbd070; }
    .hero-tag.blue   { background: rgba(90,138,192,0.18); border: 1px solid rgba(90,138,192,0.5); color: #a8ccec; }
    .hero-tag.green  { background: rgba(79,169,123,0.18); border: 1px solid rgba(79,169,123,0.5); color: #90d4b0; }
    .hero-tag i { font-size: 0.82rem; }

    .hero-title { font-family: var(--font-heading); font-size: clamp(2.5rem,6vw,4.4rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 24px; text-shadow: 0 2px 24px rgba(0,0,0,0.3); }
    .hero-line2 {
        display: block;
        background: linear-gradient(120deg, var(--orange) 0%, var(--yellow) 50%, var(--orange-light) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .hero-subtitle { font-size: clamp(1rem,2vw,1.18rem); color: rgba(255,255,255,0.78); max-width: 680px; margin: 0 auto 44px; line-height: 1.8; }
    .hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

    /* Five-color divider strip */
    .color-strip { height: 5px; background: linear-gradient(90deg, var(--orange) 0%, var(--yellow) 25%, var(--green) 50%, var(--blue) 75%, var(--red) 100%); }

    .hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }
    .scroll-bounce { animation: bounce 1.6s ease-in-out infinite; }
    @keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(9px)} }

    /* ================================================================
       STATS STRIP — Multi-color
    ================================================================ */
    .stats-strip { background: linear-gradient(90deg, #1a2e4a 0%, #243d60 100%); position: relative; z-index: 10; }
    .stats-strip::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--orange), var(--yellow), var(--green), var(--blue), var(--red)); }
    .stats-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: stretch; justify-content: center; }
    .stat-item { flex: 1; min-width: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px 20px; gap: 4px; position: relative; }
    .stat-icon-wrap { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--white); margin-bottom: 10px; }
    .stat-icon-wrap.orange { background: linear-gradient(135deg, var(--orange), var(--orange-light)); }
    .stat-icon-wrap.yellow { background: linear-gradient(135deg, var(--yellow-dark), var(--yellow)); }
    .stat-icon-wrap.green  { background: linear-gradient(135deg, var(--green), var(--green-light)); }
    .stat-icon-wrap.blue   { background: linear-gradient(135deg, var(--blue), var(--blue-light)); }
    .stat-number { font-family: var(--font-heading); font-size: clamp(2rem,4vw,2.8rem); font-weight: 800; color: var(--white); line-height: 1; display: inline; }
    .stat-suffix { font-size: 1.6rem; font-weight: 700; color: var(--orange-light); display: inline; line-height: 1; }
    .stat-label  { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 4px; }
    .stat-divider { width: 1px; background: rgba(255,255,255,0.1); align-self: stretch; margin: 20px 0; }

    /* ================================================================
       OUR STORY — White bg
    ================================================================ */
    .our-story { background: var(--white); }
    .story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

    .story-img-wrapper { position: relative; }
    .story-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
    .story-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
    .story-img-main:hover img { transform: scale(1.04); }

    /* Year badge — orange */
    .story-badge {
        position: absolute; bottom: -24px; left: -24px;
        background: linear-gradient(135deg, var(--orange), var(--orange-light));
        color: var(--white); padding: 20px 26px; border-radius: var(--radius-md);
        text-align: center; box-shadow: var(--shadow-orange); z-index: 2;
    }
    .badge-year { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; line-height: 1; }
    .badge-text { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.88; margin-top: 4px; }

    /* Accent thumb — blue */
    .story-img-accent { position: absolute; top: -20px; right: -20px; width: 156px; height: 156px; border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 8px 28px rgba(90,138,192,0.3); border: 4px solid var(--white); z-index: 2; }
    .story-img-accent img { width: 100%; height: 100%; object-fit: cover; }

    .story-lead { font-size: 1.12rem; color: var(--text-dark); font-weight: 500; line-height: 1.75; margin-bottom: 18px; }
    .story-body { font-size: 0.98rem; color: var(--text-body); line-height: 1.85; margin-bottom: 18px; }

    .story-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 30px; }
    .story-check { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 500; color: var(--text-dark); }
    .check-dot { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; color: var(--white); flex-shrink: 0; }
    .check-dot.orange { background: var(--orange); }
    .check-dot.blue   { background: var(--blue); }
    .check-dot.green  { background: var(--green); }
    .check-dot.red    { background: var(--red); }

    /* ================================================================
       VISIT MALAYSIA 2026 & 2027 — Yellow-tinted bg
    ================================================================ */
    .vm-section { background: linear-gradient(160deg, #fffaed 0%, #fff5d0 50%, #edf8ff 100%); position: relative; overflow: hidden; }
    .vm-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 80% 20%, rgba(250,217,58,0.18) 0%, transparent 45%), radial-gradient(circle at 10% 80%, rgba(90,138,192,0.10) 0%, transparent 45%); pointer-events: none; }

    .vm-intro-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px 44px; display: flex; gap: 28px; align-items: flex-start; box-shadow: var(--shadow-md); margin-bottom: 44px; border-top: 5px solid var(--orange); }
    .vm-intro-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--orange), var(--yellow)); border-radius: 18px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.8rem; flex-shrink: 0; box-shadow: var(--shadow-orange); }
    .vm-intro-text h3 { font-family: var(--font-heading); font-size: 1.45rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
    .vm-intro-text p  { font-size: 0.98rem; color: var(--text-body); line-height: 1.82; }

    .vm-pillars { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-bottom: 48px; }
    .vm-pillar { background: var(--white); border-radius: var(--radius-md); padding: 30px 22px; text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); border-bottom: 4px solid transparent; }
    .vm-pillar:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
    .vm-pillar:nth-child(1) { border-bottom-color: var(--orange); }
    .vm-pillar:nth-child(2) { border-bottom-color: var(--blue); }
    .vm-pillar:nth-child(3) { border-bottom-color: var(--green); }
    .vm-pillar:nth-child(4) { border-bottom-color: var(--red); }
    .pillar-icon { width: 62px; height: 62px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto 18px; color: var(--white); }
    .pillar-orange { background: linear-gradient(135deg, var(--orange), var(--yellow)); }
    .pillar-blue   { background: linear-gradient(135deg, var(--blue), var(--blue-sky)); }
    .pillar-green  { background: linear-gradient(135deg, var(--green), var(--green-light)); }
    .pillar-red    { background: linear-gradient(135deg, var(--red), var(--red-light)); }
    .vm-pillar h4 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 9px; }
    .vm-pillar p  { font-size: 0.87rem; color: var(--text-light); line-height: 1.72; }

    .vm-banner {
        border-radius: var(--radius-lg); overflow: hidden;
        background: linear-gradient(135deg, #1a2e4a 0%, #243d60 100%);
        position: relative; box-shadow: var(--shadow-lg);
    }
    .vm-banner::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(ellipse at 20% 50%, rgba(244,165,29,0.22) 0%, transparent 55%), radial-gradient(ellipse at 80% 50%, rgba(90,138,192,0.18) 0%, transparent 55%); }
    /* Five-color top bar */
    .vm-banner::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--orange), var(--yellow), var(--green), var(--blue), var(--red)); }
    .vm-banner-inner { position: relative; z-index: 1; padding: 56px 48px; text-align: center; }
    .vm-years { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 20px; }
    .vm-year { display: inline-block; padding: 9px 28px; border-radius: var(--radius-xl); font-family: var(--font-heading); font-size: 1.65rem; font-weight: 800; letter-spacing: 0.04em; }
    .vm-year.y2026 { background: linear-gradient(135deg, var(--orange), var(--yellow)); color: var(--text-dark); box-shadow: var(--shadow-orange); }
    .vm-year.y2027 { background: linear-gradient(135deg, var(--blue), var(--blue-sky)); color: var(--white); box-shadow: var(--shadow-blue); }
    .vm-amp { font-size: 2rem; font-weight: 800; color: rgba(255,255,255,0.4); }
    .vm-banner-inner h3 { font-family: var(--font-heading); font-size: clamp(1.6rem,3vw,2.4rem); color: var(--white); font-weight: 700; margin-bottom: 12px; }
    .vm-banner-inner p  { font-size: 1rem; color: rgba(255,255,255,0.72); max-width: 500px; margin: 0 auto 32px; line-height: 1.75; }
    .vm-tagline { display: inline-flex; align-items: center; gap: 8px; background: rgba(204,104,87,0.15); border: 1px solid rgba(204,104,87,0.4); color: var(--red-light); padding: 7px 18px; border-radius: var(--radius-xl); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px; }
    .vm-tagline i { color: var(--red-light); }

    /* ================================================================
       SERVICES — Light bg with colored icons
    ================================================================ */
    .services-section { background: var(--light-bg); }
    .services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
    .service-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: var(--transition); overflow: hidden; position: relative; }
    .service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
    .service-card:nth-child(1)::before { background: linear-gradient(90deg, var(--orange), var(--yellow)); }
    .service-card:nth-child(2)::before { background: linear-gradient(90deg, var(--blue), var(--blue-sky)); }
    .service-card:nth-child(3)::before { background: linear-gradient(90deg, var(--green), var(--green-light)); }
    .service-card:nth-child(4)::before { background: linear-gradient(90deg, var(--red), var(--red-light)); }
    .service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
    .service-card-inner { padding: 36px 26px; display: flex; flex-direction: column; height: 100%; }
    .svc-icon { width: 70px; height: 70px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.85rem; color: var(--white); margin-bottom: 22px; flex-shrink: 0; }
    .svc-icon.orange { background: linear-gradient(135deg, var(--orange), var(--yellow)); box-shadow: var(--shadow-orange); }
    .svc-icon.blue   { background: linear-gradient(135deg, var(--blue), var(--blue-light)); box-shadow: var(--shadow-blue); }
    .svc-icon.green  { background: linear-gradient(135deg, var(--green), var(--green-light)); box-shadow: var(--shadow-green); }
    .svc-icon.red    { background: linear-gradient(135deg, var(--red), var(--red-light)); box-shadow: var(--shadow-red); }
    .svc-title { font-family: var(--font-heading); font-size: 1.22rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
    .svc-desc  { font-size: 0.91rem; color: var(--text-body); line-height: 1.75; margin-bottom: 18px; flex-grow: 1; }
    .svc-list  { margin-bottom: 22px; }
    .svc-list li { display: flex; align-items: center; gap: 9px; font-size: 0.86rem; color: var(--text-body); padding: 5px 0; border-bottom: 1px dashed #e8e8e8; }
    .svc-list li:last-child { border-bottom: none; }
    .svc-list li i { font-size: 0.72rem; }
    .svc-list li i.orange { color: var(--orange); }
    .svc-list li i.blue   { color: var(--blue); }
    .svc-list li i.green  { color: var(--green); }
    .svc-list li i.red    { color: var(--red); }
    .svc-link { display: inline-flex; align-items: center; gap: 7px; font-size: 0.86rem; font-weight: 700; letter-spacing: 0.04em; transition: var(--transition); margin-top: auto; }
    .svc-link.orange { color: var(--orange); }
    .svc-link.blue   { color: var(--blue); }
    .svc-link.green  { color: var(--green); }
    .svc-link.red    { color: var(--red); }
    .svc-link:hover  { gap: 11px; }

    /* ================================================================
       WHY US — White
    ================================================================ */
    .why-section { background: var(--white); }
    .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
    .why-img-wrap { position: relative; }
    .why-img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); object-fit: cover; aspect-ratio: 3/4; }
    .why-badge { position: absolute; bottom: -20px; right: -20px; background: linear-gradient(135deg, var(--yellow), var(--yellow-light)); color: var(--text-dark); padding: 16px 20px; border-radius: var(--radius-md); box-shadow: 0 8px 28px rgba(250,217,58,0.40); display: flex; align-items: center; gap: 13px; z-index: 2; }
    .why-badge i { font-size: 2rem; color: var(--orange); }
    .why-badge strong { display: block; font-size: 0.92rem; font-weight: 700; color: var(--text-dark); line-height: 1.3; }
    .why-badge span { display: block; font-size: 0.76rem; color: var(--text-body); }
    .why-intro { font-size: 1.03rem; color: var(--text-body); line-height: 1.82; margin-bottom: 32px; }
    .reasons { display: flex; flex-direction: column; gap: 20px; }
    .reason { display: flex; gap: 18px; align-items: flex-start; padding: 20px 22px; border-radius: var(--radius-md); border: 1px solid transparent; transition: var(--transition); }
    .reason:hover { transform: translateX(5px); }
    .reason:nth-child(1) { background: rgba(244,165,29,0.06); border-color: rgba(244,165,29,0.18); }
    .reason:nth-child(2) { background: rgba(90,138,192,0.06); border-color: rgba(90,138,192,0.18); }
    .reason:nth-child(3) { background: rgba(79,169,123,0.06); border-color: rgba(79,169,123,0.18); }
    .reason:nth-child(4) { background: rgba(204,104,87,0.06); border-color: rgba(204,104,87,0.18); }
    .reason-icon { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: var(--white); flex-shrink: 0; }
    .reason-icon.orange { background: linear-gradient(135deg, var(--orange), var(--orange-light)); box-shadow: var(--shadow-orange); }
    .reason-icon.blue   { background: linear-gradient(135deg, var(--blue), var(--blue-light)); box-shadow: var(--shadow-blue); }
    .reason-icon.green  { background: linear-gradient(135deg, var(--green), var(--green-light)); box-shadow: var(--shadow-green); }
    .reason-icon.red    { background: linear-gradient(135deg, var(--red), var(--red-light)); box-shadow: var(--shadow-red); }
    .reason h4 { font-family: var(--font-heading); font-size: 1.02rem; font-weight: 700; color: var(--text-dark); margin-bottom: 5px; }
    .reason p  { font-size: 0.90rem; color: var(--text-body); line-height: 1.72; }

    /* ================================================================
       DESTINATIONS — Light bg grid (7 cards)
    ================================================================ */
    .dest-section { background: var(--light-bg); }

    /* ── Top hero row: 1 large + 2 small stacked ── */
    .dest-hero-row {
        display: grid;
        grid-template-columns: 1.4fr 1fr;
        gap: 18px;
        height: 620px;
        margin-bottom: 18px;
    }
    .dest-hero-row .dest-card.large { height: 100%; }
    .dest-small-col {
        display: grid;
        grid-template-rows: 1fr 1fr;
        gap: 18px;
        height: 100%;
    }

    /* ── Bottom row: 4 equal cards (taller for descriptions) ── */
    .dest-bottom-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
        height: 340px;
    }

    .dest-card { position: relative; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; }
    .dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
    .dest-card:hover img { transform: scale(1.08); }
    .dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,20,44,0.88) 0%, rgba(0,0,0,0.18) 55%, transparent 100%); display: flex; align-items: flex-end; padding: 22px; transition: var(--transition); }
    .dest-region { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }

    /* colour-coded region labels by card position */
    .dest-hero-row .dest-card.large .dest-region  { color: var(--orange-light); }
    .dest-small-col .dest-card:nth-child(1) .dest-region { color: var(--blue-sky); }
    .dest-small-col .dest-card:nth-child(2) .dest-region { color: var(--green-light); }
    .dest-bottom-row .dest-card:nth-child(1) .dest-region { color: var(--red-light); }
    .dest-bottom-row .dest-card:nth-child(2) .dest-region { color: var(--yellow-light); }
    .dest-bottom-row .dest-card:nth-child(3) .dest-region { color: var(--orange-light); }
    .dest-bottom-row .dest-card:nth-child(4) .dest-region { color: var(--blue-sky); }

    .dest-name { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 6px; line-height: 1.2; }
    .dest-card.large .dest-name { font-size: 2rem; }
    .dest-bottom-row .dest-name { font-size: 1.1rem; }
    .dest-desc { font-size: 0.84rem; color: rgba(255,255,255,0.80); line-height: 1.58; margin-bottom: 12px; max-width: 300px; }
    .dest-bottom-row .dest-desc { display: block; font-size: 0.78rem; line-height: 1.5; margin-bottom: 10px; color: rgba(255,255,255,0.75); max-width: 100%; }
    .dest-bottom-row .dest-overlay { padding: 18px; }
    .dest-link { display: inline-flex; align-items: center; gap: 7px; font-size: 0.80rem; font-weight: 600; color: var(--white); background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.32); padding: 5px 13px; border-radius: var(--radius-xl); transition: var(--transition); }
    .dest-link:hover { background: rgba(255,255,255,0.28); gap: 11px; }

    /* bottom-row badge accent lines */
    .dest-bottom-row .dest-card::after {
        content: '';
        position: absolute;
        bottom: 0; left: 0; right: 0;
        height: 3px;
    }
    .dest-bottom-row .dest-card:nth-child(1)::after { background: linear-gradient(90deg, var(--red), var(--red-light)); }
    .dest-bottom-row .dest-card:nth-child(2)::after { background: linear-gradient(90deg, var(--yellow-dark), var(--yellow)); }
    .dest-bottom-row .dest-card:nth-child(3)::after { background: linear-gradient(90deg, var(--orange), var(--yellow)); }
    .dest-bottom-row .dest-card:nth-child(4)::after { background: linear-gradient(90deg, var(--blue), var(--blue-sky)); }

    /* ================================================================
       TESTIMONIALS — Navy bg
    ================================================================ */
    .testi-section { background: linear-gradient(160deg, #1a2e4a 0%, #0f1e34 100%); position: relative; overflow: hidden; }
    .testi-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(ellipse at 15% 40%, rgba(244,165,29,0.14) 0%, transparent 50%), radial-gradient(ellipse at 85% 60%, rgba(90,138,192,0.14) 0%, transparent 50%); pointer-events: none; }
    .testi-section .section-title { color: var(--white); }

    .testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
    .testi-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-lg); padding: 34px 30px; transition: var(--transition); position: relative; overflow: hidden; }
    .testi-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
    .testi-card:nth-child(1)::before { background: linear-gradient(90deg, var(--orange), var(--yellow)); }
    .testi-card:nth-child(2)::before { background: linear-gradient(90deg, var(--blue), var(--blue-sky)); }
    .testi-card:nth-child(3)::before { background: linear-gradient(90deg, var(--green), var(--green-light)); }
    .testi-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-6px); }
    .testi-stars { display: flex; gap: 3px; margin-bottom: 18px; }
    .testi-stars i { color: var(--orange); font-size: 0.9rem; }
    .testi-text  { font-size: 0.94rem; color: rgba(255,255,255,0.82); line-height: 1.82; margin-bottom: 26px; font-style: italic; }
    .testi-author { display: flex; align-items: center; gap: 13px; }
    .author-av   { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.5rem; flex-shrink: 0; }
    .author-av.orange { background: linear-gradient(135deg, var(--orange), var(--yellow)); }
    .author-av.blue   { background: linear-gradient(135deg, var(--blue), var(--blue-light)); }
    .author-av.green  { background: linear-gradient(135deg, var(--green), var(--green-light)); }
    .author-name   { display: block; font-size: 0.92rem; font-weight: 600; color: var(--white); }
    .author-origin { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.50); }

    /* ================================================================
       CTA — Five-color gradient
    ================================================================ */
    .cta-section { position: relative; overflow: hidden; padding: 100px 0; }
    .cta-section::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 30%, var(--green) 55%, var(--blue) 80%, var(--red) 100%); opacity: 0.95; }
    .cta-section::after  { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.12) 0%, transparent 50%), radial-gradient(circle at 70% 50%, rgba(0,0,0,0.08) 0%, transparent 50%); }
    .cta-inner { position: relative; z-index: 1; text-align: center; max-width: 740px; margin: 0 auto; padding: 0 24px; }
    .cta-icon-wrap { width: 88px; height: 88px; background: rgba(255,255,255,0.20); border: 2px solid rgba(255,255,255,0.35); border-radius: 24px; display: flex; align-items: center; justify-content: center; font-size: 2.4rem; color: var(--white); margin: 0 auto 28px; }
    .cta-title    { font-family: var(--font-heading); font-size: clamp(1.8rem,4vw,3rem); font-weight: 800; color: var(--white); margin-bottom: 14px; text-shadow: 0 2px 14px rgba(0,0,0,0.12); }
    .cta-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.90); margin-bottom: 38px; line-height: 1.78; }
    .cta-btns     { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
    .cta-contacts { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; font-size: 0.88rem; color: rgba(255,255,255,0.85); }
    .cta-contacts i { margin-right: 6px; }
    .cta-sep { color: rgba(255,255,255,0.35); }

    /* White buttons on gradient CTA */
    .btn-white { background: var(--white); color: var(--text-dark); font-weight: 700; box-shadow: 0 6px 22px rgba(0,0,0,0.15); }
    .btn-white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); color: var(--text-dark); }
    .btn-outline-white2 { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.65); }
    .btn-outline-white2:hover { background: rgba(255,255,255,0.18); border-color: var(--white); color: var(--white); }

    /* ================================================================
       FOOTER — Navy
    ================================================================ */
    .footer { background: #131f33; }
    .footer-bar { height: 5px; background: linear-gradient(90deg, var(--orange) 0%, var(--yellow) 25%, var(--green) 50%, var(--blue) 75%, var(--red) 100%); }
    .footer-top { padding: 64px 0 44px; }
    .footer-grid { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; }
    .footer-logo-img { height: 58px; width: auto; object-fit: contain; margin-bottom: 18px; filter: brightness(1.05); }
    .footer-desc  { font-size: 0.90rem; color: rgba(255,255,255,0.55); line-height: 1.78; margin-bottom: 20px; }
    .footer-chips { display: flex; gap: 9px; flex-wrap: wrap; }
    .f-chip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: var(--radius-xl); font-size: 0.74rem; font-weight: 600; }
    .f-chip.orange { background: rgba(244,165,29,0.15); border: 1px solid rgba(244,165,29,0.3); color: var(--orange-light); }
    .f-chip.blue   { background: rgba(90,138,192,0.15); border: 1px solid rgba(90,138,192,0.3); color: var(--blue-light); }
    .footer-grid h4 { font-size: 0.80rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .footer-links-list li { margin-bottom: 9px; }
    .footer-links-list li a { display: inline-flex; align-items: center; gap: 8px; font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
    .footer-links-list li a:hover { color: var(--orange-light); gap: 12px; }
    .footer-links-list li a i { font-size: 0.60rem; color: var(--orange); }
    .f-contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 13px; }
    .f-contact-item .icon { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; }
    .f-contact-item .icon.orange { background: rgba(244,165,29,0.15); color: var(--orange-light); }
    .f-contact-item .icon.blue   { background: rgba(90,138,192,0.15); color: var(--blue-light); }
    .f-contact-item a { font-size: 0.88rem; color: rgba(255,255,255,0.60); transition: var(--transition); }
    .f-contact-item a:hover { color: var(--white); }
    .social-row { display: flex; gap: 9px; margin-top: 22px; }
    .social-btn { width: 36px; height: 36px; border-radius: 9px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: var(--transition); }
    .social-btn:hover { transform: translateY(-3px); color: var(--white); }
    .social-btn.fb:hover  { background: #1877f2; border-color: #1877f2; }
    .social-btn.ig:hover  { background: linear-gradient(135deg,#e1306c,#fd1d1d,#fcb045); border-color: transparent; }
    .social-btn.tw:hover  { background: #1da1f2; border-color: #1da1f2; }
    .social-btn.li:hover  { background: #0077b5; border-color: #0077b5; }
    .social-btn.yt:hover  { background: #ff0000; border-color: #ff0000; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 18px 0; }
    .footer-bottom-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
    .footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.38); }
    .footer-vm { font-size: 0.82rem; color: rgba(255,255,255,0.38); }
    .footer-vm span { color: var(--orange-light); font-weight: 600; }

    /* ================================================================
       PARTICLES
    ================================================================ */
    .particle { position: absolute; border-radius: 50%; pointer-events: none; animation: floatUp linear infinite; }
    @keyframes floatUp { 0%{transform:translateY(110vh) rotate(0deg);opacity:0} 10%{opacity:1} 90%{opacity:0.4} 100%{transform:translateY(-120px) rotate(720deg);opacity:0} }

    /* ================================================================
       RESPONSIVE
    ================================================================ */
    @media(max-width:1024px) {
        .services-grid { grid-template-columns: 1fr 1fr; }
        .vm-pillars    { grid-template-columns: 1fr 1fr; }
        .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
    }
    @media(max-width:900px) {
        .story-grid { grid-template-columns: 1fr; gap: 52px; }
        .story-image-col { max-width: 480px; margin: 0 auto; }
        .why-grid   { grid-template-columns: 1fr; gap: 48px; }
        .dest-hero-row { grid-template-columns: 1fr; height: auto; }
        .dest-hero-row .dest-card.large { height: 380px; }
        .dest-small-col { grid-template-rows: auto; }
        .dest-small-col .dest-card { height: 230px; }
        .dest-bottom-row { grid-template-columns: 1fr 1fr; height: auto; }
        .dest-bottom-row .dest-card { height: 240px; }
        .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
        .vm-intro-card { flex-direction: column; padding: 28px; }
    }
    @media(max-width:768px) {
        .section { padding: 72px 0; }
        .nav-toggle { display: flex; }
        .nav-menu { position: fixed; top: 0; right: -100%; bottom: 0; width: 280px; background: #1a2e4a; flex-direction: column; align-items: flex-start; padding: 80px 26px 40px; gap: 4px; transition: right 0.35s cubic-bezier(0.4,0,0.2,1); box-shadow: -12px 0 40px rgba(0,0,0,0.28); z-index: 999; }
        .nav-menu.open { right: 0; }
        .nav-link { width: 100%; padding: 12px 14px; font-size: 1rem; }
        .nav-link.nav-cta { margin-left: 0; margin-top: 14px; }
        .stats-container { flex-direction: column; }
        .stat-divider { width: 100%; height: 1px; margin: 0; }
        .stat-item { padding: 24px; }
        .services-grid { grid-template-columns: 1fr; }
        .vm-pillars    { grid-template-columns: 1fr; }
        .story-checks  { grid-template-columns: 1fr; }
        .dest-bottom-row { grid-template-columns: 1fr 1fr; }
        .dest-bottom-row .dest-card { height: 220px; }
        .dest-bottom-row .dest-desc { font-size: 0.75rem; }
        .footer-grid   { grid-template-columns: 1fr; gap: 36px; }
        .footer-bottom-inner { flex-direction: column; text-align: center; }
    }
    @media(max-width:480px) {
        .hero-actions { flex-direction: column; align-items: center; }
        .cta-btns     { flex-direction: column; align-items: center; }
        .vm-years     { flex-direction: column; align-items: center; gap: 12px; }
        .vm-amp       { display: none; }
    }