:root {
    /* Primary Colors */
    --primary: #5D8736;
    --primary-light: #809D3C;
    --primary-dark: #4A6C2C;
    --secondary: #1a2639;
    
    /* Neutral Colors */
    --neutral-100: #ffffff;
    --neutral-200: #f8f9fa;
    --neutral-300: #e9ecef;
    --neutral-400: #555555;
    --neutral-500: #111111;
    
    /* Font Family */
    --font-primary: 'Playfair Display', serif;
    
    /* Override Bootstrap colors */
    --bs-primary: #5D8736;
    --bs-primary-rgb: 93, 135, 54;
    --bs-primary-text-emphasis: #4A6C2C;
    --bs-primary-bg-subtle: #F4FFC3;
    --bs-primary-border-subtle: #A9C46C;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    scroll-behavior: smooth;
   font-family: 'Playfair Display', serif;
}
/* Enable smooth scrolling and scroll snapping */
.snap-scroll {
    scroll-behavior: smooth;
    /* Create a timeline scope for sections */
    timeline-scope: --section-scroll;
    overflow-x: hidden;
}

#experiences {
    scroll-margin-top: 0; /* Ensure smooth transition when scrolling to this section */
}

.award-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
}

.number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
}

.journal-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

/* Updated Tour Card Styling */
.tour-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 350px;
    max-width: 400px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    position: relative;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    margin-bottom: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tour-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.tour-card .card-img-container {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.tour-card .card-img-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease-in-out;
}

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

.tour-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.tour-card:hover .card-overlay {
    opacity: 0.6;
}

.tour-card .days-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(156, 138, 90, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.tour-card .card-content {
    padding: 25px;
    position: relative;
}

.tour-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
    font-family: var(--font-primary);
    transition: color 0.3s ease;
}

.tour-card:hover h3 {
    color: var(--primary);
}

.tour-card p.card-description {
    height: 4.5em;
    line-height: 1.5em;
    overflow: hidden;
    margin-bottom: 20px;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.tour-card .card-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    padding-top: 15px;
    margin-top: 10px;
}

.tour-card .read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.tour-card .read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.tour-card:hover .read-more::after {
    width: 100%;
}

.tour-card:hover .read-more:hover {
    transform: translateX(5px);
}

.tour-card:hover .read-more i {
    animation: bounceRight 0.8s infinite;
}

.tour-card .read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.tour-card .read-more:hover i {
    transform: translateX(3px);
}

@keyframes bounceRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Updated Tour Card Container Styling */
.tour-card-container {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 15px;
    gap: 20px; /* Space between cards */
    white-space: nowrap;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;  /* Hide scrollbar in IE and Edge */
    scrollbar-width: none;  /* Hide scrollbar in Firefox */
    position: relative;
    transition: scroll-behavior 0.3s ease;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.tour-card-container::-webkit-scrollbar {
    display: none;
}

.itineraries-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

/* Improved scroll button styling */
.scroll-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.scroll-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.scroll-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .tour-card {
        min-width: 280px;
    }
    
    .tour-card .card-img-container {
        height: 220px;
    }
    
    .tour-card .card-content {
        padding: 20px;
    }
    
    .tour-card h3 {
        font-size: 1.1rem;
    }
}

.tour-card p {
    height: 3em; /* Fixed height for exactly 2 lines */
    line-height: 1.5em; /* Adjust to match your font size */
    overflow: hidden;
    text-overflow: ellipsis;
}

