/* ============================================
   GLOBELLO TRAVEL — Stylesheet
   Same palette as main site — Black + Orange
   ============================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
    --orange: #F97316;
    --orange-2: #FB923C;
    --orange-dim: rgba(249, 115, 22, 0.12);
    --orange-border: rgba(249, 115, 22, 0.22);

    --bg: #0a0a0a;
    --bg-card: #111111;
    --bg-card-2: #161616;

    --glass: rgba(255, 255, 255, 0.03);
    --glass-2: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.07);
    --border-orange: rgba(249, 115, 22, 0.22);

    --text: #F5F0EB;
    --muted: rgba(245, 240, 235, 0.52);
    --muted-2: rgba(245, 240, 235, 0.28);

    --green: #22c55e;
    --green-dim: rgba(34, 197, 94, 0.12);
    --green-border: rgba(34, 197, 94, 0.25);
    --red: #ef4444;
    --red-dim: rgba(239, 68, 68, 0.12);
    --red-border: rgba(239, 68, 68, 0.25);
    --yellow: #f59e0b;
    --yellow-dim: rgba(245, 158, 11, 0.12);
    --yellow-border: rgba(245, 158, 11, 0.25);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --radius: 14px;
    --radius-lg: 22px;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    font-weight: 300;
    line-height: 1.6;
}

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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 999;
    opacity: 0.5;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-orange); border-radius: 2px; }
::selection { background: rgba(249, 115, 22, 0.2); color: var(--text); }

/* ---------- CURSOR ---------- */
#cursor {
    position: fixed;
    width: 10px; height: 10px;
    background: var(--orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .3s, height .3s;
    display: none;
}

#cursor-ring {
    position: fixed;
    width: 38px; height: 38px;
    border: 1px solid rgba(249, 115, 22, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width .3s, height .3s, opacity .3s;
    display: none;
}

#cursor.grow { width: 20px; height: 20px; }
#cursor-ring.grow { width: 58px; height: 58px; opacity: 0.5; }

@media (pointer: fine) {
    #cursor, #cursor-ring { display: block; }
}

/* ---------- LAYOUT ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section { padding: 8rem 0; position: relative; z-index: 2; }
.section-border { border-top: 1px solid var(--border); }

/* ---------- REVEAL ---------- */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ---------- TYPOGRAPHY ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1rem;
}
.eyebrow::before {
    content: '';
    display: block;
    width: 22px; height: 1px;
    background: var(--orange);
    flex-shrink: 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text);
}
.section-title em {
    font-style: italic;
    background: linear-gradient(90deg, var(--orange), var(--orange-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.82;
    max-width: 480px;
    margin-top: 0.75rem;
}

.section-header { margin-bottom: 4rem; }

/* ---------- BUTTONS ---------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, var(--orange), var(--orange-2));
    color: #0a0a0a;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    border: none;
    transition: var(--transition);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(249, 115, 22, 0.3);
    opacity: 0.92;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--muted);
    font-size: 0.9rem;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--border-orange); color: var(--orange); }

/* ---------- ORBS ---------- */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    animation: drift 25s ease-in-out infinite;
}
.orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.07), transparent 70%);
    top: -25%; right: -15%;
    animation-duration: 28s;
}
.orb-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(120, 40, 10, 0.1), transparent 70%);
    bottom: -20%; left: -10%;
    animation-duration: 32s;
    animation-delay: -12s;
    animation-direction: reverse;
}
.orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.04), transparent 70%);
    top: 50%; left: 40%;
    animation-duration: 20s;
    animation-delay: -6s;
}
@keyframes drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -25px) scale(1.04); }
    66% { transform: translate(-25px, 35px) scale(0.96); }
}

/* ---------- NAVBAR ---------- */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 500;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
#navbar.scrolled {
    background: rgba(10, 10, 10, 0.93);
    backdrop-filter: blur(20px);
    padding: 1rem 2rem;
    border-bottom-color: var(--border);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon { width: 32px; height: 32px; flex-shrink: 0; }
