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

/* CSS Variables for Brand Identity & Theme */
:root {
    --primary: #0b131a;       /* Deep slate black/navy */
    --primary-light: #15222e; /* Medium dark blue-grey */
    --secondary: #00c2ff;     /* Vibrant electric cyan */
    --secondary-hover: #009acc;
    --accent: #00c2ff;        /* Electric cyan accent */
    --accent-light: rgba(0, 194, 255, 0.15);
    --light-bg: #ffffff;      /* Pure white content background */
    --dark-text: #0b131a;     /* Dark slate text */
    --light-text: #ffffff;
    --muted-text: #64748b;    /* Slate grey muted text */
    --glass-bg: rgba(11, 19, 26, 0.75); /* Dark semi-transparent header bg */
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25);
    --card-shadow: 0 15px 35px rgba(11, 19, 26, 0.06);
    --transition-slow: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: 0.15s ease;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --header-height: 80px;
    --border-radius: 12px;
}



/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--dark-text);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--light-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 5px;
    border: 2px solid var(--light-bg);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Header & Glassmorphic Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(11, 19, 26, 0.45);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    transition: var(--transition-normal);
}

header.scrolled {
    height: 70px;
    background: rgba(11, 19, 26, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-wrapper {
    height: 84px;
    width: 84px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary);
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: var(--transition-normal);
    z-index: 1010;
}

.logo-wrapper img {
    height: 108%;
    width: 108%;
    object-fit: cover;
    display: block;
}

header.scrolled .logo-wrapper {
    height: 68px;
    width: 68px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.brand-name {
    color: var(--light-text);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    line-height: 1.1;
}

.brand-name span {
    color: var(--secondary);
}

.brand-sub {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-heading);
    margin-top: 3px;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-normal);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition-normal);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-login {
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition-normal);
}

.btn-login:hover {
    border-color: var(--light-text);
    color: var(--light-text);
    background: rgba(255, 255, 255, 0.05);
}

.nav-btn {
    background: var(--secondary);
    color: var(--primary);
    padding: 9px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
}

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--light-text);
    border-radius: 3px;
    transition: var(--transition-normal);
}

/* Container & Pages Routing */
main {
    margin-top: var(--header-height);
    position: relative;
    min-height: calc(100vh - var(--header-height));
    width: 100%;
}

.page-section {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
    padding: 60px 5%;
    width: 100%;
}

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

#home.page-section {
    padding: 0;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 5% 100px 5%;
    color: var(--light-text);
    overflow: hidden;
    background: #0b131a;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 19, 26, 0.45) 0%, rgba(11, 19, 26, 0.25) 50%, rgba(11, 19, 26, 0.55) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Each slide fills the full hero area */
.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    overflow: hidden;
}

.hero-slideshow .slide.active {
    opacity: 1;
}

/* The image inside each slide — object-fit:cover fills the
   container at every screen size WITHOUT distortion or stretching.
   The <picture> element is also sized to 100% to act as the container. */
.hero-slideshow .slide picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-slideshow .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    pointer-events: none;
    user-select: none;
}



.hero-content {
    position: relative;
    max-width: 850px;
    z-index: 3;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.25;
    color: var(--light-text);
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 15px rgba(11, 19, 26, 0.65);
}

.hero p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 10px rgba(11, 19, 26, 0.65);
}

/* Integrated Search Bar */
.hero-search-wrapper {
    background: #ffffff;
    border-radius: 40px;
    padding: 6px 6px 6px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(11, 19, 26, 0.15);
}

.search-input-box {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-grow: 1;
}

.search-input-box input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary);
    text-transform: uppercase;
}

.search-input-box input::placeholder {
    color: rgba(11, 19, 26, 0.4);
}

.btn-search-planning {
    background: var(--secondary);
    color: var(--primary);
    border: none;
    border-radius: 30px;
    padding: 14px 32px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-search-planning:hover {
    background: var(--primary);
    color: var(--light-text);
}

/* Watch Video Card */
.watch-video-card {
    position: absolute;
    right: 5%;
    bottom: 40px;
    width: 160px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px;
    color: var(--light-text);
    background: url('https://images.unsplash.com/photo-1527631746610-bca00a040d60?q=80&w=300') center/cover no-repeat;
    transition: var(--transition-normal);
}

.video-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 19, 26, 0.4);
    transition: var(--transition-normal);
}

