/* Design System */
:root {
    --primary: #0a4d68;
    --secondary: #088395;
    --accent: #05bfdb;
    --highlight: #05bfdb;
    --dark: #002b5b;
    --white: #ffffff;
    --light: #f8fbff;
    --skyblue: #87CEEB;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    /* Prevent any element from causing horizontal scroll at root level */
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

.section-padding {
    padding: 60px 0;
}

.center {
    text-align: center;
}

.bg-light {
    background-color: #f0f7ff;
}

.bg-dark {
    background-color: var(--dark);
}

.text-white {
    color: var(--white);
}

ul {
    list-style: none;
}

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

/* Top Bar */
.top-bar {
    background: var(--skyblue);
    color: var(--dark);
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: 500;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.top-bar-content {
    width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left {
    display: flex;
    gap: 25px;
}

.top-left span i {
    margin-right: 8px;
    color: var(--primary);
}

.top-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-book {
    text-decoration: underline;
    font-weight: 700;
}

.top-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-social a {
    color: var(--dark);
    font-size: 0.9rem;
}

.top-social a:hover {
    color: var(--white);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 36px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 5px 0;
    background: var(--white);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}


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

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

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

.nav-links a {
    font-weight: 400;
}

.nav-links a:hover {
    color: var(--accent);
}

.btn-primary {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1;
    /* Reset for better alignment with icons */
}

.btn-primary i,
.btn-primary svg {
    line-height: 0;
    margin: 0;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('assets/hero-banner.webp') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-top: 150px;
    padding-bottom: 40px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
}

.hero-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
}

.hero-text {
    flex: 1.2;
    color: var(--white);
}

.main-title {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 25px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: -2px;
}

.accent-text {
    color: var(--highlight);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    display: inline-block;
}

.main-subtitle {
    font-size: 1.25rem;
    margin-bottom: 45px;
    max-width: 600px;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 300;
}

.hero-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cat-btn {
    padding: 10px 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.cat-btn i {
    color: var(--highlight);
}

.cat-btn:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Enquiry Form Card - Enhanced Glassmorphism */
.enquiry-form-card {
    flex: 0.8;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.enquiry-form-card h3 {
    color: var(--primary);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.enquiry-form-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--highlight);
    border-radius: 3px;
}

.form-group-flex {
    display: flex;
    gap: 20px;
}

.form-item {
    margin-bottom: 22px;
    width: 100%;
}

.enquiry-form-card label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 10px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.enquiry-form-card input,
.enquiry-form-card select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e1e1e1;
    background: #fcfcfc;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.enquiry-form-card input:focus,
.enquiry-form-card select:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(8, 131, 149, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 15px;
    box-shadow: 0 10px 20px rgba(10, 77, 104, 0.3);
}

.btn-submit:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(10, 77, 104, 0.4);
}

/* Quick Search Bar - Improved Visibility */
.quick-search-container {
    position: absolute;
    bottom: -45px;
    left: 0;
    width: 100%;
    padding: 0 20px;
    z-index: 20;
}

.search-bar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 12px 12px 35px;
    border-radius: 100px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50px;
    transition: var(--transition);
}

.search-item:hover {
    background: rgba(8, 131, 149, 0.05);
}

.search-icon i {
    font-size: 1.2rem;
    color: var(--secondary);
    background: rgba(8, 131, 149, 0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.search-info label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.custom-select {
    position: relative;
    user-select: none;
}

.select-selected {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    display: block;
    width: 100%;
    position: relative;
}

.select-selected::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 10px;
    font-size: 0.8rem;
    color: var(--secondary);
    transition: var(--transition);
}

.custom-select.active .select-selected::after {
    transform: rotate(180deg);
}

.select-options {
    position: absolute;
    top: calc(100% + 20px);
    left: -20px;
    width: 220px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1005;
    display: none;
    overflow: hidden;
    padding: 8px;
}

.custom-select.active .select-options {
    display: block;
    animation: slideUp 0.3s ease-out;
}

.select-options div {
    padding: 12px 18px;
    font-size: 0.95rem;
    color: #444;
    border-radius: 10px;
    transition: var(--transition);
    cursor: pointer;
}

.select-options div:hover {
    background: rgba(8, 131, 149, 0.08);
    color: var(--primary);
    padding-left: 22px;
}

.guest-input {
    width: 100%;
    background: transparent;
    border: none;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
    outline: none;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-divider {
    width: 1px;
    height: 30px;
    background: #e0e0e0;
    margin: 0 10px;
}

.search-btn {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    padding: 18px 45px;
    border: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: 0 8px 15px rgba(10, 77, 104, 0.2);
}

.search-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 25px rgba(10, 77, 104, 0.3);
}

/* About Intro Section */
.about-intro {
    padding-top: 40px;
}

.about-intro .container {
    align-items: center;
    gap: 60px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-content strong {
    color: var(--primary);
    font-weight: 700;
}

.about-video {
    flex: 1;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 8px solid var(--white);
    transform: rotate(2deg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-video:hover {
    transform: rotate(0deg) scale(1.02);
}

.about-video video {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.d-inline-block {
    display: inline-block;
}

/* Section Headers */
.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* Features Section (Tabs Style) */
.features-tabs-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 0 20px;
}

.features-tabs {
    display: flex;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
}

.feature-tab {
    background: var(--white);
    border: 1px solid #eef2f5;
    border-right: none;
    padding: 30px 15px;
    text-align: center;
    flex: 1;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-tab:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.feature-tab:last-child {
    border-right: 1px solid #eef2f5;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.feature-tab i {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    transition: all 0.3s ease;
}

.feature-tab h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
    line-height: 1.3;
    transition: all 0.3s ease;
}

/* Active State */
.feature-tab.active {
    background: var(--secondary);
    border-color: var(--secondary);
}

.feature-tab.active i,
.feature-tab.active h3 {
    color: var(--white);
}


/* Suites Section */
.suites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.suite-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.suite-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.suite-info {
    padding: 30px;
}

.suite-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary);
}

/* Inclusions */
.flex-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.inclusions-content {
    flex: 1;
}

.inclusions-img {
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
    padding: 15px;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.inclusions-img img {
    width: 100%;
    border-radius: 20px;
}

.check-list {
    margin: 30px 0;
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.check-list i {
    color: var(--secondary);
}

/* Backgrounds & Text Colors */
.bg-light-blue {
    background-color: #e9f4ff;
}

.bg-white {
    background-color: #ffffff;
}

.text-primary {
    color: var(--primary) !important;
}

.text-dark-50 {
    color: rgba(0, 0, 0, 0.6) !important;
}

/* Winding Route Map */
.route-map-container {
    position: relative;
    padding: 180px 0 280px;
    /* Extra space to prevent absolute card overlap */
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.river-path {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(90deg,
            transparent,
            transparent 10px,
            var(--secondary) 10px,
            var(--secondary) 20px);
    z-index: 1;
    opacity: 0.3;
}

.route-map-grid {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.route-point {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.point-icon {
    width: 50px;
    height: 50px;
    background: var(--dark);
    border: 3px solid var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--highlight);
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(8, 131, 149, 0.5);
    z-index: 3;
    transition: var(--transition);
}

.route-point:hover .point-icon {
    background: var(--secondary);
    color: var(--white);
    transform: scale(1.2);
}

.point-card {
    position: absolute;
    width: 220px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.card-up {
    bottom: 70px;
}

.card-down {
    top: 70px;
}

.card-up::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--white);
}

.card-down::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--white);
}

.step-num {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}

.point-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.point-card .time {
    font-size: 0.85rem;
    font-weight: 700;
    color: #444;
    margin-bottom: 8px;
}

.point-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.4;
}


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

.celeb-card {
    background: var(--white);
    padding: 45px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.celeb-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.celeb-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(8, 131, 149, 0.15);
}

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

.celeb-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--white);
    margin: 0 auto 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Beautiful vibrant gradients for icons */
.bg-gradient-1 {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
}

/* Gold to Orange */
.bg-gradient-2 {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
    color: #d81b60;
}

/* Pink/Rose */
.bg-gradient-3 {
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
    color: #00796b;
}

/* Mint to Aqua */

.celeb-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.celeb-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.no-top-padding {
    padding-top: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item {
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mt-40 {
    margin-top: 40px;
}


.gallery-header h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.gallery-header p {
    color: #666;
}

.celebration-items span {
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.celebration-items i {
    margin-right: 10px;
}

/* Action Banners */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.feature-card {
    position: relative;
    border-radius: 30px;
    padding: 50px 40px 60px;
    overflow: hidden;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s ease;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.book-card {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
}

.ride-card {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.feat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    margin-bottom: 25px;
}

.feat-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    margin: 0;
}

.feat-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 700;
}

.feat-content p {
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--white) !important;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1;
    /* Reset line-height to ensure flex centering works */
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Combined fix for both legacy font-icons and modern SVG-replacement icons */
.btn-action i,
.btn-action svg {
    line-height: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    transform: translateY(3px) !important;
    /* Forceful downward shift for baseline match */
    margin: 0 !important;
}

.btn-action i {
    font-size: 1.1rem;
}

.book-card .btn-action {
    color: var(--primary);
}

.ride-card .btn-action {
    color: #1e3c72;
}

.btn-action:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.card-bg-icon {
    position: absolute;
    right: -20px;
    bottom: -30px;
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.05);
    z-index: -1;
    transform: rotate(-15deg);
}

/* Premium Contact Section */
.split-layout {
    display: flex;
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-image {
    width: 45%;
    position: relative;
    min-height: 500px;
}

.contact-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
}

.overlay-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--white);
}

.overlay-text p {
    font-size: 1.05rem;
    opacity: 0.9;
}

.contact-content {
    width: 55%;
    padding: 60px 50px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(8, 131, 149, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.icon-box i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    margin: 0;
}

.detail-item:hover .icon-box {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.detail-text {
    display: flex;
    flex-direction: column;
}

.detail-text span {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 3px;
}

.detail-text strong {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 700;
}

.warning-badge {
    background: #fff4e5;
    color: #f57c00;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-left: 4px solid #f57c00;
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25d366;
    color: white !important;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 1.15rem;
    line-height: 1;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.btn-whatsapp-large i,
.btn-whatsapp-large svg {
    line-height: 0;
    transform: translateY(1px);
    /* Small adjustment for large button */
    margin: 0;
}

.btn-whatsapp-large:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* Animations */
/* Premium Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-grid-item {
    transform: translateY(30px);
    transition-duration: 0.6s;
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-scale {
    transform: scale(0.9);
}

.reveal.revealed {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}

/* Staggered Delays for grid items and sequences */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* Legacy fade-in class updated to use the same logic if needed */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.fade-in.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
footer {
    background: var(--dark);
    padding: 50px 0;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.float-btn:hover {
    transform: translateY(-5px) scale(1.05);
    color: white;
}

.float-whatsapp {
    background: #25d366;
}

.float-whatsapp:hover {
    background: #128c7e;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.float-call {
    background: var(--primary);
}

.float-call:hover {
    background: var(--secondary);
    box-shadow: 0 15px 30px rgba(10, 77, 104, 0.4);
}

.float-call i {
    transform: scaleX(-1);
}



/* Image Lightbox */
.lightbox {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    display: block;
    width: auto;
    height: auto;
    max-width: 95vw;
    max-height: 70vh;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease-out;
    object-fit: contain;
    margin-bottom: 25px;
}

#lightbox-caption {
    width: 100%;
    max-width: 800px;
    text-align: center;
    color: #ffffff;
    padding: 0 10px;
    font-size: 1.25rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.close-lightbox:hover {
    color: var(--highlight);
    transform: rotate(90deg);
}

.gallery-item {
    cursor: zoom-in;
}

/* Hide gallery arrows on desktop by default */
.gallery-arrow {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 992px) {

    .flex-row,
    .features-grid,
    .split-layout,
    .form-group-flex {
        flex-direction: column;
    }

    .about-content,
    .about-video,
    .hero-text {
        width: 100%;
    }

    .enquiry-form-card {
        width: 100%;
        padding: 25px;
        /* Optimize interior padding so inputs are fully legible without forcing a horizontal layout burst */
    }

    /* Booking cards — single column on mobile */
    .features-grid {
        grid-template-columns: 1fr !important;
    }

    .feature-card {
        width: 100%;
    }

    .contact-image,
    .contact-content {
        width: 100%;
        max-width: 100%;
    }

    .contact-image {
        display: none;
    }

    .contact-wrapper.split-layout {
        flex-direction: column;
        gap: 20px;
    }

    .contact-content {
        padding: 40px 15px;
        width: 100%;
    }

    .contact-details {
        width: 100%;
    }

    .detail-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        /* Better vertical alignment for smaller text */
        gap: 8px;
        width: 100%;
        box-sizing: border-box;
    }

    .icon-box {
        flex-shrink: 0;
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .icon-box i {
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 0;
        margin: 0;
    }


    .detail-text {
        flex: 1;
        min-width: 0;
        /* Allow text column to shrink */
        overflow: hidden;
    }

    .detail-text strong,
    .detail-text span {
        display: block;
        word-break: break-word;
        overflow-wrap: anywhere;
        white-space: normal;
    }

    .detail-text strong {
        font-size: 0.9rem;
        /* Increased slightly for better legibility */
        letter-spacing: -0.2px;
        /* Keep tight slightly to fit more */
    }

    .detail-text span {
        font-size: 0.78rem;
        /* Increased slightly for label readability */
    }

    .contact-content h2 {
        font-size: 1.8rem;
        /* Fit title on mobile */
    }



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

    .btn-whatsapp-large {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: flex;
    }

    .main-title {
        font-size: 3.5rem;
    }

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .main-subtitle {
        margin: 0 auto 30px;
    }

    .hero-categories {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    /* Global overflow guard — prevent ANY element stretching the page wider than screen */
    section,
    .container,
    .hero,
    .quick-search-container,
    video,
    img {
        max-width: 100%;
    }

    video {
        width: 100%;
        height: auto;
    }

    /* Reduce global headings on mobile */
    h1,
    .main-title {
        font-size: 2.2rem !important;
    }

    h2,
    .section-header h2 {
        font-size: 1.8rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    /* Reposition floating buttons higher on mobile to clear sticky action bar */
    .floating-actions {
        bottom: 100px !important;
    }

    .nav-links {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.99);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        text-align: center;
        gap: 0;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links li:last-child {
        border-bottom: none;
        margin-top: 15px;
    }

    .nav-links a {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--primary);
        display: block;
        width: 100%;
    }

    .btn-primary {
        display: inline-block !important;
        width: auto !important;
        padding: 12px 40px !important;
    }

    .mobile-menu-btn {
        display: block;
    }

    .timeline-item .time {
        width: auto;
        display: block;
        margin-bottom: 5px;
    }

    .logo img {
        height: 70px;
    }

    .top-left .top-email,
    .top-left .top-phone {
        display: none;
    }

    .top-bar {
        padding: 5px 0;
        font-size: 0.8rem;
    }

    /* Top bar mobile alignment */
    .top-bar-content {
        padding: 0 15px;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .top-left {
        gap: 8px;
        font-size: 0.75rem;
        flex-shrink: 1;
        min-width: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .top-social span {
        display: none;
        /* Hide 'Follow Us:' text — icons are self-explanatory on mobile */
    }

    .top-social {
        gap: 8px;
        flex-shrink: 0;
        /* Social icons never compress */
    }

    .top-social a {
        font-size: 0.85rem;
    }

    .navbar {
        top: 32px;
    }

    .main-title {
        font-size: 2.2rem;
    }

    .quick-search-container {
        position: static;
        margin-top: 30px;
    }

    .search-bar {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
        border-radius: 20px;
        /* Remove the massive 100px desktop 'pill' curvature because this is a tall vertical block on mobile */
    }

    .search-divider {
        display: none;
    }

    .search-item {
        width: 100%;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }

    .search-btn {
        width: 100%;
    }

    /* Mobile adjustments for About Intro */
    .about-intro {
        padding-top: 40px;
    }

    .about-video {
        transform: rotate(0);
        /* Remove rotation to prevent horizontal scroll issues on phones */
    }

    /* Winding Route Map Mobile */
    .route-map-container {
        padding: 40px 0;
    }

    .river-path {
        top: 0;
        bottom: 0;
        left: 30px;
        width: 4px;
        height: auto;
        background: repeating-linear-gradient(to bottom,
                transparent,
                transparent 10px,
                var(--secondary) 10px,
                var(--secondary) 20px);
    }

    .route-map-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .route-point {
        width: 100%;
        flex-direction: row;
        margin-bottom: 40px;
        padding-left: 70px;
    }

    .point-icon {
        position: absolute;
        left: 5px;
        top: 0;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .route-point:hover .point-icon {
        transform: scale(1.1);
    }

    .point-card {
        position: relative;
        width: 100%;
        bottom: auto !important;
        top: auto !important;
        text-align: left;
        padding: 20px;
    }

    .card-up::after,
    .card-down::after {
        content: none !important;
    }

    /* Mobile responsive for tabs (Sliding View) */
    .features-tabs-wrapper {
        overflow: hidden;
        width: 100%;
        padding-bottom: 20px;
    }

    .features-tabs {
        flex-direction: row !important;
        justify-content: flex-start !important;
        box-shadow: none;
        background: transparent;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
    }

    .feature-tab {
        flex: 0 0 100%;
        min-width: 100%;
        border: 1px solid #eef2f5;
        border-radius: 12px !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    }

    .feature-tab.active::after {
        display: none;
    }

    /* Mobile Gallery Slider — break out of container padding for true full-bleed */
    .gallery .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .gallery-header {
        padding: 0 20px;
    }

    .gallery-dots {
        padding: 0 20px;
    }

    .gallery-slider-wrap {
        overflow: hidden;
        width: 100%;
        position: relative;
    }

    .gallery-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        grid-template-columns: unset !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        /* Remove desktop gap for perfect single slide alignment */
        width: 100%;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
    }

    .gallery-item {
        flex: 0 0 100%;
        /* 100% of the wrapper = exactly one slide visible */
        min-width: 100%;
        max-width: 100%;
        border-radius: 0;
        overflow: hidden;
        height: 260px;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Dot Indicators */
    .gallery-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 14px;
    }

    .gallery-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ccc;
        transition: background 0.3s, transform 0.3s;
        cursor: pointer;
    }

    .gallery-dot.active {
        background: var(--secondary, #0d9488);
        transform: scale(1.3);
    }

    /* Gallery Arrow Buttons */
    .gallery-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        background: rgba(13, 148, 136, 0.85);
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.95rem;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transition: background 0.2s, transform 0.2s;
        -webkit-tap-highlight-color: transparent;
    }

    .gallery-arrow:active {
        background: rgba(13, 148, 136, 1);
        transform: translateY(-50%) scale(0.93);
    }

    .gallery-arrow-prev {
        left: 10px;
    }

    .gallery-arrow-next {
        right: 10px;
    }
}

/* Hero Trust & Urgency */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.trust-pill,
.urgency-pill {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    backdrop-filter: blur(5px);
}

.trust-pill i {
    color: #ffc107;
}

.urgency-pill {
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffd54f;
    backdrop-filter: blur(5px);
}

.highlight-gold {
    color: #ffd500 !important;
}

/* Actual Houseboats Section */
.actual-boats {
    position: relative;
    z-index: 5;
}

.actual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.actual-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.actual-item:hover {
    transform: translateY(-10px);
}

.actual-img-box {
    height: 400px;
    position: relative;
}

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

.actual-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

@media (max-width: 992px) {
    .actual-grid {
        grid-template-columns: 1fr;
    }

    .actual-img-box {
        height: 300px;
    }

    .hero-trust {
        justify-content: center;
    }
}

/* Flagship Section Styles */
.flagship-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.flagship-image {
    flex: 1.2;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.flagship-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.flagship-tag {
    position: absolute;
    top: 30px;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: 10px 30px;
    font-weight: 700;
    font-size: 0.9rem;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.2);
}

.flagship-content {
    flex: 1;
}

.benefit-list {
    margin: 35px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #444;
}

.benefit-list i {
    color: var(--primary);
    background: rgba(8, 131, 149, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
}

.price-anchor {
    display: flex;
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    align-items: center;
    justify-content: space-around;
}

.price-item span {
    display: block;
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 700;
}

.price-item strong {
    font-size: 1.5rem;
    color: var(--primary);
}

.flagship-price strong {
    color: #d11212;
}

.price-divider {
    width: 1px;
    height: 40px;
    background: #eee;
}

.btn-primary-large {
    display: inline-block;
    background: var(--primary);
    color: var(--white) !important;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(10, 77, 104, 0.3);
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(10, 77, 104, 0.4);
}

@media (max-width: 992px) {
    .flagship-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .flagship-content {
        text-align: center;
    }

    .benefit-list {
        align-items: center;
    }

    .price-anchor {
        flex-direction: column;
        gap: 15px;
    }

    .price-divider {
        width: 60%;
        height: 1px;
    }
}

/* Direct Booking Benefits Section */
.direct-booking {
    text-align: center;
}

.direct-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.direct-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.direct-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.direct-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

/* Ultimate visibility fix for direct booking */
#direct-booking {
    background-color: #0a4d68 !important;
}

#direct-booking h2,
#direct-booking h3,
#direct-booking p {
    color: #ffffff !important;
}

.bg-direct-custom {
    background-color: #0a4d68 !important;
    /* Back to original dark blue */
}

.text-white-force {
    color: #ffffff !important;
    /* Back to white for dark background */
}

.direct-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary) !important;
}

.direct-item {
    background: rgba(255, 255, 255, 0.1) !important;
    padding: 30px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.direct-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}


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

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

/* Sticky Action Bar (Fixed Bottom) */
.sticky-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
    background: var(--white);
}

.sticky-action-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1;
}

.sticky-whatsapp {
    background: #25d366;
    color: var(--white) !important;
}

.sticky-whatsapp:hover {
    background: #128c7e;
}

.sticky-call {
    background: var(--primary);
    color: var(--white) !important;
}

.sticky-call:hover {
    background: var(--secondary);
}

.sticky-call i {
    transform: scaleX(-1);
}



.sticky-action-bar i {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

/* High Visibility for Mobile Only - Optional: if user only wants mobile, add media query */
@media (min-width: 769px) {
    .sticky-action-bar {
        display: none;
        /* Hide on large screens if desired, but many users like it on all */
    }
}

/* Padding to prevent content being hidden by sticky bar */
body {
    padding-bottom: 70px;
}

/* FAQ Accordion Styles */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--secondary);
    background: #fbfdff;
}

.faq-item.active .faq-question span {
    color: var(--secondary);
}

.faq-question {
    width: 100%;
    padding: 22px 30px;
    border: none;
    background: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question span {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: #fafafa;
    padding: 0 30px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    /* Increased to accommodate longer content like itineraries */
    padding: 22px 30px;
}

.faq-list {
    margin-top: 10px;
    margin-bottom: 15px;
    list-style: disc;
    padding-left: 20px;
}

.faq-list li {
    margin-bottom: 8px;
    color: #444;
}

.faq-list li strong {
    color: var(--primary);
}

@media (max-width: 768px) {
    .faq-question {
        padding: 18px 20px;
    }

    .faq-question span {
        font-size: 1rem;
    }
}

/* FAQ CTA Section Styles */
.faq-cta-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-cta-section h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.faq-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-whatsapp-faq,
.btn-call-faq {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-whatsapp-faq {
    background: #25d366;
    color: white !important;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-faq:hover {
    background: #128c7e;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.3);
}

.btn-call-faq {
    background: var(--primary);
    color: white !important;
    box-shadow: 0 8px 20px rgba(10, 77, 104, 0.2);
}

.btn-call-faq:hover {
    background: var(--secondary);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 25px rgba(10, 77, 104, 0.3);
}

.btn-call-faq i {
    transform: scaleX(-1);
}



@media (max-width: 576px) {
    .faq-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-whatsapp-faq,
    .btn-call-faq {
        width: 100%;
        justify-content: center;
    }

    .faq-cta-section h3 {
        font-size: 1.8rem;
    }
}