.logo-text {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 600;
    color: white;
    line-height: 1;
}
.logo-text span {
    background: linear-gradient(90deg, var(--orange), var(--orange-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.85rem; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--orange); }

.nav-link-ghost {
    border: 1px solid var(--border) !important;
    color: var(--muted) !important;
    padding: 0.4rem 1rem;
    border-radius: 100px;
}
.nav-link-ghost:hover { border-color: var(--border-orange) !important; color: var(--orange) !important; }

.nav-cta {
    background: linear-gradient(90deg, var(--orange), var(--orange-2));
    color: #0a0a0a !important;
    font-weight: 600 !important;
    padding: 0.45rem 1.25rem;
    border-radius: 100px;
    font-size: 0.82rem !important;
}

.nav-right { display: flex; align-items: center; gap: 1rem; }

.nav-login {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--muted);
    transition: color 0.2s;
}
.nav-login:hover { color: var(--orange); }

/* ---------- HAMBURGER ---------- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px; height: 36px;
    padding: 4px;
    background: none;
    border: none;
    z-index: 600;
    position: relative;
}
.hamburger span {
    display: block;
    height: 1.5px;
    background: white;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- DRAWER ---------- */
.drawer { position: fixed; inset: 0; z-index: 400; pointer-events: none; }
.drawer.open { pointer-events: all; }

.drawer-backdrop {
    position: absolute; inset: 0;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.drawer.open .drawer-backdrop { opacity: 1; }

.drawer-panel {
    position: absolute;
    top: 0; right: 0;
    height: 100%;
    width: min(320px, 85vw);
    background: #0d0a08;
    border-left: 1px solid var(--border);
    padding: 6rem 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.drawer.open .drawer-panel { transform: translateX(0); }

.drawer-links { flex: 1; display: flex; flex-direction: column; }
.drawer-links li { border-bottom: 1px solid var(--border); }
.drawer-link {
    display: block;
    padding: 1.1rem 0;
    font-size: 1.05rem;
    color: var(--muted);
    transition: color 0.2s;
    font-weight: 300;
}
.drawer-link:hover { color: var(--orange); }
.drawer-cta {
    margin-top: 2.5rem;
    text-align: center;
    background: linear-gradient(90deg, var(--orange), var(--orange-2));
    color: #0a0a0a !important;
    font-weight: 600 !important;
    font-size: 0.9rem;
    padding: 0.9rem 1.5rem;
    border-radius: 100px;
    display: block;
}

/* ---------- HERO ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
    z-index: 2;
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0a1a 50%, #0a0a0a 100%);
}

.hero-inner {
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 3rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass);
    border: 1px solid var(--border-orange);
    color: var(--orange);
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--orange);
    animation: blink 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.6); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 300;
    line-height: 1.04;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.hero-line {
    display: block;
    color: white;
    opacity: 0;
    transform: translateY(55px);
    animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-line:nth-child(1) { animation-delay: 0.2s; }
.hero-line:nth-child(2) { animation-delay: 0.35s; }
.hero-line:nth-child(3) { animation-delay: 0.5s; }
.hero-line.accent {
    font-style: italic;
    background: linear-gradient(90deg, var(--orange), var(--orange-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.82;
    max-width: 540px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
    opacity: 0;
    animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

/* Visa type quick select */
.hero-visa-types {
    opacity: 0;
    animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

.visa-types-label {
    font-size: 0.75rem;
    color: var(--muted-2);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.visa-type-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.visa-type-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    font-size: 0.82rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}
.visa-type-btn:hover {
    border-color: var(--border-orange);
    color: var(--orange);
    background: var(--orange-dim);
}

/* ---------- STATS BAR ---------- */
.stats-bar { position: relative; z-index: 2; padding: 0 2rem; }
.stats-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--glass);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.stat-item {
    padding: 2.5rem 2rem;
    text-align: center;
    border-right: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--glass-2); }
.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--orange-2));
    transition: width 0.4s ease;
}
.stat-item:hover::after { width: 60%; }

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 600;
    background: linear-gradient(90deg, var(--orange), var(--orange-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.76rem; color: var(--muted); letter-spacing: 0.02em; }

/* ---------- VISA TYPE CARDS ---------- */
.visa-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.visa-type-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    background: var(--glass);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.visa-type-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--orange-dim), transparent 55%);
    opacity: 0;
    transition: opacity 0.4s;
}
.visa-type-card:hover {
    border-color: var(--border-orange);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.visa-type-card:hover::before { opacity: 1; }

.vt-icon {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    display: block;
    position: relative;
    z-index: 1;
}

.visa-type-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.65rem;
    position: relative;
    z-index: 1;
}

