/* Color Palette and Variables */
:root {
    /* Gradient Red Colors */
    --primary-red: #E63946;
    --primary-dark: #b80016;
    --primary-light: #ff6b77;
    --gradient-red: linear-gradient(135deg, #E63946 0%, #a90011 100%);
    --gradient-red-hover: linear-gradient(135deg, #ff4d5a 0%, #b80016 100%);
    
    /* Text Colors */
    --text-dark: #1D3557;
    --text-muted: #457B9D;
    --text-light: #F1FAEE;
    
    /* Background Colors */
    --bg-light: #ffffff;
    --bg-offwhite: #f8f9fa;
    --bg-glass: rgba(255, 255, 255, 0.85);
    
    /* UI Elements */
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 16px 32px rgba(230, 57, 70, 0.2);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-full: 999px;
    
    /* Fonts */
    --font-sans: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
    
    /* Transition */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.5;
    overflow-x: hidden;
    font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-red);
    color: white;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    background: var(--gradient-red-hover);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    color: white;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-red);
    transform: translateY(-2px);
}

.btn-large {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    padding: 0.75rem 0;
}

.header.scrolled {
    padding: 0.4rem 0;
    box-shadow: var(--shadow-sm);
    background: rgba(255, 255, 255, 0.95);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text-dark);
}

.logo span {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.desktop-nav {
    display: none;
}

@media (min-width: 992px) {
    .desktop-nav {
        display: block;
    }
}

.menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.menu > li > a {
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-red);
    transition: var(--transition);
    border-radius: 2px;
}

.menu > li > a:hover::after,
.menu > li > a.active::after {
    width: 100%;
}

