@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --navy: #0F172A;
    --deep: #F8FAFC;
    --amber: #F97316;
    --gold: #F59E0B;
    --cream: #FDF8F3;
    --slate: #64748B;
    --border: #E2E8F0;
    --text-main: #0B1B2B;
    --text-muted: #64748B;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: #FFFFFF;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 18px;
    /* Desktop default */
    line-height: 1.5;
    /* Forced 1.5 as per request */
    overflow-x: hidden;
}

p {
    font-size: 18px;
    line-height: 1.5;
}

/* ── NAV ── */
.main-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    transition: background 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 60px;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: -1px;
}

.nav-logo span {
    color: var(--amber);
}

.nav-logo img {
    height: 38px;
    width: auto;
    display: block;
}

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

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-cta {
    background: var(--amber);
    color: #fff !important;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.nav-cta:hover {
    background: #ea6a0a;
    transform: translateY(-2px);
}

/* Mobile Menu Container */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(15 23 42 / 26%);
    backdrop-filter: blur(19px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-overlay.active {
    transform: translateY(0);
}

.mobile-nav-overlay a {
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    transition: opacity 0.2s;
}

.mobile-nav-overlay a:hover {
    opacity: 0.8;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 32px;
    cursor: pointer;
    color: #fff;
}

.mobile-menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-main);
}

/* ── HERO ── */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 90px 60px 65px;
    position: relative;
    overflow: hidden;
    background: url('../img/hero.png') no-repeat center center;
    background-size: cover;
}

/* Subtle white gradient to make text readable on the left */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 40%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--amber);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 100px;
    border-radius: 100px;
    margin-top: 40px;
    margin-bottom: 15px;
}

.hero-badge i {
    font-size: 12px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 65px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -2px;
    color: var(--text-main);
    margin-bottom: 30px;
}

.hero h1 span.accent {
    display: block;
    color: var(--amber);
}

.hero p {
    font-size: 18px;
    color: #4b5563;
    max-width: 580px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.btn-primary {
    background: var(--amber);
    color: #fff;
    border: none;
    padding: 14px 21px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #ea6a0a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.2);
}

.btn-secondary {
    background: #fff;
    color: var(--text-main);
    border: 1px solid var(--border);
    padding: 14px 21px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--amber);
    background: #fff;
    transform: translateY(-2px);
}

/* Trusted Logos */
.hero-trust {
    margin-top: 40px;
}

.hero-trust p {
    font-size: 12px;
    font-weight: 800;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.trust-logos {
    display: flex;
    gap: 22px;
    align-items: center;
    flex-wrap: wrap;
}

.trust-logos img {
    height: 28px;
    width: auto;
    transition: all 0.3s ease;
}

.trust-logos img:hover {
    filter: grayscale(0) opacity(1);
}

/* Floating Stats Cards */
.hero-stats {
    position: absolute;
    right: 100px;
    top: 55%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.23);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 14px;
    min-width: 130px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateX(-10px);
}

/* ── SOLUTIONS / USE CASES ── */
.use-cases {
    padding: 50px 60px;
    background: #FFFFFF;
}

.use-cases-header {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.header-left {
    flex: 1;
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.header-right .section-sub {
    max-width: 480px;
    text-align: left;
    margin-bottom: 24px;
}

.section-label {
    font-size: 14px;
    font-weight: 800;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 35px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-main);
    margin-bottom: 24px;
}

.section-sub {
    font-size: 18px;
    color: var(--text-muted);
}

.use-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.use-card {
    background: #FFFFFF;
    border: 1.5px solid var(--border);
    padding: 32px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    /* Rectangular feel */
}

.use-card:hover {
    transform: translateY(-5px);
}

/* Theme Colors */
.theme-orange {
    background: #FFF8F4;
    border-color: #FED7AA;
}

.theme-green {
    background: #F0FDF4;
    border-color: #BBF7D0;
}

.theme-purple {
    background: #F5F3FF;
    border-color: #DDD6FE;
}

.theme-blue {
    background: #F0F9FF;
    border-color: #BAE6FD;
}

.use-icon {
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 28px;
    box-shadow: none;
}

.use-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.use-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
}

