/* ===========================
   UAE GOLDEN VISA LANDING PAGE
   =========================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --orange: #eb6d12;
    --orange2: #ff8c3a;
    --orange-light: #fff1e8;
    --gold: #C9A84C;
    --gold2: #F0C040;
    --gold-light: #FFF8E8;
    --dark: #0D0A06;
    --dark2: #180E04;
    --dark3: #1F1208;
    --text: #1A1208;
    --text-light: #6B5B4E;
    --white: #FFFFFF;
    --border: #F0DDD0;
    --shadow: 0 10px 40px rgba(235, 109, 18, 0.12);
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden
}

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

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s, box-shadow 0.3s
}

.navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1)
}

.navbar.scrolled .logo {
    color: var(--text)
}

.navbar.scrolled .nav-links a {
    color: var(--text)
}

.navbar.scrolled .nav-links a:hover {
    color: var(--orange)
}

.navbar.scrolled .hamburger {
    color: var(--text)
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--orange), var(--gold2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff
}

.logo strong {
    color: var(--gold2)
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: .92rem;
    font-weight: 500;
    transition: color 0.2s
}

.nav-links a:hover {
    color: var(--gold2)
}

.btn-nav {
    background: linear-gradient(135deg, var(--orange), var(--gold2));
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: .88rem;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    gap: 6px
}

.btn-nav:hover {
    opacity: 0.9
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 2000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0
}

.mobile-menu.open {
    display: flex
}

.mobile-menu ul {
    list-style: none;
    text-align: center
}

.mobile-menu ul li {
    margin: 16px 0
}

.mobile-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600
}

.mobile-menu ul li .btn-gold {
    display: inline-block;
    margin-top: 12px;
    padding: 14px 36px
}

.close-menu {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://www.flyingcolour.net/static/assets/images/UAEGoldenVisa.webp') center/cover no-repeat
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 6, 0, 0.88) 0%, rgba(30, 12, 0, 0.82) 40%, rgba(10, 5, 0, 0.75) 70%, rgba(201, 168, 76, 0.12) 100%)
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(235, 109, 18, 0.15);
    border: 1px solid rgba(235, 109, 18, 0.5);
    color: var(--orange2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: .5px
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 18px
}

.gold-text {
    color: #C9A84C;
}

.hero-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px
}

.hero-pathways {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap
}

.pathway-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 12px 18px;
    cursor: pointer;
    transition: all 0.3s;
    color: #fff
}

.pathway-pill.active {
    background: rgba(235, 109, 18, 0.2);
    border-color: var(--orange)
}

.pathway-pill i {
    font-size: 1.3rem;
    color: var(--orange2)
}

.pathway-pill strong {
    display: block;
    font-size: .9rem
}

.pathway-pill span {
    font-size: .78rem;
    color: rgba(255, 255, 255, 0.6)
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px
}

.stat {
    display: flex;
    flex-direction: column
}

.stat strong {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold2);
    text-shadow: 0 0 20px rgba(235, 109, 18, 0.4)
}

.stat span {
    font-size: .78rem;
    color: rgba(255, 255, 255, 0.6)
}

.stat-div {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2)
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 3
}

.hero-wave svg {
    width: 100%;
    height: 60px
}

/* FORM */
.hero-form-wrap {
    position: relative;
    z-index: 4
}

/* ===============================
   HERO GLASS FORM CARD
================================= */

.hero-form-card {
    position: relative;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(40px);               /* Increased blur */
    -webkit-backdrop-filter: blur(40px);

    border-radius: 20px;
    padding: 36px;

    border: 1px solid rgba(255, 255, 255, 0.3);

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

/* Optional soft shine layer */
.hero-form-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.4),
        rgba(255,255,255,0.05)
    );
    opacity: 0.25;
    pointer-events: none;
}

/* ===============================
   FORM HEADER
================================= */

.form-header {
    margin-bottom: 24px;
}

