@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
    --bg: #020617;
    --bg-soft: #070b16;
    --text: #e2e8f0;
    --muted: #94a3b8;
    --accent: #5de0e6;
    --accent-2: #f767a1;
    --accent-3: #9b8bff;
    --surface: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
    --glass: rgba(8, 10, 25, 0.6);
    --shadow: 0 20px 60px rgba(3, 7, 18, 0.6);
}

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

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: radial-gradient(circle at 20% 20%, rgba(93, 224, 230, 0.15), transparent 35%),
                radial-gradient(circle at 80% 0%, rgba(247, 103, 161, 0.15), transparent 30%),
                radial-gradient(circle at 50% 80%, rgba(155, 139, 255, 0.2), transparent 40%),
                var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

body.locked {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.noise-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.6' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
    opacity: 0.4;
}

.page {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 20px;
}

.floating-header {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1200px, calc(100% - 32px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    background: rgba(2, 6, 23, 0.55);
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    z-index: 1000;
}

.floating-header.compact {
    padding: 12px 20px;
    border-radius: 24px;
    background: rgba(2, 6, 23, 0.85);
    border-color: rgba(255,255,255,0.08);
}

.logo-sigil {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.logo-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    display: inline-block;
}

.logo-sigil small {
    display: block;
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: -4px;
    letter-spacing: 0.04em;
}

.primary-nav {
    display: flex;
    gap: 18px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.primary-nav a {
    color: var(--muted);
    transition: color 0.2s ease;
}

.primary-nav a:hover {
    color: var(--text);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ghost-link {
    color: var(--accent);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-panel {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(.65,.05,.36,1);
    z-index: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.mobile-panel.open {
    transform: translateY(0);
}

.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
    padding-top: 160px;
    padding-bottom: 120px;
    position: relative;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-copy h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.05;
    margin: 0 0 24px;
    
}

.hero-copy h1 span {
    color: var(--accent);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.8rem;
    color: var(--muted);
}

.lede {
    color: var(--muted);
    font-size: 1.15rem;
    width: 100%;
}

.hero-cta {
    margin: 32px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn {
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    color: #051420;
    box-shadow: 0 10px 40px rgba(93, 224, 230, 0.3);
}

.btn-outline {
    border: 1px solid var(--border);
    color: var(--text);
    background: transparent;
}

.btn:hover {
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-stats article {
    flex: 1 1 140px;
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.03);
}

.hero-stats article span {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent);
}

.hero-visual {
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 30px;
    background: radial-gradient(circle, rgba(93, 224, 230, 0.12), transparent 60%);
    position: relative;
    overflow: hidden;
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(93, 224, 230, 0.15), rgba(247, 103, 161, 0.15));
    mix-blend-mode: color-dodge;
    pointer-events: none;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.action-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 20px;
    background: rgba(8, 10, 25, 0.7);
    border: 1px solid var(--border);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.action-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    background: rgba(8, 10, 25, 0.9);
    box-shadow: 0 8px 24px rgba(93, 224, 230, 0.15);
}

.action-card svg {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    margin-top: 2px;
    transition: transform 0.3s ease;
}

.action-card:hover svg {
    transform: scale(1.1);
}

.action-card h3 {
    margin: 0 0 6px;
    font-size: 1.1rem;
    font-weight: 600;
}

.action-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.4;
}

.action-primary {
    border-color: rgba(93, 224, 230, 0.3);
}

.action-primary:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(93, 224, 230, 0.25);
}

.action-primary svg {
    color: var(--accent);
}

.action-secondary {
    border-color: rgba(247, 103, 161, 0.3);
}

.action-secondary:hover {
    border-color: var(--accent-2);
    box-shadow: 0 8px 24px rgba(247, 103, 161, 0.25);
}

.action-secondary svg {
    color: var(--accent-2);
}

.action-tertiary {
    border-color: rgba(155, 139, 255, 0.3);
}

.action-tertiary:hover {
    border-color: var(--accent-3);
    box-shadow: 0 8px 24px rgba(155, 139, 255, 0.25);
}

.action-tertiary svg {
    color: var(--accent-3);
}

.hero-flags {
    margin: 32px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
}

.hero-flags li {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid transparent;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: border 0.3s ease;
}

.hero-flags li.active {
    border-color: var(--accent);
    color: var(--accent);
}

.section-heading {
    margin-bottom: 32px;
}

.section-heading h2 {
    margin: 8px 0;
    font-size: clamp(2rem, 4vw, 3rem);
}

.section-heading p {
    color: var(--muted);
    max-width: 600px;
}

.about {
    padding: 100px 0;
}

.about-pane {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    padding: 48px;
    border: 1px solid var(--border);
    border-radius: 32px;
    background: var(--glass);
    box-shadow: var(--shadow);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.about-grid article {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255,255,255,0.02);
}

.about-grid span {
    display: block;
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 600;
}

.destinations {
    padding: 100px 0;
}

.world-map-module {
    border: 1px solid var(--border);
    border-radius: 32px;
    background: rgba(255,255,255,0.03);
    padding: 24px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 24px;
}

#atlasMap {
    width: 100%;
    min-height: 520px;
    border-radius: 24px;
    overflow: hidden;
}