.menu > li > a:hover,
.menu > li > a.active {
    color: var(--primary-red);
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.has-dropdown i {
    font-size: 0.7rem;
    margin-left: 0.25rem;
    transition: var(--transition);
}

.has-dropdown:hover i {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: -0.5rem;
    background: white;
    min-width: 180px;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    padding: 0.4rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.dropdown li a {
    display: block;
    padding: 0.6rem 1.25rem;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.85rem;
}

.dropdown li a:hover {
    background: var(--bg-offwhite);
    color: var(--primary-red);
    padding-left: 1.5rem;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-actions .btn {
    display: none;
}

@media (min-width: 992px) {
    .header-actions .btn {
        display: inline-flex;
    }
}

.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    color: var(--primary-red);
}

@media (min-width: 992px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile Sidebar (Partial Right) */
.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 280px;
    max-width: 85vw;
    height: 100%;
    background: white;
    z-index: 1002;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-sidebar.active {
    transform: translateX(0);
}

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

.close-sidebar {
    background: var(--bg-offwhite);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.close-sidebar:hover {
    background: var(--primary-light);
    color: white;
    transform: rotate(90deg);
}

.mobile-nav {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.mobile-menu > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    border-bottom: 1px solid var(--bg-offwhite);
}

.mobile-menu > li > a.active {
    color: var(--primary-red);
}

.mobile-dropdown {
    display: none;
    padding: 0.4rem 0 0.4rem 1rem;
    border-left: 2px solid var(--primary-light);
    margin-left: 0.5rem;
    margin-top: 0.4rem;
}

.mobile-has-dropdown.active .mobile-dropdown {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.mobile-dropdown li a {
    display: block;
    padding: 0.6rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.mobile-dropdown li a:hover {
    color: var(--primary-red);
    padding-left: 0.4rem;
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 1.5rem;
}

/* Hero Section & Slider */
.hero {
    position: relative;
    height: 90vh;
    min-height: 500px;
    background: #000;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    touch-action: pan-y;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

.slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.6;
    transition: transform 6s linear;
}

.slider-wrapper.zooming .slide.active img {
    transform: scale(1.05);
}

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

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 0 1.5rem;
    text-align: center;
}

.slide-content-inner {
    max-width: 700px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 0.3s;
}

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

.subtitle {
    display: inline-block;
    color: var(--primary-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.slide h1 {
    color: white;
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.slide h1 span {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide p {
    color: var(--text-light);
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.slide-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    z-index: 20;
    pointer-events: none;
}

.slider-arrow {
    pointer-events: auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--gradient-red);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.5);
}

/* Premium Pagination */
.slider-pagination {
    position: absolute;
    bottom: 6.5rem; /* Make room for search bar */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}

@media (max-width: 768px) {
    .slider-pagination {
        bottom: 3.5rem; /* Search bar is static on mobile, less space needed */
    }
}

.dot {
    width: 24px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.dot.active {
    background: rgba(255, 255, 255, 0.2);
    width: 32px;
}

.dot-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--gradient-red);
    border-radius: 2px;
}

.dot.active .dot-progress {
    animation: progress 6s linear forwards;
}

@keyframes progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Floating Search Bar */
.hero-overlay-search {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 850px;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.4);
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 30;
}

.search-form {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-right: 1px solid var(--border-color);
}

.search-field:nth-last-child(2) {
    border-right: none;
}

.search-field i {
    color: var(--primary-red);
    font-size: 1rem;
}

.field-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.field-content label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.field-content input {
    border: none;
    background: transparent;
    padding: 0.2rem 0;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-muted);
    outline: none;
    width: 100%;
}

.field-content input::placeholder {
    color: #a0aec0;
}

.search-btn {
    padding: 0.75rem 1.5rem;
    height: 100%;
    font-size: 0.9rem;
}

/* Responsive Search Bar */
@media (max-width: 992px) {
    .search-form {
        flex-direction: column;
    }
    
    .search-field {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 0.75rem 0;
    }
    
    .search-field:nth-last-child(2) {
        border-bottom: none;
        margin-bottom: 0.75rem;
    }
    
    .search-btn {
        width: 100%;
    }
    
    .hero-overlay-search {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: calc(100% - 2rem);
        margin: -4rem auto 2rem;
    }
    
    .hero {
        height: auto;
    }

    .slider-container {
        height: 75vh;
        min-height: 400px;
    }
}

/* Destinations Section */
.destinations-section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 1.5rem;
}

.destination-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: block;
    height: 340px;
    text-decoration: none;
    background: #000;
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    z-index: 2;
    transition: left 0.7s ease;
}

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

.destination-card:hover .card-shine {
    left: 200%;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: white;
}

.card-location h3 {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
    color: white;
}

.card-location .country {
    font-size: 0.85rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.card-location .country::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-light);
}

.card-price {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.destination-card:hover .card-price {
    background: var(--gradient-red);
    border-color: transparent;
}

.price-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.price-amount {
    font-size: 1.1rem;
    font-weight: 800;
    font-family: var(--font-display);
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: var(--bg-offwhite);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-red);
    z-index: -1;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-offwhite);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-red);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.service-card:hover h3 {
    color: white;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Inner Page Header */
.inner-page-header {
    position: relative;
    padding: 10rem 0 5rem;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    overflow: hidden;
}

.inner-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.relative-z {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inner-page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-md);
}

.breadcrumbs a {
    color: white;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--primary-light);
}

.breadcrumbs i {
    font-size: 0.75rem;
    opacity: 0.6;
}

.breadcrumbs .current {
    color: var(--primary-light);
}

/* Daytrip Style Flight Form */
.daytrip-hero {
    background-color: #001f5c;
    padding: 8rem 0 5rem;
    color: white;
    position: relative;
    z-index: 10;
}

.daytrip-heading {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    max-width: 800px;
}