.form-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.form-header p {
    color: rgba(255, 255, 255, 0.75);
    font-size: .85rem;
}

/* ===============================
   FORM GROUP
================================= */

.form-group {
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-size: .82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* ===============================
   INPUT WRAPPER
================================= */

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffd700;
    font-size: .85rem;
}

/* ===============================
   GLASS INPUTS
================================= */

.input-icon input,
.input-icon select,
.form-group textarea {

    width: 100%;
    padding: 10px 12px 10px 36px;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;

    font-size: .9rem;
    font-family: 'Inter', sans-serif;

    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
}

/* Fix textarea padding */
.form-group textarea {
    padding-left: 12px;
    resize: none;
}

/* Placeholder styling */
.input-icon input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* ===============================
   FOCUS EFFECT
================================= */

.input-icon input:focus,
.input-icon select:focus,
.form-group textarea:focus {

    border: 1px solid rgba(255, 215, 0, 0.9);
    background: rgba(255, 255, 255, 0.12);

    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

/* ===============================
   FORM ROW GRID
================================= */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--orange), #d45c00, var(--gold));
    color: #fff;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: .95rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    justify-content: center
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(235, 109, 18, 0.5)
}

.btn-full {
    width: 100%
}

.form-note {
    text-align: center;
    font-size: .78rem;
    color: var(--text-light);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px
}

.form-success {
    text-align: center;
    padding: 20px
}

.success-icon {
    font-size: 3.5rem;
    color: var(--orange);
    margin-bottom: 16px
}

.form-success h3 {
    font-size: 1.4rem;
    margin-bottom: 8px
}

.form-success p {
    color: var(--text-light)
}

/* TRUST BAR */
.trust-bar {
    background: #fff;
    border-bottom: 2px solid var(--border);
    padding: 20px 0;
    box-shadow: 0 2px 16px rgba(235, 109, 18, 0.06)
}

.trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--text)
}

.trust-item i {
    color: var(--orange);
    font-size: 1rem
}

.trust-div {
    width: 1px;
    height: 30px;
    background: var(--border)
}

/* SECTION SHARED */
.section-header {
    text-align: center;
    margin-bottom: 56px
}

.section-header.light h2,
.section-header.light p {
    color: #fff
}

.section-tag {
    display: inline-block;
    background: var(--orange-light);
    color: var(--orange);
    border: 1px solid rgba(235, 109, 18, 0.3);
    font-size: .78rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
    letter-spacing: .5px;
    text-transform: uppercase
}

.section-header.light .section-tag {
    background: rgba(235, 109, 18, 0.15);
    color: var(--orange2);
    border-color: rgba(235, 109, 18, 0.3)
}

.section-header h2 {
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 14px;
    color: var(--text)
}

.section-header p {
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7
}

/* PATHWAYS */
.pathways-section {
    padding: 80px 0;
    background: rgb(245, 243, 239);
}

.pathways-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px
}

.pathway-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    border: 2px solid var(--border);
    position: relative;
    transition: box-shadow 0.3s
}

.pathway-card:hover {
    box-shadow: var(--shadow)
}

.pathway-card.featured {
    border-color: var(--orange);
    background: linear-gradient(145deg, #FFF3EB, #fff)
}

.featured-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px
}

.pathway-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 16px
}

.pathway-badge {
    display: inline-block;
    background: var(--orange-light);
    color: var(--orange);
    border: 1px solid rgba(235, 109, 18, 0.25);
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px
}

.pathway-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px
}

.pathway-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px
}

.check-list {
    list-style: none;
    margin-bottom: 24px
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text)
}

.check-list li:last-child {
    border-bottom: none
}

.check-list li i {
    color: var(--orange);
    font-size: .9rem
}