.tour-card p.small {
    height: 3em;
    line-height: 1.5em;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tour-card img, .journal-card img {
    height: 500px;
    object-fit: cover;
}



/* Animation keyframes for horizontal scrolling */
@keyframes autoScrollHorizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

h2 {
    color: var(--primary);
    font-family: var(--font-primary);
}

.tripadvisor-reviews {
    background: linear-gradient(135deg, var(--neutral-200) 0%, var(--primary-light) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Touch device enhancements */
@media (hover: none) {
    .flatpickr-day:hover {
        background-color: transparent;
        border-color: transparent;
    }
    
    .flatpickr-day.selected:hover,
    .flatpickr-day.startRange:hover,
    .flatpickr-day.endRange:hover,
    .flatpickr-day.inRange:hover {
        background-color: inherit !important;
        border-color: inherit !important;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
    }

    .sp-container {
        position: relative;
        width: 100%;
        margin: 0;
        left: 0;
        top: -100px;
    }

    .sp-content {
        position: static;
        margin: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* Consistent 50px font size for all h2 elements */
    .sp-container h2.frame-1,
    .sp-container h2.frame-2,
    .sp-container h2.frame-3 {
        font-size: 60px;
        line-height: 1.2;
        margin: 5px 0;
        font-family: var(--font-primary);
    }

    .sp-container h2.frame-4 {
        display: none;
    }

    .sp-container h2.frame-5 {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: var(--font-primary);
    }

    .sp-container h2.frame-5 span {
        font-size: 50px;
        line-height: 1.2;
        margin: 3px 0;
    }

    .sp-globe {
        display: none; 
    }

    /* Hide buttons on mobile */
    .hbutton {
        display: none;
    }
}

@media (max-width: 480px) {
    .sp-container h2.frame-1,
    .sp-container h2.frame-2,
    .sp-container h2.frame-3 {
        font-size: 60px;
        font-family: var(--font-primary);
    }

    .sp-container h2.frame-4 {
        display: none;
    }

    .sp-container h2.frame-5 span {
        font-size: 60px;
    }

    .sp-container h2.frame-1 {
        font-size: 60px;
        font-family: var(--font-primary);
        padding-right: 300px;
    }
}

/* Floating animation for cards */
.tour-card:hover {
    transform: translateY(-10px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Pulse animation for buttons */
.btn:hover {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Remove animation for buttons in experiences section - keep only hover effects */
#experiences .btn:hover {
    animation: none;
    transform: none;
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: white !important;
}

#experiences .btn-outline-primary:hover {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
}

/* Section fade in animation */
.section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card {
    transition: all 0.3s ease;
    z-index: 1;
}

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

.service-bg-shape {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--primary-light), var(--primary-dark));
    border-radius: 50%;
    z-index: -1;
}

.service-bg-shape-alt {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-light));
    opacity: 60%;
    border-radius: 50%;
    z-index: -1;
}

.icon-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--neutral-200), var(--neutral-300));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover .icon-circle {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.text-gradient {
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-list li {
    transition: all 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(10px);
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
}

/* Section Header Styles */
.section-header {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    font-family: 'Rufina', serif;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.header-line {
    width: 150px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    margin: 0 auto;
    position: relative;
    border-radius: 2px;
}

.header-line::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    border-radius: 2px;
    opacity: 0.6;
}

.section-header:hover .header-line::before {
    width: 120px;
    transition: width 0.3s ease;
}

/* Add responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .header-line {
        width: 120px;
    }
    
    .header-line::before {
        width: 60px;
    }
}

.qualification-item .icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background-color: rgba(156, 138, 90, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
}

/* Add button focus states */
button:focus, .btn:focus, 
button:active, .btn:active, 
button:focus-visible, .btn:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 0.25rem rgba(9, 93, 64, 0.25) !important;
    border-color: var(--primary) !important;
    background-color: var(--primary-dark) !important;
    color: white !important;
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:focus-visible {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}

/* Fix flatpickr date selection colors */
.flatpickr-day.selected, 
.flatpickr-day.startRange, 
.flatpickr-day.endRange, 
.flatpickr-day.selected.inRange, 
.flatpickr-day.startRange.inRange, 
.flatpickr-day.endRange.nextMonthDay {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
}

.service-card .icon-circle i.text-primary {
    color: var(--primary) !important;
}

/* Semicircle image styling for hero section - full height version */
.hero-semicircle-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 30vw; /* Using viewport width for better responsiveness */
    height: 100%; /* Full height of the hero section */
    overflow: hidden;
    z-index: 3;
    /* The key fix: use a single large border radius instead of percentage */
    border-radius: 0 100vw 100vw 0;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
}

.semicircle-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: right center; /* Changed from left to right to show the right side of the image */
}

/* Center the image in hero-section2's semicircle */
#hero-section2 .semicircle-img {
    object-position: center center; /* Center the image horizontally and vertically */
}

/* Media queries for responsive design */
@media (max-width: 992px) {
    .hero-semicircle-image {
        width: 25vw;
    }
}

@media (max-width: 768px) {
    .hero-semicircle-image {
        width: 22vw;
    }
}

