:root {
    --primary-gradient: linear-gradient(135deg, #ec3233 0%, #6d1824 100%);
    --primary: #ec3233;
    --primary-color: #ec3233;
    --secondary-color: #6d1824;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.15);
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --shadow-premium: 0 10px 40px -10px rgba(15, 23, 42, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 101px;
}

.page-content {
    background: var(--white);
    min-height: calc(100vh - 101px);
}

/* --- Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    min-width: 0;
    flex-shrink: 1;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
}

.logo img {
    height: 45px;
    width: auto;
}

.site-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    position: relative;
    padding-left: 15px;
}

.site-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 25px;
    background: var(--primary-gradient);
    opacity: 0.3;
}

.desktop-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.menu-item {
    position: relative;
}

.menu-item > a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-smooth);
}

.menu-item > a:hover {
    color: var(--primary-color);
}

.menu-item > a i {
    font-size: 0.8em;
    transition: transform 0.3s;
}

.menu-item:hover > a i {
    transform: rotate(180deg);
}

/* Dropdowns */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    padding: 10px 0;
    list-style: none;
}

.menu-item:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    position: relative;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-fast);
}

.menu-item:hover .dropdown-item {
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item:nth-child(1) { transition-delay: 0.1s; }
.dropdown-item:nth-child(2) { transition-delay: 0.15s; }
.dropdown-item:nth-child(3) { transition-delay: 0.2s; }
.dropdown-item:nth-child(4) { transition-delay: 0.25s; }

.dropdown-item:hover {
    background: var(--bg-light);
}

.dropdown-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.82rem;
    font-weight: 500;
    transition: var(--transition-fast);
    width: 100%;
}

.dropdown-item a:hover {
    color: var(--primary-color);
}

.dropdown-item a i {
    font-size: 0.7rem;
    opacity: 0.5;
}

.sub-dropdown {
    position: absolute;
    top: -10px;
    left: 100%;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    padding: 10px 0;
    list-style: none;
    border-left: 2px solid var(--primary-color);
}

.dropdown-item:hover > .sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.sub-dropdown li a {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* --- Mobile Menu & Sidebar --- */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--white);
    z-index: 1001;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    padding: 0;
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px 25px;
}

.sidebar-close {
    background: var(--bg-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.sidebar-close:hover {
    background: var(--primary-color);
    color: var(--white);
}

.mobile-menu {
    list-style: none;
}

.mobile-menu-item {
    border-bottom: 1px solid #eee;
}

.mobile-menu-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    list-style: none;
    padding-left: 20px;
    background: var(--bg-light);
}

.mobile-dropdown li a {
    padding: 10px 0;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--text-light);
}

.mobile-menu-item.active > .mobile-dropdown {
    max-height: 1000px;
}

.mobile-menu-item.active > a i {
    transform: rotate(180deg);
}

/* --- Hero Slider --- */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    width: 100%;
    display: flex;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 10s linear;
}

.slide.active .slide-bg {
    transform: scale(1.15);
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
    transform: translateY(60px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.slide-content p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    opacity: 0.9;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    padding: 12px 32px;
    background: var(--primary-gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 20px rgba(236, 50, 51, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(236, 50, 51, 0.4);
}

.slider-pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.pagination-dot.active {
    background: var(--white);
    width: 40px;
    border-radius: 20px;
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    right: 50px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-smooth);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}

.nav-btn:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* --- Services Section --- */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
}

.section-header p {
    font-size: 0.95rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Tours Page --- */
.tour-page {
    padding: 120px 0 80px;
    background: var(--bg-light);
}

.tour-filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.tour-filter-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid #dbe3ee;
    background: #fff;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.tour-filter-link:hover,
.tour-filter-link.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

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

.tour-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #eef2f7;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 55px rgba(15, 23, 42, 0.08);
}

.tour-card-image {
    width: 100%;
    height: 220px;
    min-height: 220px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.tour-card-no-image {
    width: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    background: #f1f5f9;
    font-weight: 700;
}

.tour-card-body {
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1;
}

.tour-card-title {
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-dark);
}

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

.tour-card-desc {
    margin: 0;
    color: #475569;
    line-height: 1.75;
    min-height: 76px;
}

.tour-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.tour-card-price {
    font-weight: 800;
    color: var(--primary-color);
}

.tour-card-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}

.tour-card-link:hover {
    text-decoration: underline;
}