.pathway-highlight {
    text-align: center;
    background: linear-gradient(135deg, var(--orange-light), var(--gold-light));
    border: 1px solid rgba(235, 109, 18, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px
}

.pathway-highlight strong {
    display: block;
    font-size: .8rem;
    color: var(--orange);
    margin-bottom: 4px
}

.big-num {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

/* BENEFITS — split layout */
.benefits-section {
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
}

.benefits-content h2,
.benefits-content p,
.benefits-section .section-header h2,
.benefits-section .section-header p {
    color: #fff;
}

.benefits-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 720px;
}

/* LEFT IMAGE PANEL */
.benefits-img-panel {
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.benefits-img-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    transform-origin: center;
    animation: slowZoom 18s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

.benefits-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(13, 2, 0, 0.45) 0%,
            rgba(235, 109, 18, 0.15) 50%,
            rgba(13, 2, 0, 0.55) 100%);
}

/* Decorative floating circles */
.ben-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.ben-circle--1 {
    width: 320px;
    height: 320px;
    border: 1.5px solid rgba(235, 109, 18, 0.2);
    top: -60px;
    left: -60px;
    animation: spinSlow 25s linear infinite;
}

.ben-circle--2 {
    width: 220px;
    height: 220px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    bottom: 80px;
    right: -40px;
    animation: spinSlow 18s linear infinite reverse;
}

.ben-circle--3 {
    width: 140px;
    height: 140px;
    border: 1px dashed rgba(235, 109, 18, 0.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spinSlow 12s linear infinite;
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.ben-circle--3 {
    transform-origin: center;
}

/* FLOATING BADGES */
.ben-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.7) inset;
    z-index: 10;
    backdrop-filter: blur(8px);
    min-width: 170px;
}

.ben-badge strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
}

.ben-badge span {
    font-size: .75rem;
    color: var(--text-light);
    font-weight: 500;
}

.ben-badge--tl {
    top: 28px;
    left: 24px;
}

.ben-badge--br {
    bottom: 32px;
    left: 24px;
}

.ben-badge--mr {
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
}

/* badge float animations removed — badges are static */

.ben-badge-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--orange), #c45500);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}

.ben-badge-icon--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
}

.ben-badge-icon--green {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

/* RIGHT CONTENT PANEL */
.benefits-content {
    display: flex;
    align-items: center;
    padding: 72px 56px 72px 64px;
    background: linear-gradient(135deg, #1a0500 0%, #0d0200 100%);
}

.benefits-content-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.section-tag--light {
    background: rgba(235, 109, 18, 0.18);
    color: var(--orange2);
    border: 1px solid rgba(235, 109, 18, 0.35);
}

.benefits-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    color: #fff;
    line-height: 1.25;
    margin: 12px 0 6px;
}

.benefits-sub {
    color: rgba(255, 255, 255, 0.6);
    font-size: .95rem;
    line-height: 1.7;
}

/* BEN ROW */
.ben-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.ben-row:hover {
    background: rgba(235, 109, 18, 0.1);
    border-color: rgba(235, 109, 18, 0.3);
    transform: translateX(6px);
}

.ben-row-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(235, 109, 18, 0.35);
}

.ben-row-body {
    flex: 1;
}

.ben-row-body h4 {
    font-size: .98rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.ben-row-body p {
    font-size: .84rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Animated progress bar */
.ben-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.ben-bar span {
    display: block;
    height: 100%;
    width: 0;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--orange), var(--gold2));
    transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Trigger bar fill when ben-row enters viewport */
.ben-row.animated .ben-bar span {
    width: var(--bar-w, 80%);
}

/* Mobile */
@media(max-width: 900px) {
    .benefits-split {
        grid-template-columns: 1fr;
    }

    .benefits-img-panel {
        min-height: 380px;
    }

    .ben-badge--mr {
        right: -4px;
        top: auto;
        bottom: 20px;
    }

    .benefits-content {
        padding: 48px 24px;
    }

    .benefits-heading {
        font-size: 1.6rem;
    }
}


/* PROCESS */
.process-section {
    padding: 80px 0;
    background: #fff2ec;
}

.steps-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap
}

.step-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 24px 16px;
    position: relative
}