@media (max-width: 576px) {
    .hero-semicircle-image {
        width: 20vw;
    }
}

/* Updated hero section styling for Montserrat font */
#hero-section1 .hero-content {
    font-family: 'Playfair Display', serif;
}

#hero-section1 .hero-title-rooms {
    font-size: 100%;
    font-weight: 100;
}

.rooms-text {
    font-family: 'Playfair Display', serif;
    font-size: 300px; /* Large font size */
    font-weight: 600; /* Light weight */
    display: block;
    line-height: 1;
    color: white;
    text-transform: uppercase;
    margin-top: 100px; /* Increased margin to move text down */
    letter-spacing: -2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive styles for the large ROOMS text */
@media (max-width: 1200px) {
    .rooms-text {
        font-size: 200px;
    }
}

@media (max-width: 768px) {
    .rooms-text {
        font-size: 120px;
    }
}

@media (max-width: 576px) {
    .rooms-text {
        font-size: 80px;
    }
}

/* Special styling for HAPPINESS VILLA text */
.villa-text {
    font-family: 'Playfair Display', serif;
    font-size: 200px; /* Set to 200px as requested */
    font-weight: 600;
    display: block;
    line-height: 1;
    color: white;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    text-align: right;
    padding-right: 5%;
}

#hero-section4 .hero-content {
    justify-content: flex-end;
}

#hero-section4 .hero-text {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* New Experiences Section Styling */
.experiences-section {
    max-height: 900px;
    min-height: 850px;
    background: linear-gradient(135deg, var(--neutral-100) 0%, var(--neutral-200) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.experiences-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.experiences-left {
    flex: 1;
    min-width: 300px;
}

.experiences-right {
    flex: 1;
    min-width: 300px;
}

/* Image Gallery */
.image-gallery {
    position: relative;
    height: 500px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-radius: 20px;
    overflow: hidden;
}

.gallery-main {
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-thumbnails {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.thumbnail {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s;
}

.thumbnail.active {
    background-color: var(--primary);
    transform: scale(1.5);
}

/* Experience Text */
.experience-text {
    padding: 20px;
}

.exp-subtitle {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    position: relative;
}

.exp-subtitle:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.exp-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--neutral-400);
    margin-bottom: 25px;
}

/* Tabs */
.experience-tabs {
    margin-bottom: 30px;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 8px 15px;
    font-weight: 600;
    color: var(--neutral-400);
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
}

.tab-btn.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.tab-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    font-size: 0.95rem;
}

.check-icon {
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Stats */
.exp-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0;
    gap: 20px;
}

.stat-item {
    flex: 1;
    min-width: 110px;
    text-align: center;
}

.stat-circle {
    width: 90px;
    height: 90px;
    margin: 0 auto 10px;
    position: relative;
}

.stat-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.stat-circle-bg {
    fill: none;
    stroke: #e9ecef;
    stroke-width: 8;
}

.stat-circle-fill {
    fill: none;
    stroke: var(--primary);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 1s ease;
}

.stat-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--neutral-400);
}

/* CTA */
.exp-cta {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

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

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .experiences-section {
        max-height: none;
        height: auto;
    }
    
    .experiences-content {
        flex-direction: column;
    }
    
    .image-gallery {
        height: 400px;
    }
    
    .exp-stats {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .experiences-header h2 {
        font-size: 2.5rem;
    }
    
    .exp-subtitle {
        font-size: 1.5rem;
    }
    
    .image-gallery {
        height: 300px;
    }
    
    .tab-buttons {
        flex-wrap: wrap;
    }
    
    .exp-cta {
        flex-direction: column;
    }
}


/* Hero Banner Section - Restored and Fixed */
.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 700px;
    width: 100%;
    overflow: hidden;
    color: white;
}

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

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 1.2s ease, transform 7s ease;
    transform: scale(1.1);
}

.banner-slide.active {
    opacity: 1;
    transform: scale(1);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    padding: 30px 0;
}

.banner-content .subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(9, 93, 64, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    margin-bottom: 25px;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 1rem;
    color: white;
    border: 1px solid rgba(9, 93, 64, 0.3);
}

.banner-content .title {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: var(--font-primary);
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-content .highlight {
    color: var(--primary-light);
    position: relative;
    display: inline-block;
}

.banner-content .description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 90%;
}