.use-card p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.use-card .tag {
    display: inline-flex;
    font-size: 11px;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    width: fit-content;
}

.theme-orange .tag {
    color: #EA580C;
    background: rgba(234, 88, 12, 0.08);
    border: 1.5px solid #FFEDD5;
}

.theme-green .tag {
    color: #16A34A;
    background: rgba(22, 163, 74, 0.08);
    border: 1.5px solid #DCFCE7;
}

.theme-purple .tag {
    color: #7C3AED;
    background: rgba(124, 58, 237, 0.08);
    border: 1.5px solid #EDE9FE;
}

.theme-blue .tag {
    color: #0284C7;
    background: rgba(2, 132, 199, 0.08);
    border: 1.5px solid #E0F2FE;
}

.stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(249, 115, 22, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    border: 1px solid rgba(249, 115, 22, 0.1);
}

.stat-icon.blue {
    background: #F0F9FF;
    color: #0EA5E9;
    border-color: #E0F2FE;
}

.stat-icon.green {
    background: #F0FDF4;
    color: #22C55E;
    border-color: #DCFCE7;
}

.stat-icon.purple {
    background: #F5F3FF;
    color: #8B5CF6;
    border-color: #EDE9FE;
}

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

.stat-info .num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: #ffffff !important;
    line-height: 1;
}

.stat-info .num span {
    color: var(--amber);
}

.stat-info .label {
    font-size: 13px;
    color: #ffffff !important;
    font-weight: 500;
    margin-top: 4px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
    .hero-stats {
        position: static;
        transform: none;
        flex-direction: row;
        margin-top: 60px;
        padding-bottom: 40px;
    }

    .stat-card {
        min-width: auto;
        flex: 1;
    }

    .hero {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 160px;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-container {
        padding: 20px 24px;
    }

    .nav-logo {
        font-size: 22px;
    }

    .nav-logo img {
        height: 28px;
    }

    .nav-cta {
        padding: 8px 16px;
        font-size: 13px;
    }

    .mobile-menu-btn {
        font-size: 24px;
    }

    .nav-container {
        padding: 15px 20px;
    }

    .hero {
        padding: 140px 24px 60px;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero-badge {
        padding: 0px;
        margin-top: 0px;
        font-size: 10px;
        margin-bottom: 4px;
    }

    .hero-stats {
        display: none;
    }

    body,
    p,
    .hero p {
        font-size: 16px !important;
    }

    .use-cases {
        padding: 30px 18px;
    }

    .section-title {
        font-size: 30px;
    }

    .use-cases-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0px;
        margin-bottom: 40px;
    }

    .header-right .section-sub {
        text-align: left;
        margin-bottom: 0px;
    }

    .use-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .use-card {
        padding: 20px 20px;
        min-height: auto;
    }

    .use-icon {
        margin-bottom: 2px;
    }

    .use-card h3 {
        font-size: 22px !important;
        margin-bottom: 8px !important;
    }

    .trust-logos {
        gap: 20px;
    }

    .trust-logo img {
        height: 20px;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        margin-bottom: 20px;
        font-size: 42px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        flex-direction: column;
        width: 100%;
    }

    .stat-card {
        width: 100%;
    }
}

/* ── WHY WANDEROO ── */
.why {
    padding: 50px 60px;
    background: var(--cream);
    overflow: hidden;
}

.why-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 2fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.why-left {
    position: relative;
}

.why-left .section-title {
    margin-bottom: 24px;
}

.why-arrow {
    width: 290px;
    margin-top: -39px;
    margin-left: -10px;
    opacity: 0.8;
}

/* Comparison Card */
.comparison-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border);
}

.comp-col-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.comp-col-label.problem {
    color: #EF4444;
}

