/* 
    Roamerly - Modern Travel Platform Theme
    Colors: Slate (#0F172A), Teal (#0D8BFF), Orange (#FF8A65), Background (#F8FAFC)
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-color: #FAFAFA;
    --primary-blue: #2563EB; /* Logo Blue */
    --accent-orange: #14B8A6; /* Accent Premium Teal */
    --dark-slate: #0F172A; /* Deep Navy */
    --text-dark: #111827; /* Text Dark */
    --text-muted: #6B7280; /* Slate Gray */
    
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 8px 32px 0 rgba(15, 23, 42, 0.04);
    
    --float-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.15);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom Utility Classes */
.text-primary-blue {
    color: var(--primary-blue) !important;
}
.border-primary-blue {
    border-color: var(--primary-blue) !important;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    background-color: var(--bg-color); 
    color: var(--text-dark); 
    font-family: var(--font-body); 
    overflow-x: hidden; 
    line-height: 1.6;
    position: relative;
}

/* Mesh Gradient Background (Blurred Blobs) */
.mesh-bg {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; overflow: hidden; pointer-events: none;
}
.mesh-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; animation: floatBlob 20s infinite alternate ease-in-out; }
.mesh-blob.blue { width: 600px; height: 600px; background: rgba(13, 139, 255, 0.15); top: -200px; left: -100px; }
.mesh-blob.purple { width: 500px; height: 500px; background: rgba(255, 138, 101, 0.1); bottom: -100px; right: -50px; animation-delay: -5s; }
.mesh-blob.cyan { width: 400px; height: 400px; background: rgba(14, 165, 233, 0.1); top: 40%; left: 50%; transform: translateX(-50%); animation-delay: -10s; }

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; letter-spacing: -0.02em; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* Utilities */
.py-24 { padding-top: 7rem; padding-bottom: 7rem; }
.text-gradient {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.glass-panel {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}
.glass-panel-hover:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--float-shadow);
    border-color: rgba(255,255,255,0.7);
}

/* Buttons */
.btn-primary-glow {
    background: var(--primary-blue);
    color: #fff !important; font-weight: 600; font-family: var(--font-heading);
    padding: 14px 32px; border-radius: 12px; border: none;
    transition: var(--transition); display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}
.btn-primary-glow:hover {
    background: #1E40AF;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.3);
}