.banner-content .buttons {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.banner-content .video-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.video-btn .icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.video-btn .icon-circle::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 1px solid var(--primary-light);
    opacity: 0.5;
    animation: pulse-ring 2s infinite;
}

.video-btn .icon-circle i {
    font-size: 1.5rem;
    margin-left: 5px;
    color: white;
}

.video-btn .text {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.video-btn:hover {
    transform: translateY(-3px);
    color: var(--primary-light);
}

.video-btn:hover .icon-circle {
    background: white;
}

.video-btn:hover .icon-circle i {
    color: var(--primary);
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.8;
    }
}

/* Banner Features */
.banner-features {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-banner:hover .banner-features {
    transform: translateY(0);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:last-child {
    border-right: none;
}

.feature-item:hover {
    background: rgba(9, 93, 64, 0.2);
}

.feature-item .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item .icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-item .content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: white;
    font-weight: 600;
}

.feature-item .content p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Banner Navigation */
.banner-navigation {
    position: absolute;
    right: 30px;
    bottom: 120px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.slide-counter {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.slide-counter .divider {
    margin: 0 5px;
    opacity: 0.5;
}

/* Custom Tour Section - Fixed and Enhanced */
.immersive-tour-section {
    position: relative;
    padding: 80px 0;
    background: #f8f9fa;
    overflow: hidden;
    min-height: 80vh;
}

.immersive-tour-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><circle cx="2" cy="2" r="1" fill="%235D8736" opacity="0.05"/></svg>');
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

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

.section-intro {
    text-align: center;
    margin-bottom: 10px; /* Reduced from 20px to 10px */
}

.immersive-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

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

/* Journey path */
.journey-path-container {
    position: relative;
    margin: 10px 0; /* Reduced from 20px to 10px */
    padding: 0px 0;
    min-height: 500px; /* Reduced from 600px to 500px */
}

.journey-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

#mainPath {
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    animation: dashAnimation 5s ease-in-out forwards;
}

@keyframes dashAnimation {
    to {
        stroke-dashoffset: 0;
    }
}

.path-point {
    fill: var(--primary);
    opacity: 0;
    transform-origin: center;
    animation: pointAppear 0.5s ease-out forwards;
}

.start-point {
    animation-delay: 0.5s;
}

.path-point:nth-child(3) {
    animation-delay: 2s;
}

.end-point {
    animation-delay: 4s;
}

@keyframes pointAppear {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Journey points */
.journey-point {
    position: relative;
    display: flex;
    margin: 60px 0; /* Reduced from 80px to 60px */
    z-index: 2;
}

.journey-point.reverse {
    flex-direction: row-reverse;
}

.journey-marker {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    z-index: 3;
}

.journey-point.reverse .journey-marker {
    left: 100%;
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(9, 93, 64, 0.2);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.marker-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 2;
}

.marker-icon i {
    color: var(--primary);
    font-size: 1.8rem;
}

/* Journey content */
.journey-content {
    display: flex;
    width: 100%;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.journey-point.reverse .journey-content {
    flex-direction: row-reverse;
}

.journey-visual {
    flex: 0 0 45%;
    position: relative;
    height: 400px;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.image-stack {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.journey-visual:hover .image-stack {
    transform: rotateY(15deg) rotateX(5deg);
}

.image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.image-layer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(9,93,64,0.3) 0%, rgba(9,93,64,0) 70%);
    pointer-events: none;
}

.image-layer:nth-child(1) {
    transform: translateZ(0px);
    filter: brightness(0.9);
    z-index: 3;
}

.image-layer:nth-child(2) {
    transform: translateZ(-20px) translateX(-10px) translateY(-10px);
    filter: brightness(0.8);
    opacity: 0.9;
    z-index: 2;
}

.image-layer:nth-child(3) {
    transform: translateZ(-40px) translateX(-20px) translateY(-20px);
    filter: brightness(0.7);
    opacity: 0.7;
    z-index: 1;
}

.journey-visual:hover .image-layer:nth-child(1) {
    transform: translateZ(10px);
}

.journey-visual:hover .image-layer:nth-child(2) {
    transform: translateZ(-30px) translateX(-20px) translateY(-15px);
}

.journey-visual:hover .image-layer:nth-child(3) {
    transform: translateZ(-60px) translateX(-40px) translateY(-30px);
}

/* Journey info */
.journey-info {
    flex: 1;
    padding: 35px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(233,236,239,0.8);
}

.journey-info:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.journey-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
}

.journey-title {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.2;
}

.journey-info .highlight-text {
    color: var(--primary);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.journey-info .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(9,93,64,0.1);
    z-index: -1;
    transition: height 0.2s ease;
    border-radius: 4px;
}

.journey-info:hover .highlight-text::after {
    height: 15px;
}

.journey-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

/* Journey features */
.journey-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.journey-features .feature {
    display: flex;
    align-items: center;
    background: rgba(9,93,64,0.05);
    padding: 10px 15px;
    border-radius: 50px;
    width: fit-content;
    transition: all 0.3s ease;
}

.journey-features .feature:hover {
    background: rgba(9,93,64,0.1);
    transform: translateY(-3px);
}

.journey-features .feature-icon {
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--primary);
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.journey-features .feature-text {
    font-weight: 500;
    color: #444;
    font-size: 0.9rem;
}

/* Journey button */
.btn-journey {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(9,93,64,0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-light) 0%, var(--primary) 100%);
    transition: all 0.4s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    z-index: -1;
}

.btn-journey:hover {
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(9,93,64,0.4);
}

.btn-journey:hover::before {
    left: 0;
}

.btn-journey.alt {
    background: linear-gradient(45deg, #1a7a5a 0%, #5D8736 100%);
}

.btn-journey.alt::before {
    background: linear-gradient(45deg, #5D8736 0%, #1a7a5a 100%);
}

.btn-journey-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-journey:hover .btn-journey-icon {
    transform: translateX(5px);
}

/* Modern Experiences Section */
.experiences-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.experiences-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
}

.experiences-modern::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(9,93,64,0.03) 0%, rgba(9,93,64,0) 70%);
    top: -100px;
    right: -100px;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    background: rgba(9,93,64,0.1);
    color: var(--primary);
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(9, 93, 64, 0.1);
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.title-separator {
    width: 100%;
    text-align: center;
    margin: 20px 0 30px;
    position: relative;
}

.title-separator span {
    display: inline-block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 2px;
    position: relative;
}

.title-separator span::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    opacity: 0.5;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    border-radius: 2px;
}

/* Experience Box */
.experience-box {
    position: relative;
    z-index: 2;
    border-radius: 15px;
}

.journey-intro {
    text-align: center;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-box {
    padding: 40px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 100%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.03);
    border: 1px solid rgba(255,255,255,0.6);
    position: relative;
    overflow: hidden;
}

.highlight-box h3 {
    color: var(--primary);
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-size: 2.2rem;
}

.highlight-box h3::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

/* Feature Cards */
.experience-features {
    perspective: 1000px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 100%);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.6);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(9,93,64,0.1) 0%, rgba(9,93,64,0) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-light);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card.card-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    transform: translateY(-10px) scale(1.05);
}