.visa-type-card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

.vt-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.vt-features li {
    font-size: 0.835rem;
    color: var(--muted);
    font-weight: 300;
    padding-left: 1.25rem;
    position: relative;
}
.vt-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-size: 0.75rem;
}

/* ---------- DESTINATIONS ---------- */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.dest-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    background: var(--glass);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.dest-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--orange-dim), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}
.dest-card:hover {
    border-color: var(--border-orange);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}
.dest-card:hover::before { opacity: 1; }

.dest-flags {
    display: flex;
    gap: 0.25rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.dest-flags .fi {
    width: 1.75rem; height: 1.75rem;
    border-radius: 50%;
    display: block;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.dest-info {
    flex: 1;
    position: relative;
    z-index: 1;
}
.dest-info h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.3rem;
}
.dest-info p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 0.6rem;
    font-weight: 300;
}

.dest-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.dest-meta span {
    font-size: 0.7rem;
    color: rgba(249,115,22,0.65);
    border: 1px solid rgba(249,115,22,0.18);
    padding: 0.15rem 0.55rem;
    border-radius: 100px;
}

.dest-arrow {
    font-size: 1rem;
    color: var(--orange);
    opacity: 0.6;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: opacity 0.2s, transform 0.2s;
}
.dest-card:hover .dest-arrow { opacity: 1; transform: translateX(3px); }

/* ---------- PACKAGES ---------- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.package-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    background: var(--glass);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.package-card:hover {
    border-color: var(--border-orange);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.pkg-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--orange);
    border: 1px solid var(--border-orange);
    padding: 0.2rem 0.65rem;
    border-radius: 100px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pkg-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }

.package-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.5rem;
}

.package-card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.72;
    margin-bottom: 1.25rem;
    font-weight: 300;
}

.pkg-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.pkg-includes span {
    font-size: 0.72rem;
    color: rgba(249,115,22,0.65);
    border: 1px solid rgba(249,115,22,0.18);
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
}

/* ---------- PROCESS STEPS ---------- */
.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.process-step {
    flex: 1;
    min-width: 160px;
    text-align: center;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.step-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--orange-dim);
    border: 1px solid var(--border-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-num {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--orange);
    opacity: 0.6;
}

.process-step h4 { font-size: 0.9rem; font-weight: 500; color: white; }
.process-step p {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.65;
    font-weight: 300;
}

.step-connector {
    flex-shrink: 0;
    width: 60px; height: 1px;
    background: var(--border-orange);
    opacity: 0.4;
    margin-top: 30px;
}

/* ---------- REVIEWS ---------- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.review-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    background: var(--glass);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.review-card::before {
    content: '"';
    position: absolute;
    top: -1rem; right: 1.5rem;
    font-family: var(--font-display);
    font-size: 7rem;
    color: rgba(249,115,22,0.06);
    font-weight: 300;
    line-height: 1;
    pointer-events: none;
}
.review-card:hover { border-color: var(--border-orange); transform: translateY(-4px); }

.review-stars { color: var(--orange); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 1.25rem; }
.review-text {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.82;
    margin-bottom: 1.75rem;
    font-weight: 300;
    font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 0.85rem; }
.reviewer-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--orange-dim);
    border: 1px solid var(--border-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--orange);
    flex-shrink: 0;
}
.reviewer-name { font-size: 0.875rem; font-weight: 500; color: white; }
.reviewer-meta { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }

/* ---------- CTA ---------- */
.cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(249,115,22,0.05), transparent 65%);
    pointer-events: none;
}
.cta-inner {
    text-align: center;
    max-width: 660px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ---------- FOOTER ---------- */
footer {
    padding: 5rem 0 3rem;
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--muted-2);
    line-height: 1.8;
    max-width: 260px;
    font-weight: 300;
    margin-top: 1rem;
}

.footer-back {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--orange);
    opacity: 0.7;
    transition: opacity 0.2s;
}
.footer-back:hover { opacity: 1; }

.footer-col h6 {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.32);
    margin-bottom: 1.25rem;
}
.footer-col a {
    display: block;
    font-size: 0.875rem;
    color: rgba(245,240,235,0.4);
    margin-bottom: 0.7rem;
    font-weight: 300;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.78rem;
    color: rgba(245,240,235,0.4);
}
.footer-bottom a { color: rgba(245,240,235,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--orange); }

