/* Importing Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* Style Tokens & Variables */
:root {
    --primary-red: #E53935;
    --primary-red-hover: #C62828;
    --primary-red-glow: rgba(229, 57, 53, 0.25);
    
    --bg-dark-void: #FFFFFF;
    --bg-dark-nebula: #F5F7FA;
    --bg-dark-card: rgba(255, 255, 255, 0.85);
    --bg-dark-card-hover: #FFFFFF;
    
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-border-glow: rgba(229, 57, 53, 0.3);
    
    --text-white: #1A1D24; /* Mapped to dark in light theme */
    --text-light: #2D3748; /* Mapped to dark slate */
    --text-muted: #718096; /* Mapped to slate grey */
    --text-dark: #FFFFFF;  /* Inverted text */

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-tight: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    --shadow-soft: 0 15px 30px -5px rgba(0, 0, 0, 0.05), 0 5px 15px -5px rgba(0, 0, 0, 0.03);
    --shadow-levitate: 0 20px 40px -10px rgba(0, 0, 0, 0.1), 0 0 30px rgba(229, 57, 53, 0.06);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Global Reset & Scrollbars */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
}

body {
    font-family: var(--font-body);
    background: radial-gradient(circle at 50% 0%, var(--bg-dark-nebula) 0%, var(--bg-dark-void) 100%);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark-void);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red-hover);
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-white);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button, input, select, textarea {
    font-family: inherit;
    outline: none;
}

/* Antigravity Floating Animations */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(1deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes float-delayed {
    0% {
        transform: translateY(-8px) rotate(0.5deg);
    }
    50% {
        transform: translateY(4px) rotate(-0.5deg);
    }
    100% {
        transform: translateY(-8px) rotate(0.5deg);
    }
}

@keyframes float-clouds {
    0% {
        transform: translateX(0px) translateY(0px);
    }
    50% {
        transform: translateX(20px) translateY(-5px);
    }
    100% {
        transform: translateX(0px) translateY(0px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(229, 57, 53, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(229, 57, 53, 0.45);
    }
}

/* Levitating and animation classes */
.levitate {
    animation: float 6s ease-in-out infinite;
}

.levitate-delayed {
    animation: float-delayed 7s ease-in-out infinite;
}

.levitate-clouds {
    animation: float-clouds 12s ease-in-out infinite;
}

/* Sticky Floating Navigation (Glassmorphism) */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 2rem;
    pointer-events: none; /* Allows pointer clicks to pass through if empty, nav overrides this */
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    backdrop-filter: blur(16px) saturate(180%);
    box-shadow: var(--shadow-soft);
    pointer-events: auto;
    transition: var(--transition-smooth);
}

.navbar-container:hover {
    border-color: var(--glass-border-glow);
}

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.logo span {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--text-white) 30%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.75rem;
    align-items: center;
}

.nav-item a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-light);
    position: relative;
    padding: 0.5rem 0.25rem;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    box-shadow: 0 0 8px var(--primary-red);
    transition: var(--transition-fast);
}

.nav-item.active a {
    color: var(--text-white);
}

.nav-item.active a::after {
    width: 100%;
}

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

.nav-item a:hover::after {
    width: 100%;
}

/* Hamburger Menu Button */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Page Containers & Views (SPA Setup) */
.view-section {
    display: none; /* Managed by JS router */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
    padding-top: 100px;
    min-height: 100vh;
    padding-bottom: 4rem;
}

.view-section.active-view {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* ---------------------------------------------------- */
/* HOME VIEW STYLES                                     */
/* ---------------------------------------------------- */
#home {
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
}

.hero-full-bleed {
    position: relative;
    min-height: 75vh;
    width: 100%;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.45) 60%, rgba(0, 0, 0, 0.7) 100%), url('assets/hero_bali.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 4rem 2rem;
    text-align: center;
}

