        /* --- CSS VARIABLES --- */
        :root {
            --primary-color: #ffffff;
            --accent-color: #d4af37;
            /* Gold accent */
            --bg-color: #0a0a0a;
            --card-bg: #161616;
            --text-main: #e0e0e0;
            --text-muted: #a0a0a0;
            --transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            --header-height: 80px;
        }

        /* --- BASE RESET --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* --- TYPOGRAPHY --- */
        h1,
        h2,
        h3,
        h4,
        .logo {
            font-family: 'Playfair Display', serif;
            font-weight: 400;
        }

        /* Premium Handwriting Font */
        .handwriting {
            font-family: 'Playfair Display', serif;
            color: var(--accent-color);
            text-transform: none !important;
            letter-spacing: 1px !important;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Scroll Reveal Utility Classes */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        section {
            padding: 100px 0;
        }

        /* --- NAVIGATION --- */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
        }

        nav {
            height: var(--header-height);
            display: flex;
            align-items: center;
            background: transparent;
            transition: var(--transition);
        }

        nav.scrolled {
            background: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            height: 70px;
        }

        nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .logo {
            width: 120px;
            height: auto;
        }

        .logo span {
            color: var(--accent-color);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
        }

        .nav-links a {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
            color: var(--text-main);
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-links a:hover {
            color: var(--accent-color);
        }

        /*.nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent-color);
            transition: var(--transition);*/
        }

        /*.nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }*/

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary-color);
        }

        .mobile-toggle {
            display: none;
            cursor: pointer;
            z-index: 1001;
            font-size: 1.5rem;
            color: var(--primary-color);
        }

        /* --- HERO SECTION --- */
        .hero {
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            background-color: var(--bg-color);
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.75)60%, rgba(0, 0, 0, 0.99)100%), url('island2.jpg') no-repeat center center/cover;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            padding: 0 20px;
        }

        .hero-greeting {
            font-size: 3.5rem;
            margin-bottom: -10px;
            opacity: 0;
            animation: fadeInUp 1s forwards 0.3s;
        }

        .hero-content h1 {
            font-size: clamp(3rem, 8vw, 5.5rem);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            opacity: 0;
            color: var(--primary-color);
            animation: fadeInUp 1s forwards 0.6s;
        }

        .hero-subtitle {
            font-size: 1rem;
            font-weight: 600;
            color: var(--accent-color);
            margin-bottom: 3rem;
            letter-spacing: 6px;
            text-transform: uppercase;
            opacity: 0;
            animation: fadeInUp 1s forwards 0.9s;
        }

        .btn {
            display: inline-block;
            padding: 1.2rem 3rem;
            border: 1px solid var(--accent-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            font-size: 0.8rem;
            position: relative;
            background: transparent;
            color: var(--primary-color);
            cursor: pointer;
            overflow: hidden;
            opacity: 0;
            animation: fadeInUp 1s forwards 1.2s;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: var(--accent-color);
            transition: var(--transition);
            z-index: -1;
        }

        .btn:hover::before {
            width: 100%;
        }

        .btn:hover {
            color: var(--bg-color);
        }

        /* --- ABOUT SECTION --- */
        .about-sect {
            background:
                linear-gradient(0deg, rgba(0, 0, 0, 0.85)50%, rgba(0, 0, 0, 0.95)100%), url('overlay.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .about-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 5rem;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            border-radius: 4px;
            filter: grayscale(20%) contrast(110%);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            width: 100%;
        }

        .about-image::after {
            content: '';
            position: absolute;
            top: 30px;
            left: 30px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--accent-color);
            z-index: -1;
            border-radius: 4px;
        }

        .about-text h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .about-greeting {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            display: block;
        }

        .about-text p {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-item h4 {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 0.2rem;
        }

        .stat-item p {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
        }

        /* --- SERVICES SECTION --- */
        .service-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 5rem;
        }

        .service {
            background: var(--card-bg);
            padding: 3rem 2rem;
            border-radius: 8px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.03);
            transition: var(--transition);
        }

        .service:hover {
            transform: translateY(-10px);
            border-color: rgba(212, 175, 55, 0.3);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }

        .service i {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 1.5rem;
        }

        .service h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .service p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* --- GALLERY SECTION (Upgraded) --- */
        #gallery {
            background: #1A1A1A;
        }

        .section-title {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-title h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .section-title .underline {
            width: 60px;
            height: 2px;
            background: var(--accent-color);
            margin: 0 auto;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 25% 10%;
            cursor: pointer;
            aspect-ratio: 3/4;
            /* Prevents Layout Shift */
            background-color: var(--card-bg);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.2) 50%, transparent 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2.5rem;
            opacity: 0;
            transition: var(--transition);
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-overlay h3 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
            transform: translateY(20px);
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .gallery-overlay p {
            color: var(--accent-color);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            transform: translateY(20px);
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
        }

        .gallery-item:hover .gallery-overlay h3,
        .gallery-item:hover .gallery-overlay p {
            transform: translateY(0);
        }

        /* --- VIDEO SECTION (Upgraded) --- */
        #video-section {
            background: #1A1A1A;
        }

        .video-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .video-card {
            position: relative;
            width: 100%;
            border-radius: 8px;
            overflow: hidden;
            background: #000;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: var(--transition);
        }

        .video-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
        }

        /* Responsive 16:9 Iframe Container */
        .video-iframe-container {
            position: relative;
            padding-bottom: 56.25%;
            /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
        }

        .video-iframe-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* --- BOOKING SECTION --- */

        #booking {
            background: #303030;
        }

        .booking-container {
            background: linear-gradient(rgba(26, 26, 26, 0.955)), url('overlay.webp') center/cover no-repeat;
            padding: 4rem;
            border-radius: 12px;
            max-width: 800px;
            margin: 0 auto;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.6rem;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--text-muted);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1.1rem;
            background: #1d1d1d;
            border: 1px solid #2a2a2a;
            color: white;
            border-radius: 6px;
            font-family: inherit;
            outline: none;
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--accent-color);
            background: #222;
        }

        .whatsapp-btn {
            background: #25d366;
            color: white;
            border: none;
            padding: 1.3rem;
            width: 100%;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            border-radius: 6px;
            font-size: 0.9rem;
            transition: var(--transition);
            margin-top: 1rem;
        }

        .whatsapp-btn:hover {
            background: #1ebe57;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
        }

        /* --- FOOTER (Completed & Improved) --- */
        footer {
            background: #272727;
            padding: 100px 0 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-about img {
            width: 150px;
            height: auto;
            margin-bottom: 1.5rem;
        }

        .footer-about p {
            color: var(--text-muted);
            max-width: 350px;
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .footer-title {
            font-size: 1rem;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary-color);
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }

        .location a {
            text-decoration: none;
        }

        .location p,
        .location-marker {
            color: var(--text-muted);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 1rem;
        }

        .location-marker i {
            color: var(--accent-color);
            width: 20px;
            text-align: center;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
        }

        .social-icons a {
            width: 45px;
            height: 45px;
            border: 2px solid var(--accent-color);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 1.2rem;
            color: var(--text-muted);
            transition: var(--transition);
        }

        .social-icons a:hover {
            background: var(--accent-color);
            color: var(--primary-color);
            border-color: var(--accent-color);
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* --- ANIMATIONS --- */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* --- RESPONSIVE DESIGN --- */
        @media (max-width: 992px) {
            .about-wrapper {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .about-image {
                margin: 0 auto;
                max-width: 600px;
            }

            .about-image::after {
                display: none;
            }

            /* Simplify on smaller screens */
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            nav.scrolled {
                height: 70px;
            }

            .mobile-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(10, 10, 10, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 2rem;
                transition: var(--transition);
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links a {
                font-size: 1.2rem;
            }

            section {
                padding: 70px 0;
            }

            .hero-content h1 {
                font-size: 3rem;
            }

            .hero-greeting {
                font-size: 2.8rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 1.5rem;
            }

            .booking-container {
                padding: 2rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            .footer-about p {
                margin: 0 auto;
            }

            .location-marker {
                justify-content: center;
            }

            .social-icons {
                justify-content: center;
            }
        }