@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');
@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

/* ----------------------------------------------------
   DESIGN SYSTEM - TRAVEL DEAN
   Colors:
   - Primary Blue: #0057D8
   - Accent Yellow: #FFC107
   - Dark: #1A1A1A
   - White: #FFFFFF
   - Light Background: #F8FAFC
   - Secondary Blue: #EAF2FF
   ---------------------------------------------------- */

/* --- Root Variables --- */
:root {
    --primary-blue: #0057D8;
    --accent-yellow: #FFC107;
    --white: #FFFFFF;
    --dark: #1A1A1A;
    --light-bg: #F8FAFC;
    --secondary-blue: #EAF2FF;
    --font-primary: 'Poppins', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Global Reset & Strict CSS Specification --- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

body {
    background: #F8FAFC;
    color: #1A1A1A;

    font-family: 'Poppins', sans-serif !important;

    font-size: 16px;
    line-height: 1.7;

    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea,
a,
.nav-link,
.navbar-brand,
.navbar-book-btn {
    font-family: 'Poppins', sans-serif !important;
}

* {
    border-radius: 0 !important;
}

input,
select,
textarea,
button {
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0 !important;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--dark);
    line-height: 1.25;
}

.font-heading {
    font-family: var(--font-primary);
    font-weight: 800;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: #003fa3;
}

/* --- Margins / Padding Helpers --- */
.py-6 {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
}
.mb-6 {
    margin-bottom: 5.5rem;
}
.fs-7 {
    font-size: 0.875rem;
}
.fs-8 {
    font-size: 0.75rem;
}
.tracking-wider {
    letter-spacing: 0.05em;
}
.tracking-widest {
    letter-spacing: 0.15em;
}

/* --- Main Layout adjustments --- */
#main {
    padding-top: 0; /* Remove top offset so hero/banner sections go to the top */
}
.inner-page-main {
    padding-top: 90px !important;
}
@media (max-width: 991px) {
    .inner-page-main {
        padding-top: 76px !important;
    }
}

/* --- Premium Sticky Navbar --- */
.site-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 90px;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease, border-color 0.3s ease, height 0.3s ease, box-shadow 0.3s ease;
}

.site-navbar .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    color: #FFFFFF !important;
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -0.8px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar-brand .brand-accent {
    color: #FFC107;
    transition: color 0.3s ease;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.navbar-nav .nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 24px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    transition: color 0.25s ease, border-color 0.25s ease;
}

.navbar-nav .nav-link:last-child {
    border-right: none;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 0px;
    height: 2px;
    background: #FFC107;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 24px;
    background: transparent;
    border: 1.5px solid #FFFFFF;
    color: #FFFFFF !important;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.navbar-book-btn:hover {
    background: #FFFFFF;
    color: #0057D8 !important;
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

.site-navbar.scrolled .navbar-book-btn {
    border-color: #0057D8;
    color: #0057D8 !important;
}

.site-navbar.scrolled .navbar-book-btn:hover {
    background: #0057D8;
    color: #FFFFFF !important;
    border-color: #0057D8;
}

.site-navbar .navbar-toggler-icon {
    filter: invert(1);
    transition: filter 0.3s ease;
}

/* --- Scrolled Navbar overrides --- */
.site-navbar.scrolled {
    height: 76px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.site-navbar.scrolled .navbar-brand {
    color: #1A1A1A !important;
}

.site-navbar.scrolled .navbar-brand .brand-accent {
    color: #0057D8;
}

.site-navbar.scrolled .nav-link {
    color: #1A1A1A !important;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.site-navbar .navbar-user-icon {
    color: rgba(255, 255, 255, 0.9) !important;
    transition: color 0.25s ease !important;
    border-right: none !important;
}
.site-navbar.scrolled .navbar-user-icon {
    color: #1A1A1A !important;
    border-right: none !important;
}
.site-navbar .navbar-user-icon:hover {
    color: #FFC107 !important;
}
.site-navbar.scrolled .navbar-user-icon:hover {
    color: #0057D8 !important;
}

.site-navbar.scrolled .nav-link:last-child {
    border-right: none;
}

.site-navbar.scrolled .nav-link:hover,
.site-navbar.scrolled .nav-link.active {
    color: #0057D8 !important;
}

.site-navbar.scrolled .navbar-toggler-icon {
    filter: none;
}

@media (max-width: 991px) {
    .site-navbar {
        height: auto;
        min-height: 76px;
        padding: 10px 0;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    .site-navbar:not(.scrolled) .navbar-brand {
        color: #1A1A1A !important;
    }
    .site-navbar:not(.scrolled) .navbar-brand .brand-accent {
        color: #0057D8;
    }
    .site-navbar:not(.scrolled) .nav-link {
        color: #1A1A1A !important;
    }
    .site-navbar:not(.scrolled) .navbar-toggler-icon {
        filter: none;
    }
    .navbar-collapse {
        background: #ffffff;
        border-top: 1px solid rgba(0,0,0,0.06);
        padding: 15px 20px;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        z-index: 999;
    }
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .navbar-nav .nav-link {
        padding: 12px 0 !important;
        width: 100%;
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    .navbar-nav .nav-link::after {
        display: none;
    }
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0057D8;
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    right: -200px;
    top: -150px;
    border: 1px solid rgba(255,255,255,0.12);
    transform: rotate(45deg);
    z-index: 2;
    pointer-events: none;
}

.hero-background-carousel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.02);
    animation: heroZoom 10s infinite alternate ease-in-out;
}

.hero-slide-img.slide-one {
    background-image: url("../images/hero-slide1.jpg");
}
.hero-slide-img.slide-two {
    background-image: url("../images/hero-slide2.jpg");
}
.hero-slide-img.slide-three {
    background-image: url("../images/hero-slide3.jpg");
}
.hero-slide-img.slide-four {
    background-image: url("../images/hero-slide4.jpg");
}

@keyframes heroZoom {
    0% {
        transform: scale(1.01);
    }
    100% {
        transform: scale(1.07);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.68) 0%,
        rgba(0, 0, 0, 0.42) 45%,
        rgba(0, 0, 0, 0.18) 100%
    );
}

.hero-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 150px 30px 80px;
}