.hero-overlay-content {
    max-width: 850px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: heroFadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

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

.hero-subtitle {
    color: #FF8A80;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(229, 57, 53, 0.12);
    border: 1px solid rgba(229, 57, 53, 0.25);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 4.4rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #FFFFFF !important;
    font-weight: 800;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    background: none;
    -webkit-text-fill-color: initial;
    -webkit-background-clip: initial;
}

.hero-title-gradient {
    background: linear-gradient(135deg, #FFFFFF 20%, #FFA726 65%, #FF5252 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-shadow: none;
    filter: drop-shadow(0 4px 15px rgba(229, 57, 53, 0.45));
}

.hero-desc {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3.5rem;
    max-width: 700px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Split Pathways Buttons in Hero */
.split-pathways {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.path-btn {
    position: relative;
    padding: 1.1rem 2.2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.path-btn .arrow-icon {
    transition: transform var(--transition-fast) ease;
}

.path-btn:hover .arrow-icon {
    transform: translateX(4px);
}

.path-btn.tours-path {
    background: var(--primary-red);
    border: 1px solid transparent;
    color: #FFFFFF;
    animation: pulse-glow 3s infinite;
}

.path-btn.tours-path:hover {
    background: var(--primary-red-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--primary-red-glow);
}

.path-btn.visas-path {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    backdrop-filter: blur(12px);
}

.path-btn.visas-path:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #FFFFFF;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.15);
}

.path-btn.flights-path {
    background: rgba(255, 167, 38, 0.15);
    border: 1px solid rgba(255, 167, 38, 0.35);
    color: #FFFFFF;
    backdrop-filter: blur(12px);
}

.path-btn.flights-path:hover {
    background: rgba(255, 167, 38, 0.25);
    border-color: rgba(255, 167, 38, 0.7);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 167, 38, 0.25);
}

.path-btn .arrow-icon {
    font-size: 1.25rem;
    transition: transform var(--transition-smooth);
}

.path-btn:hover .arrow-icon {
    transform: translateX(6px);
}

/* ---------------------------------------------------- */
/* TOUR PACKAGES VIEW STYLES                            */
/* ---------------------------------------------------- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    padding: 0 1.5rem;
}

.section-tag {
    color: var(--primary-red);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
}

/* Category Tabs */
.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background: var(--bg-dark-card);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(8px);
}

.tab-btn:hover {
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.tab-btn.active-tab {
    background: var(--primary-red);
    color: var(--text-white);
    border-color: transparent;
    box-shadow: 0 10px 20px var(--primary-red-glow);
}

/* Grid layout */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Antigravity Destination Cards */
.antigravity-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.antigravity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.antigravity-card:hover {
    transform: translateY(-15px) scale(1.01);
    box-shadow: var(--shadow-levitate);
    border-color: rgba(229, 57, 53, 0.3);
}

.card-img-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.antigravity-card:hover .card-img {
    transform: scale(1.08);
}

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(11, 12, 23, 0.85);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    color: var(--text-dark);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-destination {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.card-duration {
    font-size: 0.9rem;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-highlights {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.card-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-highlights li::before {
    content: '✦';
    color: var(--primary-red);
    font-size: 0.75rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.25rem;
}

.card-price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.card-price-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-white);
}

.card-btn {
    background: transparent;
    border: 1px solid var(--primary-red);
    color: var(--text-white);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.card-btn:hover {
    background: var(--primary-red);
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.4);
}

/* Dynamic Itineraries Modal/Drawer */
.itinerary-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background: var(--glass-bg);
    border-left: 1px solid var(--glass-border);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 1050;
    backdrop-filter: blur(25px);
    transition: right var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.itinerary-drawer.drawer-open {
    right: 0;
}

.drawer-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-close-btn {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.75rem;
    cursor: pointer;
}

.drawer-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.itinerary-timeline {
    position: relative;
    padding-left: 1.5rem;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 4px;
    width: 2px;
    height: calc(100% - 16px);
    background: var(--glass-border);
}

.timeline-step {
    position: relative;
    margin-bottom: 1.75rem;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-step.visible-step {
    opacity: 1;
    transform: translateX(0);
}

.timeline-step::before {
    content: '';
    position: absolute;
    top: 6px;
    left: -18px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-red);
    box-shadow: 0 0 8px var(--primary-red);
}

.step-day {
    font-size: 0.85rem;
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
}

.step-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.drawer-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: center;
}

.drawer-enquiry-btn {
    width: 100%;
    padding: 0.85rem;
    border-radius: 25px;
    background: var(--primary-red);
    color: var(--text-dark);
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
}

.drawer-enquiry-btn:hover {
    background: var(--primary-red-hover);
    box-shadow: 0 8px 16px var(--primary-red-glow);
}

/* Drawer Backdrop overlay */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.drawer-overlay.overlay-open {
    opacity: 1;
    pointer-events: auto;
}

/* ---------------------------------------------------- */
/* VISA SERVICES VIEW STYLES                            */
/* ---------------------------------------------------- */
.visas-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Parallax Requirement Checker */
.checker-wrapper {
    background: var(--bg-dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 3rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.checker-wrapper::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.08) 0%, rgba(229, 57, 53, 0) 75%);
    filter: blur(40px);
    pointer-events: none;
}

.checker-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.checker-form {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.checker-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 250px;
}

.checker-group label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 600;
}

.checker-select {
    background: var(--bg-dark-void);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    padding: 0.85rem 1.25rem;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-smooth);
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23FFFFFF' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.checker-select option {
    background-color: #1A1D24;
    color: #FFFFFF;
}