.daytrip-guarantee {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.daytrip-guarantee i {
    color: #00d65b;
}

.daytrip-form-container {
    position: relative;
    z-index: 20;
    width: 100%;
}

.form-tabs-daytrip {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.tab-btn-daytrip {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn-daytrip:hover {
    color: white;
}

.tab-btn-daytrip.active {
    color: white;
    border-bottom: 2px solid white;
}

.flight-search-pill {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.flight-search-pill .search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    position: relative;
    cursor: text;
}

.flight-search-pill .icon-left {
    color: #555;
    font-size: 1.1rem;
}

.flight-search-pill input,
.flight-search-pill select {
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    width: 100%;
    outline: none;
    cursor: pointer;
    padding: 0;
}

.flight-search-pill input::placeholder {
    color: #666;
}

.flight-search-pill .divider {
    width: 1px;
    height: 30px;
    background: var(--border-color);
}

.pill-select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 1.5rem !important;
}

.passengers-field {
    flex: 0.7 !important;
    position: relative;
}

.passengers-field::after {
    content: '\f078';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 1.5rem;
    color: #555;
    font-size: 0.8rem;
    pointer-events: none;
}

.btn-search-pill {
    background: #0d6efd; /* Exact vibrant blue from Daytrip */
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
    height: 45px;
}

.btn-search-pill:hover {
    background: #0b5ed7;
}

/* Custom Passenger Dropdown */
.passengers-field {
    cursor: pointer;
}

.passenger-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.passenger-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    padding: 1.5rem;
    min-width: 300px;
    display: none;
    z-index: 100;
    cursor: default;
    color: #333; /* Fix inheritance from hero */
}

.passenger-dropdown.active {
    display: block;
}

.pax-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.pax-row:last-child {
    margin-bottom: 0;
}

.pax-info {
    display: flex;
    flex-direction: column;
}

.pax-info strong {
    font-size: 0.95rem;
    color: #222;
}

.pax-info span {
    font-size: 0.8rem;
    color: #666;
}

.pax-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pax-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: #555;
    transition: var(--transition);
}

.pax-btn:hover {
    background: #f7f7f7;
    border-color: #bbb;
}

.pax-num {
    font-weight: 600;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* Autocomplete Dropdown */
.autocomplete-wrapper {
    position: relative;
}

.autocomplete-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    width: 150%;
    min-width: 300px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    z-index: 100;
    max-height: 250px;
    overflow-y: auto;
    display: none;
    color: #333; /* Fix inheritance from hero */
}

.autocomplete-dropdown.active {
    display: block;
}

.suggestion-item {
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: var(--bg-offwhite);
}

.suggestion-item i {
    color: var(--text-muted);
    font-size: 1rem;
}

.suggestion-item-text {
    display: flex;
    flex-direction: column;
}

.suggestion-item-text strong {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.suggestion-item-text span {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* Flight Perks */
.flight-perks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 5rem;
}

.perk {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.perk::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #00d65b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.perk:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.perk:hover::before {
    transform: scaleX(1);
}

.perk i {
    font-size: 3rem;
    color: #0d6efd;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.perk:hover i {
    transform: scale(1.1);
}

.perk h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

.perk p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Popular Routes / Premium Route Cards */
.popular-routes {
    margin-top: 2rem;
    margin-bottom: 5rem;
}

.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #666;
    font-size: 1.05rem;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
    gap: 2rem;
}

.premium-ticket-card {
    background: transparent;
    display: flex;
    align-items: stretch;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    position: relative;
    border-radius: 16px;
}

.premium-ticket-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
}

.ticket-info {
    flex: 1;
    background: white;
    padding: 2rem;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border: 1px solid #eef0f2;
    border-right: none;
}

.ticket-price {
    background: #f8f9fa;
    padding: 2rem;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    border: 1px solid #eef0f2;
    border-left: 2px dashed #d1d5db;
    min-width: 180px;
    transition: all 0.4s ease;
    position: relative;
}

/* The Ticket Cutout Effect */
.ticket-price::before,
.ticket-price::after {
    content: '';
    position: absolute;
    left: -12px;
    width: 24px;
    height: 24px;
    background: white; /* Matches the parent container bg */
    border-radius: 50%;
    z-index: 2;
    border: 1px solid #eef0f2;
}