.step-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgb(235 109 18 / 79%);
    margin-bottom: 22px;
    font-family: 'Playfair Display', serif;
    line-height: 1
}

.step-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    margin: 8px auto 14px
}

.step-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px
}

.step-card p {
    font-size: .84rem;
    color: var(--text-light);
    line-height: 1.6
}

.step-arrow {
    display: flex;
    align-items: center;
    padding: 0 4px;
    color: var(--orange);
    font-size: 1.4rem;
    margin-top: 60px
}

/* TESTIMONIALS */
.testimonials-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120"><circle cx="60" cy="60" r="50" fill="none" stroke="%23fff" stroke-opacity="0.05" stroke-width="1"/></svg>') repeat
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1
}

.testimonial-card {
    background: linear-gradient(315deg, #eb6d12 0%, #eb6d12a3 70%, #f4c430 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 28px;
    color: #fff;
    backdrop-filter: blur(8px)
}

.testimonial-card.featured-t {
    background: linear-gradient(315deg, #eb6d12 0%, #eb6d12a3 70%, #f4c430 100%);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15)
}

.stars {
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
    margin-bottom: 14px;
    letter-spacing: 2px
}

.testimonial-card p {
    font-size: .9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-style: italic
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

.testimonial-author strong {
    display: block;
    font-size: .9rem;
    color: #fff
}

.testimonial-author span {
    font-size: .78rem;
    color: rgba(255, 255, 255, 0.5)
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: rgb(245, 243, 239);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: .95rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    transition: background 0.2s
}

.faq-q:hover {
    background: var(--orange-light)
}

.faq-q.open {
    background: var(--orange-light);
    color: var(--orange)
}

.faq-q i {
    transition: transform 0.3s;
    color: var(--orange);
    flex-shrink: 0
}

.faq-q.open i {
    transform: rotate(45deg)
}

.faq-a {
    display: none;
    padding: 0 20px 18px;
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.7;
    border-top: 1px solid var(--border)
}

.faq-a.open {
    display: block
}

/* CTA */
.cta-section {
    padding: 80px 0;
    background: #eb6d12;
    position: relative;
    overflow: hidden
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect x="10" y="10" width="80" height="80" fill="none" stroke="%23fff" stroke-opacity="0.06" stroke-width="1" rx="8"/></svg>') repeat
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 16px
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    font-size: 1rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1)
}

/* FOOTER */
.footer {
    background: linear-gradient(180deg, #1a0800 0%, #0D0600 100%);
    padding: 40px 0;
    text-align: center;
    border-top: 2px solid rgba(235, 109, 18, 0.3)
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1.2rem
}

.footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: .85rem;
    max-width: 500px;
    line-height: 1.6
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: .85rem;
    transition: color 0.2s
}

.footer-links a:hover {
    color: var(--gold2)
}

.footer-copy {
    color: rgba(255, 255, 255, 0.3);
    font-size: .8rem
}

/* STICKY BAR */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0D0600;
    display: flex;
    z-index: 999;
    border-top: 1px solid rgba(235, 109, 18, 0.2)
}

.sticky-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px;
    color: #fff;
    text-decoration: none;
    font-size: .72rem;
    font-weight: 600;
    transition: background 0.2s
}

.sticky-item i {
    font-size: 1.2rem
}

.sticky-item:hover {
    background: rgba(255, 255, 255, 0.05)
}

.sticky-item.whatsapp {
    background: #25D366;
    color: #fff
}

.sticky-item.whatsapp:hover {
    background: #1ebe5c
}

.sticky-item.email {
    background: linear-gradient(135deg, var(--orange), var(--gold));
    color: #fff
}

/* ANIMATIONS */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none
}

[data-aos="fade-right"] {
    transform: translateX(-40px)
}

[data-aos="fade-right"].aos-animate {
    transform: none
}

[data-aos="fade-left"] {
    transform: translateX(40px)
}