.checker-select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 10px rgba(229, 57, 53, 0.2);
}

.checker-results {
    max-width: 700px;
    margin: 0 auto;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    display: none; /* Shown dynamically */
}

.checker-results.results-visible {
    display: block;
}

.results-title {
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.visa-duration-tag {
    font-size: 0.85rem;
    background: var(--primary-red-glow);
    border: 1px solid var(--primary-red);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    color: var(--primary-red);
    font-weight: 600;
}

.checklist-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: var(--transition-fast);
}

.checklist-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
}

.checklist-icon {
    color: var(--primary-red);
    font-size: 1.2rem;
    line-height: 1;
}

.checklist-text h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.checklist-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Service Breakdown */
.visa-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.visa-service-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.visa-service-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-glow);
}

.visa-icon-wrapper {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.visa-service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.visa-service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.visa-service-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.visa-service-card ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.visa-service-card ul li::before {
    content: '✓';
    color: var(--primary-red);
    font-weight: 700;
}

/* ---------------------------------------------------- */
/* OTHER SERVICES VIEW STYLES                           */
/* ---------------------------------------------------- */
.others-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.service-hub-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.service-hub-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 57, 53, 0.25);
}

.hub-card-header {
    margin-bottom: 2rem;
}

.hub-card-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1.25rem;
}

.hub-card-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.hub-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.hub-mini-form {
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}

.mini-input-group {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.mini-input-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

.mini-field {
    background: var(--bg-dark-void);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    padding: 0.65rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.mini-field option {
    background-color: #1A1D24;
    color: #FFFFFF;
}

.mini-field:focus {
    border-color: var(--primary-red);
}

.mini-submit-btn {
    width: 100%;
    background: transparent;
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    padding: 0.65rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.mini-submit-btn:hover {
    background: var(--primary-red);
    color: var(--text-dark);
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}

/* ---------------------------------------------------- */
/* BLOG VIEW STYLES                                     */
/* ---------------------------------------------------- */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 3rem;
}

.blog-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-glow);
}

.blog-img-wrapper {
    height: 200px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.75rem;
}

.blog-meta {
    font-size: 0.75rem;
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    letter-spacing: 0.1em;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.blog-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-link span {
    transition: transform var(--transition-fast);
}

.blog-card:hover .blog-link span {
    transform: translateX(4px);
}

/* ---------------------------------------------------- */
/* ABOUT US VIEW STYLES                                 */
/* ---------------------------------------------------- */
.about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.about-text-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
}

.about-text-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Trust Badge Badge */
.trust-badge-container {
    background: var(--bg-dark-card);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.trust-badge-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.05), transparent);
    pointer-events: none;
}

.trust-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.gstin-number {
    font-family: 'Consolas', 'Courier New', Courier, monospace;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #4A5568;
    background: #F7FAFC;
    border: 1px solid #E2E8F0;
    padding: 0.45rem 0.9rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
    margin: 0.5rem 0;
}
.gstin-number::before {
    content: '🛡️';
    font-size: 0.95rem;
}