.tour-empty-state {
    grid-column: 1 / -1;
    padding: 40px 20px;
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 18px;
    text-align: center;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .tour-page {
        padding-top: 140px;
    }
    .tour-card {
        min-height: 420px;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -25px auto 15px;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card:hover .service-icon {
    background: var(--primary-gradient);
    color: var(--white);
    transform: translateY(-5px);
}

.service-content {
    padding: 0 25px 25px;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 18px;
    line-height: 1.5;
}

.service-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.service-link i {
    font-size: 0.7rem;
    transition: var(--transition-fast);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background-image: url('img/parallax image.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    color: var(--white);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));
}

.cta-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-container p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: #eef6ff; /* Light Blue */
    position: relative;
    overflow: hidden;
}

/* Floating Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    opacity: 0.1;
    border-radius: 50%;
    animation: float 15s infinite linear;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-duration: 18s; }
.particle:nth-child(2) { top: 60%; left: 5%; animation-duration: 22s; width: 10px; height: 10px; }
.particle:nth-child(3) { top: 40%; left: 80%; animation-duration: 20s; }
.particle:nth-child(4) { top: 80%; left: 70%; animation-duration: 25s; width: 12px; height: 12px; }
.particle:nth-child(5) { top: 10%; left: 90%; animation-duration: 16s; }

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 0.1; }
    50% { transform: translate(100px, 100px) rotate(180deg); opacity: 0.2; }
    100% { transform: translate(0, 0) rotate(360deg); opacity: 0.1; }
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-content h4 {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.about-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.about-features li {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-features li i {
    color: var(--primary-color);
    font-size: 1rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--primary-gradient);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

/* Translation Services Section */
.translation-section {
    padding: 100px 0;
    background: var(--white);
}

.translation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.translation-item {
    display: flex;
    gap: 25px;
    padding: 35px 25px;
    background: var(--white);
    border-radius: 20px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.translation-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--primary-gradient);
    transition: var(--transition-smooth);
    border-radius: 0 5px 5px 0;
}

.translation-item:hover {
    background: var(--white);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.translation-item:hover::before {
    height: 60%;
}

.translation-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.translation-item:hover .translation-icon {
    background: var(--primary-gradient);
    color: var(--white);
    transform: rotate(10deg);
}

.translation-info h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.translation-info p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Why Us Section */
.why-us-section {
    padding: 100px 0;
    background: #f4f4f4; /* Smoke Grey */
}

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

.why-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    transition: var(--transition-smooth);
    position: relative;
}

.why-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
    transition: var(--transition-smooth);
}

.why-item:hover .why-icon {
    background: var(--primary-gradient);
    color: var(--white);
    transform: rotate(360deg);
}

.why-item:hover .why-icon::after {
    transform: rotate(-180deg);
    opacity: 0.5;
}

.why-item h3 {
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.why-item p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Footer */
.main-footer {
    background: #111;
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    border-top: 4px solid var(--primary-color);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-gradient);
}

.footer-col p {
    color: #999;
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #999;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.footer-links li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: #999;
    font-size: 0.85rem;
}

