:root {
    --navy: #0a0f1e;
    --deep: #111827;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --cream: #f5f0e8;
    --muted: #6b7280;
    --white: #ffffff;
    --card-bg: #141c2e;
    --border: rgba(201, 168, 76, 0.2);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 5%;
    background: rgba(10, 15, 30, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--white);
}

.logo span {
    color: var(--gold);
}

nav ul {
    display: flex;
    gap: 2.4rem;
    list-style: none;
}

nav ul a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
}

nav ul a:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 2px;
    font-weight: 600 !important;
    transition: background 0.2s !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    color: var(--navy) !important;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 5% 5rem;
    overflow: hidden;
}

.hero-globe {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 40%, rgba(201, 168, 76, 0.18) 0%, rgba(10, 15, 30, 0) 65%),
        radial-gradient(circle at 70% 60%, rgba(30, 60, 120, 0.35) 0%, transparent 60%);
    border: 1px solid rgba(201, 168, 76, 0.12);
    animation: globeSpin 18s linear infinite;
    box-shadow: inset 0 0 120px rgba(201, 168, 76, 0.06), 0 0 80px rgba(30, 60, 120, 0.3);
}

.hero-globe::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    border: 1px dashed rgba(201, 168, 76, 0.15);
    animation: globeSpin 30s linear infinite reverse;
}

/* Grid lines on globe */
.hero-globe::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 58px, rgba(201, 168, 76, 0.05) 59px),
        repeating-linear-gradient(90deg, transparent, transparent 58px, rgba(201, 168, 76, 0.05) 59px);
}

@keyframes globeSpin {
    from {
        transform: translateY(-50%) rotate(0deg);
    }

    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 2px;
    margin-bottom: 2rem;
    animation: fadeUp 0.8s ease both;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s 0.15s ease both;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
    margin-bottom: 2.8rem;
    font-weight: 300;
    animation: fadeUp 0.8s 0.3s ease both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.45s ease both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gold);
    color: var(--navy);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    animation: fadeUp 0.8s 0.6s ease both;
}

.stat-item {}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── MARQUEE ── */
.marquee-wrap {
    overflow: hidden;
    background: var(--gold);
    padding: 0.75rem 0;
    position: relative;
    z-index: 2;
}

.marquee-track {
    display: flex;
    gap: 3rem;
    animation: marquee 22s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--navy);
    flex-shrink: 0;
}

.marquee-track span::before {
    content: '✦';
    margin-right: 1.2rem;
    opacity: 0.5;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── DESTINATIONS ── */
section {
    position: relative;
    z-index: 2;
}

.destinations {
    padding: 7rem 5%;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 520px;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 3.5rem;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.dest-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
}

.dest-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.dest-card:nth-child(1) {
    grid-column: span 2;
}

.dest-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.dest-card:nth-child(1) .dest-img {
    height: 260px;
}

.dest-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 15, 30, 0.85) 0%, transparent 50%);
}

.dest-body {
    padding: 1.2rem 1.4rem;
}

.dest-country {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.dest-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.dest-jobs {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

/* backgrounds using CSS gradients as stand-ins for images */
.bg-dubai {
    background: linear-gradient(135deg, #1a3a5c 0%, #c9a84c 100%);
}

.bg-london {
    background: linear-gradient(135deg, #2c3e50 0%, #4a6fa5 100%);
}

.bg-canada {
    background: linear-gradient(135deg, #1e3c72 0%, #c0392b 100%);
}

.bg-germany {
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
}

.bg-aus {
    background: linear-gradient(135deg, #1a472a 0%, #f9ca24 100%);
}

/* ── HOW IT WORKS ── */
.how {
    padding: 7rem 5%;
    background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.03), transparent);
}

.how-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.step {
    position: relative;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: border-color 0.3s;
}

.step:hover {
    border-color: var(--gold);
}

.step::after {
    content: '';
    position: absolute;
    top: 2.2rem;
    right: -0.75rem;
    width: 1.5rem;
    height: 1px;
    background: var(--border);
}

.step:last-child::after {
    display: none;
}

.step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(201, 168, 76, 0.15);
    line-height: 1;
    margin-bottom: 1rem;
}

.step-icon {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.step h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.6rem;
}

.step p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    font-weight: 300;
}

/* ── CATEGORIES ── */
.categories {
    padding: 7rem 5%;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 3.5rem;
}

.cat-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.5rem;
    cursor: pointer;
    transition: border-color 0.3s, transform 0.2s;
    text-decoration: none;
    color: inherit;
}

.cat-card:hover {
    border-color: var(--gold);
    transform: translateX(4px);
}

.cat-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.cat-name {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.cat-count {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

.cat-arrow {
    margin-left: auto;
    color: rgba(201, 168, 76, 0.4);
    font-size: 1.1rem;
    transition: color 0.2s, transform 0.2s;
}

.cat-card:hover .cat-arrow {
    color: var(--gold);
    transform: translateX(4px);
}

/* ── TESTIMONIALS ── */
.testimonials {
    padding: 7rem 5%;
    background: var(--card-bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.testi-card {
    padding: 2rem;
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: 4px;
    position: relative;
}

.testi-card::before {
    content: '\201C';
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: rgba(201, 168, 76, 0.15);
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
}

.testi-text {
    font-size: 0.925rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.av1 {
    background: linear-gradient(135deg, #c9a84c, #e8c97a);
    color: var(--navy);
}

.av2 {
    background: linear-gradient(135deg, #4a6fa5, #2c3e50);
    color: white;
}

.av3 {
    background: linear-gradient(135deg, #1a472a, #2d6a4f);
    color: white;
}

.testi-name {
    font-size: 0.875rem;
    font-weight: 500;
}

.testi-role {
    font-size: 0.75rem;
    color: var(--gold);
}

/* ── CTA BANNER ── */
.cta-section {
    padding: 8rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
}

.cta-section .section-label {
    justify-content: center;
    display: flex;
}

.cta-section .section-title {
    max-width: 680px;
    margin: 0 auto 1.5rem;
}

.cta-section .section-sub {
    max-width: 480px;
    margin: 0 auto 3rem;
}

/* ── FOOTER ── */
footer {
    background: #070b15;
    padding: 4rem 5% 2rem;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.footer-brand .logo {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.8;
    font-weight: 300;
    max-width: 260px;
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.65rem;
}

.footer-col ul a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.25);
}

.footer-bottom p a {
    color: var(--gold);
    text-decoration: none;
}

/* ── APPLY MODAL ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 11, 21, 0.92);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--deep);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 3rem;
    max-width: 560px;
    width: 100%;
    transform: translateY(24px);
    transition: transform 0.3s;
}

.modal-overlay.open .modal {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.modal h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
}

.modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.modal-close:hover {
    color: var(--white);
}

.form-group {
    margin-bottom: 1.3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

input,
select,
textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    border-radius: 3px;
    outline: none;
    transition: border-color 0.2s;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold);
}

select option {
    background: var(--deep);
}

textarea {
    resize: vertical;
    height: 80px;
}

.modal-submit {
    width: 100%;
    margin-top: 0.5rem;
}

.success-msg {
    display: none;
    text-align: center;
    padding: 2rem 0;
}

.success-msg.show {
    display: block;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-msg h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.success-msg p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dest-card:nth-child(1) {
        grid-column: span 2;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps .step::after {
        display: none;
    }

    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .hero-globe {
        width: 300px;
        height: 300px;
        opacity: 0.4;
    }

    .dest-grid {
        grid-template-columns: 1fr;
    }

    .dest-card:nth-child(1) {
        grid-column: span 1;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}