* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            caret-color: transparent !important;
        }

        :root {
            --primary: #8A4B16;
            --primary-dark: #5D2F0F;
            --accent: #C97A2A;
            --accent-soft: #F5E4C8;
            --surface: #FFFDF8;
            --surface-soft: #FAF2E7;
            --text: #3E2A1A;
            --muted: #6F5845;
            --border: rgba(138, 75, 22, 0.14);
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            background: linear-gradient(135deg, #fcf8f1 0%, #f7efe2 45%, #f7ebdc 100%);
            -webkit-font-smoothing:antialiased;
            -moz-osx-font-smoothing:grayscale;
        }

        section.bg-white,
        section.bg-dots,
        section.bg-gradient-to-br,
        .act-card,
        .card-hover,
        .review-form,
        .bg-white.rounded-2xl,
        .bg-white.rounded-3xl,
        .bg-white.rounded-xl {
            background: linear-gradient(145deg, var(--surface) 0%, var(--surface-soft) 100%) !important;
            border-color: var(--border) !important;
            box-shadow: 0 14px 40px rgba(138, 75, 22, 0.08) !important;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
        }

        /* Improve heading and link contrast for a more professional feel */
        h1, h2, h3 { color: var(--primary-dark); }
        a { color: var(--primary); text-decoration: none; }
        a:hover { text-decoration: none; color: var(--primary-dark); }
        p { color: var(--muted); }

        /* Base type scale & rhythm */
        html { font-size: 16px; }
        body { font-size: 1rem; line-height: 1.65; }

        /* Headings - modular scale */
        h1 { font-size: 2.25rem; line-height: 1.05; font-weight: 700; margin-bottom: 0.5rem; }
        h2 { font-size: 1.75rem; line-height: 1.08; font-weight: 700; margin-bottom: 0.6rem; }
        h3 { font-size: 1.25rem; line-height: 1.15; font-weight: 600; margin-bottom: 0.5rem; }
        h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.4rem; }
        p  { font-size: 1rem; line-height: 1.7; color: rgba(11,59,69,0.88); margin-bottom: 1rem; }

        /* Lead paragraph utility */
        .lead { font-size: 1.125rem; font-weight: 300; color: rgba(11,59,69,0.95); }

        .delay-300 { animation-delay: 0.3s; }
        .delay-400 { animation-delay: 0.4s; }
        .delay-500 { animation-delay: 0.5s; }
        
        .img-zoom {
            transition: transform 0.6s ease;
        }
        
        .img-zoom:hover {
            transform: scale(1.05);
        }
        
        .card-hover {
            transition: all 0.3s ease;
        }
        
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(138, 75, 22, 0.12);
        }

        .dest-card {
            border: 1px solid var(--border);
            background: rgba(255,255,255,0.95);
            box-shadow: 0 14px 36px rgba(138, 75, 22, 0.08);
        }

        .destination-carousel-shell {
            position: relative;
            padding: clamp(1rem, 2vw, 1.5rem);
            border-radius: 2rem;
            border: 1px solid rgba(255,255,255,0.8);
            background: linear-gradient(135deg, rgba(255,255,255,0.84), rgba(251, 243, 229, 0.94));
            box-shadow: 0 24px 60px rgba(91, 58, 24, 0.12);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            overflow: hidden;
        }

        .destination-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
            will-change: transform;
            touch-action: pan-y;
        }

        .destination-slide {
            min-width: 100%;
            padding: 0.2rem;
        }

        .destination-card {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 1.25rem;
            align-items: center;
            padding: clamp(1rem, 2vw, 1.4rem);
            border-radius: 1.6rem;
            background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255, 246, 231, 0.95));
            border: 1px solid rgba(13, 91, 117, 0.12);
            box-shadow: 0 18px 46px rgba(15, 82, 98, 0.12);
            overflow: hidden;
        }

        .destination-image-wrap {
            overflow: hidden;
            border-radius: 1.25rem;
            box-shadow: 0 16px 34px rgba(10, 65, 73, 0.12);
        }

        .destination-image {
            width: 100%;
            height: clamp(220px, 34vw, 320px);
            object-fit: cover;
            display: block;
            transition: transform 0.6s ease;
        }

        .destination-card:hover .destination-image {
            transform: scale(1.04);
        }

        .destination-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.4rem 0.7rem;
            margin-bottom: 0.9rem;
            border-radius: 999px;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #8c4b16;
            background: rgba(244, 197, 111, 0.26);
            border: 1px solid rgba(140, 75, 22, 0.16);
        }

        .destination-card h3 {
            color: #0b4f6c;
            font-size: clamp(1.35rem, 2vw, 1.7rem);
            margin-bottom: 0.65rem;
        }

        .destination-card p {
            color: #5f655f;
            margin-bottom: 0.75rem;
            font-size: 0.95rem;
        }

        .destination-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.6rem;
            margin-bottom: 1rem;
        }

        .destination-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.38rem 0.7rem;
            border-radius: 999px;
            background: rgba(13, 91, 117, 0.07);
            color: #0b4f6c;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .destination-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            border: none;
            padding: 0.75rem 1rem;
            border-radius: 999px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #fff;
            background: linear-gradient(135deg, #1565c0, #0288d1);
            box-shadow: 0 12px 28px rgba(21, 101, 192, 0.24);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .destination-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 34px rgba(21, 101, 192, 0.32);
        }

        .destination-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 46px;
            height: 46px;
            border: 0;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.9);
            color: #0b4f6c;
            box-shadow: 0 14px 30px rgba(15, 82, 98, 0.16);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            z-index: 2;
            cursor: pointer;
        }

        .destination-nav:hover {
            transform: translateY(-50%) scale(1.04);
            box-shadow: 0 18px 34px rgba(15, 82, 98, 0.2);
        }

        .destination-nav svg {
            width: 20px;
            height: 20px;
        }

        .destination-nav-prev { left: 1rem; }
        .destination-nav-next { right: 1rem; }

        .destination-dots {
            display: flex;
            justify-content: center;
            gap: 0.55rem;
            margin-top: 1.1rem;
        }

        .destination-dot {
            width: 10px;
            height: 10px;
            border-radius: 999px;
            border: 0;
            background: rgba(15, 82, 98, 0.24);
            transition: width 0.25s ease, background 0.25s ease;
            cursor: pointer;
            padding: 0;
        }

        .destination-dot.active {
            width: 28px;
            background: linear-gradient(135deg, #1565c0, #0288d1);
        }

        @media (max-width: 767px) {
            .destination-card {
                grid-template-columns: 1fr;
            }

            .destination-nav {
                width: 40px;
                height: 40px;
            }

            .destination-nav-prev { left: 0.6rem; }
            .destination-nav-next { right: 0.6rem; }
        }

        .adventure-section .dest-card {
            max-width: 420px;
            overflow: hidden;
            justify-self: center;
            border-radius: 1rem;
            box-shadow: 0 10px 24px rgba(0,0,0,0.12);
        }

        .adventure-section .dest-card > .overflow-hidden {
            height: 130px;
        }

        .adventure-section .dest-card img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }

        .adventure-section .dest-card .p-6 {
            padding: 0.85rem !important;
        }

        .adventure-section .dest-card h3 {
            font-size: 1.1rem;
            margin-bottom: 0.55rem;
        }

        .adventure-section .dest-card p {
            font-size: 0.88rem;
            line-height: 1.5;
        }

        .adventure-section .dest-card .rounded-[18px] {
            padding: 0.65rem !important;
        }

        .adventure-section .dest-card .group {
            font-size: 0.85rem;
        }

        .adventure-section .dest-card .group .h-4,
        .adventure-section .dest-card .group .w-4 {
            width: 14px;
            height: 14px;
        }

        .adventure-section .dest-card .mt-3 {
            gap: 0.65rem;
        }

        .adventure-section .dest-card .group span {
            line-height: 1.2;
        }

        .adventure-section .dest-card .mt-3 {
            gap: 0.75rem;
        }
        
        /* Navbar Base Styles */
        #navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 9999;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-link {
            position: relative;
            font-weight: 500;
            letter-spacing: 0.03em;
            padding: 0.6rem 1rem;
            border-radius: 9999px;
            transition: all 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .nav-link:hover,
        .nav-link.active {
            transform: translateY(-2px);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 60%;
        }

        .navbar-brand {
            text-decoration: none;
            letter-spacing: 0.08em;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .brand-mark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 14px;
            background: linear-gradient(135deg, #1565C0, #0288D1);
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            box-shadow: 0 8px 24px rgba(21, 101, 192, 0.3);
            transition: all 0.3s ease;
        }

        .brand-mark:hover {
            transform: scale(1.05) rotate(5deg);
            box-shadow: 0 12px 32px rgba(21, 101, 192, 0.4);
        }

        .nav-cta {
            background: linear-gradient(135deg, #1565C0 0%, #0288D1 100%);
            box-shadow: 0 10px 30px rgba(21, 101, 192, 0.35);
            padding: 0.75rem 1.75rem !important;
            border-radius: 9999px;
            font-weight: 600;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
        }

        .nav-cta:hover {
            transform: translateY(-3px) !important;
            box-shadow: 0 15px 40px rgba(21, 101, 192, 0.45);
        }

        /* Mobile Menu Styles */
        .mobile-nav-link {
            color: #f8fafc;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.75rem 1rem;
            border-radius: 12px;
        }

        .mobile-nav-link:hover {
            color: #bbdefb;
            background: rgba(255, 255, 255, 0.1);
        }

        .mobile-menu {
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
            box-shadow: -20px 0 60px rgba(0,0,0,0.3);
            opacity: 0;
            pointer-events: none;
        }

        .mobile-menu.open {
            transform: translateX(0);
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-menu a {
            display: inline-block;
        }

        /* Glassmorphism Navbar (Top of page - transparent glass) */
        .navbar-transparent {
            background: rgba(7, 18, 32, 0.30);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            padding: 1.25rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
        }

        .navbar-transparent .nav-link {
            color: white;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .navbar-transparent .nav-link::after {
            background: linear-gradient(90deg, #fff, #bbdefb);
        }

        .navbar-transparent .nav-link:hover,
        .navbar-transparent .nav-link.active {
            color: #e3f2fd;
            background: rgba(255, 255, 255, 0.14);
        }

        .navbar-transparent .navbar-brand {
            color: white !important;
            text-shadow: 0 2px 12px rgba(0,0,0,0.3);
        }

        #mobile-menu-btn {
            width: 48px !important;
            height: 48px !important;
            border-radius: 12px !important;
            padding: 0 !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            cursor: pointer !important;
        }

        /* Hide hamburger menu on medium screens and larger */
        @media (min-width: 768px) {
            #mobile-menu-btn {
                display: none !important;
            }
        }

        .navbar-transparent #mobile-menu-btn {
            color: white;
            border: 1px solid rgba(255,255,255,0.24);
            background: rgba(255,255,255,0.14);
            backdrop-filter: blur(12px);
        }

        .navbar-transparent #mobile-menu-btn:hover,
        .navbar-transparent #mobile-menu-btn:active {
            background: rgba(255,255,255,0.2);
            border-color: rgba(255,255,255,0.4);
        }

        /* Glassmorphism Navbar (When scrolling - solid glass) */
        .navbar-solid {
            background: rgba(8, 19, 34, 0.74);
            backdrop-filter: blur(28px);
            -webkit-backdrop-filter: blur(28px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
            padding: 0.85rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        }

        .navbar-solid .nav-link {
            color: #f7f9ff;
        }

        .navbar-solid .nav-link::after {
            background: linear-gradient(90deg, #1565C0, #0288D1);
        }

        .navbar-solid .nav-link:hover,
        .navbar-solid .nav-link.active {
            color: #dceeff;
            background: rgba(255, 255, 255, 0.12);
        }

        .navbar-solid .navbar-brand {
            color: #f7f9ff !important;
        }

        .navbar-solid #mobile-menu-btn {
            color: #f7f9ff;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.12);
        }

        .navbar-solid #mobile-menu-btn:hover,
        .navbar-solid #mobile-menu-btn:active {
            background: rgba(21, 101, 192, 0.15);
            border-color: rgba(21, 101, 192, 0.35);
        }

        /* Navbar Shrink Effect */
        .navbar-shrink {
            padding: 0.6rem 0;
        }

        .navbar-shrink .navbar-brand {
            font-size: 1.15rem;
        }

        .navbar-shrink .brand-mark {
            width: 40px;
            height: 40px;
        }

        /* Navbar Container */
        #navbar .max-w-7xl {
            transition: padding 0.5s ease;
        }

        /* Gradient Primary Styles */
        .gradient-primary {
            background-image: linear-gradient(135deg, #0B4F6C 0%, #042f4b 100%);
            color: #ffffff;
            transition: all 0.3s ease;
        }

        /* Back to Top Button */
        .back-to-top {
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            min-height: 100%;
            min-width: 100%;
            filter: brightness(1.18) saturate(1.15) contrast(1.08);
            transition: filter 0.35s ease;
        }

        .hero-overlay {
            background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0.04) 35%, rgba(0,0,0,0.10) 100%);
            pointer-events: none;
            mix-blend-mode: normal;
            animation: hero-breath 18s ease-in-out infinite;
        }

        #main-content {
            /* Remove background image so video is primary */
        }

        /* PERF: Only animate opacity — animating transform:scale on a full-screen
           overlay triggers continuous compositor work on the main thread. */
        @keyframes hero-breath {
            0%, 100% { opacity: 1; }
            50%       { opacity: 0.92; }
        }

        .hero-content {
            position: relative;
            padding: 4rem 1.25rem 2.5rem;
            background: transparent;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            border: none;
            border-radius: 0;
            box-shadow: none;
            isolation: isolate;
        }

        .hero-content::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: min(90vw, 760px);
            height: 220px;
            background: radial-gradient(circle, rgba(255, 244, 207, 0.16) 0%, rgba(255, 255, 255, 0) 72%);
            filter: blur(24px);
            z-index: 0;
            pointer-events: none;
            animation: ambient-glow 5s ease-in-out infinite;
        }

        .hero-content > * {
            position: relative;
            z-index: 1;
        }

        .quick-info-strip {
            display: grid;
            grid-template-columns: repeat(6, minmax(0, 1fr));
            gap: 0.8rem;
            margin: 0 auto 2rem;
            max-width: 1120px;
        }

        .quick-info-item {
            padding: 1rem 0.75rem;
            border-radius: 1.1rem;
            background: linear-gradient(135deg, rgba(255, 248, 223, 0.16) 0%, rgba(255, 255, 255, 0.08) 100%);
            border: 1px solid rgba(255, 248, 223, 0.2);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 10px 24px rgba(2, 12, 24, 0.2);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            text-align: center;
            color: #fffdf8;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
            cursor: default;
        }

        .quick-info-item:hover {
            transform: translateY(-4px) scale(1.01);
            border-color: rgba(255, 221, 146, 0.5);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 16px 36px rgba(2, 12, 24, 0.26);
        }

        .quick-info-item:active {
            transform: scale(0.98);
        }

        .quick-info-icon {
            width: 2.2rem;
            height: 2.2rem;
            margin: 0 auto 0.6rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            background: linear-gradient(135deg, rgba(255, 232, 168, 0.95) 0%, rgba(188, 128, 39, 0.9) 100%);
            box-shadow: 0 6px 16px rgba(188, 128, 39, 0.24);
            font-size: 1rem;
            color: #2e1802;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .quick-info-item:hover .quick-info-icon {
            transform: rotate(-6deg) scale(1.06);
            box-shadow: 0 8px 20px rgba(188, 128, 39, 0.32);
        }

        .quick-info-item h3 {
            margin: 0 0 0.25rem;
            font-family: 'Poppins', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: #fffdf8;
        }

        .quick-info-item p {
            margin: 0;
            font-size: 0.78rem;
            color: rgba(255, 248, 230, 0.8);
            line-height: 1.4;
        }

        @media (max-width: 1024px) {
            .quick-info-strip {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        @media (max-width: 640px) {
            .quick-info-strip {
                grid-template-columns: 1fr;
            }

            .quick-info-item {
                padding: 0.9rem 0.75rem;
                animation: mobileFloat 1.6s ease-in-out infinite;
            }

            .quick-info-item:nth-child(2n) {
                animation-delay: 0.2s;
            }

            .quick-info-item:nth-child(3n) {
                animation-delay: 0.4s;
            }
        }

        @keyframes mobileFloat {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-3px);
            }
        }

        .hero-tagline {
            max-width: 42rem;
            margin: 0 auto 1.2rem;
            color: rgba(255,255,255,0.92);
            font-size: 1rem;
            line-height: 1.85;
            letter-spacing: 0.04em;
            opacity: 0;
            animation: fadeInUp 0.9s ease-out forwards;
            animation-delay: 0.15s;
            text-shadow: 0 10px 22px rgba(0,0,0,0.22);
        }

        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.85rem;
            margin-top: 0.65rem;
            opacity: 0;
            animation: fadeInUp 0.9s ease-out forwards;
            animation-delay: 0.22s;
        }

        .hero-cta .btn-ripple {
            min-width: 148px;
            border: 1px solid rgba(255,255,255,0.18);
            box-shadow: 0 18px 40px rgba(0,0,0,0.18);
        }

        .hero-cta .btn-ripple:hover {
            transform: translateY(-1px);
        }

        .shimmer-text {
            position: relative;
            overflow: hidden;
        }

        .shimmer-text::after {
            content: '';
            position: absolute;
            top: 0;
            left: -30%;
            width: 60%;
            height: 100%;
            background: linear-gradient(120deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.45) 50%, rgba(255,255,255,0.08) 100%);
            transform: skewX(-20deg);
            animation: shimmer 2.5s ease-in-out infinite;
            pointer-events: none;
        }

        .cta-button {
            animation: float-cta 6s ease-in-out infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) skewX(-20deg); opacity: 0; }
            40% { opacity: 0.5; }
            50% { transform: translateX(100%) skewX(-20deg); opacity: 0.5; }
            100% { transform: translateX(200%) skewX(-20deg); opacity: 0; }
        }

        @keyframes float-cta {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }

        .hero-content h1,
        .hero-content p,
        .hero-content .btn-ripple {
            text-shadow: 0 16px 40px rgba(0,0,0,0.3);
        }

        .hero-content h1 {
            letter-spacing: -0.03em;
        }

        .hero-content p {
            max-width: 42rem;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-content .glow-text {
            color: #fff8e8 !important;
            background: linear-gradient(135deg, #fff8e8 0%, #f2dba5 42%, #d8a654 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 10px rgba(0,0,0,0.18);
        }

        /* Enhanced hero title and subtitle styling */
        .hero-subtitle {
            color: #ffffff;
            font-size: 1.05rem;
            letter-spacing: 0.4em;
            font-weight: 600;
            text-transform: uppercase;
            display: block;
            margin-bottom: 0.2rem;
            text-shadow: 0 6px 18px rgba(0,0,0,0.35);
        }

        .hero-heading {
            display: block;
            margin-bottom: 0.25rem;
        }

        .hero-title-shell {
            position: relative;
            display: inline-flex;
            align-items: flex-start;
            justify-content: center;
            gap: 0.7rem;
            margin-top: 0.2rem;
            padding: 0.55rem 1rem 0.45rem;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 1.2rem;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(18, 28, 42, 0.24) 100%);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 16px 40px rgba(0,0,0,0.26), 0 0 0 1px rgba(255,255,255,0.06);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
        }

        .hero-title {
            position: relative;
            display: inline-block;
            background: linear-gradient(90deg, #fff9eb 0%, #f1d7a1 38%, #c98d3d 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            letter-spacing: -0.02em;
            line-height: 1;
            text-shadow: 0 2px 6px rgba(0,0,0,0.16);
            transform-origin: center;
            animation: title-pop 0.9s cubic-bezier(.2,.9,.3,1) both;
        }

        .hero-light {
            position: relative;
            display: inline-flex;
            align-items: flex-start;
            justify-content: center;
            width: 0.9rem;
            height: 2rem;
            margin-top: 0.2rem;
            opacity: 0.9;
        }

        .hero-light::before {
            content: '';
            width: 0.7rem;
            height: 0.7rem;
            border-radius: 999px;
            background: radial-gradient(circle at 30% 30%, #fff1bc 0%, #e7b85c 55%, #8a5a19 100%);
            box-shadow: 0 0 8px rgba(255, 198, 86, 0.45);
            animation: bulb-flicker 2.8s ease-in-out infinite;
        }

        .hero-light::after {
            content: '';
            position: absolute;
            top: 0.6rem;
            width: 1px;
            height: 1rem;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(92, 58, 16, 0.6));
        }

        .hero-light-left {
            margin-left: 0.1rem;
        }

        .hero-light-right {
            margin-right: 0.1rem;
        }

        .hero-light-right::before {
            animation-delay: 0.7s;
        }

        @keyframes title-pop {
            from { transform: translateY(12px) scale(0.98); opacity: 0; }
            to { transform: translateY(0) scale(1); opacity: 1; }
        }

        @keyframes ambient-glow {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.9; }
            50% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
        }

        @keyframes bulb-flicker {
            0%, 100% { opacity: 0.7; transform: translateY(0) scale(1); }
            50% { opacity: 0.95; transform: translateY(-1px) scale(1.04); }
        }

        .hero-content p {
            font-size: 1.125rem;
            color: rgba(255,255,255,0.95);
            text-shadow: 0 8px 30px rgba(0,0,0,0.38);
            font-weight: 300;
            max-width: 44rem;
            margin: 0 auto;
        }

        @media (min-width: 1024px) {
            .hero-title { font-size: 4.75rem; }
            .hero-subtitle { font-size: 1.1rem; }
        }

        .hero-content .btn-ripple {
            box-shadow: 0 14px 36px rgba(6, 20, 40, 0.14);
        }

        .hero-content .btn-ripple:hover {
            transform: translateY(-2px) scale(1.01);
        }

        /* Make hero CTAs vibrant: gradient background, smooth hover */
        .hero-content .cta-button {
            background: linear-gradient(90deg, #8A4B16 0%, #C97A2A 45%, #D8A24D 100%);
            color: #ffffff;
            border: none !important;
            padding: 0.95rem 1.5rem;
            box-shadow: 0 16px 42px rgba(138, 75, 22, 0.24);
            background-size: 200% 200%;
            transition: transform 0.25s ease, box-shadow 0.25s ease, background-position 0.6s ease;
        }

        .hero-content .cta-button:hover {
            background-position: 100% 0;
            transform: translateY(-3px);
            box-shadow: 0 22px 60px rgba(11,59,69,0.18);
        }

        .hero-video::-webkit-media-controls {
            display: none !important;
        }
        
        .success-popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.8);
            background: white;
            padding: 40px;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            text-align: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            max-width: 450px;
            width: 90%;
        }
        
        .success-popup.show {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, -50%) scale(1);
        }
        
        .success-popup-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #2E8B57, #3da366);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .success-popup-icon svg {
            width: 40px;
            height: 40px;
            color: white;
        }
        
        .success-popup h3 {
            font-size: 28px;
            margin-bottom: 12px;
            color: #0B4F6C;
        }
        
        .success-popup p {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
        }
        
        .success-popup-btn {
            margin-top: 24px;
            padding: 12px 32px;
            background: linear-gradient(135deg, #0B4F6C, #1a6a8a);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .success-popup-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(11, 79, 108, 0.3);
        }
        
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .popup-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        /* Decorative hero effects removed */
        .particles-container,
        .waves,
        .beach-creatures,
        .leaf {
            display: none !important;
        }


        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: float 15s infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) translateX(50px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Wave animation */
        .waves {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px;
            z-index: 1;
        }

        .wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 200%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C200,20 400,100 600,60 C800,20 1000,100 1200,60 L1200,120 L0,120 Z' fill='%23ffffff' fill-opacity='0.1'/%3E%3C/svg%3E") repeat-x;
            animation: wave 8s linear infinite;
        }

        .wave:nth-child(2) {
            animation-delay: -2s;
            opacity: 0.7;
            animation-duration: 10s;
        }

        .wave:nth-child(3) {
            animation-delay: -4s;
            opacity: 0.5;
            animation-duration: 12s;
        }

        @keyframes wave {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Glow effect for title */
        .glow-text {
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.5),
                         0 0 40px rgba(255, 255, 255, 0.3),
                         0 0 60px rgba(255, 255, 255, 0.2);
        }

        /* Pulse animation for CTA button */
        @keyframes pulse-glow {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
            }
            50% {
                box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
            }
        }

        .pulse-button {
            animation: pulse-glow 2s infinite;
        }

        /* Floating leaves animation */
        .leaf {
            position: absolute;
            width: 20px;
            height: 20px;
            background: linear-gradient(135deg, #2E8B57, #3da366);
            border-radius: 0 50% 50% 50%;
            animation: fall 20s linear infinite;
            opacity: 0.6;
            pointer-events: none;
        }

        @keyframes fall {
            0% {
                transform: translate(0, -100px) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.6;
            }
            90% {
                opacity: 0.6;
            }
            100% {
                transform: translate(100px, 100vh) rotate(720deg);
                opacity: 0;
            }
        }

        /* Scroll indicator bounce */
        @keyframes bounce-arrow {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-20px);
            }
            60% {
                transform: translateX(-50%) translateY(-10px);
            }
        }

        .animate-bounce-arrow {
            animation: bounce-arrow 2s infinite;
        }

        /* Parallax effect */
        .parallax-layer {
            transition: transform 0.1s ease-out;
        }

        /* Shine effect on cards */
        .shine-effect {
            position: relative;
            overflow: hidden;
        }

        .shine-effect::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.2),
                transparent
            );
            transition: left 0.5s ease;
        }

        .shine-effect:hover::before {
            left: 100%;
        }

        /* Animated gradient backgrounds */
        .bg-gradient-animated {
            background: linear-gradient(-45deg, #0B4F6C, #2E8B57, #1a6a8a, #3da366);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Subtle floating shapes background */
        .bg-floating-shapes {
            position: relative;
            overflow: hidden;
        }

        .bg-floating-shapes::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 20% 80%, rgba(46, 139, 87, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(11, 79, 108, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
            animation: floatShapes 30s ease-in-out infinite;
            pointer-events: none;
        }

        /* PERF: Removed rotation — rotating a 200%×200% pseudo-element is expensive.
           Simple translate keeps the ambient look without the GPU overhead. */
        @keyframes floatShapes {
            0%, 100% { transform: translate(0, 0); }
            33%       { transform: translate(30px, -30px); }
            66%       { transform: translate(-20px, 20px); }
        }

        /* Wave pattern background */
        .bg-wave-pattern {
            background-color: #f8faf8;
            background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,60 C20,40 40,80 60,60 C80,40 100,80 120,60 L120,120 L0,120 Z' fill='%232E8B57' fill-opacity='0.03'/%3E%3C/svg%3E");
            background-size: 240px 240px;
        }

        /* Decorative corner accents */
        .corner-accent {
            position: relative;
        }

        .corner-accent::before,
        .corner-accent::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 60px;
            border: 3px solid;
            opacity: 0.2;
            transition: all 0.3s ease;
        }

        .corner-accent::before {
            top: 20px;
            left: 20px;
            border-color: #2E8B57;
            border-right: none;
            border-bottom: none;
        }

        .corner-accent::after {
            bottom: 20px;
            right: 20px;
            border-color: #0B4F6C;
            border-left: none;
            border-top: none;
        }

        .corner-accent:hover::before,
        .corner-accent:hover::after {
            opacity: 0.5;
            width: 80px;
            height: 80px;
        }

        /* Pulse animation for emphasis */
        @keyframes gentlePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }

        .animate-gentle-pulse:hover {
            animation: gentlePulse 2s ease-in-out infinite;
        }

        /* Slide-in animation for sections */
        .slide-in-up {
            opacity: 0;
            transform: translateY(18px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .slide-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-block {
            opacity: 0;
            transform: translateY(18px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal-block.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Background dots pattern */
        .bg-dots {
            background-image: radial-gradient(circle, rgba(11, 79, 108, 0.05) 1px, transparent 1px);
            background-size: 20px 20px;
        }

        /* Stripe pattern */
        .bg-stripes {
            background: repeating-linear-gradient(
                -45deg,
                transparent,
                transparent 10px,
                rgba(46, 139, 87, 0.03) 10px,
                rgba(46, 139, 87, 0.03) 20px
            );
        }

        /* Number counter animation */
        @keyframes countUp {
            from { opacity: 0; transform: scale(0.5); }
            to { opacity: 1; transform: scale(1); }
        }

        .count-number {
            animation: countUp 0.8s ease-out forwards;
        }

        /* Image hover lift effect */
        .lift-hover {
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .lift-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        /* Text gradient animation */
        @keyframes textGradient {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .text-gradient-animated {
            background: linear-gradient(90deg, #0B4F6C, #2E8B57, #1a6a8a);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: textGradient 5s ease infinite;
        }

        /* Tighter default section paddings for a cleaner layout */
        .py-24 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
        .py-20 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
        .py-12 { padding-top: 2rem !important; padding-bottom: 2rem !important; }

        /* Footer styles */
        .site-footer {
            background: linear-gradient(180deg, #f8faf8, #ffffff);
            border-top: 1px solid rgba(11,79,108,0.06);
            padding: 2rem 1.5rem;
            color: #334155;
        }

        .site-footer .footer-grid {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            align-items: flex-start;
            justify-content: space-between;
        }

        .site-footer .brand { font-weight: 700; color: #0B4F6C; font-size: 1.125rem; }

        .site-footer a { color: #065f46; text-decoration: none; }

        .site-footer .small { font-size: 0.95rem; color: #6b7280; }

        @media (max-width: 640px) {
            .site-footer .footer-grid { flex-direction: column; gap: 1rem; }
        }
            /* Review styles moved from inline for reuse */
            .rev-card { background: #fff; border-radius: 0.75rem; padding: 1rem; box-shadow: 0 6px 18px rgba(8,15,22,0.04); border: 1px solid #eef2f4; }
            .rev-card p { margin-bottom: 0.5rem; }
            .stars { color: #d97706; font-size: 0.95rem; letter-spacing: 0.4px; }
            .rev-avatar { width: 40px; height: 40px; border-radius: 9999px; font-size: 0.85rem; display:flex; align-items:center; justify-content:center; }
            .review-form { max-width: 520px; padding: 1rem; }
            .review-form .form-title { font-size: 1.05rem; }
            .review-input { padding: 0.5rem 0.75rem; font-size: 0.95rem; }

    /* Hero video: show on all screens */
.hero-video { display: block; }

/* Premium Masonry Gallery */
.premium-masonry-shell {
    padding: clamp(0.75rem, 2vw, 1.25rem);
    border: 1px solid rgba(138, 75, 22, 0.12);
    border-radius: 1.5rem;
    background: rgba(255, 253, 248, 0.72);
    box-shadow: 0 24px 60px rgba(91, 58, 24, 0.12);
}

.premium-masonry-grid {
    column-count: 4;
    column-gap: 1rem;
}

.premium-masonry-item {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 1rem;
    padding: 0;
    border: 0;
    overflow: hidden;
    break-inside: avoid;
    border-radius: 0.85rem;
    background: #eadbc6;
    cursor: zoom-in;
    text-align: left;
}

.premium-masonry-item img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.55s ease, filter 0.55s ease;
}

.premium-masonry-item::after {
    content: '';
    position: absolute;
    inset: 35% 0 0;
    background: linear-gradient(transparent, rgba(32, 20, 10, 0.8));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.premium-masonry-item:hover img,
.premium-masonry-item:focus-visible img {
    transform: scale(1.05);
    filter: saturate(1.08);
}

.premium-masonry-item:hover::after,
.premium-masonry-item:focus-visible::after,
.premium-masonry-item:focus-visible .premium-masonry-caption,
.premium-masonry-item:hover .premium-masonry-caption,
.premium-masonry-item:hover .premium-masonry-zoom,
.premium-masonry-item:focus-visible .premium-masonry-zoom {
    opacity: 1;
}

.premium-masonry-caption {
    position: absolute;
    right: 1rem;
    bottom: 0.85rem;
    left: 1rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    color: #fff;
    opacity: 0;
    transform: translateY(0.4rem);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.premium-masonry-item:hover .premium-masonry-caption,
.premium-masonry-item:focus-visible .premium-masonry-caption {
    transform: translateY(0);
}

.premium-masonry-caption strong { font: 600 1rem 'Playfair Display', serif; }
.premium-masonry-caption small { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; }

.premium-masonry-zoom {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    z-index: 1;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.75rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

@media (max-width: 1024px) { .premium-masonry-grid { column-count: 3; } }
@media (max-width: 640px) {
    .premium-masonry-shell { padding: 0.55rem; border-radius: 1rem; }
    .premium-masonry-grid { column-count: 2; column-gap: 0.55rem; }
    .premium-masonry-item { margin-bottom: 0.55rem; border-radius: 0.65rem; }
    .premium-masonry-caption { right: 0.55rem; bottom: 0.55rem; left: 0.55rem; }
    .premium-masonry-caption strong { font-size: 0.82rem; }
    .premium-masonry-zoom { top: 0.5rem; right: 0.5rem; }
}

    /* Skip link (visible on focus) */
    .skip-link { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
    .skip-link:focus { position: fixed; left: 20px; top: 20px; width: auto; height: auto; padding: 8px 12px; background: #0B4F6C; color: white; border-radius: 6px; z-index: 9999; text-decoration: none; }

            /* Review toast */
            .review-toast {
            position: fixed;
            right: 20px;
            bottom: 20px;
            background: linear-gradient(135deg, #1565C0, #1976D2);
            color: #fff;
            padding: 10px 14px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(3,7,18,0.4);
            opacity: 0;
            transform: translateY(12px);
            transition: opacity 220ms ease, transform 220ms ease;
            z-index: 1200;
            font-weight: 600;
            font-size: 14px;
            pointer-events: none;
        }

        .review-toast.show {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        /* Confirm modal specific tweaks (reusing success-popup styles) */
        .confirm-modal { padding: 22px; border-radius: 12px; }
        .confirm-modal #confirmTitle { font-size: 18px; color: #1565C0; margin-bottom:6px; }
        .confirm-modal #confirmMessage { margin: 0; }
        .confirm-modal .success-popup-btn { padding: 8px 18px; border-radius: 8px; }

        /* Beach Creatures */
        .beach-creatures {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .creature {
            position: absolute;
            font-size: 2rem;
            animation: floatCreature 15s ease-in-out infinite;
            opacity: 0.6;
        }

        @keyframes floatCreature {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            25% {
                transform: translateY(-20px) rotate(5deg);
            }
            50% {
                transform: translateY(0) rotate(0deg);
            }
            75% {
                transform: translateY(20px) rotate(-5deg);
            }
        }

        /* ═══════════════════════════════════════════════════════════
           ETHNOCENTRIC BRAND TEXT LOGO
        ═══════════════════════════════════════════════════════════ */
        @font-face {
            font-family: 'Ethnocentric';
            font-style: normal;
            font-weight: 400;
            src: local('Ethnocentric Rg'), local('Ethnocentric'), url('https://fonts.cdnfonts.com/s/6220/ethnocentric rg.woff') format('woff');
            font-display: swap;
        }

        .brand-text-logo {
            display: inline-flex;
            align-items: center;
            font-family: 'Ethnocentric Rg', 'Ethnocentric', sans-serif;
            font-size: 1.32rem;
            font-weight: 400;
            letter-spacing: 0.08em;
            color: #D9EEFF;
            background: linear-gradient(180deg, #FFFFFF 10%, #E2F2FF 45%, #A5D8FF 75%, #60A5FA 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            text-decoration: none;
            filter: drop-shadow(0 0 6px #6DB7FF) drop-shadow(0 0 14px #3B82F6) drop-shadow(0 2px 5px rgba(0, 0, 0, 0.8));
            transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
            user-select: none;
            white-space: nowrap;
            position: relative;
            padding-bottom: 2px;
        }

        .brand-text-logo::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 15%;
            right: 15%;
            height: 1.5px;
            background: linear-gradient(90deg, transparent, #6DB7FF 50%, transparent);
            opacity: 0.65;
            box-shadow: 0 0 8px #3B82F6;
            transition: all 0.35s ease;
            pointer-events: none;
        }

        .brand-text-logo:hover {
            transform: translateY(-2px) scale(1.02);
            background: linear-gradient(180deg, #FFFFFF 20%, #FFFFFF 50%, #93C5FD 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 8px #6DB7FF) drop-shadow(0 0 20px #3B82F6) drop-shadow(0 0 35px rgba(96, 165, 250, 0.6)) drop-shadow(0 3px 6px rgba(0, 0, 0, 0.9));
        }

        .brand-text-logo:hover::after {
            left: 5%;
            right: 5%;
            opacity: 1;
            box-shadow: 0 0 12px #6DB7FF, 0 0 20px #3B82F6;
        }

        @media (max-width: 768px) {
            .brand-text-logo {
                font-size: 0.95rem;
                letter-spacing: 0.05em;
            }
        }

        /* ═══════════════════════════════════════════════════════════
           FLOATING ACTION BUTTONS (CALL & WHATSAPP) - BOTTOM RIGHT
        ═══════════════════════════════════════════════════════════ */
        @keyframes floatActionIn {
            0% {
                opacity: 0;
                transform: translateY(45px) scale(0.85);
            }
            70% {
                opacity: 1;
                transform: translateY(-5px) scale(1.03);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes callPulseRing {
            0% {
                transform: scale(1);
                opacity: 0.6;
            }
            80% {
                transform: scale(1.65);
                opacity: 0;
            }
            100% {
                transform: scale(1.65);
                opacity: 0;
            }
        }

        @keyframes waPulseRing {
            0% {
                transform: scale(1);
                opacity: 0.6;
            }
            80% {
                transform: scale(1.65);
                opacity: 0;
            }
            100% {
                transform: scale(1.65);
                opacity: 0;
            }
        }

        @keyframes phoneWiggle {
            0%, 75%, 100% { transform: rotate(0deg); }
            78% { transform: rotate(14deg); }
            82% { transform: rotate(-12deg); }
            86% { transform: rotate(10deg); }
            90% { transform: rotate(-6deg); }
            94% { transform: rotate(2deg); }
        }

        /* Cluster Container */
        .floating-actions-cluster,
        #floating-actions-cluster {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 12px;
            pointer-events: none;
        }

        .floating-action-item {
            position: relative;
            pointer-events: auto;
            animation: floatActionIn 0.85s cubic-bezier(0.34, 1.56, 0.64, 1) both;
        }

        .floating-action-item:nth-child(1) {
            animation-delay: 0.9s;
        }

        .floating-action-item:nth-child(2) {
            animation-delay: 1.15s;
        }

        /* Pulse Rings */
        .call-float-pulse::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 999px;
            background: #0288D1;
            opacity: 0.55;
            animation: callPulseRing 2.4s ease-out infinite;
            pointer-events: none;
        }

        .wa-float-pulse::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 999px;
            background: #25D366;
            opacity: 0.55;
            animation: waPulseRing 2.4s ease-out infinite 0.6s;
            pointer-events: none;
        }

        /* ── Floating Call Button ── */
        #call-float-btn {
            display: inline-flex;
            align-items: center;
            gap: 0;
            text-decoration: none;
            border-radius: 999px;
            padding: 6px 20px 6px 6px;
            background: linear-gradient(135deg, #0288D1 0%, #0B4F6C 60%, #06364a 100%);
            box-shadow:
                0 4px 0 0 rgba(7, 47, 66, 0.55),
                0 8px 24px 0 rgba(2, 136, 209, 0.45),
                0 22px 48px -6px rgba(11, 79, 108, 0.35),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.3);
            transition:
                transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.22s ease;
            cursor: pointer;
            user-select: none;
            border: none;
            position: relative;
        }

        #call-float-btn:hover {
            transform: translateY(-3px) scale(1.04);
            box-shadow:
                0 2px 0 0 rgba(7, 47, 66, 0.45),
                0 16px 36px 0 rgba(2, 136, 209, 0.55),
                0 32px 64px -8px rgba(11, 79, 108, 0.40),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.35);
        }

        #call-float-btn:active {
            transform: translateY(1px) scale(0.98);
            box-shadow:
                0 2px 0 0 rgba(7, 47, 66, 0.50),
                0 4px 12px 0 rgba(2, 136, 209, 0.35),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.20);
        }

        .call-icon-circle {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow:
                0 2px 8px rgba(0, 0, 0, 0.18),
                inset 0 1px 2px rgba(255, 255, 255, 0.9);
        }

        .call-icon-circle svg {
            width: 22px;
            height: 22px;
            color: #0B4F6C;
            display: block;
            animation: phoneWiggle 3.2s ease-in-out infinite;
        }

        .call-label {
            font-family: 'Poppins', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #ffffff;
            padding-left: 12px;
            white-space: nowrap;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
        }

        /* ── Floating WhatsApp Button ── */
        #wa-float-btn {
            display: inline-flex;
            align-items: center;
            gap: 0;
            text-decoration: none;
            border-radius: 999px;
            padding: 6px 20px 6px 6px;
            background: linear-gradient(170deg, #34e87a 0%, #25D366 35%, #1EB857 70%, #178a42 100%);
            box-shadow:
                0 4px 0 0 rgba(14, 90, 40, 0.55),
                0 8px 24px 0 rgba(30, 184, 87, 0.45),
                0 22px 48px -6px rgba(10, 70, 30, 0.35),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.25);
            transition:
                transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.22s ease;
            cursor: pointer;
            user-select: none;
            border: none;
            position: relative;
        }

        #wa-float-btn:hover {
            transform: translateY(-3px) scale(1.04);
            box-shadow:
                0 2px 0 0 rgba(14, 90, 40, 0.45),
                0 16px 36px 0 rgba(30, 184, 87, 0.55),
                0 32px 64px -8px rgba(10, 70, 30, 0.40),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.30);
        }

        #wa-float-btn:active {
            transform: translateY(1px) scale(0.98);
            box-shadow:
                0 2px 0 0 rgba(14, 90, 40, 0.50),
                0 4px 12px 0 rgba(30, 184, 87, 0.35),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.20);
        }

        .wa-icon-circle {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow:
                0 2px 8px rgba(0, 0, 0, 0.18),
                inset 0 1px 2px rgba(255, 255, 255, 0.9);
        }

        .wa-icon-circle svg {
            width: 26px;
            height: 26px;
            display: block;
        }

        .wa-label {
            font-family: 'Poppins', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #ffffff;
            padding-left: 12px;
            white-space: nowrap;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.20);
        }

        /* ── Back to Top Button Alignment ── */
        .back-to-top {
            position: fixed;
            bottom: 24px;
            left: 24px;
            z-index: 999;
        }

        /* ── Mobile responsiveness ── */
        @media (max-width: 640px) {
            .floating-actions-cluster,
            #floating-actions-cluster {
                bottom: 16px;
                right: 14px;
                gap: 10px;
            }
            #call-float-btn, #wa-float-btn {
                padding: 5px 14px 5px 5px;
            }
            .call-icon-circle, .wa-icon-circle {
                width: 38px;
                height: 38px;
            }
            .call-icon-circle svg {
                width: 19px;
                height: 19px;
            }
            .wa-icon-circle svg {
                width: 22px;
                height: 22px;
            }
            .call-label, .wa-label {
                font-size: 0.62rem;
                letter-spacing: 0.12em;
                padding-left: 8px;
            }
            .back-to-top {
                bottom: 16px;
                left: 14px;
                width: 40px;
                height: 40px;
            }
        }

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION-LEVEL CLASSES (extracted from index.html inline <style> to remove
   duplicate declarations and reduce parse cost)
═══════════════════════════════════════════════════════════════════════════ */

.section-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #0288D1;
    margin-bottom: 0.75rem;
}

.feat-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1565C0, #0288D1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feat-icon svg {
    width: 26px;
    height: 26px;
    color: #fff;
}

.cta-band {
    background: linear-gradient(-45deg, #1565C0, #0288D1, #1976D2, #039BE5);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* ── 3D Activity Cards ─────────────────────────────────────────────────── */
.activity-3d-wrapper {
    perspective: 1200px;
}

.activity-3d-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 100%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 8px 48px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,200,80,0.08) inset;
    transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.45s ease;
    transform-style: preserve-3d;
    transform: rotateY(0deg) translateZ(0);
}

.activity-3d-card:hover {
    transform: rotateY(-6deg) translateY(-10px) translateZ(20px);
    box-shadow: 24px 32px 72px rgba(0,0,0,0.60), 0 0 40px rgba(251,191,36,0.18) inset;
}

.activity-3d-card .card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.activity-3d-card .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.activity-3d-card:hover .card-img-wrap img {
    transform: scale(1.08);
}

.activity-3d-card .card-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.65) 100%);
}

.activity-3d-card .card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: linear-gradient(135deg, rgba(251,191,36,0.92), rgba(245,124,0,0.85));
    color: #1a0a00;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 12px rgba(251,191,36,0.35);
}

.activity-3d-card .card-body {
    padding: 1.5rem;
}

.activity-3d-card .card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.activity-3d-card .card-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.activity-3d-card .card-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
    margin-bottom: 1.25rem;
}

.activity-3d-card .card-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(251,191,36,0.95), rgba(245,124,0,0.9));
    color: #1a0a00;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 18px rgba(251,191,36,0.3);
    letter-spacing: 0.05em;
}

.activity-3d-card .card-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(251,191,36,0.45);
}