/* ---------- PAGE HEADER ---------- */
.page-header {
    padding: 10rem 0 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0a1a 50%, #0a0a0a 100%);
    border-bottom: 1px solid var(--border);
}
.page-header-inner { max-width: 700px; text-align: center; margin: 0 auto; }
.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: white;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.page-title em {
    font-style: italic;
    background: linear-gradient(90deg, var(--orange), var(--orange-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto;
    font-weight: 300;
}

/* ---------- APPLY FORM ---------- */
.apply-section { padding: 4rem 0 8rem; position: relative; z-index: 2; }

.apply-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

.apply-form-wrap {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

/* Progress */
.form-progress {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    flex: 1;
}
.progress-step span {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--glass);
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
}
.progress-step p { font-size: 0.7rem; color: var(--muted-2); transition: color 0.3s; }
.progress-step.active span { background: var(--orange); border-color: var(--orange); color: #0a0a0a; }
.progress-step.active p { color: var(--orange); }
.progress-step.done span { background: var(--green-dim); border-color: var(--green-border); color: var(--green); }
.progress-line { flex: 1; height: 1px; background: var(--border); margin-bottom: 1.5rem; }

/* Form steps */
.form-step { display: none; }
.form-step.active { display: block; }

.step-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: white;
    margin-bottom: 1.75rem;
}

/* Form elements */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.02em;
}

.req { color: var(--orange); }

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted-2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--border-orange); }

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(245,240,235,0.4)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    background-color: rgba(255,255,255,0.04);
}
.form-group select option { background: #1a1a1a; color: var(--text); }

.form-group textarea { resize: vertical; min-height: 90px; line-height: 1.6; }

.phone-wrap {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.phone-wrap:focus-within { border-color: var(--border-orange); }
.phone-prefix {
    padding: 0.8rem 0.85rem;
    font-size: 0.85rem;
    color: var(--muted);
    border-right: 1px solid var(--border);
    white-space: nowrap;
    flex-shrink: 0;
}
.phone-wrap input { border: none !important; border-radius: 0 !important; background: transparent !important; flex: 1; }

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 300;
}
.checkbox-label input[type="checkbox"] {
    width: 16px; height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--orange);
}

/* Family member section */
.traveling-alone {
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--glass);
}

.btn-add-member {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange-dim);
    border: 1px solid var(--border-orange);
    color: var(--orange);
    padding: 0.7rem 1.25rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--font-body);
    transition: var(--transition);
    margin-top: 1rem;
}
.btn-add-member:hover { background: var(--orange); color: #0a0a0a; }

.family-member-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    background: var(--glass);
    margin-bottom: 1rem;
    position: relative;
}

.family-member-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.family-member-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--orange);
}

.btn-remove-member {
    background: transparent;
    border: 1px solid var(--red-border);
    color: var(--red);
    width: 28px; height: 28px;
    border-radius: 50%;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.btn-remove-member:hover { background: var(--red-dim); }

/* Step nav */
.step-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.btn-next {
    background: linear-gradient(90deg, var(--orange), var(--orange-2));
    color: #0a0a0a;
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-body);
    transition: var(--transition);
}
.btn-next:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-back {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-family: var(--font-body);
    transition: var(--transition);
}
.btn-back:hover { border-color: var(--border-orange); color: var(--text); }

.btn-submit {
    background: linear-gradient(90deg, var(--orange), var(--orange-2));
    color: #0a0a0a;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-body);
    transition: var(--transition);
}
.btn-submit:hover { opacity: 0.88; }
.btn-submit:disabled { opacity: 0.6; }

/* Review grid */
.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}
.review-item {
    padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    border: 1px solid var(--border);
}
.review-item-label {
    font-size: 0.7rem;
    color: var(--muted-2);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
}
.review-item-value { font-size: 0.875rem; color: var(--text); font-weight: 400; }

.form-error {
    background: var(--red-dim);
    border: 1px solid var(--red-border);
    color: var(--red);
    font-size: 0.82rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

/* ---------- SIDEBAR ---------- */
.apply-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: sticky;
    top: 100px;
}

.sidebar-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    background: var(--glass);
    backdrop-filter: blur(10px);
}
.sidebar-card h4 { font-size: 0.9rem; font-weight: 500; color: white; margin-bottom: 1.25rem; }