.hero-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.hero-title {
    max-width: 950px;
    margin: 0 auto;
    color: #FFFFFF;
    font-size: clamp(22px, 2.8vw, 32px);
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -1px;
    text-shadow: 0 3px 15px rgba(0,0,0,0.15);
}

.hero-description {
    max-width: 650px;
    margin: 25px auto 38px;
    color: rgba(255,255,255,0.92);
    font-size: 17px;
    line-height: 1.7;
}

/* --- Search Box — MOST IMPORTANT ELEMENT --- */
.hero-search {
    width: 100%;
    max-width: 1220px;
    display: grid;
    grid-template-columns: 1.3fr 1.3fr 1fr 1fr 1fr 170px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    text-align: left;
    overflow: hidden;
}

.search-field {
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 18px;
    background: transparent;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.search-field:hover {
    background: #f8fafc;
    box-shadow: inset 0 -3px 0 #0057D8;
    transform: translateY(-1px);
}

.search-field:focus-within {
    background: #ffffff;
    box-shadow: inset 0 -3px 0 #0057D8;
}

.search-label {
    display: block;
    margin-bottom: 6px;
    color: #64748B;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-input,
.search-select {
    width: 100%;
    height: 32px;
    padding: 0;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    color: #1A1A1A;
    font-size: 14px;
    font-weight: 600;
}

.search-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%230057D8' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 8px center !important;
    padding-right: 28px !important;
}

/* Date input styling */
input[type="date"] {
    position: relative;
    cursor: pointer;
}

/* Hide native Chrome/Safari/Edge calendar indicator, but leave it clickable */
input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Style the native date placeholder text */
input[type="date"]::-webkit-datetime-edit-text,
input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field {
    color: #64748B;
    font-weight: 500;
}

input[type="date"]:valid::-webkit-datetime-edit-text,
input[type="date"]:valid::-webkit-datetime-edit-month-field,
input[type="date"]:valid::-webkit-datetime-edit-day-field,
input[type="date"]:valid::-webkit-datetime-edit-year-field {
    color: #1A1A1A;
    font-weight: 600;
}

.search-input.is-invalid,
.search-select.is-invalid {
    color: #dc3545 !important;
}

.search-field:has(.is-invalid) {
    box-shadow: inset 0 -3px 0 #dc3545 !important;
}

.search-field-value {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.search-icon {
    color: #0057D8;
    font-size: 18px;
    margin-right: 8px;
    flex-shrink: 0;
}

.search-button {
    width: 100%;
    min-height: 80px;
    border: 0;
    background: #FFC107;
    color: #1A1A1A;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.search-button:hover {
    background: #FFD54F;
    transform: translateY(-2px);
}

.search-button i {
    font-size: 19px;
    transition: transform 0.25s ease;
}

.search-button:hover i {
    transform: translateX(4px);
}

/* --- Hero Trust --- */
.hero-trust {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-trust i {
    font-size: 20px;
    color: #FFC107;
}

/* --- Secondary Page Hero Banners --- */
.about-hero,
.services-hero,
.faq-hero,
.contact-hero,
.vehicles-hero {
    padding-top: 140px !important;
    padding-bottom: 70px !important;
}

/* --- Hero Bottom Fade Transition --- */
.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(
        to bottom,
        transparent,
        #F8FAFC
    );
    z-index: 3;
    pointer-events: none;
}

/* --- Trust Statistics Section --- */
.stats-section {
    padding: 60px 0;
    background: transparent;
    border: none;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border: none;
    background: transparent;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    color: #0057D8;
    font-size: clamp(56px, 8vw, 86px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -3px;
}

.stat-label {
    margin-top: 14px;
    color: #64748B;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- How It Works Section with glow orbs background --- */
.how-it-works-section {
    position: relative;
    overflow: hidden;
    background: #F8FAFC;
    z-index: 1;
}

.glow-orb {
    position: absolute;
    border-radius: 50% !important;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.12;
    pointer-events: none;
    animation: floatOrb 20s infinite alternate ease-in-out;
}

.glow-orb-1 {
    width: 320px;
    height: 320px;
    background: #0057D8;
    top: -50px;
    left: 8%;
}

.glow-orb-2 {
    width: 280px;
    height: 280px;
    background: #FFC107;
    bottom: -60px;
    right: 8%;
    animation-delay: -5s;
}

@keyframes floatOrb {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
    }
    100% {
        transform: translateY(40px) scale(1.1) rotate(45deg);
    }
}

.step-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    transition: var(--transition-smooth);
}

.step-card:hover {
    background: #FFFFFF;
    transform: translateY(-8px);
    border-color: #0057D8 !important;
    box-shadow: 0 15px 40px rgba(0, 87, 216, 0.08);
}

.step-number {
    font-size: 2.25rem;
    line-height: 1;
}

/* --- Vehicle Cards --- */
.vehicle-card {
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

/* Glass shine overlay animation */
.vehicle-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    z-index: 5;
    pointer-events: none;
}

.vehicle-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.vehicle-card:hover::after {
    animation: shineSweep 0.85s ease-out;
}

@keyframes shineSweep {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}

.vehicle-card-img-wrapper {
    background-color: #E2E8F0;
    height: 260px;
}

.vehicle-card-img {
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.vehicle-card:hover .vehicle-card-img {
    transform: scale(1.06);
}

.vehicle-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 12px;
    letter-spacing: 0.05em;
}

.vehicle-name {
    font-size: 1.25rem;
    font-weight: 700;
}

.price-value {
    font-size: 1.4rem;
    font-weight: 800;
}

.btn-vehicle-cta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-blue);
    position: relative;
}