.comp-col-label.wanderoo {
    color: #10B981;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 24px 32px;
    border-bottom: 1px solid #F1F5F9;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comp-problem,
.comp-wanderoo {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
}

.comp-problem {
    color: var(--text-muted);
    padding-right: 20px;
}

.comp-wanderoo {
    color: var(--text-main);
    padding-left: 0px;
}

.comp-problem::before {
    content: '✕';
    color: #EF4444;
    font-size: 14px;
    margin-top: 2px;
}

.comp-wanderoo::before {
    content: '✓';
    color: #10B981;
    font-size: 14px;
    margin-top: 2px;
}

/* Metric Cards */
.why-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.metric-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateX(-5px);
}

.metric-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.metric-card.theme-orange .metric-icon {
    background: #FFF7ED;
    color: #F97316;
}

.metric-card.theme-purple .metric-icon {
    background: #F5F3FF;
    color: #8B5CF6;
}

.metric-card.theme-green .metric-icon {
    background: #F0FDF4;
    color: #22C55E;
}

.metric-content {
    display: flex;
    flex-direction: column;
}

.metric-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    color: var(--text-main);
}

.metric-num span {
    font-size: 20px;
    color: var(--amber);
}

.metric-card.theme-green .metric-num span {
    color: #22C55E;
}

.metric-card.theme-purple .metric-num span {
    color: #8B5CF6;
}

.metric-desc {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
    line-height: 1.3;
}