.sidebar-steps { display: flex; flex-direction: column; gap: 1rem; }
.sidebar-step { display: flex; gap: 0.85rem; align-items: flex-start; }
.sidebar-num {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--orange-dim);
    border: 1px solid var(--border-orange);
    color: var(--orange);
    font-size: 0.68rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.sidebar-step p { font-size: 0.835rem; color: var(--muted); line-height: 1.6; font-weight: 300; }

.sidebar-contact p { font-size: 0.835rem; color: var(--muted); margin-bottom: 1rem; font-weight: 300; }

.sidebar-wa,
.sidebar-email {
    display: block;
    padding: 0.65rem 1rem;
    border-radius: 9px;
    font-size: 0.82rem;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    margin-bottom: 0.5rem;
}
.sidebar-wa { background: var(--orange-dim); border: 1px solid var(--border-orange); color: var(--orange); }
.sidebar-wa:hover { background: var(--orange); color: #0a0a0a; }
.sidebar-email { background: var(--glass); border: 1px solid var(--border); color: var(--muted); }
.sidebar-email:hover { border-color: var(--border-orange); color: var(--orange); }

.trust-items { display: flex; flex-direction: column; gap: 0.75rem; }
.trust-item { display: flex; align-items: center; gap: 0.65rem; font-size: 0.82rem; color: var(--muted); font-weight: 300; }
.trust-item span { color: var(--green); font-size: 0.75rem; flex-shrink: 0; }

/* ---------- SUCCESS MODAL ---------- */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(6px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.success-modal {
    background: #141414;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    max-width: 520px;
    width: 100%;
    text-align: center;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.success-icon { font-size: 3rem; margin-bottom: 1.25rem; display: block; }
.success-modal h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: white;
    margin-bottom: 0.75rem;
}
.success-modal p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.5rem; font-weight: 300; }
.success-details {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.success-detail { display: flex; flex-direction: column; gap: 0.25rem; text-align: center; }
.success-detail span { font-size: 0.7rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.08em; }
.success-detail strong { font-size: 0.9rem; color: white; }
.success-note { font-size: 0.8rem !important; color: var(--muted-2) !important; }

/* ---------- TRACKER ---------- */
.tracker-login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}
.tracker-login-card {
    background: #111;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.75rem;
    width: 100%;
    max-width: 440px;
    position: relative;
    z-index: 2;
    margin-top: 70px;
}
.tracker-login-icon { font-size: 2.5rem; margin-bottom: 1.25rem; display: block; }
.tracker-login-card h2 {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 400;
    color: white;
    margin-bottom: 0.5rem;
}
.tracker-login-card > p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.72;
    margin-bottom: 2rem;
    font-weight: 300;
}
.login-error {
    background: var(--red-dim);
    border: 1px solid var(--red-border);
    color: var(--red);
    font-size: 0.82rem;
    padding: 0.7rem 1rem;
    border-radius: 9px;
    margin-bottom: 1rem;
}
.btn-signin-tracker {
    width: 100%;
    background: linear-gradient(90deg, var(--orange), var(--orange-2));
    color: #0a0a0a;
    border: none;
    padding: 0.9rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    transition: var(--transition);
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-signin-tracker:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-signin-tracker:disabled { opacity: 0.6; transform: none; }
.login-note { font-size: 0.8rem; color: var(--muted-2); margin-top: 1.25rem; text-align: center; }
.login-note a { color: var(--orange); }

.input-wrap { position: relative; }
.input-wrap input { padding-right: 3rem; }
.toggle-pw {
    position: absolute;
    right: 0.75rem; top: 50%;
    transform: translateY(-50%);
    background: none; border: none;
    color: var(--muted);
    display: flex; align-items: center; justify-content: center;
    transition: color 0.2s;
}
.toggle-pw:hover { color: var(--orange); }

/* Dashboard */
.dash-header {
    background: rgba(13,13,13,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 2rem 0;
    margin-top: 70px;
}
.dash-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dash-greeting {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 400;
    color: white;
}
.dash-sub { font-size: 0.82rem; color: var(--muted); margin-top: 0.25rem; }
.btn-logout {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.82rem;
    font-family: var(--font-body);
    transition: var(--transition);
}
.btn-logout:hover { border-color: var(--red-border); color: var(--red); }

.tracker-status-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--glass);
    backdrop-filter: blur(10px);
    overflow: hidden;
}
.status-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.75rem 2rem;
    border-bottom: 1px solid var(--border);
}
.status-card-header h3 { font-size: 1rem; font-weight: 500; color: white; }
.status-badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    background: var(--orange-dim);
    border: 1px solid var(--border-orange);
    color: var(--orange);
}