.footer-contact li i {
    color: var(--primary-color);
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--primary-gradient);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 0.8rem;
    margin: 0;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-features {
        justify-content: center;
    }
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Footer --- */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: rgba(255,255,255,0.85);
    padding-top: 80px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.footer-desc {
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.footer-logo img {
    height: 45px;
    margin-bottom: 18px;
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.85rem;
}

.social-links a:hover {
    background: var(--primary-gradient);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '›';
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-contact li i {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.35);
    font-size: 0.82rem;
    font-weight: 400;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .slide-content h1 {
        font-size: 2.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 10px 20px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slider-nav {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer {
        padding-top: 50px;
        text-align: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
}

/* --- Navigation Account Button --- */
.nav-account-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px !important;
    background: var(--primary-gradient);
    color: var(--white) !important;
    border-radius: 50px;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: var(--transition-smooth) !important;
    box-shadow: 0 4px 15px rgba(236, 50, 51, 0.2);
}
.nav-account-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(236, 50, 51, 0.35);
    color: var(--white) !important;
}
.nav-account-btn.logged-in {
    background: #0f172a;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.15);
}
.nav-account-btn.logged-in:hover {
    background: #1e293b;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
}
.desktop-menu .menu-item.nav-btn-item {
    align-self: center;
}

/* --- Dropdown item 5th child animation delay --- */
.dropdown-item:nth-child(5) { transition-delay: 0.3s; }

/* --- Navigation Phone Button --- */
.nav-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px !important;
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
    border-radius: 50px;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: var(--transition-smooth) !important;
}

.nav-phone-btn:hover {
    background: var(--primary-gradient);
    color: var(--white) !important;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(236, 50, 51, 0.25);
}

/* --- Mobile Quick Call Action --- */
.mobile-actions {
    display: none;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.mobile-phone-call {
    width: 40px;
    height: 40px;
    background: rgba(236, 50, 51, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.mobile-phone-call:hover {
    background: var(--primary-gradient);
    color: var(--white);
}

@media (max-width: 992px) {
    .mobile-actions {
        display: flex;
    }
    .mobile-toggle {
        display: block;
    }
}

/* --- Flight Search Engine Styling (Shared) --- */
.home-search-section {
    padding: 60px 0 20px;
    background: var(--bg-light);
    position: relative;
    z-index: 20;
}
.home-search-section .sc {
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.sc {
    max-width: 1200px;
    margin: -60px auto 0;
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.trip-tabs {
    display: inline-flex;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 100px;
    margin-bottom: 25px;
    border: 1px solid #e2e8f0;
}
.trip-tab {
    padding: 8px 24px;
    border-radius: 100px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    transition: var(--transition);
}
.trip-tab.active {
    background: var(--primary-gradient);
    color: #white;
    color: #fff;
    box-shadow: 0 4px 12px rgba(236, 50, 51, 0.2);
}

.search-grid {
    display: grid;
    grid-template-columns: minmax(180px, 1.25fr) minmax(180px, 1.25fr) minmax(170px, 1fr) minmax(170px, 1fr) minmax(220px, 1.3fr);
    gap: 14px;
    margin-bottom: 18px;
    align-items: start;
    width: 100%;
    padding: 22px;
    background: #fff;
    border-radius: 28px;
    border: 1px solid #eef1f6;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    overflow: visible;
}
.search-grid .fd,
.search-grid .search-btn {
    min-width: 0;
}
.search-grid .fd {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}
.search-grid .search-btn {
    width: 100%;
    min-height: 56px;
    padding: 0 26px;
    border-radius: 24px;
    font-size: 1rem;
}
.fr {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}
.fd {
    position: relative;
}
.fd label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.fd input,
.pax-trigger,
.search-grid .search-btn {
    border-radius: 999px;
}
.fd input {
    width: 100%;
    padding: 16px 18px 16px 44px;
    border: 1px solid #d8dee7;
    border-radius: 999px;
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    outline: none;
    transition: var(--transition);
    background: #fff;
    color: var(--text-dark);
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.06);
}
.fd input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(236, 50, 51, 0.08);
}
.fd input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(236, 50, 51, 0.08);
}
.fd .fi {
    position: absolute;
    left: 16px;
    top: 36px;
    color: var(--text-muted);
    font-size: 0.95rem;
    z-index: 2;
}

.swap-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #d8dee7;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    color: var(--primary-color);
    font-size: 0.95rem;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
    transition: var(--transition);
}
.swap-btn:hover {
    background: var(--primary-gradient);
    color: #fff;
    border-color: transparent;
    transform: translateY(-50%) rotate(180deg);
}

.calendar-field {
    min-width: 0;
}
.calendar-field .calendar-input-wrap {
    position: relative;
}
.calendar-field input {
    width: 100%;
}
.calendar-hint {
    display: none;
}

.pax-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: flex-start;
    min-height: 140px;
    overflow: visible;
}
.pax-trigger {
    padding: 14px 18px 14px 42px;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    cursor: pointer;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    color: var(--text-dark);
    transition: var(--transition);
    min-height: 58px;
}
.pax-trigger:hover {
    border-color: var(--primary-color);
}
.search-footer {
    margin-top: 18px;
    display: flex;
    justify-content: flex-end;
}
.search-footer .search-btn {
    min-width: 240px;
    width: auto;
    padding: 14px 34px;
}

.ac-drop {
    position: absolute;
    top: 105%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.12);
    z-index: 100;
    display: none;
    max-height: 280px;
    overflow-y: auto;
    border: 1px solid #f1f5f9;
    padding: 6px;
}
.ac-drop.show {
    display: block;
}
.ac-item {
    padding: 10px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    border-radius: 10px;
    transition: var(--transition);
}
.ac-item:hover {
    background: #f8fafc;
    color: var(--primary-color);
}
.ac-item .code {
    background: #f1f5f9;
    color: var(--primary-color);
    font-weight: 800;
    font-size: 0.78rem;
    padding: 4px 8px;
    border-radius: 6px;
    min-width: 44px;
    text-align: center;
}

.price-calendar {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    min-width: 320px;
    max-width: 420px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: 0 35px 70px rgba(15, 23, 42, 0.15);
    padding: 18px;
    z-index: 150;
    display: none;
}

.price-calendar.show {
    display: block;
}