.watch-video-card:hover {
    transform: translateY(-5px);
}

.watch-video-card:hover .video-thumbnail-overlay {
    background: rgba(0, 194, 255, 0.6); /* Cyan overlay on hover */
}

.play-btn-circle {
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    margin-bottom: 8px;
    z-index: 2;
    transition: var(--transition-normal);
}

.watch-video-card:hover .play-btn-circle {
    transform: scale(1.1);
    color: var(--primary);
}

.watch-video-card span {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
}

/* Layered Cloud divider */
.clouds-container {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 160px;
    z-index: 4;
    pointer-events: none;
}

.cloud-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 15px;
    align-items: end;
}

.form-group-search {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.form-group-search label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group-search input,
.form-group-search select {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(10, 30, 48, 0.1);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    color: var(--dark-text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-normal);
}

.form-group-search input:focus,
.form-group-search select:focus {
    border-color: var(--secondary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 168, 150, 0.15);
}

.search-submit {
    height: 48px;
    padding: 0 28px;
    background: var(--primary);
    color: var(--light-text);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.search-submit:hover {
    background: var(--secondary);
    box-shadow: 0 4px 15px rgba(0, 168, 150, 0.3);
}

/* Sections Global Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-subtitle {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: inline-block;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--accent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-desc {
    color: var(--muted-text);
    font-size: 1rem;
    margin-top: 15px;
}

/* Features/Why Choose Us Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(10, 30, 48, 0.08);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    color: var(--secondary);
    font-size: 1.8rem;
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--secondary);
    color: var(--light-text);
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--muted-text);
    font-size: 0.9rem;
}

/* Tour Packages Component */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-tab {
    background: #ffffff;
    border: 1px solid rgba(10, 30, 48, 0.1);
    color: var(--primary-light);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--primary);
    color: var(--light-text);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(10, 30, 48, 0.15);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.package-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.package-img-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

.package-card:hover .package-img-container img {
    transform: scale(1.1);
}

/* Package Image Carousel Helpers */
.package-img-container .carousel,
.package-img-container .carousel-inner,
.package-img-container .carousel-item {
    height: 100%;
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--light-text);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--muted-text);
    margin-bottom: 12px;
}

.package-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-title {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.package-desc {
    font-size: 0.9rem;
    color: var(--muted-text);
    margin-bottom: 20px;
    flex-grow: 1;
}

.package-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(29, 60, 52, 0.08);
}

.package-price {
    font-family: var(--font-heading);
}

.package-price span {
    font-size: 0.8rem;
    color: var(--muted-text);
    display: block;
}

.package-price h4 {
    font-size: 1.4rem;
    color: var(--accent);
    font-weight: 800;
}

.btn-book {
    background: var(--primary);
    color: var(--light-text);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(29, 60, 52, 0.1);
    transition: var(--transition-normal);
}

.btn-book:hover {
    background: var(--accent);
    box-shadow: 0 6px 15px rgba(201, 111, 67, 0.3);
}

/* About Page Styles */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
}

.about-img-box {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 450px;
    box-shadow: var(--card-shadow);
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 220px;
}

.about-img-badge h4 {
    font-size: 2.2rem;
    color: var(--secondary);
    line-weight: 1;
}

.about-img-badge p {
    font-size: 0.8rem;
    color: var(--primary-light);
    font-weight: 600;
    text-transform: uppercase;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--muted-text);
    font-size: 0.95rem;
}

.about-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}

.bullet-item svg {
    color: var(--accent);
}

/* About Page Values Grid */
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 70px;
}