.app-timeline {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.timeline-step {
    display: flex;
    gap: 1.25rem;
    padding-bottom: 1.75rem;
    position: relative;
    opacity: 0.3;
    transition: opacity 0.3s;
}
.timeline-step.active { opacity: 1; }
.timeline-step.done { opacity: 0.65; }
.timeline-step::before {
    content: '';
    position: absolute;
    left: 9px; top: 20px; bottom: 0;
    width: 1px;
    background: var(--border);
}
.timeline-step:last-child::before { display: none; }

.tl-dot {
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg);
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}
.timeline-step.active .tl-dot { background: var(--orange); border-color: var(--orange); box-shadow: 0 0 0 4px var(--orange-dim); }
.timeline-step.done .tl-dot { background: var(--green); border-color: var(--green); }

.tl-content h5 { font-size: 0.9rem; font-weight: 500; color: white; margin-bottom: 0.25rem; }
.tl-content p { font-size: 0.82rem; color: var(--muted); line-height: 1.65; font-weight: 300; }

.dash-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.dash-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    background: var(--glass);
    backdrop-filter: blur(10px);
}
.dash-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.dash-card-header h3 { font-size: 0.95rem; font-weight: 500; color: white; }
.dash-card-tag {
    font-size: 0.72rem;
    color: var(--orange);
    border: 1px solid var(--border-orange);
    padding: 0.2rem 0.65rem;
    border-radius: 100px;
}

.checklist-list { display: flex; flex-direction: column; gap: 0.75rem; }
.check-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.855rem;
    color: var(--muted);
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
    font-weight: 300;
}
.check-row:last-child { border-bottom: none; }
.check-row.done { color: rgba(245,240,235,0.7); }
.check-row.done .check-box { background: var(--green-dim); border-color: var(--green-border); color: var(--green); }
.check-box {
    width: 22px; height: 22px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.app-details { display: flex; flex-direction: column; gap: 0; }
.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.855rem;
}
.detail-row:last-child { border-bottom: none; }
.detail-label { color: var(--muted); font-weight: 300; }
.detail-value { color: var(--text); font-weight: 400; }

.counselor-notes {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.75;
    font-weight: 300;
    white-space: pre-wrap;
}

/* Family list in dashboard */
.family-member-dash {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.855rem;
}
.family-member-dash:last-child { border-bottom: none; }
.fm-avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--orange-dim);
    border: 1px solid var(--border-orange);
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.fm-name { color: var(--text); font-weight: 400; }
.fm-rel { color: var(--muted); font-size: 0.78rem; }

/* ---------- VISA GUIDE ---------- */
.visa-guide-section { padding: 4rem 0 8rem; position: relative; z-index: 2; }

.guide-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.guide-filter {
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 0.5rem 1.1rem;
    border-radius: 100px;
    font-size: 0.82rem;
    font-family: var(--font-body);
    transition: var(--transition);
}
.guide-filter:hover,
.guide-filter.active {
    background: var(--orange-dim);
    border-color: var(--border-orange);
    color: var(--orange);
}

.guide-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.guide-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    background: var(--glass);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
.guide-card:hover { border-color: var(--border-orange); }
.guide-card[style*="display: none"] { display: none !important; }

.guide-card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.guide-flags {
    display: flex;
    gap: 0.35rem;
    flex-shrink: 0;
}
.guide-flags .fi {
    width: 2rem; height: 2rem;
    border-radius: 50%;
    display: block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.guide-card-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
}

.guide-region { font-size: 0.78rem; color: var(--muted); margin-top: 0.15rem; }