@media (max-width: 1200px) {
    .why-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-left {
        text-align: left;
    }

    .why-arrow {
        display: none;
    }

    .why-right {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .metric-card {
        flex: 1;
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .why {
        padding: 60px 20px;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .comp-wanderoo {
        padding-left: 0;
        padding-top: 15px;
        border-top: 1px dashed var(--border);
    }
}

/* ── CASE STUDIES ── */
#case-studies {
    padding: 50px 60px;
    background: #FFFFFF;
}

.case-header-main {
    margin-bottom: 56px;
}

.case-header-main .section-sub {
    max-width: 600px;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.case-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.case-client img {
    height: 22px;
    width: auto;
    object-fit: contain;
}

/* Destination Badges */
.case-dest-badge {
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.case-dest-badge span {
    font-size: 14px;
}

.badge-orange {
    background: #FFF7ED;
    color: #C2410C;
    border: 1px solid #FFEDD5;
}

.badge-green {
    background: #F0FDF4;
    color: #166534;
    border: 1px solid #DCFCE7;
}

.badge-red {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FEE2E2;
}

.badge-purple {
    background: #F5F3FF;
    color: #5B21B6;
    border: 1px solid #EDE9FE;
}

.case-type {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.case-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid #F1F5F9;
}

.case-stat-num {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
}

.case-stat-num span {
    font-size: 14px;
    color: var(--amber);
}

.case-stat-label {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.case-outcome {
    background: #F0FDF4;
    border-radius: 14px;
    padding: 16px;
    font-size: 13px;
    line-height: 1.5;
    color: #166534;
}

.case-outcome strong {
    color: #15803D;
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

@media (max-width: 1280px) {
    .case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #case-studies {
        padding: 60px 20px;
    }

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

    .case-card {
        padding: 24px;
    }
}

/* ── HOW IT WORKS ── */
.how {
    padding: 5px 60px 60px;
    background: #FFFFFF;
}

.how-header {
    text-align: left;
    margin-bottom: 60px;
}

.how-header .section-sub {
    margin: 0 auto;
}

.how-steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 15px;
}

.how-step {
    flex: 1;
    position: relative;
    background: #FFFFFF;
    border-radius: 15px;
    padding: 22px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.how-step.theme-orange {
    background: #FFF8F4;
    border-color: #FFEDD5;
    color: #F97316;
}

.how-step.theme-green {
    background: #F0FDF4;
    border-color: #DCFCE7;
    color: #22C55E;
}

.how-step.theme-purple {
    background: #F5F3FF;
    border-color: #EDE9FE;
    color: #8B5CF6;
}

.how-step.theme-blue {
    background: #F0F9FF;
    border-color: #E0F2FE;
    color: #0EA5E9;
}

.how-step i {
    font-size: 24px;
}

.step-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #FFFFFF;
}

.theme-orange .step-badge {
    background: #F97316;
}

.theme-green .step-badge {
    background: #22C55E;
}

.theme-purple .step-badge {
    background: #8B5CF6;
}

.theme-blue .step-badge {
    background: #3B82F6;
}

.step-icon-box {
    width: 70px;
    height: 70px;
    background: #FFFFFF;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.step-text h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-main);
}

.step-text p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

.step-arrow {
    font-size: 20px;
    color: #CBD5E1;
    font-weight: 300;
}

@media (max-width: 1200px) {
    .how-steps-container {
        flex-direction: column;
        gap: 15px;
    }

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

    .how-step {
        width: 100%;
        max-width: 500px;
        padding: 30px 24px;
    }
}

@media (max-width: 768px) {
    .how {
        padding: 0px 20px 40px 20px;
    }

    .how-header {
        margin-bottom: 40px;
    }

    .step-icon-box {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .step-text h3 {
        font-size: 18px !important;
    }

    .step-text p {
        font-size: 18px !important;
    }
}

/* ── CATEGORY GRID ── */
.category-section {
    padding: 50px 60px;
    background: #FFFFFF;
}

.category-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.cat-right-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cat-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    min-height: 400px;
    transition: transform 0.4s ease;
}

.cat-card:hover {
    transform: translateY(-5px);
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.cat-header-top,
.cat-body,
.cat-footer {
    position: relative;
    z-index: 2;
}

.cat-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cat-index {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    opacity: 0.3;
}

.cat-circle-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cat-circle-btn:hover {
    background: #FFFFFF;
    color: var(--text-main);
}

.cat-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cat-label::before {
    content: '';
    width: 20px;
    height: 1px;
    background: #FFFFFF;
    opacity: 0.5;
}

.cat-title {
    font-family: var(--font-display);
    font-size: 56px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 20px;
}

.cat-small .cat-title {
    font-size: 42px;
}

.cat-desc {
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    max-width: 400px;
    opacity: 0.9;
}

.cat-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    margin: 0 -40px -40px;
    padding: 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cat-meta {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cat-open {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

@media (max-width: 1100px) {
    .category-grid {
        grid-template-columns: 1fr;
    }

    .cat-card {
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .category-section {
        padding: 40px 20px;
    }

    .cat-title {
        font-size: 42px;
    }

    .cat-small .cat-title {
        font-size: 32px;
    }

    .cat-card {
        padding: 30px;
        min-height: 400px;
    }

    .cat-footer {
        padding: 15px 30px;
        margin: 0 -30px -30px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ── FOOTER ── */
.site-footer {
    padding: 80px 60px 40px;
    background: #FFFBFA;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

.footer-brand .nav-logo {
    display: inline-block;
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 300px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--text-main);
    text-transform: capitalize;
    letter-spacing: 0.02em;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--amber);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-main);
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: lowercase;
}

.social-icon:hover {
    background: var(--text-main);
    color: #FFFFFF;
    border-color: var(--text-main);
}

.footer-copyright {
    font-size: 12px;
    color: var(--text-muted);
    opacity: 0.6;
}

@media (max-width: 1100px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding: 60px 20px 30px;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── NORTH AI PLANNER ── */
.ai-planner-section {
    padding: 50px 60px;
    background: url('../img/investment-planner.png') no-repeat center center;
    background-size: cover;
    text-align: center;
    position: relative;
}

.planner-container {
    max-width: 1000px;
    margin: 0 auto;
}

.planner-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-planner-primary {
    background: #f97315;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-planner-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 189, 130, 0.2);
}

.btn-planner-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-planner-outline:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--text-main);
}

.planner-suggestions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.suggestion-chip {
    padding: 12px 28px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-main);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion-chip:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.3);
    color: var(--text-main);
}

.planner-footer-text {
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .ai-planner-section {
        padding: 80px 20px;
    }

    .planner-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-planner-primary,
    .btn-planner-outline {
        width: 100%;
        max-width: 300px;
    }

    .suggestion-chip {
        flex: 1 1 calc(50% - 15px);
        padding: 12px 15px;
        font-size: 13px;
        text-align: center;
    }
}

/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-section.active {
    opacity: 1;
    transform: translateY(0);
}

/* ── ABOUT US PAGE ── */

/* About Hero Redesign */
.about-hero {
    min-height: 850px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 60px 180px;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 40%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.about-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    gap: 60px;
}

.about-hero-content {
    max-width: 700px;
}

.about-hero-content h1 {
    font-family: var(--font-display);
    font-size: 64px;
    line-height: 1.1;
    margin: 25px 0;
    color: var(--text-main);
    font-weight: 700;
}

.about-hero-content h1 .accent {
    color: #F97316;
}

.about-hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 550px;
}

.about-hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.about-trust-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    max-width: 480px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.trust-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.trust-card-header .badge-icon {
    width: 44px;
    height: 44px;
    background: #FFF7ED;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F97316;
    font-size: 18px;
}

.trust-card-header p {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
}

.trust-card-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.trust-logo {
    height: 22px;
    max-width: 100px;
    object-fit: contain;
    filter: grayscale(1) brightness(0.2);
    opacity: 0.8;
}

/* Position Stats Bar at Bottom */
.stats-bar-wrapper {
    width: 100%;
    position: absolute;
    bottom: -180px;
    left: 0;
}

@media (max-width: 1024px) {
    .about-hero {
        padding: 120px 40px 80px;
        min-height: auto;
    }
    .about-hero-content {
        margin-top: 40px;
    }
    .about-hero h1 {
        font-size: 44px;
    }
    .about-hero::before {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
    }
    .stats-bar-wrapper {
        position: static;
        margin-top: 100px;
    }
    .stats-bar-container {
        margin-top: -100px;
    }
}

/* Stats Bar */
.stats-bar-section {
    background: #ffffff;
}

.stats-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 30px;
    border-radius: 30px;
    background: #FFFFFF;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 40px;
}

.stat-item:not(:last-child) {
    border-right: 1px solid #F1F5F9;
}

.stat-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.stat-icon-circle.theme-orange {
    background: #FFF7ED;
    color: #F97316;
}

.stat-icon-circle.theme-green {
    background: #F0FDF4;
    color: #22C55E;
}

.stat-icon-circle.theme-purple {
    background: #F5F3FF;
    color: #8B5CF6;
}

.stat-icon-circle.theme-amber {
    background: #FFFBEB;
    color: #F59E0B;
}

.stat-text h3 {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 2px;
    color: var(--text-main);
    line-height: 1;
}

.stat-text p {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
}

/* Mission */
.mission-section {
    padding: 50px 60px;
    background: #ffffff;
}

.mission-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.mission-left h2 {
    font-family: var(--font-display);
    font-size: 40px;
    margin-bottom: 25px;
}

.mission-left p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.mission-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mission-list {
    display: flex;
    flex-direction: column;
}

.mission-item {
    display: flex;
    gap: 25px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.mission-item:last-child {
    border-bottom: none;
}

.mission-item:first-child {
    padding-top: 0;
}

.mission-item .m-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.m-icon.orange {
    background: #FFF7ED;
    color: #F97316;
}

.m-icon.green {
    background: #F0FDF4;
    color: #22C55E;
}

.m-icon.purple {
    background: #FAF5FF;
    color: #A855F7;
}

.mission-item h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-main);
}

.mission-item p {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Founder */
.founder-section {
    padding: 100px 60px;
    background: #FFF9F5;
    position: relative;
    overflow: hidden;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.founder-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.founder-image {
    position: relative;
}

.founder-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 20px 20px 0px var(--amber);
}

.founder-content h3 {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-main);
}

.founder-content p strong {
    color: var(--amber);
}

.founder-signature-block {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.f-info strong {
    display: block;
    font-size: 18px;
}

.f-info span {
    font-size: 14px;
    color: var(--text-muted);
}

.signature-img {
    height: 50px;
    opacity: 0.8;
}

.founder-quote {
    position: absolute;
    top: 95%;
    right: 0;
    transform: translateY(-50%);
    width: 350px;
    background: #FFF7ED;
    padding: 30px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quote-icon {
    font-size: 64px;
    color: #F97316;
    line-height: 1;
    font-family: serif;
}

.founder-quote p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    font-style: italic;
    margin: 0;
}

/* Why Choose */
.why-choose-section {
    padding: 50px 60px;
    background: #FFFFFF;
    text-align: center;
}

.why-choose-header {
    margin-bottom: 60px;
}

.why-choose-header h2 {
    font-family: var(--font-display);
    font-size: 40px;
    margin-top: 15px;
}

.why-choose-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.choice-card {
    padding: 30px;
    border-radius: 16px;
    background: #FFFFFF;
    border: 1px solid #F1F5F9;
    transition: all 0.3s ease;
    text-align: left;
}

.choice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.choice-card.theme-orange {
    background: #FFF7ED;
    border-color: #FFEDD5;
}

.choice-card.theme-green {
    background: #F0FDF4;
    border-color: #DCFCE7;
}

.choice-card.theme-purple {
    background: #FAF5FF;
    border-color: #EDE9FE;
}

.choice-card.theme-blue {
    background: #F0F9FF;
    border-color: #E0F2FE;
}

.choice-card.theme-rose {
    background: #FFF1F2;
    border-color: #FFE4E6;
}

.choice-card.theme-orange .c-icon {
    color: #F97316;
}

.choice-card.theme-green .c-icon {
    color: #16A34A;
}

.choice-card.theme-purple .c-icon {
    color: #7C3AED;
}

.choice-card.theme-blue .c-icon {
    color: #0284C7;
}

.choice-card.theme-rose .c-icon {
    color: #E11D48;
}

.choice-card .c-icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.choice-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 12px;
}

.choice-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Experience Section Redesign */
.experience-section {
    padding: 0px 0px 30px 0px;
    background: #FFFBF9;
}

.exp-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    background: #FFFFFF;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    align-items: center;
    padding: 10px;
}

.exp-image {
    flex: 0 0 35%;
    min-width: 300px;
    height: 320px;
}

.exp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 19px;
    display: block;
}