.btn-teal-glow {
    background: var(--accent-orange);
    color: #fff !important; font-weight: 600; font-family: var(--font-heading);
    padding: 14px 32px; border-radius: 12px; border: none;
    transition: var(--transition); display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.15);
}
.btn-teal-glow:hover {
    background: #0D9488;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.45);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(10px);
    color: #fff !important; border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 12px 30px; border-radius: 12px; font-weight: 600; font-family: var(--font-heading);
    transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.btn-glass:hover {
    background: #fff;
    color: var(--primary-blue) !important;
    border-color: #fff;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.btn-luxury {
    background: var(--primary-blue);
    color: #fff !important; font-weight: 600; padding: 10px 24px; border-radius: 12px; border: none;
    transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-luxury:hover {
    background: #1E40AF;
    transform: translateY(-2px) scale(1.03);
}

/* Premium Transparent Navbar */
.navbar { padding: 20px 0; transition: var(--transition); z-index: 1000; background: transparent; }
.navbar-brand img { height: 45px; object-fit: contain; }
.nav-link { color: var(--text-dark) !important; font-weight: 500; font-size: 1rem; margin: 0 12px; position: relative; transition: color 0.3s; }
.nav-link:hover { color: var(--primary-blue) !important; }
.navbar.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

/* Hero Section */
.hero-wrapper { min-height: 100vh; display: flex; align-items: center; position: relative; padding-top: 80px; }
.hero-title { font-size: 72px; font-weight: 800; line-height: 1.05; margin-bottom: 24px; color: var(--text-dark); letter-spacing: -0.03em; }
.hero-subtitle { font-size: 20px; color: var(--text-muted); font-weight: 400; max-width: 500px; margin-bottom: 40px; line-height: 1.6; }

/* Inline Hero Search Box */
.hero-search { background: rgba(255,255,255,0.8); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.9); border-radius: 20px; padding: 12px; display: flex; gap: 10px; box-shadow: 0 15px 35px rgba(0,0,0,0.05); max-width: 600px; }
.hero-search-field { flex: 1; padding: 10px 15px; background: rgba(245,249,255,0.5); border-radius: 12px; border: 1px solid transparent; transition: var(--transition); }
.hero-search-field:hover { background: #fff; border-color: var(--accent-blue); }
.hero-search-field label { display: block; font-size: 11px; font-weight: 700; color: var(--primary-blue); text-transform: uppercase; margin-bottom: 2px; letter-spacing: 1px; }
.hero-search-field input, .hero-search-field select { border: none; background: transparent; font-weight: 600; color: var(--text-dark); width: 100%; padding: 0; outline: none; font-size: 14px; }
.hero-search-field input::placeholder { color: #A0AABF; }
.hero-search-btn { background: var(--primary-blue); color: #fff; border: none; border-radius: 14px; width: 60px; display: flex; justify-content: center; align-items: center; font-size: 20px; transition: var(--transition); }
.hero-search-btn:hover { background: var(--text-dark); transform: scale(1.05); }

/* Floating Mobile Mockups (Right Side) */
.mockup-container { position: relative; height: 600px; width: 100%; perspective: 1000px; }
.mockup-card { position: absolute; border-radius: 30px; background: rgba(255,255,255,0.85); backdrop-filter: blur(24px); border: 1px solid rgba(255,255,255,0.8); box-shadow: 0 30px 60px rgba(91, 127, 255, 0.15); overflow: hidden; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }

/* Card 1: AI Planner Screen */
.mockup-1 { width: 320px; height: 500px; top: 50px; right: 50px; z-index: 2; transform: rotateY(-10deg) rotateX(5deg); display: flex; flex-direction: column; padding: 20px; }
.mockup-1:hover { transform: rotateY(0deg) rotateX(0deg) translateY(-10px) scale(1.02); z-index: 10; }
.m-header { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.m-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #A855F7, var(--primary-blue)); }
.m-title { font-weight: 700; font-size: 18px; line-height: 1.2; }
.m-chat { background: #F5F9FF; padding: 15px; border-radius: 16px 16px 16px 4px; margin-bottom: 15px; font-size: 13px; color: var(--text-muted); }
.m-itinerary-item { display: flex; gap: 12px; margin-bottom: 15px; align-items: center; }
.m-time { font-size: 12px; font-weight: 600; color: var(--primary-blue); }
.m-event { flex: 1; background: #fff; padding: 12px; border-radius: 12px; box-shadow: 0 4px 10px rgba(0,0,0,0.03); border: 1px solid #F1F5F9; }
.m-event-title { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.m-event-desc { font-size: 11px; color: var(--text-muted); }

/* Card 2: Destination Visual */
.mockup-2 { width: 280px; height: 350px; bottom: 0px; left: 0px; z-index: 3; padding: 15px; transform: rotateY(5deg) rotateZ(-2deg) translateZ(50px); }
.mockup-2:hover { transform: rotateY(0deg) rotateZ(0deg) translateZ(80px) translateY(-10px); z-index: 10; }
.m-dest-img { width: 100%; height: 200px; border-radius: 20px; object-fit: cover; margin-bottom: 15px; }
.m-badge { position: absolute; top: 25px; right: 25px; background: rgba(255,255,255,0.9); padding: 5px 12px; border-radius: 20px; font-size: 11px; font-weight: 700; color: var(--text-dark); display: flex; align-items: center; gap: 5px; }
.m-glow-dot { width: 6px; height: 6px; background: var(--primary-blue); border-radius: 50%; box-shadow: 0 0 10px var(--primary-blue); animation: pulse 2s infinite; }

/* Card 3: Flight Ticket */
.mockup-3 { width: 250px; height: 180px; top: 0px; left: 20px; z-index: 1; background: linear-gradient(135deg, var(--primary-blue), #4338CA); color: #fff; border: none; transform: rotateZ(5deg); padding: 20px; display: flex; flex-direction: column; justify-content: space-between; }
.mockup-3:hover { transform: rotateZ(0deg) translateY(-10px) scale(1.05); z-index: 10; }
.m-ticket-header { display: flex; justify-content: space-between; align-items: center; font-size: 12px; opacity: 0.8; }
.m-flight-route { display: flex; justify-content: space-between; align-items: center; margin: 15px 0; }
.m-airport { font-size: 24px; font-weight: 800; }
.m-plane-icon { font-size: 20px; opacity: 0.6; }

@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(91,127,255,0.7); } 70% { box-shadow: 0 0 0 10px rgba(91,127,255,0); } 100% { box-shadow: 0 0 0 0 rgba(91,127,255,0); } }

/* Trusted Partners */
.partners-section { border-top: 1px solid rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.05); padding: 40px 0; background: rgba(255,255,255,0.3); }
.partner-logo { height: 30px; opacity: 0.4; filter: grayscale(100%); transition: var(--transition); }
.partner-logo:hover { opacity: 1; filter: grayscale(0%); }

/* Section Headers */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag { display: inline-block; background: rgba(91,127,255,0.1); color: var(--primary-blue); padding: 6px 16px; border-radius: 30px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; border: 1px solid rgba(91,127,255,0.2); }
.section-title { font-size: 48px; margin-bottom: 15px; letter-spacing: -0.02em; }
.section-desc { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* How AI Works - Animated Connector */
.step-card { padding: 40px 30px; text-align: center; height: 100%; display: flex; flex-direction: column; align-items: center; position: relative; z-index: 2; }
.step-icon-wrapper { width: 80px; height: 80px; background: linear-gradient(135deg, #fff, #F5F9FF); border-radius: 24px; display: flex; justify-content: center; align-items: center; font-size: 32px; color: var(--primary-blue); margin-bottom: 25px; box-shadow: 0 10px 25px rgba(0,0,0,0.05); border: 1px solid rgba(255,255,255,0.8); transition: var(--transition); }
.step-card:hover .step-icon-wrapper { transform: scale(1.1) rotate(5deg); box-shadow: 0 15px 35px rgba(91,127,255,0.2); }
.step-card h4 { font-size: 22px; margin-bottom: 15px; }
.step-connector-line { position: absolute; top: 120px; left: 50%; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--primary-blue), transparent); background-size: 200% 100%; animation: lineFlow 3s infinite linear; z-index: 1; opacity: 0.3; }
@keyframes lineFlow { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }
@media (max-width: 992px) { .step-connector-line { display: none; } }

/* Destinations Hover Zoom */
.dest-card { border-radius: 30px; overflow: hidden; position: relative; height: 420px; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.dest-card:hover img { transform: scale(1.08); }
.dest-info { position: absolute; bottom: 20px; left: 20px; right: 20px; background: rgba(255,255,255,0.85); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.5); padding: 20px; border-radius: 20px; transform: translateY(10px); opacity: 0.9; transition: var(--transition); }
.dest-card:hover .dest-info { transform: translateY(0); opacity: 1; box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.dest-ai-badge { position: absolute; top: 20px; left: 20px; background: linear-gradient(135deg, var(--primary-blue), #A855F7); color: #fff; padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; box-shadow: 0 4px 15px rgba(168,85,247,0.3); }

/* AI Features Grid */
.feature-card { padding: 40px; text-align: left; position: relative; overflow: hidden; }
.feature-glow { position: absolute; top: -50px; right: -50px; width: 150px; height: 150px; background: radial-gradient(circle, rgba(91,127,255,0.15) 0%, rgba(255,255,255,0) 70%); border-radius: 50%; transition: var(--transition); }
.feature-card:hover .feature-glow { transform: scale(1.5); }
.f-icon { font-size: 40px; margin-bottom: 25px; color: var(--primary-blue); }
.feature-card h4 { font-size: 24px; margin-bottom: 15px; }

/* Packages */
.pkg-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.pkg-img { height: 200px; width: 100%; object-fit: cover; }
.pkg-body { padding: 30px; display: flex; flex-direction: column; flex: 1; }
.pkg-price { font-size: 28px; font-weight: 800; color: var(--primary-blue); margin: 15px 0; }
.pkg-features { list-style: none; margin-bottom: 25px; }
.pkg-features li { margin-bottom: 10px; font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.pkg-features li i { color: #10B981; }

/* Package Card Image Wrapper (used in destination pages) */
.package-card { overflow: hidden; }
.package-card-img-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
}
.package-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.package-card-img-wrap:hover img {
    transform: scale(1.06);
}
.package-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Place Card (used in destination pages) */
.place-card { border-radius: 20px; transition: var(--transition); }
.place-card:hover { transform: translateY(-5px); box-shadow: var(--float-shadow); }
.place-card-img {
    height: 200px;
    overflow: hidden;
}
.place-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.place-card:hover .place-card-img img {
    transform: scale(1.06);
}

/* Testimonials */
.testi-card { padding: 40px; text-align: center; }
.testi-avatar { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 20px; border: 4px solid #fff; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.testi-quote { font-size: 18px; line-height: 1.8; color: var(--text-dark); font-style: italic; margin-bottom: 25px; }
.testi-name { font-size: 16px; font-weight: 700; }

/* FAQ */
.accordion-item { background: rgba(255,255,255,0.6); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.5); border-radius: 20px !important; margin-bottom: 15px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.accordion-button { background: transparent; padding: 25px; font-size: 18px; font-weight: 600; color: var(--text-dark); box-shadow: none !important; }
.accordion-button:not(.collapsed) { background: #fff; color: var(--primary-blue); }
.accordion-body { padding: 0 25px 25px; color: var(--text-muted); font-size: 15px; line-height: 1.8; }

/* Pre Footer CTA */
.cta-box { background: linear-gradient(135deg, var(--primary-blue), #4338CA); border-radius: 40px; padding: 80px 40px; text-align: center; color: #fff; position: relative; overflow: hidden; box-shadow: 0 30px 60px rgba(67, 56, 202, 0.2); }
.cta-box::before { content: ''; position: absolute; top: -50%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%); border-radius: 50%; }

/* Footer */
footer { padding: 80px 0 30px; border-top: 1px solid rgba(0,0,0,0.05); background: #fff; }
.footer-logo { height: 40px; margin-bottom: 20px; }
.f-title { font-size: 16px; font-weight: 700; margin-bottom: 25px; color: var(--text-dark); }
.f-link { display: block; color: var(--text-muted); margin-bottom: 12px; transition: var(--transition); }
.f-link:hover { color: var(--primary-blue); transform: translateX(5px); }
.f-socials a { width: 40px; height: 40px; border-radius: 50%; background: #F5F9FF; display: inline-flex; justify-content: center; align-items: center; color: var(--primary-blue); margin-right: 10px; transition: var(--transition); }
.f-socials a:hover { background: var(--primary-blue); color: #fff; transform: translateY(-3px); }

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-title { font-size: 56px; }
    .mockup-container { transform: scale(0.8); transform-origin: right center; }
}
@media (max-width: 992px) {
    .hero-wrapper { text-align: center; padding-top: 120px; padding-bottom: 60px; min-height: auto; }
    .hero-subtitle { margin: 0 auto 40px; }
    .hero-search { margin: 0 auto; flex-direction: column; border-radius: 20px; padding: 20px; }
    .hero-search-field { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.05); padding: 15px; }
    .hero-search-btn { width: 100%; margin-top: 10px; padding: 15px; border-radius: 12px; }
    .mockup-container { display: none; } /* Hide heavy layered mockups on small screens for clean UX */
    .section-title { font-size: 36px; }
}

/* Floating Buttons & Widgets */
.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: #fff !important;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
}
.floating-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

.whatsapp-btn {
    right: 30px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 10px 30px rgba(37,211,102,0.3);
}

.back-top-btn {
    right: 105px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--primary-blue) !important;
    border-color: rgba(91,127,255,0.2);
    opacity: 0;
    pointer-events: none;
}
.back-top-btn.show {
    opacity: 1;
    pointer-events: auto;
}

/* Callback & Chatbot Widgets */
.callback-toggle-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, var(--primary-blue), #4338CA);
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(91,127,255,0.3);
    z-index: 999;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}
.callback-toggle-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(91,127,255,0.5);
}

.callback-widget, .chatbot-widget {
    position: fixed;
    bottom: 100px;
    width: 360px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: var(--transition);
    overflow: hidden;
}
.callback-widget.open, .chatbot-widget.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.callback-widget {
    left: 30px;
    padding: 30px;
}
.widget-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-muted);
    transition: color 0.3s;
}
.widget-close:hover {
    color: var(--text-dark);
}

/* Chatbot Widget specific */
.chatbot-widget {
    right: 30px;
    display: flex;
    flex-direction: column;
    height: 480px;
}
.chatbot-header {
    background: linear-gradient(135deg, var(--primary-blue), #A855F7);
    color: #fff;
    padding: 20px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chatbot-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.chat-msg {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.5;
}
.chat-msg.bot {
    background: #F1F5F9;
    color: var(--text-dark);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}
.chat-msg.user {
    background: var(--primary-blue);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}
.chatbot-footer {
    padding: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    gap: 10px;
    background: #fff;
}
.chatbot-input {
    flex: 1;
    border: 1px solid #E2E8F0;
    border-radius: 50px;
    padding: 10px 20px;
    outline: none;
    font-size: 14px;
    transition: border-color 0.3s;
}
.chatbot-input:focus {
    border-color: var(--primary-blue);
}
.chatbot-send {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: #fff;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}
.chatbot-send:hover {
    transform: scale(1.05);
    background: var(--text-dark);
}
.chatbot-toggle-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), #A855F7);
    color: #fff;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(168,85,247,0.3);
    z-index: 999;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}
.chatbot-toggle-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

/* ----------------------------------------------------
   HOMEPAGE REDESIGN NEW LAYOUT STYLES
   ---------------------------------------------------- */

/* Highlight Navbar Button */
.btn-nav-highlight {
    background: var(--primary-blue) !important;
    color: #fff !important;
    font-weight: 600;
    padding: 10px 24px !important;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.15);
    border: none !important;
    transition: var(--transition) !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-nav-highlight:hover {
    transform: scale(1.05) translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    background: #1E40AF !important;
}

/* Fullscreen Cinematic Hero */
.hero-fullscreen {
    min-height: 100vh;
    position: relative;
    background: url('../images/web/photo-1506929562872-bb421503ef21.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
    padding-top: 100px;
    padding-bottom: 80px;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.5) 100%);
    z-index: 1;
}
.hero-content-left {
    position: relative;
    z-index: 2;
}
.hero-trust-row {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.hero-trust-row i {
    color: var(--accent-orange);
}
.hero-title-large {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero-sub-text {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 550px;
    line-height: 1.6;
}

/* Right-hand Booking Card Widget */
.hero-booking-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    color: var(--text-dark);
}
.booking-card-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -0.01em;
}
.booking-field-group {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 12px 18px;
    margin-bottom: 18px;
    transition: var(--transition);
}
.booking-field-group:focus-within, .booking-field-group:hover {
    background: #fff;
    border-color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(13, 139, 255, 0.05);
}
.booking-field-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}
.booking-field-group input, .booking-field-group select {
    border: none;
    background: transparent;
    font-weight: 600;
    color: var(--text-dark);
    width: 100%;
    outline: none;
    font-size: 15px;
    padding: 0;
}

/* Trust Bar / Stats Horizontal Strip */
.trust-stats-bar {
    background: #fff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    padding: 30px 0;
    position: relative;
    z-index: 5;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}
.trust-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}
.trust-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(13, 139, 255, 0.1);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.trust-stat-item h4 {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    color: var(--text-dark);
}
.trust-stat-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    font-weight: 500;
}

/* Popular Destinations & Package Cards Updates */
.section-tag-orange {
    display: inline-block;
    background: rgba(255, 138, 101, 0.1);
    color: var(--accent-orange);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 138, 101, 0.2);
}
.travel-dest-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    height: 380px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}
.travel-dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.travel-dest-card:hover img {
    transform: scale(1.08);
}
.travel-dest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}
.travel-dest-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: #fff;
    z-index: 2;
}
.travel-dest-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-blue);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.travel-dest-price {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    margin-top: 15px;
}

/* Why Choose Us Icons Grid */
.why-choose-card {
    padding: 35px;
    border-radius: 24px;
    text-align: left;
    height: 100%;
    transition: var(--transition);
}
.why-choose-card:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: var(--float-shadow);
    border-color: rgba(13, 139, 255, 0.2);
}
.why-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(13, 139, 255, 0.1);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
}
.why-choose-card:hover .why-icon-box {
    background: var(--primary-blue);
    color: #fff;
    transform: scale(1.05);
}