.map-legend p {
    margin-bottom: 12px;
    color: var(--muted);
}

.map-legend ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.map-legend li {
    padding-left: 18px;
    position: relative;
    color: var(--text);
}

.map-legend li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.dest-card {
    position: relative;
    padding: 24px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
    scroll-snap-align: start;
    min-height: 220px;
    overflow: hidden;
}

.dest-card::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.6;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.25), transparent 55%);
    pointer-events: none;
}

.dest-card h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.dest-card p {
    color: var(--muted);
}

.dest-card span {
    position: absolute;
    bottom: 20px;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
}

.dest-card[data-country="usa"] { background: linear-gradient(135deg, rgba(93,224,230,0.15), rgba(247,103,161,0.1)); }
.dest-card[data-country="poland"] { background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,0,0,0.12)); }
.dest-card[data-country="canada"] { background: linear-gradient(120deg, rgba(255,255,255,0.05), rgba(255,0,0,0.15)); }
.dest-card[data-country="schengen"] { background: linear-gradient(145deg, rgba(9,40,110,0.2), rgba(255,204,0,0.12)); }
.dest-card[data-country="newzealand"] { background: linear-gradient(120deg, rgba(0,28,76,0.25), rgba(200,16,46,0.12)); }
.dest-card[data-country="southafrica"] { background: linear-gradient(135deg, rgba(0,119,73,0.2), rgba(255,255,255,0.05)); }
.dest-card[data-country="australia"] { background: linear-gradient(135deg, rgba(0,33,71,0.2), rgba(200,16,46,0.12)); }
.dest-card[data-country="china"] { background: linear-gradient(140deg, rgba(222,41,16,0.2), rgba(255,222,0,0.08)); }
.dest-card[data-country="hongkong"] { background: linear-gradient(140deg, rgba(218,18,26,0.2), rgba(255,255,255,0.05)); }
.dest-card[data-country="japan"] { background: radial-gradient(circle, rgba(188,0,45,0.2), rgba(255,255,255,0.05)); }
.dest-card[data-country="uk"] { background: linear-gradient(140deg, rgba(4,29,73,0.2), rgba(200,16,46,0.1)); }
.dest-card[data-country="ethiopia"] { background: linear-gradient(140deg, rgba(13,94,175,0.2), rgba(238,42,36,0.1)); }
.dest-card[data-country="cotedivoire"] { background: linear-gradient(140deg, rgba(255,215,0,0.2), rgba(0,158,96,0.1)); }
.dest-card[data-country="india"] { background: linear-gradient(140deg, rgba(255,153,51,0.2), rgba(19,136,8,0.1)); }
.dest-card[data-country="tanzania"] { background: linear-gradient(140deg, rgba(0,102,51,0.2), rgba(255,204,0,0.12)); }
.dest-card[data-country="kenya"] { background: linear-gradient(140deg, rgba(0,0,0,0.25), rgba(0,102,51,0.15)); }
.dest-card[data-country="uganda"] { background: linear-gradient(140deg, rgba(0,0,0,0.25), rgba(255,215,0,0.1)); }
.dest-card[data-country="zambia"] { background: linear-gradient(140deg, rgba(30,144,255,0.2), rgba(255,255,255,0.05)); }
.dest-card[data-country="mexico"] { background: linear-gradient(140deg, rgba(0,102,51,0.2), rgba(206,17,38,0.12)); }
.dest-card[data-country="brazil"] { background: radial-gradient(circle, rgba(0,156,59,0.2), rgba(255,223,0,0.1)); }
.dest-card[data-country="argentina"] { background: linear-gradient(180deg, rgba(116,172,223,0.2), rgba(255,255,255,0.05)); }
.dest-card[data-country="oman"] { background: linear-gradient(140deg, rgba(206,17,38,0.2), rgba(0,0,0,0.12)); }
.dest-card[data-country="uae"] { background: linear-gradient(140deg, rgba(0,0,0,0.25), rgba(255,255,255,0.1)); }
.dest-card[data-country="qatar"] { background: linear-gradient(140deg, rgba(128,0,64,0.3), rgba(255,255,255,0.08)); }
.dest-card[data-country="saudi"] { background: linear-gradient(140deg, rgba(0,102,0,0.25), rgba(255,255,255,0.08)); }
.dest-card[data-country="singapore"] { background: linear-gradient(140deg, rgba(255,0,0,0.25), rgba(255,255,255,0.08)); }
.dest-card[data-country="southkorea"] { background: linear-gradient(140deg, rgba(0,45,98,0.25), rgba(255,255,255,0.1)); }
.dest-card[data-country="indonesia"] { background: linear-gradient(140deg, rgba(220,20,60,0.25), rgba(255,255,255,0.08)); }