.value-card {
    background: var(--light-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(11, 19, 26, 0.08);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.value-card p {
    font-size: 0.9rem;
    color: var(--muted-text);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Fleet Showcase section */
.fleet-section {
    background: var(--primary);
    padding: 70px 5%;
    border-radius: 40px;
    color: var(--light-text);
    margin-top: 40px;
}

.fleet-section .section-title {
    color: var(--light-text);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.fleet-card {
    background: var(--primary-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.fleet-img-container {
    height: 200px;
    overflow: hidden;
}

.fleet-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fleet-details {
    padding: 20px;
}

.fleet-title {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 8px;
}

.fleet-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.fleet-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.fleet-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Services Page Styles */
/* Decorative shapes for services section */
.decor-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.12;
    background: linear-gradient(135deg, var(--secondary), rgba(0, 194, 255, 0));
    pointer-events: none;
}
.decor-shape-1 {
    top: 50px;
    left: -50px;
    width: 250px;
    height: 250px;
}
.decor-shape-2 {
    bottom: 100px;
    right: -100px;
    width: 350px;
    height: 350px;
}
.decor-shape-3 {
    top: 40%;
    left: 45%;
    width: 200px;
    height: 200px;
    background: rgba(0, 194, 255, 0.4);
}

/* Service Card Styles */
.service-card-new {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(11, 19, 26, 0.03);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    pointer-events: none;
    box-shadow: 0 0 0 1.5px transparent;
    transition: all 0.4s ease;
    z-index: -1;
}

/* Hover effects */
.service-card-new:hover {
    transform: translateY(-10px) scale(1.015);
    box-shadow: 0 20px 40px rgba(0, 194, 255, 0.12);
    border-color: rgba(0, 194, 255, 0.4);
}

.service-card-new:hover::before {
    box-shadow: 0 0 15px rgba(0, 194, 255, 0.25);
}

/* Card Image wrapper */
.service-card-img-wrapper {
    position: relative;
    height: 230px;
    width: 100%;
    overflow: hidden;
}

.service-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card-new:hover .service-card-img-wrapper img {
    transform: scale(1.08);
}

/* Floating Icon badge */
.card-icon-badge {
    position: absolute;
    bottom: 15px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 3px solid #ffffff;
    box-shadow: 0 5px 15px rgba(0, 194, 255, 0.25);
    z-index: 2;
    transition: all 0.4s ease;
}

.service-card-new:hover .card-icon-badge {
    transform: rotate(15deg) scale(1.05);
    background: var(--primary);
    color: var(--secondary);
    box-shadow: 0 5px 15px rgba(11, 19, 26, 0.2);
}

/* New Card Body wrapper */
.service-card-body-new {
    padding: 20px 25px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Headings & Text */
.service-card-body-new h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.service-card-body-new .card-description {
    font-size: 0.88rem;
    color: var(--muted-text);
    line-height: 1.55;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Feature bullets */
.card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}

.card-features li {
    font-size: 0.82rem;
    color: var(--primary-light);
    margin-bottom: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-features li i.text-blue {
    color: var(--secondary);
    font-size: 0.9rem;
}

/* CTA button animation */
.service-cta-btn {
    width: 100%;
    background: transparent;
    border: 1.5px solid var(--secondary);
    color: var(--secondary);
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.service-cta-btn i {
    transition: transform 0.3s ease;
}

.service-cta-btn:hover i {
    transform: translateX(4px);
}

.service-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--secondary);
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-cta-btn:hover::before {
    width: 100%;
}

.service-cta-btn:hover {
    color: var(--primary);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(0, 194, 255, 0.25);
}

/* Testimonials Carousel Styling */
.testimonials {
    margin-top: 80px;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    height: 300px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.testimonial-slide.active-slide {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid var(--secondary);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--primary-light);
    margin-bottom: 20px;
    max-width: 600px;
}

.testimonial-author h4 {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 700;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--muted-text);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(10, 30, 48, 0.15);
    cursor: pointer;
    transition: var(--transition-normal);
}

.carousel-dot.active-dot {
    background: var(--secondary);
    width: 25px;
    border-radius: 5px;
}

/* Booking Page Form Styles */
.booking-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-form-box {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.booking-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.full-width {
    grid-column: span 2;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 12px 16px;
    border: 1px solid rgba(10, 30, 48, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-text);
    background: var(--light-bg);
    transition: var(--transition-normal);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--secondary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 168, 150, 0.15);
}

.form-field input[type="radio"] {
    width: 18px;
    height: 18px;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    accent-color: var(--secondary);
    cursor: pointer;
}

.form-field input[type="radio"]:focus {
    box-shadow: none;
    background: transparent;
}

.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: var(--primary);
    color: var(--light-text);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--card-shadow);
}

.sidebar-card h3 {
    color: var(--light-text);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.booking-summary-list {
    list-style: none;
}

.booking-summary-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.booking-summary-list li:last-child {
    border-bottom: none;
}

.contact-card-sidebar {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.contact-card-sidebar h4 {
    margin-bottom: 15px;
}

.contact-card-sidebar p {
    font-size: 0.9rem;
    color: var(--muted-text);
    margin-bottom: 15px;
}

.contact-info-small {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item-small {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--primary-light);
    font-weight: 600;
}

.info-item-small svg {
    color: var(--secondary);
}

/* Contact Us Page Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-details-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card-info {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.contact-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    background: var(--light-bg);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-card-info h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.contact-card-info p {
    font-size: 0.9rem;
    color: var(--muted-text);
}

.map-container {
    height: 250px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

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

.contact-form-box {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.02);
}


/* Footer Styles */
footer {
    background: var(--primary);
    color: var(--light-text);
    padding: 80px 5% 30px 5%;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--light-text);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.footer-col ul a:hover {
    color: var(--accent);
    padding-left: 5px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--light-text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--secondary);
    color: var(--light-text);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--light-text);
    font-size: 0.9rem;
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--secondary);
    color: var(--light-text);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.newsletter-form button:hover {
    background: var(--accent);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    transition: var(--transition-normal);
}

.footer-bottom a:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* Custom Notifications (Toast) System */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10000;
}

.toast {
    background: var(--primary);
    color: var(--light-text);
    padding: 16px 24px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-left: 4px solid var(--accent);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(100px);
    opacity: 0;
    transition: all var(--transition-normal);
    font-size: 0.9rem;
    font-weight: 500;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

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

/* Mobile & Tablet Responsiveness */
@media (max-width: 992px) {
    .search-form {
        grid-template-columns: repeat(2, 1fr);
    }
    .search-submit {
        grid-column: span 2;
    }
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-img-box {
        height: 350px;
    }
    .booking-container {
        grid-template-columns: 1fr;
    }
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 20px;
    }
    .menu-toggle {
        display: flex;
    }
    nav {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: rgba(10, 30, 48, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 50px 20px;
        gap: 40px;
        transition: var(--transition-normal);
        z-index: 999;
    }
    nav.active {
        left: 0;
    }
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .nav-links a {
        font-size: 1.2rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .search-bar-container {
        margin-top: -30px;
        padding: 16px;
    }
    .search-form {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .search-submit {
        grid-column: span 1;
    }
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    .booking-form-grid {
        grid-template-columns: 1fr;
    }
    .full-width {
        grid-column: span 1;
    }
}

/* Video Modal Styling */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 19, 26, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}
.video-modal.show {
    opacity: 1;
    pointer-events: auto;
}
.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    aspect-ratio: 16/9;
    background: #000000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.video-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.btn-close-modal {
    position: absolute;
    top: -45px;
    right: 0;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-family: var(--font-heading);
}
.btn-close-modal:hover {
    color: var(--secondary);
}

/* About Page Collage Layout */
.about-img-box.collage-layout {
    overflow: visible;
    box-shadow: none;
    height: 480px;
}

.collage-layout {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    height: 480px;
    width: 100%;
}

@media (max-width: 992px) {
    .about-img-box.collage-layout,
    .collage-layout {
        height: 380px;
    }
}

@media (max-width: 576px) {
    .about-img-box.collage-layout,
    .collage-layout {
        height: 280px;
    }
}

.collage-main {
    grid-column: 1 / 10;
    grid-row: 1 / 10;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #ffffff;
    z-index: 2;
}

.collage-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collage-sub {
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid #ffffff;
    z-index: 3;
}

.collage-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collage-sub-1 {
    grid-column: 7 / 13;
    grid-row: 5 / 11;
}

.collage-sub-2 {
    grid-column: 3 / 8;
    grid-row: 8 / 13;
}

.collage-sub-2 img {
    transform: scale(1.04);
}

.collage-layout .about-img-badge {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 4;
    background: var(--secondary);
    color: var(--primary);
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 194, 255, 0.3);
    text-align: center;
    border: 2px solid #ffffff;
    animation: float 4s ease-in-out infinite;
}

.collage-layout .about-img-badge h4 {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.collage-layout .about-img-badge p {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
}


/* Destinations Gallery Styling */
.about-gallery-section {
    margin-top: 60px;
    width: 100%;
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    cursor: pointer;
    transition: var(--transition-normal);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 2;
    opacity: 0.85;
    transition: opacity var(--transition-normal);
}

.gallery-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--light-text);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 3;
    transition: transform var(--transition-normal);
}

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

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover::before {
    opacity: 0.95;
}

@media (max-width: 992px) {
    .about-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ======================================================
   COMPREHENSIVE RESPONSIVE STYLES
   Breakpoints: 992px (tablet), 768px (mobile), 480px (small mobile)
   ====================================================== */

/* ── Tablet (≤992px) ─────────────────────────────────── */
@media (max-width: 992px) {

    /* Navbar */
    nav .nav-links,
    nav .header-actions {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    header {
        padding: 0 4%;
    }

    /* Booking page — stack form + sidebar */
    .booking-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .booking-form-box {
        padding: 30px;
    }
    .booking-form-grid {
        grid-template-columns: 1fr 1fr;
    }
    .booking-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
    .sidebar-card,
    .contact-card-sidebar {
        flex: 1 1 280px;
    }

    /* Mobile nav drawer */
    nav.mobile-open {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
        top: 0;
        left: 0;
        width: 80vw;
        max-width: 320px;
        height: 100vh;
        background: rgba(11, 19, 26, 0.98);
        backdrop-filter: blur(20px);
        padding: 90px 30px 40px;
        z-index: 999;
        box-shadow: 5px 0 30px rgba(0,0,0,0.4);
        gap: 0;
        overflow-y: auto;
    }
    nav.mobile-open .nav-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    nav.mobile-open .nav-links li {
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    nav.mobile-open .nav-links a {
        display: block;
        padding: 15px 0;
        font-size: 0.95rem;
        letter-spacing: 1.5px;
    }
    nav.mobile-open .header-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-top: 25px;
    }
    nav.mobile-open .nav-btn,
    nav.mobile-open .btn-login {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    /* Hero */
    .hero h1 {
        font-size: 2.4rem;
    }
    .hero p {
        font-size: 0.9rem;
    }
    .watch-video-card {
        display: none;
    }
    .hero-search-wrapper {
        flex-direction: column;
        border-radius: 16px;
        padding: 16px;
        gap: 10px;
    }
    .btn-search-planning {
        width: 100%;
        text-align: center;
        border-radius: 10px;
    }
    .search-input-box {
        width: 100%;
    }

    /* Search form inside hero */
    .search-form {
        grid-template-columns: 1fr 1fr;
    }

    /* About Section */
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-img-box.collage-layout,
    .collage-layout {
        height: 360px;
    }
    .about-text {
        text-align: center;
    }
    .about-bullets {
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    /* Packages grid */
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Service Cards */
    .service-card-img-wrapper {
        height: 200px;
    }

    /* Contact grid */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* ── Mobile (≤768px) ─────────────────────────────────── */
@media (max-width: 768px) {

    /* Page padding */
    .page-section {
        padding: 40px 4%;
    }

    /* Logo */
    .logo-wrapper {
        height: 52px;
        width: 52px;
    }
    header.scrolled .logo-wrapper {
        height: 44px;
        width: 44px;
    }
    .brand-name {
        font-size: 0.95rem;
    }

    /* Section headings */
    .section-title {
        font-size: 1.65rem;
    }
    .section-desc {
        font-size: 0.88rem;
    }

    /* ── HERO BANNER FIX ── */
    .hero {
        min-height: 480px;
        padding: 100px 5% 60px;
    }
    .hero-slideshow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    .hero h1 {
        font-size: 1.75rem;
        letter-spacing: 0;
        line-height: 1.3;
        word-break: break-word;
    }
    .hero p {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    .hero-search-wrapper {
        flex-direction: column;
        border-radius: 14px;
        padding: 14px;
        gap: 10px;
        max-width: 100%;
    }
    .btn-search-planning {
        width: 100%;
        text-align: center;
        border-radius: 8px;
        padding: 13px 20px;
    }
    .watch-video-card {
        display: none;
    }

    /* Search form */
    .search-form {
        grid-template-columns: 1fr;
    }

    /* Stat counters strip */
    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .stat-item {
        padding: 18px 12px;
    }
    .stat-number {
        font-size: 1.8rem;
    }

    /* Features grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    /* Testimonials */
    .testimonials-grid,
    .testimonial-card {
        min-width: unset;
        width: 100%;
    }

    /* Tour Packages */
    .packages-grid {
        grid-template-columns: 1fr;
    }
    .package-img-container {
        height: 210px;
    }
    .filter-tabs {
        gap: 8px;
    }
    .filter-tab {
        padding: 8px 14px;
        font-size: 0.78rem;
    }

    /* Services */
    .service-card-img-wrapper {
        height: 190px;
    }

    /* About collage */
    .about-img-box.collage-layout,
    .collage-layout {
        height: 260px;
    }
    .about-values-grid {
        grid-template-columns: 1fr;
    }

    /* Fleet grid */
    .fleet-section {
        padding: 40px 5%;
        border-radius: 20px;
    }
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    /* ── BOOKING PAGE FIX ── */
    .booking-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .booking-form-box {
        padding: 22px 18px;
    }
    .booking-form-grid {
        grid-template-columns: 1fr;  /* single column on mobile */
        gap: 16px;
        margin-bottom: 18px;
    }
    .full-width {
        grid-column: span 1;         /* override desktop span */
    }
    .booking-sidebar {
        flex-direction: column;
        gap: 18px;
    }
    .sidebar-card {
        padding: 22px 18px;
    }
    .sidebar-card h3 {
        font-size: 1.1rem;
        margin-bottom: 14px;
    }
    .booking-summary-list li {
        font-size: 0.85rem;
        padding: 10px 0;
    }
    .contact-card-sidebar {
        padding: 20px 18px;
    }
    .contact-card-sidebar h4 {
        font-size: 1rem;
    }

    /* Contact */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .contact-card-info {
        padding: 20px;
        gap: 14px;
    }
    .contact-icon-box {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    .contact-form-box {
        padding: 22px 18px;
    }
    .map-container {
        height: 240px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        font-size: 0.78rem;
    }

    /* Gallery */
    .about-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .gallery-item {
        height: 160px;
    }

    /* Admin table — scrollable wrapper */
    .admin-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    #bookings-table-body tr td {
        font-size: 0.76rem;
        padding: 9px 10px;
    }

    /* Toast */
    .toast-notification {
        width: calc(100vw - 30px);
        right: 15px;
        bottom: 15px;
        font-size: 0.83rem;
    }
}

/* ── Small Mobile (≤480px) ───────────────────────────── */
@media (max-width: 480px) {

    /* Hero */
    .hero {
        padding: 90px 4% 50px;
    }
    .hero h1 {
        font-size: 1.35rem;
        line-height: 1.35;
    }
    .hero p {
        font-size: 0.8rem;
    }
    .hero-search-wrapper {
        padding: 12px;
    }

    /* Section titles */
    .section-title {
        font-size: 1.35rem;
    }

    /* Service cards */
    .service-card-img-wrapper {
        height: 160px;
    }
    .service-card-body-new {
        padding: 14px 16px 18px;
    }
    .service-card-body-new h3 {
        font-size: 1rem;
    }

    /* Packages */
    .package-img-container {
        height: 175px;
    }
    .package-title {
        font-size: 1rem;
    }
    .btn-book {
        padding: 9px 16px;
        font-size: 0.8rem;
    }

    /* About stats badge */
    .about-img-badge h4 {
        font-size: 1.3rem;
    }
    .about-img-badge p {
        font-size: 0.58rem;
    }

    /* Collage */
    .about-img-box.collage-layout,
    .collage-layout {
        height: 220px;
    }

    /* Gallery */
    .about-gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item {
        height: 190px;
    }

    /* ── Booking form (very small screens) */
    .booking-form-box {
        padding: 16px 14px;
    }
    .booking-form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .full-width {
        grid-column: span 1;
    }
    .sidebar-card {
        padding: 18px 14px;
    }
    .sidebar-card h3 {
        font-size: 1rem;
    }
    .booking-summary-list li {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 2px;
        padding: 8px 0;
    }
    .contact-card-sidebar {
        padding: 16px 14px;
    }
    .form-field label {
        font-size: 0.78rem;
    }
    .form-field input,
    .form-field select,
    .form-field textarea {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    /* Footer bottom */
    .footer-bottom p {
        font-size: 0.72rem;
        line-height: 1.9;
    }

    /* Filter tabs */
    .filter-tabs {
        justify-content: flex-start;
        padding-left: 0;
        gap: 6px;
    }
    .filter-tab {
        padding: 7px 12px;
        font-size: 0.75rem;
    }
}


/* ── Mobile Overlay for nav drawer ───────────────────── */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    backdrop-filter: blur(2px);
}
.nav-overlay.active {
    display: block;
}