.price-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.price-calendar-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.calendar-nav-btn {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: #fff;
    color: var(--text-dark);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.calendar-nav-btn:hover {
    background: var(--primary-gradient);
    color: #fff;
    border-color: transparent;
}

.price-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 10px;
    color: #64748b;
    font-size: 0.78rem;
    text-align: center;
    font-weight: 700;
}

.price-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.price-calendar-day {
    min-height: 80px;
    border-radius: 18px;
    border: 1px solid transparent;
    background: #f8fafc;
    padding: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    text-align: center;
}

.price-calendar-day.available:hover {
    background: #eef2ff;
}

.price-calendar-day.selected {
    background: var(--primary-gradient);
    color: #fff;
    border-color: transparent;
}

.price-calendar-day.not-available {
    cursor: not-allowed;
    opacity: 0.35;
    background: #f3f4f6;
}

.price-calendar-day.empty {
    background: transparent;
    border: none;
    cursor: default;
}

.calendar-day-number {
    font-size: 0.95rem;
    font-weight: 700;
}

.price-calendar-price {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.price-calendar-price.lowest {
    color: #059669;
}

.price-calendar-price.blank {
    color: #94a3b8;
}

.price-calendar-message {
    padding: 28px 0;
    text-align: center;
    color: #64748b;
    font-size: 0.92rem;
}

.pax-panel {
    position: absolute;
    top: 105%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.12);
    z-index: 100;
    display: none;
    padding: 24px;
    border: 1px solid #f1f5f9;
}
.pax-panel.show {
    display: block;
}
.pax-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f8fafc;
}
.pax-type {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-dark);
}
.pax-age {
    font-size: 0.72rem;
    color: var(--text-muted);
}
.pax-stepper {
    display: flex;
    align-items: center;
    gap: 12px;
}
.pax-stepper button {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: #fff;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}
.pax-stepper button:hover {
    background: var(--primary-gradient);
    color: #fff;
    border-color: transparent;
}
.pax-stepper span {
    font-weight: 800;
    min-width: 20px;
    text-align: center;
    color: var(--text-dark);
}
.class-opts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}
.class-opt {
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid var(--border-color);
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
    font-family: 'Outfit', sans-serif;
    color: var(--text-muted);
}
.class-opt.active {
    background: var(--primary-gradient);
    color: #fff;
    border-color: transparent;
}

.opts-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.advanced-filter-label {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
}
.nonstop-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
    cursor: pointer;
    font-weight: 700;
}
.nonstop-label input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}
.search-btn {
    padding: 14px 34px;
    background: var(--primary-gradient);
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 24px;
    border: none;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
    box-shadow: 0 10px 24px rgba(236, 50, 51, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    min-height: 56px;
}
.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(236, 50, 51, 0.3);
}
.search-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

@media(max-width:1160px) {
    .search-grid {
        grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) minmax(210px, 1fr) minmax(210px, 1fr);
    }
}

@media(max-width:860px) {
    .search-grid {
        grid-template-columns: 1fr;
    }
    .search-footer {
        justify-content: center;
    }
    .search-footer .search-btn {
        width: 100%;
        max-width: 420px;
    }
}