.activity-3d-card .card-social-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.activity-3d-card .card-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.activity-3d-card .card-social-link:hover {
    color: #fbbf24;
}

.activity-3d-card .glow-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(251,191,36,0.7), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.activity-3d-card:hover .glow-line {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTENT VISIBILITY — defers rendering of below-fold sections
   Dramatically improves initial page paint time.
   contain-intrinsic-size prevents layout shift when sections are skipped.
═══════════════════════════════════════════════════════════════════════════ */
#about,
#premium-gallery,
.adventure-section,
.py-20.px-6.relative.overflow-hidden {
    content-visibility: auto;
    contain-intrinsic-size: 0 600px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PREFERS-REDUCED-MOTION
   Respects user OS accessibility setting to reduce/stop animations.
═══════════════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    /* Keep essential transitions functional but instant */
    .mobile-menu,
    .success-popup,
    .popup-overlay,
    .back-to-top,
    #navbar {
        transition: none !important;
    }

    /* Stop all looping animations */
    .cta-band,
    .hero-overlay,
    .hero-content::before,
    .shimmer-text::after,
    .cta-button,
    .bg-floating-shapes::before,
    .call-float-pulse::before,
    .wa-float-pulse::before,
    .call-icon-circle svg,
    .floating-action-item {
        animation: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   GRADIENT-SECONDARY (used by review avatar, referenced in script.js)
═══════════════════════════════════════════════════════════════════════════ */
.gradient-secondary {
    background-image: linear-gradient(135deg, #2E8B57 0%, #3da366 100%);
    color: #ffffff;
}