.feature-card.card-primary h4 {
    color: white;
}

.feature-card.card-primary .feature-icon {
    background: rgba(255,255,255,0.2);
    color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.feature-card.card-primary:hover {
    transform: translateY(-20px) scale(1.08);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(9,93,64,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.4s ease;
    position: relative;
}

.feature-icon::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed rgba(9,93,64,0.2);
    animation: spin 20s linear infinite;
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
    background: var(--primary);
    color: white;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
    font-family: var(--font-primary);
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Tabs Container */
.tabs-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.tab-navigation {
    display: flex;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    background: #f8f9fa;
}

.tab-button {
    flex: 1;
    background: transparent;
    border: none;
    padding: 20px 15px;
    font-weight: 700;
    color: #777;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-bottom: 3px solid transparent;
}

.tab-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    transform: translateY(-100%);
    transition: all 0.3s ease;
}

.tab-button:hover {
    color: var(--primary);
}

.tab-button.active {
    color: var(--primary);
    border-bottom: 3px solid var(--primary);
}

.tab-button.active::before {
    transform: translateY(0);
}

.tab-button i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.tab-button:hover i, .tab-button.active i {
    transform: scale(1.2);
}

.tab-content-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.tab-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tab-content.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.tab-inner {
    padding: 40px;
    position: relative;
}

.feature-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 15px 0;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #555;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 1px dashed rgba(0,0,0,0.08);
}

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