/* Travel Reel Section styling */
.reel-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
    background: #000;
    aspect-ratio: 16/9;
    max-height: 500px;
    margin: 0 auto;
}
.reel-video-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}
.reel-play-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: rgba(15, 23, 42, 0.3);
    z-index: 2;
    text-align: center;
    padding: 30px;
}
.reel-play-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--accent-orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    cursor: pointer;
    box-shadow: 0 0 40px rgba(255, 138, 101, 0.6);
    transition: var(--transition);
    margin-bottom: 20px;
    border: none;
    padding-left: 5px; /* Alignment fix for play icon */
}
.reel-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(255, 138, 101, 0.8);
    background: #fff;
    color: var(--accent-orange);
}

/* Pinterest style Masonry Gallery */
.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    grid-auto-rows: 180px;
    grid-gap: 20px;
}
.masonry-item {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    cursor: pointer;
}
.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.masonry-item:hover img {
    transform: scale(1.06);
}
.masonry-item.tall {
    grid-row: span 2;
}
.masonry-item.wide {
    grid-column: span 2;
}
.masonry-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    transition: var(--transition);
    z-index: 2;
}
.masonry-item:hover .masonry-overlay {
    opacity: 1;
}
.masonry-title {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    margin: 0;
}

/* Blog Post Cards */
.blog-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    border-color: rgba(13, 139, 255, 0.15);
}
.blog-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}
.blog-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-meta {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}
.blog-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 15px;
}
.blog-link {
    font-weight: 700;
    font-size: 13px;
    color: var(--primary-blue);
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.blog-link:hover {
    color: var(--accent-orange);
}

@media (max-width: 768px) {
    .hero-title-large { font-size: 42px; }
    .hero-fullscreen { text-align: center; padding-top: 130px; }
    .hero-sub-text { margin-inline: auto; }
    .hero-booking-card { margin-top: 40px; padding: 25px; }
    .masonry-gallery { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .masonry-item.tall, .masonry-item.wide { grid-row: auto; grid-column: auto; height: 250px; }
}


/* ----------------------------------------------------
   PREMIUM NAVBAR & FOOTER REVAMP
   ---------------------------------------------------- */

/* Sticky Glassmorphism Navbar Styles */
.navbar {
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
    z-index: 1000;
}

.navbar .nav-link {
    color: var(--text-dark) !important;
    font-weight: 550;
    letter-spacing: -0.01em;
}
.navbar .nav-link:hover {
    color: var(--primary-blue) !important;
}

.navbar-brand img {
    filter: none !important;
    transition: all 0.4s ease;
}

/* Scrolled Thinner State */
.navbar.scrolled {
    padding: 10px 0;
}

/* Dark Mode Sticky Navbar */
html[data-theme="dark"] .navbar {
    background: rgba(15, 23, 42, 0.85) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}
html[data-theme="dark"] .navbar .nav-link {
    color: rgba(248, 250, 252, 0.9) !important;
}
html[data-theme="dark"] .navbar .nav-link:hover {
    color: var(--primary-blue) !important;
}
html[data-theme="dark"] .navbar-brand img {
    filter: brightness(0) invert(1) !important;
}

/* Underline link animation */
.navbar .nav-link:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 12px;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}
.navbar .nav-link:not(.dropdown-toggle):hover::after {
    width: calc(100% - 24px);
}

/* Search Icon Styling */
.nav-search-btn {
    color: var(--text-dark);
    font-size: 18px;
    transition: var(--transition);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}
html[data-theme="dark"] .nav-search-btn {
    color: #fff;
}
.nav-search-btn:hover {
    transform: scale(1.1);
    color: var(--primary-blue);
}

/* Hamburger Toggler Icon Colors */
.navbar-toggler i {
    color: var(--text-dark) !important;
}
html[data-theme="dark"] .navbar-toggler i {
    color: #fff !important;
}

/* ----------------------------------------------------
   NAVBAR MENU & SUBMENU ANIMATIONS (hover)
   ---------------------------------------------------- */
.navbar .nav-item {
    position: relative;
}

.navbar .nav-link {
    position: relative;
    transition: color 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar .nav-link:hover {
    transform: translateY(-2px);
}

.navbar .dropdown-toggle::after {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    vertical-align: 0.15em;
}

.navbar .dropdown.show > .dropdown-toggle::after,
.navbar .dropdown:hover > .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Dropdown panel — open animation */
.navbar .dropdown-menu.glass-card {
    display: block;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px) scale(0.96);
    transform-origin: top center;
    transition:
        opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.35s;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 16px;
    padding: 0.5rem;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px -12px rgba(15, 23, 42, 0.2);
    margin-top: 0.5rem !important;
}

.navbar .dropdown-menu.show {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    animation: navDropdownPop 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes navDropdownPop {
    0% {
        opacity: 0;
        transform: translateY(14px) scale(0.96);
    }
    70% {
        transform: translateY(-2px) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Submenu items — stagger + hover slide */
.navbar .dropdown-menu .dropdown-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin: 3px 6px;
    padding: 0.55rem 1rem 0.55rem 1.35rem;
    font-weight: 500;
    transition:
        color 0.25s ease,
        background 0.3s ease,
        transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        padding-left 0.3s ease,
        box-shadow 0.3s ease;
}

.navbar .dropdown-menu .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 50%;
    width: 4px;
    height: 0;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-orange));
    transform: translateY(-50%);
    transition: height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar .dropdown-menu.show .dropdown-item {
    animation: navMenuItemIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.navbar .dropdown-menu.show .dropdown-item:nth-child(1) { animation-delay: 0.04s; }
.navbar .dropdown-menu.show .dropdown-item:nth-child(2) { animation-delay: 0.07s; }
.navbar .dropdown-menu.show .dropdown-item:nth-child(3) { animation-delay: 0.10s; }
.navbar .dropdown-menu.show .dropdown-item:nth-child(4) { animation-delay: 0.13s; }
.navbar .dropdown-menu.show .dropdown-item:nth-child(5) { animation-delay: 0.16s; }
.navbar .dropdown-menu.show .dropdown-item:nth-child(6) { animation-delay: 0.19s; }
.navbar .dropdown-menu.show .dropdown-item:nth-child(7) { animation-delay: 0.22s; }
.navbar .dropdown-menu.show .dropdown-item:nth-child(8) { animation-delay: 0.25s; }
.navbar .dropdown-menu.show .dropdown-item:nth-child(9) { animation-delay: 0.28s; }
.navbar .dropdown-menu.show .dropdown-item:nth-child(10) { animation-delay: 0.31s; }
.navbar .dropdown-menu.show .dropdown-item:nth-child(11) { animation-delay: 0.34s; }
.navbar .dropdown-menu.show .dropdown-item:nth-child(12) { animation-delay: 0.37s; }
.navbar .dropdown-menu.show .dropdown-item:nth-child(n+13) { animation-delay: 0.4s; }

@keyframes navMenuItemIn {
    from {
        opacity: 0;
        transform: translateX(-12px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item:focus {
    color: var(--primary-blue) !important;
    background: linear-gradient(90deg, rgba(13, 139, 255, 0.14), rgba(255, 138, 101, 0.08)) !important;
    transform: translateX(6px);
    padding-left: 1.65rem;
    box-shadow: 0 4px 14px -4px rgba(13, 139, 255, 0.35);
}

.navbar .dropdown-menu .dropdown-item:hover::before,
.navbar .dropdown-menu .dropdown-item:focus::before {
    height: 65%;
}

.navbar .dropdown-menu .dropdown-item:active {
    transform: translateX(4px) scale(0.98);
}

/* Domestic vs International subtle hover tint */
.navbar .nav-item:nth-child(3) .dropdown-menu .dropdown-item:hover {
    background: linear-gradient(90deg, rgba(13, 139, 255, 0.16), rgba(13, 139, 255, 0.05)) !important;
}

.navbar .nav-item:nth-child(2) .dropdown-menu .dropdown-item:hover {
    background: linear-gradient(90deg, rgba(255, 138, 101, 0.14), rgba(255, 138, 101, 0.05)) !important;
}

html[data-theme="dark"] .navbar .dropdown-menu.glass-card {
    background: rgba(15, 23, 42, 0.95) !important;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.5);
}

html[data-theme="dark"] .navbar .dropdown-menu .dropdown-item {
    color: rgba(248, 250, 252, 0.9) !important;
}

html[data-theme="dark"] .navbar .dropdown-menu .dropdown-item:hover {
    color: var(--primary-blue) !important;
}

/* Plan My Trip + search hover */
.navbar .btn-nav-highlight {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.navbar .btn-nav-highlight:hover {
    transform: translateY(-2px) scale(1.03);
}

@media (max-width: 991.98px) {
    .navbar .nav-link:hover {
        transform: none;
    }
    .navbar .dropdown-menu.glass-card {
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        background: transparent !important;
        border: none;
        padding-left: 1rem;
    }
    .navbar .dropdown-menu.show {
        animation: none;
    }
    .navbar .dropdown-menu.show .dropdown-item {
        animation: none;
    }
}

/* Fullscreen Search Overlay */
.search-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.search-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.search-overlay-close {
    position: absolute;
    top: 40px; right: 40px;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    transition: var(--transition);
}
.search-overlay-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--accent-orange);
}
.search-input-group {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px 8px 8px 24px;
    display: flex;
    align-items: center;
}
.search-input-group input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    outline: none;
    padding: 10px 0;
    width: 100%;
}
.search-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Footer Premium Styling */
footer {
    background: #0F172A !important;
    color: rgba(255, 255, 255, 0.8) !important;
    padding-top: 100px;
    padding-bottom: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: var(--font-body);
}

.footer-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    position: relative;
}
.footer-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: -8px;
    width: 30px; height: 2px;
    background-color: var(--primary-blue);
}