[data-aos="fade-left"].aos-animate {
    transform: none
}

/* RESPONSIVE */
@media(max-width:900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 20px
    }

    .hero-content h1 {
        font-size: 2.2rem
    }

    .pathways-grid {
        grid-template-columns: 1fr
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .testimonials-grid {
        grid-template-columns: 1fr
    }

    .steps-wrap {
        flex-direction: column;
        align-items: center
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 0
    }

    .nav-links,
    .btn-nav {
        display: none
    }

    .hamburger {
        display: block
    }
}

@media(max-width:600px) {
    .hero-content h1 {
        font-size: 1.8rem
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr
    }

    .trust-inner {
        gap: 16px
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .section-header h2 {
        font-size: 1.7rem
    }

    .hero {
        padding-bottom: 100px
    }
}

/* ===========================
   SCROLL-TRIGGERED ANIMATIONS
   =========================== */

/* --- Keyframes --- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.7) translateY(30px);
    }

    70% {
        transform: scale(1.04) translateY(-4px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes flipInX {
    from {
        opacity: 0;
        transform: perspective(600px) rotateX(-25deg) translateY(30px);
    }

    to {
        opacity: 1;
        transform: perspective(600px) rotateX(0) translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomFade {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes lineGrow {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 60px;
        opacity: 1;
    }
}

/* --- Base hidden state --- */
[data-anim] {
    opacity: 0;
    will-change: opacity, transform;
}

[data-anim].animated {
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-duration: 0.75s;
}

/* --- Animation types --- */
[data-anim="fadeUp"].animated {
    animation-name: fadeUp;
}

[data-anim="fadeLeft"].animated {
    animation-name: fadeLeft;
}

[data-anim="fadeRight"].animated {
    animation-name: fadeRight;
}

[data-anim="popIn"].animated {
    animation-name: popIn;
    animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-anim="flipInX"].animated {
    animation-name: flipInX;
}

[data-anim="slideUp"].animated {
    animation-name: slideUp;
    animation-duration: 0.6s;
}

[data-anim="zoomFade"].animated {
    animation-name: zoomFade;
}

/* --- Stagger delays (d0 – d8) --- */
[data-delay="0"] {
    animation-delay: 0s;
}

[data-delay="1"] {
    animation-delay: 0.08s;
}

[data-delay="2"] {
    animation-delay: 0.16s;
}

[data-delay="3"] {
    animation-delay: 0.24s;
}

[data-delay="4"] {
    animation-delay: 0.32s;
}

[data-delay="5"] {
    animation-delay: 0.42s;
}

[data-delay="6"] {
    animation-delay: 0.52s;
}

[data-delay="7"] {
    animation-delay: 0.62s;
}

[data-delay="8"] {
    animation-delay: 0.72s;
}

/* --- Section header underline animation --- */
.section-header .anim-line {
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--gold2));
    border-radius: 2px;
    margin: 12px auto 0;
    width: 0;
    opacity: 0;
    transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s, opacity 0.4s ease 0.3s;
}

.section-header.in-view .anim-line {
    width: 60px;
    opacity: 1;
}

/* --- Trust bar item animation --- */
.trust-item[data-anim="fadeUp"] {
    opacity: 0;
}

/* --- Pathway card hover lift already set; just ensure transition for anim --- */
.pathway-card {
    transition: box-shadow 0.3s, transform 0.3s;
}

/* --- Step connector pulse on animate --- */
.step-icon.animated::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--orange);
    animation: ripple 1s ease-out 0.6s;
    opacity: 0;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* --- Benefit counter number --- */
@keyframes countNum {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- CTA glow pulse --- */
.cta-section .btn-gold {
    animation: none;
}

.cta-section .btn-gold.animated {
    animation: glowPulse 2.5s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(235, 109, 18, 0);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(235, 109, 18, 0.25);
    }
}

/* Hide only if JS confirms ready */
body.js-enabled [data-anim] {
    opacity: 0;
}