:root {
            --primary: #0a3d3a;
            --accent: #2a9d8f;
            --light: #f8fdfc;
            --dark: #0f1e1d;
            --text: #1a2d2c;
            --gray: #64748b;
            --radius: 24px;
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: var(--text);
            background: var(--light);
            overflow-x: hidden;
        }

        /* Background Image */
        .background-image {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1540206395-68808572332f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=90');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            z-index: -2;
            filter: brightness(0.7);
        }

        .background-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(10, 61, 58, 0.85), rgba(10, 61, 58, 0.65) 50%, rgba(10, 61, 58, 0.85));
            z-index: -1;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 61, 58, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1.2rem 0;
            transition: var(--transition);
        }

        .nav.scrolled {
            padding: 0.7rem 0;
            background: rgba(10, 61, 58, 0.98);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

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

        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
        }

        .logo span {
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            position: relative;
            transition: var(--transition);
            padding: 0.5rem 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after,
        .nav-links a:focus::after {
            width: 100%;
        }

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

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Enhanced Hero Carousel */
        .hero-carousel {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .carousel-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            background: #000;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7) contrast(1.2);
            transition: filter 0.8s ease;
        }

        .carousel-slide.active img {
            filter: brightness(0.8) contrast(1.15);
        }

        .carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to bottom, 
                rgba(10, 61, 58, 0.85), 
                rgba(10, 61, 58, 0.65) 50%, 
                rgba(10, 61, 58, 0.85)
            );
            z-index: 1;
        }

        .carousel-caption {
            position: absolute;
            bottom: 20%;
            left: 10%;
            color: white;
            z-index: 2;
            max-width: 600px;
            text-align: left;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.3s;
        }

        .carousel-slide.active .carousel-caption {
            opacity: 1;
            transform: translateY(0);
        }

        .carousel-caption h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .carousel-caption p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        }

        .carousel-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            z-index: 10;
        }

        .carousel-progress-bar {
            height: 100%;
            background: var(--accent);
            width: 0%;
            transition: width 4s linear;
        }

        .carousel-slide.active .carousel-progress-bar {
            width: 100%;
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: #fff;
            z-index: 2;
            width: 90%;
            max-width: 1000px;
        }

        .hero-content h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 6.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
            letter-spacing: -2px;
            background: linear-gradient(45deg, #fff, var(--accent), #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 5s ease-in-out infinite;
            background-size: 200% 200%;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero-content p {
            font-size: 1.6rem;
            margin-bottom: 3rem;
            max-width: 700px;
            margin-inline: auto;
            font-weight: 500;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--accent);
            color: #fff;
            padding: 18px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(42, 157, 143, 0.5);
            text-decoration: none;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background: #21867a;
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 15px 40px rgba(42, 157, 143, 0.6);
        }

        .btn-small {
            padding: 12px 25px;
            font-size: 0.9rem;
        }

        .carousel-prev, .carousel-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(12px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            color: #fff;
            font-size: 1.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: var(--transition);
        }

        .carousel-prev {
            left: 2rem;
        }

        .carousel-next {
            right: 2rem;
        }

        .carousel-prev:hover, .carousel-next:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-dots {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .carousel-dot {
            width: 14px;
            height: 14px;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
        }

        .carousel-dot.active {
            background: var(--accent);
            transform: scale(1.3);
            box-shadow: 0 0 15px rgba(42, 157, 143, 0.7);
        }

        /* Sections */
        .section {
            padding: 120px 0;
            position: relative;
        }

        .section-bg {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(10px);
            border-radius: var(--radius);
            padding: 4rem 3rem;
            margin: 0 1rem;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.8rem;
            color: var(--primary);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), #21867a);
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem;
            font-size: 1.2rem;
            color: var(--gray);
            font-weight: 500;
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
            transform: perspective(1200px) rotateY(-6deg);
            transition: var(--transition);
        }

        .about-image:hover {
            transform: perspective(1200px) rotateY(0) scale(1.04);
        }

        .about-image img {
            width: 100%;
            transition: transform 0.8s ease;
        }

        .about-image:hover img {
            transform: scale(1.1);
        }

        .about-text h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.8rem;
            margin-bottom: 2rem;
            color: var(--primary);
        }

        .about-text p {
            margin-bottom: 1.8rem;
            font-size: 1.15rem;
            color: var(--text);
            line-height: 1.8;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 5rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.9);
            padding: 3rem 2.5rem;
            border-radius: 20px;
            text-align: center;
            border: 1px solid rgba(10, 61, 58, 0.1);
            transition: var(--transition);
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-card:hover {
            transform: translateY(-20px);
            background: #fff;
            box-shadow: 0 25px 50px rgba(42, 157, 143, 0.2);
        }

        .feature-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 1.8rem;
            background: linear-gradient(135deg, var(--accent), #21867a);
            color: #fff;
            border-radius: 50%;
            font-size: 2.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.15);
        }

        .feature-card h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        /* Enhanced Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .gallery-image {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
            cursor: pointer;
            aspect-ratio: 4/3;
        }

        .gallery-image:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 50px rgba(42, 157, 143, 0.3);
        }

        .gallery-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-image:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(10, 61, 58, 0.8));
            color: white;
            padding: 1rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-image:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-image h4 {
            margin: 0;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
        }

        /* Accommodation Section */
        .accommodation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .accommodation-card {
            background: rgba(255, 255, 255, 0.9);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .accommodation-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(42, 157, 143, 0.2);
        }

        .accommodation-image {
            height: 250px;
            overflow: hidden;
        }

        .accommodation-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .accommodation-content {
            padding: 2rem;
        }

        .accommodation-content h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .accommodation-content p {
            margin-bottom: 1.5rem;
            color: var(--text);
        }

        .accommodation-features {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .accommodation-feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: var(--gray);
        }

        .accommodation-feature i {
            color: var(--accent);
        }

        .accommodation-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 1.5rem;
        }

        /* Visit Section */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .info-card {
            background: rgba(255, 255, 255, 0.9);
            padding: 3.5rem 2.5rem;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid rgba(10, 61, 58, 0.1);
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .info-card:hover {
            transform: translateY(-12px);
            background: #fff;
            box-shadow: 0 25px 50px rgba(42, 157, 143, 0.2);
        }

        .info-card .icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 2rem;
            background: var(--accent);
            color: #fff;
            border-radius: 50%;
            font-size: 2.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .info-card:hover .icon {
            transform: scale(1.1);
        }

        .info-card h3 {
            font-family: 'Cormorant Garamond', serif;
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }

        /* Contact Section */
        .contact-content {
            text-align: center;
        }

        .contact-content h2 {
            color: var(--primary);
            margin-bottom: 2.5rem;
            font-size: 3.2rem;
        }

        .contact-info {
            margin: 3rem 0;
            font-size: 1.25rem;
            line-height: 2.2;
            max-width: 600px;
            margin-inline: auto;
            color: var(--text);
        }

        .contact-info a {
            color: var(--accent);
            text-decoration: underline;
            transition: color 0.3s ease;
        }

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

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            margin-top: 3.5rem;
        }

        .social-links a {
            width: 70px;
            height: 70px;
            background: rgba(10, 61, 58, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--primary);
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--accent);
            color: #fff;
            transform: translateY(-10px);
        }

        /* Footer */
        footer {
            background: var(--primary);
            color: #94a3b8;
            text-align: center;
            padding: 5rem 0;
            font-size: 1rem;
        }

        .footer-links {
            margin-top: 2rem;
            display: flex;
            justify-content: center;
            gap: 2.5rem;
        }

        .footer-links a {
            color: var(--accent);
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #fff;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 5rem;
            }
            .hero-content p {
                font-size: 1.4rem;
            }
            .about-grid, .features {
                grid-template-columns: 1fr;
                gap: 4rem;
            }
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(10, 61, 58, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding: 0;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                transform: translateX(-100%);
                opacity: 0;
                visibility: hidden;
                z-index: 999;
            }

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

            .nav-links a {
                font-size: 1.3rem;
                padding: 1.2rem 2rem;
                display: block;
                width: 100%;
                text-align: center;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .hero-content h1 {
                font-size: 3.2rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .carousel-prev, .carousel-next {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
            
            .carousel-prev {
                left: 1rem;
            }
            
            .carousel-next {
                right: 1rem;
            }
            
            .container {
                padding: 0 1rem;
            }

            .section-bg {
                padding: 2rem 1.5rem;
                margin: 0;
            }
        }


        