@media(max-width:768px) {
    .search-grid,
    .fr {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .swap-btn {
        right: 20px;
        top: auto;
        bottom: -20px;
        transform: rotate(90deg);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .swap-btn:hover {
        transform: rotate(270deg);
    }
    .opts-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .search-btn {
        width: 100%;
    }
    .sc {
        padding: 20px;
        margin-top: -40px;
        border-radius: 20px;
    }
    .home-search-section .sc {
        margin-top: 0;
    }
}

/* --- Multi-city Search Layout --- */
.mc-segment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.remove-segment-btn {
    transition: var(--transition);
}
.remove-segment-btn:hover {
    color: #b91c1c !important;
}
#add-segment-btn {
    transition: var(--transition);
}
#add-segment-btn:hover {
    background: #f8fafc !important;
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

@media(max-width:768px) {
    .mc-segment-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ==========================================================================
   Flight Search Hero & Dark Theme styling
   ========================================================================== */
.flight-search-hero {
    position: relative;
    padding: 140px 20px 80px;
    background: #0f172a;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fsh-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.95) 100%), url('img/flight booking.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.95;
    z-index: 1;
}

.fsh-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.fsh-heading {
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.fsh-heading h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.15;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.fsh-heading p {
    font-size: 1.15rem;
    color: #94a3b8;
    font-weight: 400;
    line-height: 1.5;
}

/* Glassmorphism Flight Search Container */
.sc.sc-elevated {
    margin-top: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    padding: 35px;
    border-radius: 24px;
}

/* Dark mode inputs inside glass container */
.sc-elevated .fd label {
    color: #94a3b8;
}

.sc-elevated .fd input {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 500;
}

.sc-elevated .fd input::placeholder {
    color: #64748b;
}

.sc-elevated .fd input:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 0 4px rgba(236, 50, 51, 0.25);
}

.sc-elevated .fd .fi {
    color: #94a3b8;
}

/* Dark theme Trip Tabs */
.sc-elevated .trip-tabs {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.sc-elevated .trip-tab {
    color: #94a3b8;
}

.sc-elevated .trip-tab:hover {
    color: #fff;
}

.sc-elevated .trip-tab.active {
    background: var(--primary-gradient);
    color: #fff;
    box-shadow: 0 4px 12px rgba(236, 50, 51, 0.3);
}

/* Dark Theme Swap Button */
.sc-elevated .swap-btn {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.sc-elevated .swap-btn:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: #fff;
}

/* Dark Theme Passenger Selection Panel */
.sc-elevated .pax-trigger {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.sc-elevated .pax-trigger:hover {
    border-color: var(--primary-color);
}

.sc-elevated .pax-panel {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.sc-elevated .pax-row {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.sc-elevated .pax-type {
    color: #fff;
}

.sc-elevated .pax-age {
    color: #94a3b8;
}

.sc-elevated .pax-stepper span {
    color: #fff;
}

.sc-elevated .pax-stepper button {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.sc-elevated .pax-stepper button:hover {
    background: var(--primary-gradient);
    color: #fff;
    border-color: transparent;
}

.sc-elevated .class-opts {
    border-top-color: rgba(255, 255, 255, 0.05);
}

.sc-elevated .class-opt {
    border-color: rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

.sc-elevated .class-opt:hover {
    color: #fff;
    border-color: #fff;
}

.sc-elevated .class-opt.active {
    background: var(--primary-gradient);
    color: #fff;
    border-color: transparent;
}

.sc-elevated .nonstop-label {
    color: #94a3b8;
}

.sc-elevated .nonstop-label:hover {
    color: #fff;
}

/* Autocomplete Dropdown styling under dark container */
.sc-elevated .ac-drop {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

.sc-elevated .ac-item {
    color: #f1f5f9;
}

.sc-elevated .ac-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.sc-elevated .ac-item .code {
    background: rgba(255, 255, 255, 0.10);
    color: #f8fafc;
}

/* Multi-city styles under dark mode */
.sc-elevated #add-segment-btn {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
}

.sc-elevated #add-segment-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}

.sc-elevated .remove-segment-btn {
    color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.1) !important;
    border-color: rgba(239, 68, 68, 0.2) !important;
}

.sc-elevated .remove-segment-btn:hover {
    background: #ef4444 !important;
    color: #fff !important;
}

/* Trust indicators bar */
.fsh-trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.fsh-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.fsh-trust-item i {
    color: var(--primary-color);
}

/* Slider Section pushed below Search */
.hero-section-below {
    height: 60vh !important;
    min-height: 450px;
}

@media(max-width: 768px) {
    .flight-search-hero {
        padding: 100px 15px 40px;
    }
    .fsh-heading h1 {
        font-size: 2.2rem;
    }
    .fsh-heading p {
        font-size: 0.95rem;
    }
    .fsh-trust-bar {
        gap: 15px;
    }
    .fsh-trust-item {
        font-size: 0.8rem;
    }
    .hero-section-below {
        height: 50vh !important;
        min-height: 350px;
    }
}

/* Multi-city dynamic row styles */
.mc-segment-row {
    margin-bottom: 20px;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 20px;
}
.segment-title-wrapper {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Multi-city dynamic row styles under dark mode (glass container) */
.sc-elevated .mc-segment-row {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}
.sc-elevated .segment-title-wrapper {
    color: #fff;
}

/* --- Ticker Animations --- */
@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes tickerPulse {
    0%   { box-shadow: 0 0 0 0 rgba(236,50,51,0.6); }
    70%  { box-shadow: 0 0 0 6px rgba(236,50,51,0); }
    100% { box-shadow: 0 0 0 0 rgba(236,50,51,0); }
}

/* Pause ticker animation on hover */
#site-ticker:hover .ticker-track {
    animation-play-state: paused;
}

/* Responsive adjustments for ticker */
@media (max-width: 768px) {
    #site-ticker { top: 60px !important; }
    #site-ticker .ticker-track span { font-size: 0.77rem; padding: 0 20px; }
}