.why {
    padding: 90px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.why-grid article {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    background: rgba(255,255,255,0.02);
    min-height: 180px;
}

.why-grid h3 {
    margin-top: 0;
}

.process {
    padding: 90px 0;
}

.process-flow {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
    display: grid;
    gap: 16px;
}

.process-flow li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: start;
    padding: 18px 24px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255,255,255,0.02);
}

.process-flow span {
    font-size: 1.4rem;
    color: var(--accent);
    letter-spacing: 0.2em;
}

.trust {
    padding: 90px 0;
}

.trust-orbit {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.trust-orbit span {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
}

.logo-marquee {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255,255,255,0.02);
}

.logo-line {
    display: flex;
    gap: 40px;
    padding: 20px;
    animation: marquee 20s linear infinite;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted);
}

.logo-line + .logo-line {
    animation-direction: reverse;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.faq {
    padding: 90px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.02);
    cursor: pointer;
}

.faq-item header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.faq-item button {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    position: relative;
}

.faq-item button::before,
.faq-item button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: var(--text);
    transform: translate(-50%, -50%);
}

.faq-item button::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.open button::after {
    opacity: 0;
}

.faq-item p {
    margin-top: 12px;
    color: var(--muted);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open p {
    max-height: 160px;
}

.instagram {
    padding: 90px 0;
}

.instagram-profiles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.instagram-profile {
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(12px);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.profile-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #051420;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-avatar svg {
    width: 32px;
    height: 32px;
}

.profile-info {
    flex: 1;
}

.profile-info h3 {
    margin: 0 0 4px;
    font-size: 1.2rem;
    color: var(--text);
}

.profile-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
}

.profile-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.profile-link:hover {
    border-color: var(--accent);
    background: rgba(93, 224, 230, 0.1);
    color: var(--accent);
    transform: translateY(-2px);
}

.profile-link svg {
    width: 18px;
    height: 18px;
}

.instagram-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.instagram-posts iframe {
    width: 100%;
    min-height: 400px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
}

.post-placeholder {
    grid-column: 1 / -1;
    padding: 40px;
    text-align: center;
    color: var(--muted);
    border: 1px dashed var(--border);
    border-radius: 12px;
    background: rgba(255,255,255,0.01);
}

.post-placeholder p {
    margin: 0;
    font-size: 0.95rem;
}

.contacts {
    padding: 90px 0 140px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.contact-card {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.03);
}

.contact-actions {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.map-wrapper {
    margin-top: 32px;
    border: 1px solid var(--border);
    border-radius: 32px;
    overflow: hidden;
    height: 420px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.dest-card,
.why-grid article,
.process-flow li,
.orbit-card,
.contact-card {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.site-footer {
    border-top: 1px solid var(--border);
    padding: 32px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    color: var(--muted);
}

.site-footer strong {
    color: var(--text);
}

.site-footer .footer-links {
    display: flex;
    gap: 16px;
}

@media (max-width: 960px) {
    .floating-header {
        border-radius: 24px;
    }
    .primary-nav {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .page {
        padding: 0 16px;
    }
    .quick-actions {
        grid-template-columns: 1fr;
    }
    .instagram-profiles {
        max-width: 100%;
    }
    .profile-header {
        flex-wrap: wrap;
    }
    .profile-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .floating-header {
        top: 12px;
        padding: 12px 18px;
    }
    .hero {
        padding-top: 140px;
    }
    .hero-cta {
        flex-direction: column;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
    .destinations-track {
        grid-auto-columns: minmax(220px, 80%);
    }
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    .site-footer {
        flex-direction: column;
        text-align: center;
    }
}