.footer-link {
    color: rgba(255, 255, 255, 0.6) !important;
    display: block;
    margin-bottom: 12px;
    transition: var(--transition);
    font-size: 14px;
    font-weight: 500;
}
.footer-link:hover {
    color: var(--primary-blue) !important;
    transform: translateX(5px);
}

/* Footer Newsletter Styles */
.footer-newsletter-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    margin-top: 20px;
}
.newsletter-input-group {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px 5px 5px 20px;
    display: flex;
    align-items: center;
}
.newsletter-input-group input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    outline: none;
    flex-grow: 1;
}
.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.newsletter-input-group button {
    background: var(--primary-blue);
    border: none;
    border-radius: 50px;
    color: #fff;
    padding: 10px 24px;
    font-weight: 600;
    transition: var(--transition);
}
.newsletter-input-group button:hover {
    background: var(--accent-orange);
    transform: scale(1.05);
}

/* Mini Instagram Gallery */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 15px;
}
.insta-item {
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.insta-item:hover img {
    transform: scale(1.15);
}

/* Trust Badges Strip */
.footer-trust-badges {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    margin-top: 50px;
    margin-bottom: 30px;
}
.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
}
.trust-badge-item i {
    font-size: 24px;
    color: var(--primary-blue);
}
.trust-badge-item span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Bottom Bar */
.footer-bottom {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4) !important;
}
.footer-bottom a {
    color: rgba(255, 255, 255, 0.4) !important;
    transition: color 0.3s;
}
.footer-bottom a:hover {
    color: var(--primary-blue) !important;
}