.exp-content-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    gap: 40px;
}

.exp-text-block {
    flex: 1.4;
}

.exp-text-block h2 {
    font-family: var(--font-display);
    font-size: 34px;
    margin: 15px 0;
    line-height: 1.2;
    color: var(--text-main);
}

.exp-text-block p {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 450px;
    margin: 0;
    line-height: 1.6;
}

.exp-list {
    flex: 1;
    list-style: none;
    padding: 0;
}

.exp-list li {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
}

.exp-list i {
    color: var(--amber);
    font-size: 18px;
}

.exp-badge {
    flex: 0 0 200px;
    text-align: center;
    padding: 20px;
    background: #FFFAF8;
    border-radius: 24px;
    border: 1px solid rgba(249, 115, 22, 0.05);
}

.badge-num {
    font-size: 44px;
    font-weight: 800;
    color: var(--text-main);
    display: block;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .exp-container {
        flex-direction: column;
        padding: 15px;
        border-radius: 30px;
    }
    .exp-image {
        flex: 0 0 auto;
        width: 100%;
        height: 280px;
        min-width: unset;
    }
    .exp-content-wrapper {
        flex-direction: column;
        padding: 30px 15px;
        align-items: flex-start;
        gap: 40px;
    }
    .exp-text-block h2 {
        font-size: 28px;
    }
    .exp-badge {
        flex: 0 0 auto;
        width: 100%;
        padding: 30px;
        border-left: none;
        border-top: 1px solid rgba(0,0,0,0.05);
    }
}