.gstin-subtext {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Branches Locations Section */
.branches-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.branches-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.branch-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.branch-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.branch-name span {
    color: var(--primary-red);
}

.branch-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.branch-info li {
    display: flex;
    gap: 0.75rem;
}

.branch-info-icon {
    color: var(--primary-red);
    flex-shrink: 0;
}

/* ---------------------------------------------------- */
/* CONTACT US VIEW STYLES                               */
/* ---------------------------------------------------- */
.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    position: relative;
}

/* Levitating Form */
.levitating-form-wrapper {
    background: var(--bg-dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 3rem;
    box-shadow: var(--shadow-levitate);
    backdrop-filter: blur(12px);
    position: relative;
    z-index: 10;
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-input {
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--glass-border);
    color: var(--text-white);
    padding: 0.75rem 0.25rem;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-input option {
    background-color: #1A1D24;
    color: #FFFFFF;
}

.form-input:focus {
    border-color: var(--primary-red);
}

.form-label {
    position: absolute;
    left: 4px;
    top: 12px;
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: var(--transition-smooth);
}

/* Move label up on focus or when input is filled */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -12px;
    font-size: 0.8rem;
    color: var(--primary-red);
}

textarea.form-input {
    min-height: 100px;
    resize: none;
}

.form-submit-btn {
    background: var(--primary-red);
    color: var(--text-dark);
    border: none;
    padding: 1rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
}

.form-submit-btn:hover {
    background: var(--primary-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--primary-red-glow);
}

/* Branch Map Visualization */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.sidebar-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.sidebar-card-title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.action-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--bg-dark-void);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1rem;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition-smooth);
}

.action-link-btn:hover {
    border-color: var(--primary-red);
    background: var(--primary-red-glow);
    transform: translateY(-3px);
}

.action-link-btn.primary-action {
    background: var(--primary-red);
    color: var(--text-dark);
    border: none;
}

.action-link-btn.primary-action:hover {
    background: var(--primary-red-hover);
    box-shadow: 0 10px 20px var(--primary-red-glow);
}

/* Map Embeds */
.branch-map-embed {
    width: 100%;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    margin-top: 1rem;
}

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

/* Success Message Float */
.success-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--glass-bg);
    border: 1px solid #4CAF50;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(76, 175, 80, 0.2);
    border-radius: 12px;
    padding: 1rem 2rem;
    color: var(--text-white);
    z-index: 2000;
    transform: translateY(100px);
    opacity: 0;
    transition: transform var(--transition-smooth), opacity var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.success-notification.show-notif {
    transform: translateY(0);
    opacity: 1;
}

.success-icon {
    color: #4CAF50;
    font-size: 1.25rem;
}

/* Footer Section */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    text-align: center;
    background: var(--bg-dark-nebula);
    color: var(--text-light);
    margin-top: 5rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ---------------------------------------------------- */
/* RESPONSIVE MEDIA QUERIES                             */
/* ---------------------------------------------------- */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding-top: 2rem;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .split-pathways {
        justify-content: center;
    }
    
    .about-story-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
    }
    
    .navbar-container {
        padding: 0.5rem 1.5rem;
        border-radius: 30px;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 5%;
        width: 90%;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.25rem;
        transform: translateY(-100px);
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        transition: transform var(--transition-smooth), opacity var(--transition-smooth), visibility var(--transition-smooth);
        box-shadow: var(--shadow-soft);
        max-height: calc(100vh - 110px);
        overflow-y: auto;
    }
    
    .nav-links.menu-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
    }
    
    .burger-menu.open span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .burger-menu.open span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.open span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }

    .hero-title {
        font-size: 2.8rem;
    }
    
    .checker-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .checker-group {
        width: 100%;
    }
    
    .itinerary-drawer {
        width: 100%;
        right: -100%;
    }
    
    .levitating-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* Very Small Mobile Screen Optimizations (Smartphones under 480px) */