/* Destinations mega dropdown — India left, International right */
.dropdown-menu.destinations-mega {
    min-width: min(560px, 95vw);
    border-radius: 16px;
    overflow: hidden;
}
.destinations-mega-wrap {
    list-style: none;
    margin: 0;
    padding: 0;
}
.destinations-mega-col {
    padding: 0.65rem 0.35rem 0.75rem;
    max-height: 70vh;
    overflow-y: auto;
}
.destinations-mega-india {
    background: rgba(13, 139, 255, 0.06);
}
.destinations-mega-intl {
    background: rgba(255, 138, 101, 0.06);
    border-left: 1px solid rgba(15, 23, 42, 0.08);
}
@media (max-width: 767.98px) {
    .destinations-mega-intl {
        border-left: none;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
    }
}
.dropdown-menu.destinations-mega .dropdown-header {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-blue);
    font-weight: 700;
    padding-top: 0.5rem;
}
.destinations-mega-intl .dropdown-header {
    color: var(--accent-orange);
}
.dropdown-menu.destinations-mega .dropdown-item {
    white-space: normal;
    padding: 0.45rem 0.85rem;
    border-radius: 8px;
}
.dropdown-menu.destinations-mega .dropdown-item strong {
    font-weight: 600;
}
.dropdown-menu.destinations-mega .dropdown-item small {
    font-size: 0.75rem;
}