.btn-vehicle-cta::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary-blue);
    transform: scaleX(0);
    transition: var(--transition-smooth);
    transform-origin: left;
}

.btn-vehicle-cta:hover::after {
    transform: scaleX(1);
}

/* Tabs Styling */
#vehicleTabs .nav-link {
    background-color: transparent;
    color: var(--dark);
    border: 1px solid rgba(0,0,0,0.15);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

#vehicleTabs .nav-link.active {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

/* --- Destinations Grid (4 columns, 2 rows) --- */
.destinations-section {
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
    z-index: 1;
}

.glow-orb-dest-1 {
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(0, 196, 204, 0.09);
    border-radius: 50% !important;
    filter: blur(90px);
    top: 10%;
    left: -100px;
    z-index: 0;
    pointer-events: none;
    animation: floatOrbDest 25s infinite alternate ease-in-out;
}

.glow-orb-dest-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(0, 87, 216, 0.07);
    border-radius: 50% !important;
    filter: blur(100px);
    bottom: 10%;
    right: -150px;
    z-index: 0;
    pointer-events: none;
    animation: floatOrbDest 22s infinite alternate ease-in-out;
    animation-delay: -7s;
}

@keyframes floatOrbDest {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(30px, 50px) scale(1.1);
    }
}

.destination-card {
    height: 400px;
    background-color: var(--dark);
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.destination-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    z-index: 5;
    pointer-events: none;
}