.feature-list li::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 0;
    background: var(--primary);
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    transition: height 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(10px);
    color: var(--primary);
}

.feature-list li:hover::before {
    height: 70%;
}

.feature-list li i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1.2rem;
}

.tab-illust {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    opacity: 0.03;
    z-index: -1;
}

.tab-icon {
    font-size: 200px;
    line-height: 1;
    color: var(--primary);
}

/* Stats Container */
.stats-container {
    padding: 60px 40px;
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    margin-top: 60px;
    border: 1px solid rgba(255,255,255,0.6);
    overflow: hidden;
}

.stats-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 8px;
    width: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
}

.stats-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
    position: relative;
    z-index: 1;
}

.stat-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    margin: 0 auto 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 4px solid var(--primary-light);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-primary);
    line-height: 1;
}

.stat-plus, .stat-percent {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
    position: absolute;
    top: 25px;
    right: 20px;
}

.stat-item h5 {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.stat-bar {
    width: 50px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto;
    position: relative;
}

.stat-bar::before, .stat-bar::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    top: 50%;
    transform: translateY(-50%);
}

.stat-bar::before {
    left: -8px;
}

.stat-bar::after {
    right: -8px;
}

/* CTA Container */
.cta-container {
    padding: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Room Search Bar - Height & Style fixes */
.banner-search {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


.search-container {
    padding: 10px 0; /* Reduced padding */
    border-radius: 12px;
}

.search-form {
    width: 100%;
}

.search-item {
    display: flex;
    align-items: center;
    gap: 10px; /* Reduced gap */
    padding: 10px 15px; /* Reduced padding */
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    transition: all 0.3s ease;
}

.search-item:hover {
    background: rgba(9, 93, 64, 0.2);
}

.search-icon {
    width: 36px; /* Reduced size */
    height: 36px; /* Reduced size */
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.search-icon i {
    font-size: 1rem; /* Smaller icon */
    color: white;
}

.search-content {
    flex: 1;
}

.search-content label {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 2px; /* Reduced margin */
    font-size: 13px; /* Smaller font */
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Fix for date input and select styling */
.search-content .form-control,
.search-content .form-select {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 500;
    padding: 6px 10px; /* Smaller padding */
    height: auto;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Comprehensive placeholder styling for white text across all browsers */
/* Standard syntax */
.search-content input::placeholder {
    color: white;
    opacity: 0.9;
}

/* WebKit, Chrome, Safari */
.search-content input::-webkit-input-placeholder {
    color: white;
    opacity: 0.9;
}

/* Firefox 19+ */
.search-content input::-moz-placeholder {
    color: white;
    opacity: 0.9;
}

/* IE 10+ */
.search-content input:-ms-input-placeholder {
    color: white;
    opacity: 0.9;
}

/* Firefox 18- */
.search-content input:-moz-placeholder {
    color: white;
    opacity: 0.9;
}

/* Date inputs specifically */
.search-content input[type="date"] {
    color: white;
    font-weight: 500;
}

/* Enhance date input styling to ensure white text across browsers */
.search-content input[type="date"] {
    color: white;
    font-weight: 500;
}

/* Fix for date input text color on webkit browsers */
.search-content input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1); /* Make calendar icon white */
    opacity: 0.7;
}

/* Ensure date placeholder text is white */
.search-content input[type="date"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Fix for focus state on date inputs */
.search-content input[type="date"]:focus {
    background: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(9, 93, 64, 0.3);
    border-color: var(--primary-light);
    color: white;
}

/* Change guest dropdown specifically to use primary green background */
.search-content .form-select {
    background: var(--primary);
    border: 1px solid var(--primary-light);
    color: white;
    font-weight: 500;
    appearance: none; /* Remove default appearance */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2rem; /* Make space for the arrow */
}

.search-content .form-select:focus {
    background: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(9, 93, 64, 0.3);
    border-color: var(--primary-light);
}

.search-content .form-select option {
    background-color: var(--primary);
    color: white;
}

.search-button {
    width: 100%;
    height: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px; /* Reduced padding */
    font-weight: 600;
    font-size: 1rem; /* Smaller font */
    border-radius: 0 6px 6px 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Calendar styles */
.flatpickr-calendar {
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    border: none !important;
}

.flatpickr-day.selected, 
.flatpickr-day.startRange, 
.flatpickr-day.endRange {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
}

.luxury-rooms {
    padding: 80px 0;
    background-color: var(--neutral-200);
    position: relative;
    overflow: hidden;
}

.luxury-rooms::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(9,93,64,0.03) 0%, rgba(9,93,64,0) 70%);
    top: 0;
    left: -150px;
    z-index: 1;
}

.luxury-rooms::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(9,93,64,0.03) 0%, rgba(9,93,64,0) 70%);
    bottom: -200px;
    right: -200px;
    z-index: 1;
}

/* Room card container */
.room-card-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    gap: 25px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    position: relative;
    z-index: 2;
}