/* ----------------------------------------------------
   DESTINATION PAGES — hero, cards, animations
   ---------------------------------------------------- */
.destination-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.destination-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: heroKenBurns 18s ease-in-out infinite alternate;
    transform: scale(1.05);
}
@keyframes heroKenBurns {
    0% { transform: scale(1.05) translate(0, 0); }
    100% { transform: scale(1.12) translate(-1%, -1%); }
}
.destination-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.75) 100%);
}
.destination-hero-content {
    z-index: 2;
    padding: 6rem 0 4rem;
}
.destination-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-slate);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
    animation: badgePulse 2.5s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(13, 139, 255, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(13, 139, 255, 0); }
}
.destination-intro-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.destination-intro-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--float-shadow);
}
.place-card {
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
}
.place-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--float-shadow);
}
.place-card-img {
    height: 200px;
    overflow: hidden;
}
.place-card-img img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.place-card:hover .place-card-img img {
    transform: scale(1.08);
}
.package-card-img-wrap {
    height: 280px;
    overflow: hidden;
}
.package-card-img-wrap img {
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.package-card:hover .package-card-img-wrap img {
    transform: scale(1.06);
}
.trust-stat-item,
.glass-panel-hover {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.trust-stat-item:hover {
    transform: translateY(-4px);
}

/* ==========================================================================
   ROAMERLY RESPONSIVE & MOBILE-FIRST OPTIMIZATIONS
   ========================================================================== */

/* Base container and layout refinements */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 767.98px) {
    .container, .container-fluid {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

/* Touch targets and clickable UI spacing */
.btn-primary-glow,
.btn-teal-glow,
.btn-glass,
.btn-luxury,
.btn-nav-highlight,
.newsletter-input-group button,
.back-top-btn {
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-content-left .d-flex,
.cta-box .d-flex {
    gap: 16px !important;
}

/* Typography font-scaling rules */
@media (max-width: 767.98px) {
    body {
        font-size: 15px !important;
    }
    h1, .display-3, .hero-title-large {
        font-size: 32px !important;
    }
    h2, .section-title {
        font-size: 26px !important;
    }
    h3 {
        font-size: 22px !important;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    body {
        font-size: 17px !important;
    }
    h1, .display-3, .hero-title-large {
        font-size: 42px !important;
    }
    h2, .section-title {
        font-size: 32px !important;
    }
}
@media (min-width: 1025px) {
    body {
        font-size: 18px;
    }
}

/* Responsive Full-Screen Navbar Overlay on Mobile */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(15, 23, 42, 0.98) !important;
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(25px) !important;
        padding: 90px 24px 40px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        overflow-y: auto !important;
        z-index: 999 !important;
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease !important;
        
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translateY(-20px) !important;
    }
    .navbar-collapse.show {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
    }
    
    .navbar-nav {
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 2rem !important;
    }
    .navbar-nav .nav-item {
        margin: 12px 0 !important;
    }
    .navbar-nav .nav-link {
        font-size: 1.35rem !important;
        color: #fff !important;
        font-weight: 600 !important;
        display: inline-block !important;
    }
    
    /* Click dropdown behavior in mobile overlay */
    .navbar .dropdown-menu.glass-card {
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 12px !important;
        margin: 10px auto 0 !important;
        padding: 10px !important;
        width: 100% !important;
        max-width: 300px !important;
        position: static !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        pointer-events: auto !important;
        display: none !important;
    }
    .navbar .dropdown-menu.glass-card.show {
        display: block !important;
    }
    .navbar .dropdown-menu .dropdown-item {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 1.1rem !important;
        text-align: center !important;
        padding: 8px 12px !important;
        margin: 4px 0 !important;
        transform: none !important;
    }
    .navbar .dropdown-menu .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        color: var(--primary-blue) !important;
        transform: none !important;
        padding-left: 12px !important;
    }
    
    .navbar-collapse .d-flex {
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        gap: 15px !important;
        margin-top: auto !important;
    }
    .navbar-collapse .nav-search-btn {
        color: #fff !important;
        font-size: 1.4rem !important;
        margin: 10px 0 !important;
    }
    .navbar-collapse .btn-nav-highlight {
        width: 100% !important;
        max-width: 280px !important;
        text-align: center !important;
        padding: 12px 30px !important;
        border-radius: 30px !important;
        font-size: 1.1rem !important;
    }
    .navbar-toggler {
        position: relative !important;
        z-index: 1001 !important;
        min-height: 44px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .navbar-brand img {
        max-height: 38px !important;
    }
}

/* Hero section alignment and CTA stacking */
@media (max-width: 767.98px) {
    .hero-fullscreen {
        text-align: center !important;
        padding-top: 120px !important;
    }
    .hero-content-left {
        text-align: center !important;
    }
    .hero-content-left .d-flex {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }
    .hero-content-left .d-flex .btn-primary-glow,
    .hero-content-left .d-flex .btn-glass {
        width: 100% !important;
        margin: 0 !important;
    }
    .hero-booking-card {
        margin-top: 30px !important;
    }
}

/* Responsive Grids for destinations & packages */
@media (max-width: 767.98px) {
    .row-cols-md-2 > *, .row-cols-lg-3 > *, .row-cols-lg-4 > * {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .destination-intro-card {
        padding: 20px !important;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    /* 2 Columns on Tablet */
    .row.g-4 > *, .row.g-5 > * {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    /* Protect footer/grids from overflowing */
    .insta-grid {
        justify-content: center !important;
        gap: 10px !important;
    }
    .insta-item {
        width: 90px !important;
        height: 90px !important;
    }
}

/* Forms & inputs stacking on mobile */
@media (max-width: 767.98px) {
    .search-input-group,
    .newsletter-input-group {
        width: 100% !important;
        flex-direction: column !important;
        border-radius: 20px !important;
        padding: 10px !important;
        gap: 10px !important;
    }
    .search-input-group input,
    .newsletter-input-group input {
        width: 100% !important;
        padding: 10px 15px !important;
        text-align: center !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    .search-input-group button,
    .newsletter-input-group button {
        width: 100% !important;
        border-radius: 50px !important;
        padding: 12px !important;
    }
}

/* Footer layout stack & centering on mobile */
@media (max-width: 767.98px) {
    footer .row.g-5 {
        text-align: center !important;
    }
    footer .footer-social,
    footer .social-links {
        justify-content: center !important;
        margin-top: 15px !important;
    }
    footer .footer-title::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    .footer-trust-badges .row {
        justify-content: center !important;
    }
    .footer-trust-badges .col-lg-3,
    .footer-trust-badges .col-sm-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

/* Hide AI Chatbot globally in favor of WhatsApp floating button */
.chatbot-toggle-btn,
.chatbot-widget {
    display: none !important;
}