.destination-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.destination-card:hover::after {
    animation: shineSweep 0.85s ease-out;
}

.destination-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26,26,26,0.1) 0%, rgba(26,26,26,0.85) 100%);
    z-index: 2;
    transition: background 0.3s ease;
}

.destination-card:hover .destination-overlay {
    background: linear-gradient(180deg, rgba(0, 87, 216, 0.15) 0%, rgba(26, 26, 26, 0.9) 100%);
}

.destination-content {
    z-index: 3;
}

.destination-name {
    font-size: 1.35rem;
    font-weight: 700;
}

/* --- Services Section --- */
.service-card {
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.service-icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-service-cta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-blue);
}

.btn-service-cta:hover {
    color: var(--dark);
}

.service-detail-card {
    background-color: var(--white);
    transition: var(--transition-smooth);
}

.service-detail-card:hover {
    border-color: var(--primary-blue) !important;
}

/* --- Testimonial Cards --- */
.testimonial-card {
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
}

.avatar {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-blue);
}

/* --- Final CTA Section --- */
.final-cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0057D8 0%, #002D7A 100%);
    padding: 100px 0 !important;
    z-index: 1;
}

/* Mountain Silhouettes at the bottom */
.mountain-silhouette {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
    pointer-events: none;
}

.mountain-silhouette svg {
    width: 100%;
    height: 120px;
    display: block;
}

/* Moving clouds styling and keyframes */
.cloud-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.cloud {
    position: absolute;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23ffffff'%3E%3Cpath d='M400 352c0 2.2-.1 4.4-.3 6.6C444.6 365 480 402.1 480 448c0 44.2-35.8 80-80 80H128c-53 0-96-43-96-96 0-44.5 30.5-81.8 71.9-92.4C108.6 322.4 112 304 128 288c16.3-16.3 38.6-25 64-24 16.9 1 32.5 7.1 45.4 16.9C257.6 230.9 302.2 192 352 192c61.9 0 112 50.1 112 112 0 19.3-4.9 37.5-13.5 53.4.6-1.1 1.2-2.2 1.8-3.3 2.9-1.2 5.9-2.1 9-2.1z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.cloud-1 {
    width: 280px;
    height: 140px;
    top: 5%;
    opacity: 0.12;
    animation: floatClouds 45s linear infinite;
}

.cloud-2 {
    width: 380px;
    height: 190px;
    top: 30%;
    opacity: 0.08;
    animation: floatClouds 65s linear infinite;
    animation-delay: -15s;
}

.cloud-3 {
    width: 220px;
    height: 110px;
    top: 12%;
    opacity: 0.14;
    animation: floatClouds 32s linear infinite;
    animation-delay: -25s;
}

.cloud-4 {
    width: 320px;
    height: 160px;
    top: 45%;
    opacity: 0.06;
    animation: floatClouds 75s linear infinite;
    animation-delay: -40s;
}

@keyframes floatClouds {
    0% {
        transform: translateX(-380px);
    }
    100% {
        transform: translateX(100vw);
    }
}

.cta-title {
    font-size: clamp(30px, 4vw, 54px);
    font-weight: 800;
}

.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
    transition: var(--transition-smooth);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--dark);
}

/* --- Footer --- */
.premium-footer {
    background-color: #15171C !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px !important;
}

.premium-footer .footer-title {
    color: #FFFFFF !important;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.premium-footer .footer-header {
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px !important;
}

.premium-footer .footer-text {
    color: rgba(255, 255, 255, 0.55) !important;
    line-height: 1.8;
}

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

.premium-footer .footer-links a {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
}

.premium-footer .footer-links a:hover {
    color: var(--accent-yellow) !important;
    transform: translateX(4px);
}

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

.premium-footer .footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.6) !important;
    line-height: 1.6;
}