.ticket-price::before {
    top: -12px;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.ticket-price::after {
    bottom: -12px;
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
}

.premium-ticket-card:hover .ticket-price {
    background: #0d6efd;
    border-color: #0d6efd;
}

/* Interior layout of ticket info */
.cities {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.cities h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #001f5c;
    letter-spacing: 1px;
}

.flight-path {
    flex: 1;
    margin: 0 1rem;
    position: relative;
    display: flex;
    justify-content: center;
}

.flight-path::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(90deg, #d1d5db 0, #d1d5db 5px, transparent 5px, transparent 10px);
}

.flight-path i {
    color: #0d6efd;
    background: white;
    padding: 0 10px;
    z-index: 1;
    font-size: 1.2rem;
    transform: translateY(-5px);
}

.cities-names {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
    margin-bottom: 1rem;
}

.route-meta {
    background: #eff5ff;
    color: #0d6efd;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    align-self: flex-start;
}

.price-label {
    display: block;
    font-size: 0.8rem;
    color: #777;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.2rem;
    transition: color 0.4s ease;
}

.price-value {
    color: #0d6efd;
    font-size: 1.6rem;
    font-weight: 800;
    transition: color 0.4s ease;
    margin-bottom: 0.5rem;
}

.book-btn-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0d6efd;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.premium-ticket-card:hover .price-label,
.premium-ticket-card:hover .price-value {
    color: white;
}

.premium-ticket-card:hover .book-btn-text {
    color: white;
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 1200px) {
    .cities h3 {
        font-size: 1.5rem;
    }
    
    .ticket-info {
        padding: 1.5rem;
    }
    
    .ticket-price {
        padding: 1.5rem;
        min-width: 140px;
    }
}

@media (max-width: 992px) {
    .daytrip-hero {
        padding: 6rem 0 3rem;
    }
    
    .daytrip-heading {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .form-tabs-daytrip {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .tab-btn-daytrip {
        font-size: 0.85rem;
        padding-bottom: 0.25rem;
    }

    .flight-search-pill {
        flex-direction: column;
        border-radius: 12px;
        padding: 1rem;
    }
    
    .flight-search-pill .search-field {
        width: 100%;
        padding: 0.75rem 0.5rem;
    }
    
    .flight-search-pill .divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }
    
    .btn-search-pill {
        width: 100%;
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .passengers-field::after {
        right: 1rem;
    }

    .autocomplete-dropdown {
        width: 100%;
        min-width: 100%;
        left: 0;
        right: 0;
    }

    .passenger-dropdown {
        min-width: 100%;
        right: auto;
        left: 0;
        padding: 1rem;
    }

    .daytrip-guarantee {
        font-size: 0.85rem;
        align-items: flex-start;
    }
    
    .daytrip-guarantee i {
        margin-top: 3px;
    }

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

    /* Stack ticket cards vertically on tablets and mobile */
    .premium-ticket-card {
        flex-direction: column;
    }

    .ticket-info {
        border-top-right-radius: 16px;
        border-bottom-left-radius: 0;
        border: 1px solid #eef0f2;
        border-bottom: none;
    }

    .ticket-price {
        border-top-right-radius: 0;
        border-bottom-left-radius: 16px;
        border: 1px solid #eef0f2;
        border-top: 2px dashed #d1d5db;
        align-items: center;
        text-align: center;
    }

    /* Move cutouts to the top edge horizontally */
    .ticket-price::before,
    .ticket-price::after {
        top: -12px;
        bottom: auto;
    }

    .ticket-price::before {
        left: -12px;
        border: 1px solid #eef0f2;
        border-top: none;
        border-left: none;
        transform: rotate(-45deg);
    }

    .ticket-price::after {
        left: auto;
        right: -12px;
        border: 1px solid #eef0f2;
        border-bottom: none;
        border-right: none;
        transform: rotate(45deg);
    }

    .premium-ticket-card:hover .ticket-price {
        border-color: #0d6efd;
    }

    .premium-ticket-card:hover .book-btn-text {
        transform: translateY(5px);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Homepage Section Backgrounds */
.destinations-section {
    padding: 6rem 0;
    background: #f8f9fa; /* Soft gray */
}

.services-section {
    padding: 6rem 0;
    background: #ffffff; /* Clean white */
}

/* Home About Section */
.home-about-section {
    padding: 6rem 0;
    background: #eff5ff; /* Very soft elegant blue */
}

.home-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.home-about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.home-about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.experience-badge {
    position: absolute;
    bottom: -1px;
    right: -1px;
    background: var(--primary-red);
    color: white;
    padding: 2rem;
    border-top-left-radius: 30px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.experience-badge .years {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.home-about-content p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid #e1e5ea;
}

.about-stats .stat h4 {
    font-size: 2rem;
    color: #001f5c;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.about-stats .stat span {
    color: #777;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .home-about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Footer Styles */
.site-footer {
    background: #001233;
    color: #fff;
    padding: 5rem 0 0;
    font-family: var(--font-sans);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
}

.footer-brand h2 span {
    color: var(--primary-red);
}

.footer-brand p {
    color: #a0aabf;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

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

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 2px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: #a0aabf;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--primary-red);
    transform: translateX(5px);
}

.footer-contact ul li {
    display: flex;
    gap: 1rem;
    color: #a0aabf;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.footer-contact ul li i {
    color: var(--primary-red);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #a0aabf;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #a0aabf;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: white;
}

/* =========================================
   TRANSPORT PAGE
   ========================================= */
.transport-fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.fleet-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    border: 1px solid #eef0f4;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.fleet-card--featured {
    border-color: #1a6b3c;
    box-shadow: 0 4px 24px rgba(26,107,60,0.15);
}

.fleet-featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #1a6b3c;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
}

.fleet-icon {
    background: linear-gradient(135deg, #0a2342 0%, #1a6b3c 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    padding: 2rem 0;
}

.fleet-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fleet-body h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0a2342;
    margin-bottom: 0.6rem;
}

.fleet-body p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.fleet-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.fleet-features li {
    font-size: 0.875rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fleet-features li i {
    color: #1a6b3c;
    font-size: 0.8rem;
}

.fleet-book-btn {
    margin-top: auto;
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, #0a2342 0%, #1a6b3c 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.fleet-book-btn:hover {
    opacity: 0.88;
}

@media (max-width: 768px) {
    .transport-fleet-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   TOURS PAGE
   ========================================= */
.tour-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.tour-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border: 1px solid #eef0f4;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}

.tour-card-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: rgba(255,255,255,0.9);
    position: relative;
}

.tour-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.4);
}

.tour-badge--new {
    background: rgba(0, 214, 91, 0.25);
    border-color: rgba(0, 214, 91, 0.5);
}

.tour-card-body {
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tour-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.7rem;
    font-size: 0.8rem;
    color: #888;
}

.tour-location i,
.tour-duration i {
    margin-right: 4px;
    color: #c0392b;
}

.tour-card-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.tour-card-body p {
    font-size: 0.86rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    flex: 1;
}

.tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
}

.tour-price {
    display: flex;
    flex-direction: column;
}

.tour-price span {
    font-size: 0.75rem;
    color: #aaa;
}

.tour-price strong {
    font-size: 1rem;
    color: #c0392b;
    font-weight: 700;
}

.tour-price strong small {
    font-size: 0.75rem;
    font-weight: 400;
    color: #aaa;
}

.tour-book-btn {
    background: linear-gradient(135deg, #1a0533 0%, #c0392b 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.tour-book-btn:hover {
    opacity: 0.85;
}

@media (max-width: 768px) {
    .tour-packages-grid {
        grid-template-columns: 1fr;
    }
    .tour-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .tour-book-btn {
        width: 100%;
        text-align: center;
    }
}