.room-card-container::-webkit-scrollbar {
    display: none;
}

/* Room card styling */
.room-card {
    flex: 0 0 auto;
    width: 350px;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.room-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.room-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
}

.room-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.room-price span {
    font-size: 1.2rem;
}

.room-price small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.room-content {
    padding: 25px;
}

.room-meta {
    margin-bottom: 12px;
}

.room-meta span {
    font-size: 0.9rem;
    color: var(--neutral-400);
    display: flex;
    align-items: center;
    gap: 6px;
}

.room-meta i {
    color: var(--primary);
    font-size: 1rem;
}

.room-title {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.room-description {
    font-size: 0.95rem;
    color: var(--neutral-400);
    margin-bottom: 20px;
    line-height: 1.5;
    height: 4.5em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.room-button {
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid var(--neutral-300);
    padding-top: 15px;
}

.btn-view-room {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-view-room:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.btn-view-room i {
    transition: transform 0.3s ease;
}

.btn-view-room:hover i {
    transform: translateX(5px);
}

/* Room controls styling */

.rooms-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

/* Custom Tour Section Responsive Fixes */
@media (max-width: 991px) {
    .immersive-tour-section {
        padding: 1.5rem 0; /* Reduced from 2rem to 1.5rem */
    }
    
    .journey-path-container {
        position: relative;
        padding: 0 1rem;
        min-height: auto;
    }
    
    .journey-path {
        display: none;
    }
    
    .journey-point {
        flex-direction: column;
        margin: 1.5rem 0; /* Reduced from 2rem to 1.5rem */
        position: relative;
    }
    
    /* Fix journey marker position for both normal and reverse layouts */
    .journey-point .journey-marker,
    .journey-point.reverse .journey-marker {
        position: relative;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 1rem; /* Reduced from 1.2rem to 1rem */
    }
    
    /* Fix journey content layout */
    .journey-content {
        display: flex;
        flex-direction: column;
        gap: 1rem; /* Reduced from 1.2rem to 1rem */
        max-width: 100%;
        z-index: 2;
    }
    
    /* Fix visual and info sections */
    .journey-visual, 
    .journey-info {
        width: 100%;
        padding: 0;
    }
    
    /* Center the image stack */
    .journey-visual .image-stack {
        margin: 0 auto;
        max-width: 350px;
        height: 250px;
    }
    
    /* Make features responsive */
    .journey-features {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: space-between;
    }
    
    /* Feature items responsive */
    .feature {
        flex: 1 1 100%;
        margin-bottom: 1rem;
    }
    
    /* Make buttons full width on mobile */
    .btn-journey {
        width: 100%;
        margin-top: 1rem; /* Reduced from 1.5rem to 1rem */
        text-align: center;
        display: flex;
        justify-content: center;
    }
}

/* Tablet specific adjustments */
@media (min-width: 768px) and (max-width: 991px) {
    .journey-features {
        flex-direction: row;
    }
    
    .feature {
        flex: 0 0 48%;
    }
}

/* Small screen fixes for feature text */
@media (max-width: 400px) {
    .journey-title {
        font-size: 1.4rem;
    }
    
    .feature-text {
        font-size: 0.9rem;
    }
    
    .btn-journey {
        padding: 0.75rem 1rem;
    }
    
    .btn-journey-text {
        font-size: 0.9rem;
    }

  .btn-journey {
        padding: 0.75rem 1rem;
    }
    
    .btn-journey-text {
        font-size: 0.9rem;
    }

    
    
    .btn-journey-text {
        font-size: 0.9rem;
    }
}