.guide-difficulty {
    margin-left: auto;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.guide-difficulty.easy { background: var(--green-dim); border: 1px solid var(--green-border); color: var(--green); }
.guide-difficulty.moderate { background: var(--yellow-dim); border: 1px solid var(--yellow-border); color: var(--yellow); }
.guide-difficulty.hard { background: var(--red-dim); border: 1px solid var(--red-border); color: var(--red); }

.guide-meta-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.guide-meta-item { text-align: center; }
.meta-label { font-size: 0.68rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-bottom: 0.25rem; }
.meta-value { font-size: 0.88rem; color: var(--text); font-weight: 500; }

.guide-docs { margin-bottom: 1.25rem; }
.guide-docs h5 { font-size: 0.82rem; font-weight: 600; color: white; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; }
.guide-docs ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; }
.guide-docs li {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 300;
    padding-left: 1rem;
    position: relative;
    line-height: 1.5;
}
.guide-docs li::before { content: '→'; position: absolute; left: 0; color: var(--orange); font-size: 0.72rem; }

.guide-notes {
    background: var(--orange-dim);
    border: 1px solid var(--border-orange);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    margin-bottom: 1.5rem;
}
.guide-notes p { font-size: 0.82rem; color: rgba(249,115,22,0.85); line-height: 1.6; font-weight: 300; }

.guide-apply { display: inline-flex; }

/* ---------- PACKAGES PAGE ---------- */
.packages-section { padding: 4rem 0 8rem; position: relative; z-index: 2; }

.full-packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.full-pkg-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    background: var(--glass);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
}
.full-pkg-card:hover {
    border-color: var(--border-orange);
    transform: translateY(-4px);
    box-shadow: 0 24px 70px rgba(0,0,0,0.3);
}

.pkg-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.pkg-flags {
    display: flex;
    gap: 0.35rem;
}
.pkg-flags .fi {
    width: 1.75rem; height: 1.75rem;
    border-radius: 50%;
    display: block;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.pkg-badge-wrap { }
.pkg-badge-tag {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.22rem 0.7rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.pkg-badge-tag.popular { background: var(--orange-dim); border: 1px solid var(--border-orange); color: var(--orange); }
.pkg-badge-tag.trending { background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.25); color: #a78bfa; }

.full-pkg-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.25rem;
}

.pkg-subtitle { font-size: 0.78rem; color: var(--orange); opacity: 0.7; margin-bottom: 0.85rem; }

.pkg-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.72; margin-bottom: 1.5rem; font-weight: 300; }

.pkg-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.pkg-highlight { display: flex; gap: 0.65rem; align-items: flex-start; }
.hl-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.hl-label { font-size: 0.68rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.06em; display: block; }
.hl-value { font-size: 0.82rem; color: var(--text); margin-top: 0.1rem; }

.pkg-includes-full { margin-bottom: 1.75rem; }
.pkg-includes-full h5 { font-size: 0.78rem; font-weight: 600; color: white; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; }

.includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
}
.includes-grid span {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 300;
}

.pkg-apply { width: 100%; justify-content: center; }

/* Custom package CTA */
.custom-pkg-card {
    border: 1px solid var(--border-orange);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    background: var(--orange-dim);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.custom-pkg-left { display: flex; align-items: flex-start; gap: 1.5rem; }
.custom-pkg-icon { font-size: 2rem; flex-shrink: 0; }
.custom-pkg-left h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: white; margin-bottom: 0.5rem; }
.custom-pkg-left p { font-size: 0.875rem; color: var(--muted); line-height: 1.72; font-weight: 300; max-width: 520px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .visa-types-grid { grid-template-columns: 1fr; }
    .dest-grid { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr; }
    .full-packages-grid { grid-template-columns: 1fr; }
    .apply-grid { grid-template-columns: 1fr; }
    .apply-sidebar { position: static; }
    .guide-docs ul { grid-template-columns: 1fr; }
    .guide-meta-row { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; }
    .dash-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .pkg-highlights { grid-template-columns: 1fr; }
    .includes-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    #navbar { padding: 1rem 1.5rem; }
    #navbar.scrolled { padding: 0.75rem 1.5rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .section { padding: 5rem 0; }
    .container { padding: 0 1.5rem; }

    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) { border-top: 1px solid var(--border); }

    .visa-type-btns { flex-direction: column; align-items: center; }
    .form-row { grid-template-columns: 1fr; }
    .review-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .process-steps { flex-direction: column; align-items: center; }
    .step-connector { width: 1px; height: 40px; margin-top: 0; }
    .custom-pkg-card { flex-direction: column; }
    .guide-meta-row { grid-template-columns: 1fr 1fr; }
}