/* Mobile Responsiveness */
@media (max-width: 1100px) {

    .about-hero-container,
    .mission-container,
    .founder-container,
    .exp-container {
        grid-template-columns: 1fr;
        gap: 43px;
    }

    .founder-quote {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 40px;
    }

    .exp-badge {
        position: static;
        margin-top: 40px;
    }

    .stats-bar-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    h2,
    h3 {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    .about-hero,
    .mission-section,
    .founder-section,
    .why-choose-section,
    .experience-section {
        padding: 60px 20px;
    }

    .about-hero-content h1 {
        font-size: 36px;
    }

    .stats-bar-container {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none !important;
        border-bottom: 1px solid #F1F5F9;
        padding: 20px 0;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}
/* ── DESTINATIONS PAGE ── */

.dest-hero {
    padding: 140px 60px 60px;
    background: #FFFFFF;
}

.dest-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.dest-hero-left {
    flex: 1;
    max-width: 600px;
}

.dest-hero-left h1 {
    font-family: var(--font-display);
    font-size: 64px;
    line-height: 1.1;
    margin: 25px 0;
    color: var(--text-main);
    font-weight: 700;
}

.dest-hero-left h1 .accent {
    color: #F97316;
}

.dest-hero-left p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
}

.dest-search-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    padding: 15px 25px;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    max-width: 450px;
}