@media (max-width: 480px) {
    .hero-full-bleed {
        min-height: 60vh; /* slightly shorter to fit content compactly */
        padding: 100px 1rem 3rem 1rem;
    }
    
    .hero-title {
        font-size: 2.1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        letter-spacing: 0.12em;
        margin-bottom: 1rem;
    }
    
    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    /* Stack split pathways vertically to prevent clipping */
    .split-pathways {
        flex-direction: column;
        width: 100%;
        gap: 0.9rem;
    }
    
    .path-btn {
        width: 100%;
        justify-content: center;
        padding: 0.95rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Destination Cards Grid */
    .tours-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .antigravity-card {
        border-radius: 20px;
    }
    
    .card-content {
        padding: 1.5rem 1.25rem;
    }
    
    .card-destination {
        font-size: 1.2rem;
    }
    
    .card-price-value {
        font-size: 1.35rem;
    }
    
    /* Services grid */
    .visa-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .visa-service-card {
        padding: 2rem 1.25rem;
    }
    
    /* About & Trust details */
    .about-container {
        padding: 0 1rem;
    }
    
    .trust-badge-container {
        padding: 1.5rem;
    }
    
    .gstin-number {
        font-size: 1.05rem;
        padding: 0.5rem 0.75rem;
        letter-spacing: 0.05em;
    }
    
    .home-trust-info {
        padding: 4rem 1rem !important;
    }
    
    /* Itinerary Drawer elements */
    .itinerary-drawer {
        width: 100%;
    }
    
    .drawer-header {
        padding: 1.25rem 1rem;
    }
    
    .drawer-content {
        padding: 1.25rem 1rem;
    }
    
    .timeline-step {
        padding-left: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .step-day {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }
    
    /* Stacking Package Tabs */
    .tab-navigation {
        flex-direction: column;
        gap: 0.4rem;
        padding: 0.3rem;
        border-radius: 12px;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
        padding: 0.7rem 1rem;
        font-size: 0.95rem;
    }
    
    /* General section paddings */
    .view-section {
        padding-top: 90px;
    }

    /* Header Logo & Padding Optimizations */
    .logo span {
        font-size: 1.15rem;
    }
    
    .logo img, .logo svg {
        width: 34px !important;
        height: 34px !important;
    }
    
    .navbar-container {
        padding: 0.5rem 1rem !important;
    }

    /* Visa Checker Results mobile stacking */
    .results-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    #visa-whatsapp-enquiry-btn {
        width: 100%;
        justify-content: center;
        font-size: 0.9rem;
        padding: 0.95rem 1.25rem;
    }
}

/* ---------------------------------------------------- */
/* FLIGHT TICKETS VIEW                                  */
/* ---------------------------------------------------- */
.flights-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 4rem;
    align-items: start;
}

.flight-search-wrapper {
    background: var(--bg-dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
}

.flight-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.flight-toggle-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.flight-radio-pill-group {
    display: inline-flex;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.3rem;
    border-radius: 12px;
    gap: 0.25rem;
}

.flight-radio-pill {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
}

.flight-radio-pill input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.flight-radio-pill span {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 9px;
    transition: var(--transition-fast);
    display: inline-block;
}

.flight-radio-pill input:checked + span {
    background: var(--primary-red);
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(229, 57, 53, 0.2);
}

.flight-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.flight-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.flight-input-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-slate);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.flight-input {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #1A1D24;
    font-weight: 500;
    transition: var(--transition-fast);
}

.flight-input option {
    background-color: #FFFFFF;
    color: #1A1D24;
}

.flight-input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.15);
}

.flight-submit-btn {
    background: var(--primary-red);
    color: #FFFFFF;
    border: none;
    padding: 1.1rem;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.flight-submit-btn:hover {
    background: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--primary-red-glow);
}

.flight-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Sidebar Feature Cards */
.flight-features-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.flight-feature-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: start;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.flight-feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--glass-border-glow);
}

.flight-feature-icon {
    font-size: 1.8rem;
    background: rgba(229, 57, 53, 0.1);
    color: var(--primary-red);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.flight-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1A1D24;
}

.flight-feature-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ---------------------------------------------------- */
/* FLIGHT TICKETS VIEW RESPONSIVE OVERRIDES             */
/* ---------------------------------------------------- */
@media (max-width: 992px) {
    .flights-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .flights-container {
        padding: 0 1rem;
    }
    
    .flight-search-wrapper {
        padding: 2rem 1.25rem;
        border-radius: 18px;
    }
    
    .flight-form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .flight-toggle-row {
        gap: 1.25rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .flight-radio-pill-group {
        width: 100%;
        display: flex;
    }

    .flight-radio-pill {
        flex: 1;
        text-align: center;
    }

    .flight-radio-pill span {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0.5rem;
    }
}
