/* ==================== Components ==================== */
        .cta-btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: var(--dark-jade);
            color: var(--canary-yellow);
            text-decoration: none;
            border-radius: var(--radius-sm);
            border: none;
            cursor: pointer;
            min-height: 44px;
            font-family: inherit;
        }

        .cta-btn:hover {
            background-color: var(--canary-yellow);
            color: var(--dark-jade);
        }

        /* ==================== Header Section ==================== */
        /* Mobile First: Header is static by default */
        .main-header {
            background-color: #f3f3f3;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            width: 100%;
            z-index: 1020; /* Increased to stay above nav */
            position: sticky; /* Ensures header stays visible on mobile */
            top: 0;
            transition: background-color 0.3s ease-in-out;
        }

        /* === Alignment and Spacing Adjustments === */
        .top-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            padding: 15px 20px;
            background-color: #f8f9fa;
            /* Updated border color */
            border-bottom: 2px solid var(--dark-jade);
            transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, height 0.3s ease-in-out, padding 0.3s ease-in-out;
            transform-origin: top;
        }

        .contact-info {
            display: flex;
            flex-direction: column; /* Stacked on mobile */
            align-items: center;
            gap: 10px;
            padding-left: 0;
        }

        .contact-info a {
            text-decoration: none;
            color: var(--dark-jade);
            /* === Increased font size === */
            font-size: 18px;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.3s ease;
        }

        .contact-info a:hover {
            color: var(--canary-yellow);
        }

        .contact-info .separator {
            display: none; /* Hidden on mobile */
        }

        .social-and-book {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        /* === Social Media Image Icon Styling === */
        .social-media {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .social-media img {
            height: 24px; /* Adjust size as needed */
            transition: transform 0.3s ease;
        }
        .social-media a:hover img {
            transform: scale(1.1);
        }

        .bottom-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: var(--space-sm);
            padding: 15px 5vw;
            flex-wrap: nowrap;
        }

        .logo-link {
            flex-shrink: 0;
        }
        /* Hamburger menu styling */
        .hamburger-menu {
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1010; /* Above nav */
        }

        .hamburger-menu span {
            width: 100%;
            height: 3px;
            background-color: var(--dark-jade);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* Hamburger animation to 'X' */
        .hamburger-menu.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger-menu.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger-menu.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Mobile navigation styles */
        .main-nav {
            position: fixed;
            top: 0;
            right: -100%; /* Start off-screen */
            width: 70%;
            max-width: 300px;
            height: 100vh;
            background-color: white;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            transition: right 0.3s ease-in-out;
            z-index: 1005; /* Below hamburger, above content */
            padding-top: 100px;
        }
        
        .main-nav.active {
            right: 0; /* Slide in */
        }
        
        .main-nav ul {
            flex-direction: column;
            align-items: center;
            padding: 20px;
            gap: 20px;
            list-style: none;
            margin: 0;
            display: flex;
        }
        
        .main-nav ul li {
            margin: 0;
            flex-shrink: 0;
        }

        .main-nav ul li a {
            font-family: 'Lora', serif;
            text-decoration: none;
            color: var(--dark-jade);
            font-weight: bold;
            position: relative;
            transition: color var(--transition-base);
            white-space: nowrap;
            display: inline-block;
            line-height: 1.2;
            letter-spacing: 0.01em;
        }

        .main-nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--canary-yellow);
            transition: width 0.3s ease;
        }

        .social-media a {
            transition: transform var(--transition-fast), color var(--transition-fast);
        }

        .social-media a:hover {
            transform: translateY(-2px) scale(1.08);
        }

        .main-nav ul li a:hover {
            color: var(--canary-yellow);
        }

        .main-nav ul li a:hover::after {
            width: 100%;
        }

        /* === Scrolled Header Styles === */
        .main-header.scrolled {
            background-color: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(5px);
        } 

        .main-header.scrolled .top-header {
            transform: scaleY(0);
            opacity: 0;
            height: 0;
            padding-top: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .main-header.scrolled .main-nav ul li a {
            color: var(--dark-jade);
        }


        /* ==================== Hero Section ==================== */
        .hero {
          position: relative;
          height: 100vh;
          min-height: 520px;
          display: flex;
          justify-content: center;
          align-items: center;
          color: white;
          text-align: center;
          overflow: hidden;
        }

        .hero-fallback-image,
        .hero-fallback-image img {
          position: absolute;
          inset: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
          z-index: -2;
          filter: brightness(60%);
          display: block;
        }

        .map-image,
        .map-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }

        .hero-video {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
          z-index: -1;
          filter: brightness(60%);
        }

        .hero-content {
          position: relative;
          z-index: 1;  
           text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);             /* sits on top of video */
        }

        /* Hero Content Typography */
        .hero-content h1 {
          font-family: 'Montserrat', sans-serif;
          font-size: var(--font-size-h1);
          font-weight: 900;
          line-height: 1.1;
          text-transform: uppercase;
          margin-bottom: 16px;
        }

        .hero-brand {
          font-family: 'Lora', serif;
          font-size: var(--font-size-h2);
          font-weight: 400;
          letter-spacing: 1px;
          margin-bottom: 20px;
        }

        .hero-lead {
          font-family: 'Montserrat', sans-serif;
          font-size: var(--font-size-p);
          font-weight: 400;
          margin-top: -20px;
          margin-bottom: 30px;
          max-width: 800px;
          margin-left: auto;
          margin-right: auto;
        }

        /* Adjust CTA button for that clean look */
        .hero-content .cta-btn {
          font-size: 1rem;
          padding: 14px 40px;
          text-transform: uppercase;
          font-weight: bold;
          background-color: transparent;
          border: 2px solid var(--canary-yellow);
          color: var(--canary-yellow);
        }

        .hero-content .cta-btn:hover {
          background-color: var(--canary-yellow);
          color: var(--dark-jade);
        }

        /* ==================== Parallax Background Container ==================== */
        .main-parallax-container {
            position: relative;
            background: transparent;
        }

        /* ==================== Merged About & Gallery ==================== */
        .about-us {
            display: flex;
            flex-direction: column;
            gap: 40px;
            padding: 80px 20px;
            align-items: center;
            background-color: transparent;
        }

        @media (min-width: 992px) {
            .about-us {
                flex-direction: row;
                text-align: left;
                padding: 100px 60px;
                gap: 60px;
            }
            .about-content, .about-gallery-wrapper {
                flex: 1;
                width: 50%;
                padding: 40px 0;
            }
            .home-about-reviews .reviews-content-col {
                flex: 1;
                width: 50%;
                min-width: 0;
                padding: 40px 0;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
            }
            .home-about-reviews .reviews-section-header {
                padding-top: 0;
                padding-inline: 0;
                margin-bottom: clamp(24px, 4vw, 36px);
                text-align: center;
            }
            .home-about-reviews .reviews-section-title {
                text-align: center;
            }
            .home-about-reviews .reviews-card-wrap {
                flex: 0 0 auto;
                justify-content: center;
                padding-inline: 0;
            }
            .home-about-reviews .carousel-wrapper.reviews-carousel-container {
                margin-inline: auto;
            }
        }

        .about-us .about-content {
            text-align: center;
        }

        .about-us .about-content h2 {
            color: var(--dark-jade);
            font-size: 1.8em;
            margin-bottom: 10px;
            text-align: center;
        }

        .about-us .about-content h3 {
            color: var(--dark-jade);
            font-size: 2.5em;
            margin-bottom: 20px;
            text-align: center;
        }

        .about-us .about-content p {
            color: var(--dark-jade);
            line-height: 1.6;
            margin-bottom: 30px;
            text-align: center;
        }

        .gallery-title {
            font-family: 'Lora', serif;
            color: var(--dark-jade);
            font-size: clamp(2.2rem, 3vw, 1.5rem); 
            margin-bottom: 25px;
            text-align: center;
        }

        /* Specific styling for carousel arrows */
        .carousel-arrow, .review-arrow {
            background-color: rgba(45, 93, 90, 0.8);
            color: var(--canary-yellow);
            border: none;
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 20;
            opacity: 1;
            border-radius: var(--radius-full);
            transition: background-color var(--transition-fast),
                        transform var(--transition-fast),
                        opacity var(--transition-fast);
        }

        .carousel-arrow:hover,
        .review-arrow:hover {
            background-color: var(--canary-yellow);
            color: var(--dark-jade);
            transform: translateY(-50%) scale(1.06);
        }

        .carousel-arrow-prev, .prev-review { left: 10px; }
        .carousel-arrow-next, .next-review { right: 10px; }

        .carousel {
            height: 100%;
        }

        .carousel-inner {
            border-radius: 10px;
            width: 100%; /* Take full width of its container */
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .carousel-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            display: block;
        }
        
        .carousel-item.active {
            opacity: 1;
            position: relative;
            z-index: 1;
        }

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

        /* Remove default Bootstrap arrow background and position if they are still somehow present */
        .carousel-control-prev,
        .carousel-control-next {
            display: none; /* Ensure default Bootstrap controls are hidden */
        }

        /* Indicators styling */
        .carousel-indicators {
            bottom: 20px; /* Position indicators at the bottom of the image */
            position: absolute; /* Ensure indicators are positioned relative to the carousel */
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            /* Add flex properties to center the line indicators */
            display: flex;
            gap: 10px;
            margin: 0;
            opacity: 1;
            pointer-events: auto;
        }

        .carousel-indicators li {
            list-style: none;
        }

        /* === Gallery Indicator Styles (Progress Bar) === */
        .carousel-indicators li {
            width: 50px;
            height: 4px;
            background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent white for inactive */
            cursor: pointer;
            overflow: hidden;
            position: relative;
            transition: background-color 0.3s ease;
            /* Resetting Bootstrap defaults */
            border-radius: 0;
            border: none;
            margin: 0 !important; /* Override Bootstrap's default margin */
            text-indent: -999px;
        }

        /* Apply shared indicator styles to reviews as well */
        .carousel-indicators li .progress-bar {
            background-color: var(--canary-yellow);
        }

        .carousel-indicators li:hover {
            background-color: var(--canary-yellow);
        }

        .carousel-indicators li .progress-bar {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0;
            background-color: var(--canary-yellow); /* Change progress bar to yellow */
        }

        .carousel-indicators li.active .progress-bar {
            animation: fill-gallery-indicator 5s linear forwards;
        }

        @keyframes fill-gallery-indicator {
            from { width: 0%; }
            to { width: 100%; }
        }

        /* ==================== Gallery & Green Initiative ==================== */
        .gallery-green-section {
            display: flex;
            flex-direction: column;
            gap: 40px;
            padding: 80px 20px;
            align-items: center;
        }

        @media (min-width: 992px) {
            .gallery-green-section {
                flex-direction: row;
                align-items: flex-start;
                padding: 100px 60px;
                gap: 60px;
            }
            .gallery-green-section .about-gallery-wrapper,
            .gallery-green-section .why-content-col {
                flex: 1;
                width: 50%;
                min-width: 0;
                padding: 40px 0;
            }
            .gallery-green-section .why-content-col {
                text-align: left;
                display: flex;
                flex-direction: column;
                gap: 0;
            }
            .gallery-green-section .green-initiative-grid {
                flex: 1;
                min-height: 0;
                grid-auto-rows: auto;
                align-content: start;
            }
        }

        .why-content-col {
            padding: 0;
            width: 100%;
        }

        .reviews-content-col {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            width: 100%;
        }

        .reviews-section-header {
            flex-shrink: 0;
            width: 100%;
            margin: 0 0 clamp(28px, 5vw, 48px);
            text-align: center;
        }

        .reviews-section-title {
            font-family: 'Lora', serif;
            color: var(--dark-jade);
            font-size: clamp(2rem, 4.5vw, 2.85rem);
            font-weight: 700;
            line-height: 1.15;
            margin: 0;
            text-align: center;
        }

        .reviews-card-wrap {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .reviews-content-col .carousel-wrapper.reviews-carousel-container {
            max-width: min(100%, 620px);
            width: 100%;
            height: auto;
            min-height: clamp(260px, 36vw, 320px);
            flex: 0 0 auto;
            display: flex;
            flex-direction: column;
            position: relative;
            padding-bottom: 44px;
            background-color: #ffffff;
        }

        .reviews-carousel-container .carousel-arrow {
            display: flex;
            width: 46px;
            height: 46px;
            font-size: 1.05rem;
            z-index: 30;
            top: calc(50% - 22px);
            transform: translateY(-50%);
        }

        .reviews-carousel-container .carousel-arrow:hover {
            transform: translateY(-50%) scale(1.06);
        }

        .reviews-carousel-container .carousel-arrow-prev {
            left: 18px;
        }

        .reviews-carousel-container .carousel-arrow-next {
            right: 18px;
        }

        .reviews-carousel-stage {
            position: relative;
            flex: 1 1 auto;
            min-height: clamp(220px, 32vw, 280px);
            height: auto;
            margin-inline: 84px;
            width: calc(100% - 168px);
        }

        .reviews-carousel-container .carousel-indicators {
            position: absolute;
            bottom: 14px;
            left: 50%;
            transform: translateX(-50%);
            margin: 0;
            width: auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .why-content-col h2, .why-content-col h3 {
            color: var(--dark-jade);
            margin-bottom: 15px;
        }

        .why-content-col h2 { font-size: 1.8em; }
        .why-content-col h3 { font-size: 2.5em; line-height: 1.2; margin-bottom: 20px; }

        .green-initiative-header {
            width: 100%;
            margin-bottom: 0;
            text-align: center;
        }

        .green-initiative-header h2 {
            font-size: 1.8em;
            margin-bottom: 10px;
            text-align: center;
        }

        .green-initiative-header h3 {
            font-size: 2.5em;
            line-height: 1.2;
            margin-bottom: clamp(8px, 1.5vh, 12px);
            text-align: center;
        }

        .green-initiative-intro {
            color: var(--dark-jade);
            line-height: 1.6;
            max-width: none;
            width: 100%;
            margin-top: clamp(24px, 3.5vh, 36px);
            margin-bottom: clamp(32px, 4.5vh, 48px);
            text-align: center;
        }

        .green-initiative-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            grid-auto-rows: auto;
            gap: clamp(12px, 2vw, 18px);
            width: 100%;
            align-items: stretch;
            align-content: start;
            flex: 1;
            min-height: 0;
            margin-top: 0;
        }

        .green-pillar {
            background-color: var(--jade-100);
            border-radius: var(--radius-md);
            border: 1px solid rgba(45, 93, 90, 0.08);
            box-shadow: none;
            padding: clamp(14px, 2vw, 20px);
            border-top: 3px solid var(--canary-yellow);
            transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            height: auto;
            min-height: 108px;
            overflow: visible;
        }

        .green-pillar:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-sm);
            border-color: rgba(45, 93, 90, 0.16);
        }

        .green-pillar-heading {
            flex-shrink: 0;
        }

        .green-pillar-icon {
            display: block;
            width: 28px;
            height: 28px;
            color: var(--dark-jade);
            flex-shrink: 0;
            margin-bottom: 10px;
        }

        .green-pillar h4 {
            font-family: 'Lora', serif;
            color: var(--dark-jade);
            font-size: clamp(0.9rem, 1.8vw, 1rem);
            line-height: 1.3;
            margin-bottom: 0;
        }

        .green-pillar-body {
            flex: none;
            display: block;
            color: var(--neutral-600);
            font-size: clamp(0.8125rem, 1.6vw, 0.9rem);
            line-height: 1.55;
            margin: 0;
            padding-top: clamp(12px, 2.2vw, 18px);
            padding-bottom: clamp(6px, 1vw, 10px);
            min-height: 0;
            overflow-wrap: anywhere;
            word-break: break-word;
        }

        @media (max-width: 420px) {
            .green-initiative-grid {
                grid-template-columns: 1fr;
                flex: none;
            }
        }

        .write-review-btn-container { margin-top: 30px; }

        /* Standardized Carousel Wrapper for Gallery & Reviews */
        .carousel-wrapper {
            margin: 0 auto;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            width: 100%;
            max-width: 550px;
            height: 420px;
            background-color: transparent;
        }

        .about-gallery-wrapper {
            overflow: visible;
            padding: 12px;
        }

        .gallery-carousel-card {
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                        box-shadow 0.4s ease;
            will-change: transform;
            z-index: 1;
        }

        .gallery-carousel-card:hover,
        .gallery-carousel-card:focus-within {
            transform: scale(1.05);
            box-shadow: 0 24px 48px rgba(45, 93, 90, 0.28);
            z-index: 2;
        }

        .gallery-carousel-card .carousel-item img {
            transition: transform 0.45s ease;
        }

        .gallery-carousel-card:hover .carousel-item.active img,
        .gallery-carousel-card:focus-within .carousel-item.active img {
            transform: scale(1.08);
        }

        @media (prefers-reduced-motion: reduce) {
            .gallery-carousel-card,
            .gallery-carousel-card .carousel-item img {
                transition: none;
            }

            .gallery-carousel-card:hover,
            .gallery-carousel-card:focus-within {
                transform: none;
            }

            .gallery-carousel-card:hover .carousel-item.active img,
            .gallery-carousel-card:focus-within .carousel-item.active img {
                transform: none;
            }
        }

        .reviews-content-col .carousel-wrapper.reviews-carousel-container {
            height: auto;
            max-width: min(100%, 620px);
        }

        .reviews-wrapper {
            height: auto; /* Allow reviews to dictate height if needed, or keep fixed */
            min-height: 400px;
        }

        /* ==================== Map Section ==================== */
        .map-section {
            padding: 80px 20px;
            background-color: transparent;
        }

        @media (min-width: 992px) {
            .map-section {
                padding: 100px 60px;
            }
        }

        .map-section h2 {
            font-family: 'Lora', serif;
            color: var(--dark-jade);
            font-size: 2.5em;
            margin-bottom: 30px;
        }

        .map-section .map-subtitle {
            color: var(--dark-jade);
            font-style: italic;
            margin-top: -20px;
            margin-bottom: 30px;
        }

        .interactive-map-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .map-stage {
            position: relative;
            width: 100%;
        }

        .interactive-map-container .map-image {
            position: relative;
            z-index: 1;
            display: block;
            width: 100%;
            line-height: 0;
            pointer-events: none;
            user-select: none;
        }

        .interactive-map-container .map-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            display: block;
        }

        .map-markers {
            position: absolute;
            inset: 0;
            z-index: 10;
            pointer-events: none;
        }

        .map-markers .marker {
            pointer-events: auto;
        }

        .marker {
            position: absolute;
            width: 27px;
            height: 27px;
            cursor: pointer;
            transform: translate(-50%, -50%);
            transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                        filter 0.3s ease;
            border: none;
            padding: 0;
            background: transparent;
            z-index: 10;
        }

        .marker i {
            font-size: 32px;
            color: var(--canary-yellow);
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            display: none; /* Hide the old icons */
        }

        .marker-large {
            width: 85px; /* Larger size for the main tour location */
            height: 85px;
        }

        .marker img,
        .map-marker-icon {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.55));
            opacity: 1;
            transform: scale(1);
            pointer-events: none;
            transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                        filter 0.3s ease;
        }

        .marker:hover,
        .marker:focus-visible {
            transform: translate(-50%, -58%) scale(1.2);
            z-index: 20;
        }

        .marker:hover .map-marker-icon,
        .marker:focus-visible .map-marker-icon,
        .marker:hover img,
        .marker:focus-visible img {
            transform: scale(1.08);
            filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.65));
        }

        .marker-large:hover,
        .marker-large:focus-visible {
            transform: translate(-50%, -55%) scale(1.12);
        }
        
        /* Map popup card styles — overlay animation in interactions.css */
        /* Manual Card Styles (Replacing Bootstrap) */
        .card {
            position: relative;
            display: flex;
            flex-direction: column;
            min-width: 0;
            word-wrap: break-word;
            background-color: #fff;
            background-clip: border-box;
        }
        
        .card-img {
            width: 100%;
            display: block;
        }
        
        .text-white {
            color: #fff !important;
        }

        #map-popup-content .card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            max-width: 100%; /* Ensure card doesn't exceed popup width */
        }

        #map-popup-content .card-img-overlay {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            padding: 1.25rem;
            background: linear-gradient(to top, rgba(0,0,0,0.85) 20%, rgba(0,0,0,0.4) 50%, transparent 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        #map-popup-content h3 {
            font-size: 1.75rem; /* Larger title */
            color: var(--canary-yellow);
            margin-bottom: 10px;
        }

        #map-popup-content p {
            font-size: 1rem; /* Larger paragraph text */
            line-height: 1.6;
        }

        #map-close-popup {
            position: absolute;
            top: -15px;
            right: -15px;
            background: var(--dark-jade);
            color: white;
            border: none;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            cursor: pointer;
            font-size: 20px;
            line-height: 1;
            box-shadow: 0 2px 5px rgba(0,0,0,0.4);
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        #map-close-popup:hover {
            background-color: var(--canary-yellow);
            color: var(--dark-jade);
        }

        .mobile-map-message {
            display: none; /* Hide this message as we're improving responsiveness */
            margin-top: 30px;
            padding: 15px;
            background-color: #e9ecef;
            border-radius: 5px;
            color: var(--dark-jade);
        }

        /* Map popup responsive */
        .reviews-carousel-container:hover .review-indicators {
            opacity: 1;
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: clamp(12px, 2vh, 16px);
            gap: 10px;
            width: 100%;
        }

        .review-author {
            font-weight: bold;
            color: var(--dark-jade);
            font-size: clamp(0.9rem, 1.6vw, 1rem);
            flex: 1;
            text-align: left;
        }

        .review-user-info {
            display: flex;
            align-items: center;
            gap: 15px;
            text-align: left;
        }

        .review-user-details {
            display: flex;
            flex-direction: column;
        }

        .review-logo {
            height: 30px;
            width: auto;
            flex-shrink: 0;
        }

        .review-stars {
            display: flex;
            align-items: center;
            gap: 4px;
            margin: 0;
            color: var(--canary-yellow);
            font-size: clamp(0.95rem, 1.8vw, 1.1rem);
            line-height: 1;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .review-text {
            font-style: italic;
            font-size: clamp(0.9rem, 1.8vw, 1.02rem);
            line-height: 1.65;
            color: var(--dark-jade);
            margin: 0;
            padding: 0;
            text-align: center;
            max-width: 36em;
            margin-inline: auto;
        }

        .review-footer {
            display: flex;
            justify-content: flex-end; /* Align button to the right */
            align-items: center;
            margin-top: 20px;
            width: 100%;
        }

        .review-date {
            font-size: 0.9em;
            color: #777;
        }

        .review-read-more {
            display: inline-block;
            padding: 6px 12px;
            background-color: var(--dark-jade);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-size: 0.9em;
            transition: background-color 0.3s ease;
        }

        .review-read-more:hover {
            background-color: var(--canary-yellow);
            color: var(--dark-jade);
            text-decoration: none;
        }

        /* Review specific indicator overrides if needed */
        .review-indicator {
            width: 40px;
            height: 4px;
            background-color: rgba(0,0,0,0.1);
            cursor: pointer;
            position: relative;
        }
        
        .review-indicator.active .progress-bar {
            background-color: var(--canary-yellow);
            animation: fill-indicator 10s linear forwards;
        }

        /* The progress bar inside the indicator */
        .review-indicator .progress-bar {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0;
            background-color: var(--canary-yellow); /* Change progress bar to yellow */
        }

        /* When an indicator is active, run the fill animation */
        .review-indicator.active .progress-bar {
            animation: fill-indicator 10s linear forwards;
        }

        /* On hover, the inactive part of the indicator turns yellow */
        .review-indicator:hover {
            /* On hover, make the inactive part green for contrast */
            background-color: var(--dark-jade);
        }

        /* Keyframes for the progress bar animation */
        @keyframes fill-indicator {
            from { width: 0%; }
            to { width: 100%; }
        }

        .prev-review {
            left: 15px;
        }

        .next-review {
            right: 15px;
        }

        .write-review-btn {
            margin-top: 40px;
            text-align: center;
        }

        /* ==================== Footer Section ==================== */
        .main-footer {
            background-color: var(--dark-jade); /* Use primary green color */
            color: #f8f9fa; /* Use a light off-white for text */
            padding: 40px 20px;
            text-align: center;
        }

        .main-footer p {
            margin: 0 0 20px;
        }

        .footer-social-media {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .footer-social-media a {
            color: var(--neutral-100);
            font-size: 1.4rem;
            transition: color 0.3s ease, transform 0.3s ease;
            display: inline-block;
        }

        .footer-social-media a:hover {
            color: var(--gold-500);
            transform: scale(1.15);
        }

        .icon-attributions {
            margin-top: 20px;
            font-size: 0.8em;
            color: #ccc;
        }

        .icon-attributions p {
            margin-bottom: 5px;
        }

        .icon-attributions a {
            color: #f8f9fa;
        }

        /* ==================== Responsive Design ==================== */
        @media (max-width: 991.98px) {
            .top-header {
                display: none;
            }

            .bottom-header {
                padding: 12px 5vw;
            }

            .main-nav {
                padding-top: var(--mobile-header-offset, 88px);
            }

            body.nav-open {
                overflow: hidden;
            }
        }

        @media (min-width: 768px) {
            .top-header {
                flex-direction: row;
                justify-content: space-between;
                padding: 15px 40px;
            }
            .contact-info {
                flex-direction: row;
                justify-content: center;
                gap: 20px;
            }
            .contact-info .separator {
                display: inline;
            }
            .bottom-header {
                padding: 15px 40px;
            }
            .about-us {
                flex-direction: row; /* Side-by-side on tablet+ */
                flex-wrap: wrap;
                text-align: left;
                padding: 80px 40px;
            }
            .about-us .about-content {
                order: 1;
            }
            .about-us .about-image {
                order: 2;
            }
            .review-indicators {
                margin-top: 30px;
            }
        }

        @media (min-width: 992px) {
            .main-header {
                position: fixed;
                width: 100%;
                top: 0;
                z-index: 1000;
            }

            body {
                padding-top: var(--header-offset);
            }

            .hamburger-menu {
                display: none;
            }

            .bottom-header {
                padding: 12px clamp(28px, 4vw, 72px);
                gap: var(--space-md);
            }

            .main-nav {
                position: static;
                height: auto;
                width: auto;
                flex: 1;
                display: flex;
                justify-content: flex-end;
                min-width: 0;
                background-color: transparent;
                box-shadow: none;
                padding-top: 0;
                transition: none;
            }

            .main-nav ul {
                flex-direction: row;
                flex-wrap: nowrap;
                padding: 0;
                gap: var(--nav-link-gap);
                align-items: center;
                justify-content: flex-end;
            }

            .main-nav ul li a {
                font-size: clamp(0.95rem, 0.85rem + 0.25vw, 1.0625rem);
                padding: 6px 4px;
            }
        }

        @media (min-width: 1200px) {
            .main-nav ul {
                gap: clamp(32px, 3vw, 48px);
            }
        }

        @media (max-width: 767px) {
            .logo-link,
            .logo-link img,
            .logo {
                max-height: 56px;
                max-width: 180px;
            }
        }

        /* Minor adjustments for smaller mobile screens */
        @media (max-width: 768px), (prefers-reduced-motion: reduce) {
            .hero-video {
                display: none;
            }
        }

        @media (min-width: 769px) and (prefers-reduced-motion: no-preference) {
            .hero-fallback-image,
            .hero-fallback-image img {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .hero-brand {
                font-size: 2rem;
            }
            .hero-lead {
                font-size: 1rem;
            }
            .about-us .about-content h3 {
                font-size: 2rem;
            }
            .why-content-col h3,
            .green-initiative-header h3 {
                font-size: 2rem;
            }
            .carousel-item {
                height: 300px;
            }
            .review-slide {
                padding: 20px 15px;
            }
            .review-slide p {
                font-size: 1rem;
            }
            /* Adjust membership & agent logos for small screens */
            .image-group {
                gap: 20px; /* Reduce gap between logos */
            }
            .image-group .partner-logo {
                max-height: 72px;
                max-width: min(160px, 42vw);
            }
        }

        /* Mobile adjustments for Map Modal */
        @media (max-width: 768px) {
            .marker {
                width: 22px;
                height: 22px;
            }

            .marker-large {
                width: 64px;
                height: 64px;
            }

            #map-close-popup {
                top: 5px;
                right: 5px;
                width: 30px;
                height: 30px;
                font-size: 16px;
                z-index: 2001;
            }
            #map-popup {
                max-width: 95%;
            }
        }

        /* Hide the mobile map message on all screens as the map popup is now responsive */
        .mobile-map-message {
            display: none !important;
        }

/* ==================== WhatsApp Floating Button ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: var(--radius-full);
    text-align: center;
    font-size: 30px;
    box-shadow: var(--shadow-md);
    z-index: 10000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-float);
}

.whatsapp-float:active {
    transform: scale(1.02);
}

.whatsapp-float:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring), var(--shadow-md);
}

/* ==================== Quick Service Side Widget ==================== */
.quick-service-widget {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9999;
}

.quick-service-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 46px;
    padding: 16px 10px;
    border: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    background: var(--dark-jade);
    color: var(--white);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.quick-service-tab span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.quick-service-tab i {
    color: var(--canary-yellow);
    font-size: 1rem;
}

.quick-service-tab:hover,
.quick-service-widget.is-open .quick-service-tab {
    background: var(--jade-500);
}

.quick-service-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(92vw, 360px);
    height: 100vh;
    background: var(--white);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    padding: clamp(20px, 4vw, 28px);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-out-expo);
    z-index: 10001;
    overflow-y: auto;
}