.dest-search-box i {
    color: #94A3B8;
    font-size: 18px;
}

.dest-search-box input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 15px;
    color: var(--text-main);
}

.dest-hero-right {
    flex: 1;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.hero-image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #FFFFFF;
    font-size: 13px;
    border: 1px solid rgba(255,255,255,0.2);
}

.badge-icon-bg {
    width: 32px;
    height: 32px;
    background: #F97316;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Region Section */
.region-section {
    padding: 80px 60px;
    background: #F8FAFC;
}

.region-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.region-card {
    background: #FFFFFF;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.region-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.region-img {
    height: 250px;
    position: relative;
}

.region-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.region-icon-float {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22C55E;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.region-info {
    padding: 30px;
}

.region-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.region-header h3 {
    font-size: 24px;
    font-family: var(--font-display);
    margin: 0;
}

.region-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid #E2E8F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s;
}

.region-arrow:hover {
    background: #F97316;
    color: #FFFFFF;
    border-color: #F97316;
}

.region-info p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.popular-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.popular-tags span {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
}

.popular-tags a {
    font-size: 12px;
    padding: 4px 12px;
    background: #F1F5F9;
    border-radius: 100px;
    text-decoration: none;
    color: #64748B;
    transition: all 0.2s;
}

.popular-tags a:hover {
    background: #E2E8F0;
    color: var(--text-main);
}

/* Handpicked Section */
.handpicked-section {
    padding: 50px 60px;
}

.handpicked-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.handpicked-header h2 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.handpicked-header p {
    color: var(--text-muted);
    max-width: 500px;
}

.dest-card-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.dest-card {
    background: #FFFFFF;
    border: 1px solid #F1F5F9;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.dest-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.d-img {
    height: 180px;
}

.d-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.d-content {
    padding: 20px;
}

.d-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.d-meta h4 {
    font-size: 16px;
    margin: 0;
}

.duration {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 4px;
}

.d-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 15px;
}

.d-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.d-tags span {
    font-size: 11px;
    color: #64748B;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-explore {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    transition: all 0.2s;
}

.btn-explore:hover {
    background: #F97316;
    color: #FFFFFF;
    border-color: #F97316;
}

/* Why Dest Redesign */
.why-dest-section {
    padding: 50px 60px;
    background: #FFFFFF;
}

.why-dest-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.why-dest-left {
    flex: 0 0 300px;
}

.why-title {
    font-family: var(--font-display);
    font-size: 32px;
    line-height: 1.2;
    color: var(--text-main);
    font-weight: 700;
}

.why-dest-right {
    flex: 1;
}