.premium-footer .footer-contact-info li i {
    color: var(--accent-yellow) !important;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.premium-footer .footer-contact-info a {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.premium-footer .footer-contact-info a:hover {
    color: var(--accent-yellow) !important;
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7) !important;
    border-radius: 50% !important;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background-color: var(--accent-yellow);
    color: var(--dark) !important;
    border-color: var(--accent-yellow);
    transform: translateY(-3px);
}

/* --- About & FAQ Page Styling --- */
.about-hero, .services-hero, .faq-hero, .contact-hero {
    background-color: var(--dark);
    overflow: hidden;
}

.about-hero .hero-bg, .services-hero .hero-bg, .faq-hero .hero-bg, .contact-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.max-width-600 {
    max-width: 600px;
}

.timeline-wrapper {
    position: relative;
    border-left: 2px solid var(--secondary-blue);
    padding-left: 30px;
}

.timeline-year {
    font-size: 1.5rem;
    line-height: 1;
    min-width: 80px;
}

/* --- FAQ Accordion styling --- */
.faq-accordion .accordion-item {
    border: 1px solid rgba(0,0,0,0.08);
    margin-bottom: 16px;
    background-color: var(--white);
}

.faq-accordion .accordion-button {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--dark);
    padding: 20px 24px;
    box-shadow: none !important;
    background-color: var(--white);
    transition: var(--transition-smooth);
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: var(--secondary-blue);
    color: var(--primary-blue);
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231A1A1A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230057D8'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* --- Contact Page elements --- */
.contact-info-panel {
    border-color: rgba(0,0,0,0.08) !important;
}

.info-icon {
    width: 44px;
    height: 44px;
    background-color: var(--secondary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-panel {
    border-color: rgba(0,0,0,0.08) !important;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1200px) {
    .asymmetric-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .item-sigiriya {
        grid-column: span 1;
        grid-row: span 1;
        height: 300px;
    }
    
    .item-ella {
        grid-column: span 1;
    }
}

@media (min-width: 1200px) {
    .hero-container {
        max-width: 1400px;
    }
    .hero-title {
        font-size: 82px;
    }
}

@media (max-width: 1199px) {
    .hero-search {
        grid-template-columns: repeat(3, 1fr);
        min-height: auto;
    }
    .search-field:nth-child(3) {
        border-right: 0;
    }
    .search-submit {
        grid-column: span 3;
        min-height: 65px;
    }
}

@media (max-width: 991px) {
    .premium-navbar {
        padding: 12px 0;
    }
    .premium-navbar .nav-link::after {
        display: none;
    }
    
    .nav-cta-wrapper {
        margin-top: 15px;
    }
    
    .btn-book-now {
        width: 100%;
        text-align: center;
    }
    
    .asymmetric-grid {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
    
    .item-sigiriya, .item-ella, .item-galle, .item-kandy, .item-nuwara, .item-mirissa {
        grid-column: span 1;
        grid-row: span 1;
        height: 250px;
    }
    .hero-title {
        font-size: 58px;
        letter-spacing: -2px;
    }
    .hero-floating-card {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-search {
        width: calc(100% - 30px);
        display: flex;
        flex-direction: column;
        min-height: auto;
        box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    }
    
    .search-field {
        min-height: 72px;
        border-right: 0;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .search-submit {
        min-height: 68px;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 42px;
        line-height: 1.02;
        letter-spacing: -1.5px;
    }
    .hero-description {
        padding: 0 15px;
        font-size: 15px;
        margin-top: 20px;
        margin-bottom: 25px;
    }
    .hero-section {
        min-height: auto;
        padding-bottom: 40px;
    }
    .hero-container {
        padding-top: 130px;
        padding-bottom: 50px;
    }
    .quick-search-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    .quick-search-links span {
        width: 100%;
        display: block;
        margin-bottom: 5px;
    }
}

/* --- Secondary Page Hero Backgrounds (No Inline Styles) --- */
.about-hero-bg {
    background-image: url('https://images.unsplash.com/photo-1550505393-2c5950d810aa?auto=format&fit=crop&w=1920&q=80');
    opacity: 0.35;
}

.services-hero-bg {
    background-image: url('https://images.unsplash.com/photo-1533473359331-0135ef1b58bf?auto=format&fit=crop&w=1920&q=80');
    opacity: 0.35;
}

.faq-hero-bg {
    background-image: url('https://images.unsplash.com/photo-1546708973-b339540b5162?auto=format&fit=crop&w=1920&q=80');
    opacity: 0.35;
}

.contact-hero-bg {
    background-image: url('https://images.unsplash.com/photo-1546708973-b339540b5162?auto=format&fit=crop&w=1920&q=80');
    opacity: 0.35;
}

.vehicles-hero-bg {
    background-image: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1920&q=80');
    opacity: 0.35;
}