.quick-service-widget.is-open .quick-service-panel {
    transform: translateX(0);
}

.quick-service-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.quick-service-panel__header h2 {
    font-size: 1.35rem;
    color: var(--dark-jade);
    margin: 0;
}

.quick-service-close {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: var(--radius-full);
    background: var(--jade-100);
    color: var(--dark-jade);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-fast);
}

.quick-service-close:hover {
    background: var(--neutral-300);
}

.quick-service-panel__intro {
    margin: 0 0 20px;
    color: var(--neutral-600);
    font-size: 0.95rem;
    line-height: 1.5;
}

.quick-service-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-service-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    background: var(--jade-100);
    color: var(--dark-jade);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.quick-service-link i {
    flex-shrink: 0;
    color: var(--jade-500);
}

.quick-service-link:hover {
    background: var(--dark-jade);
    color: var(--white);
    transform: translateX(-3px);
}

.quick-service-link:hover i {
    color: var(--canary-yellow);
}

.quick-service-backdrop {
    position: fixed;
    inset: 0;
    border: none;
    background: rgba(26, 26, 26, 0.45);
    z-index: 10000;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-service-widget.is-open .quick-service-backdrop {
    opacity: 1;
}

body.quick-service-open {
    overflow: hidden;
}

@media (max-width: 480px) {
    .quick-service-tab {
        width: 40px;
        padding: 14px 8px;
        font-size: 0.65rem;
    }
}

/* Reviews carousel styling */
.reviews-carousel {
    width: 100%;
    height: 100%;
    min-height: clamp(220px, 32vw, 280px);
    margin: 0;
    position: relative;
    overflow: hidden;
}

.review-slide {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: clamp(20px, 3vw, 28px) clamp(16px, 3vw, 24px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(10px, 1.8vh, 14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    overflow: hidden;
    box-sizing: border-box;
}

.review-slide.active { 
    opacity: 1; 
    visibility: visible;
    z-index: 1; 
    display: flex; 
}

@media (max-width: 767px) {
    .reviews-carousel-container .carousel-arrow {
        display: none;
    }

    .reviews-carousel-stage {
        margin-inline: 0;
        width: 100%;
    }

    .reviews-carousel-container .carousel-indicators {
        bottom: 10px;
    }
}