.why-dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 0;
}

.why-dest-item {
    padding: 0 30px;
    text-align: left;
    border-left: 1px solid #E2E8F0;
}

.why-dest-item:first-child {
    border-left: none;
    padding-left: 0;
}

.why-dest-item .w-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.why-dest-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.why-dest-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Icon Background Colors */
.bg-orange { background: #FFF7ED; color: #F97316; }
.bg-green { background: #F0FDF4; color: #22C55E; }
.bg-purple { background: #FAF5FF; color: #A855F7; }
.bg-yellow { background: #FEFCE8; color: #EAB308; }

/* Partner Logos Marquee */
.logo-marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
    margin: 40px 0;
}

.logo-marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 80px;
    animation: scroll-marquee 40s linear infinite;
}

.logo-marquee-content img {
    height: 35px;
    filter: grayscale(1) opacity(0.6);
    transition: all 0.3s;
}

.logo-marquee-content img:hover {
    filter: grayscale(0) opacity(1);
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logos-section {
    padding: 50px 60px;
}

.partner-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    border-bottom: 1px solid #F1F5F9;
    margin-bottom: 40px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 0;
    font-size: 15px;
    font-weight: 600;
    color: #94A3B8;
    cursor: pointer;
    position: relative;
}

.tab-btn.active {
    color: #F97316;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #F97316;
}

.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.logo-grid img {
    height: 30px;
    filter: grayscale(1) opacity(0.6);
}

.more-badge {
    padding: 8px 15px;
    background: #FFF7ED;
    color: #F97316;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
}

.partner-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.p-line {
    height: 1px;
    background: #E2E8F0;
    flex: 0 0 100px;
}

.partner-footer p {
    font-size: 13px;
    font-weight: 600;
    color: #94A3B8;
    font-style: italic;
}

/* Dest CTA */
.dest-cta-section {
    padding: 50px 60px;
}

.dest-cta-card {
    background: #FFF7ED;
    padding: 60px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-text h3 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.cta-text p {
    font-size: 16px;
    color: #64748B;
    max-width: 600px;
}

@media (max-width: 768px) {
    .dest-hero {
        padding: 110px 20px 40px;
    }
    .dest-hero-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .dest-hero-left h1 {
        font-size: 38px;
        line-height: 1.1;
    }
    .dest-hero-left p {
        font-size: 16px;
    }
    .dest-search-box {
        margin: 0 auto;
    }
    .dest-hero-right {
        width: 100%;
    }
    .hero-image-wrapper img {
        border-radius: 24px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .hero-image-badge {
        left: 15px;
        bottom: 15px;
        padding: 8px 15px;
        font-size: 11px;
    }
    .badge-icon-bg {
        width: 28px;
        height: 28px;
    }

    .handpicked-section {
        padding: 60px 20px;
    }
    .dest-card-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .d-img {
        height: 220px;
    }
    
    .why-dest-section {
        padding: 50px 20px;
    }
    .why-dest-flex {
        flex-direction: column;
        gap: 40px;
    }
    .why-dest-left {
        flex: 0 0 auto;
        width: 100%;
    }
    .why-dest-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .why-dest-item {
        border-left: none;
        padding: 0;
    }
    .dest-cta-section {
        padding: 50px 20px;
    }
    .dest-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        gap: 30px;
    }
    .dest-cta-card .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: auto;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.whatsapp-float i {
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float span {
    font-size: 15px;
    font-family: var(--font-body);
    font-weight: 700;
    margin-left: 0;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.3s ease, margin 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: translateY(-5px) scale(1.05);
    color: #fff;
    width: 180px;
    border-radius: 50px;
}

.whatsapp-float:hover span {
    max-width: 150px;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 25px;
        left: 25px;
        right: auto;
        height: 55px;
        width: 55px;
        padding: 0;
        border-radius: 50%;
    }
    .whatsapp-float i {
        font-size: 26px;
    }
    .whatsapp-float span {
        display: none;
    }
}
