
        :root {
            --primary: #2A9D8F;
            --secondary: #E76F51;
            --accent: #E9C46A;
            --dark: #264653;
            --light: #F8F9FA;
            --gray: #6C757D;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--light);
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header and Contact Info */
        .contact-info {
            background: linear-gradient(90deg, var(--primary), var(--dark));
            color: white;
            padding: 10px 0;
            font-size: 14px;
        }
        
        .contact-info-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .contact-info a {
            color: white;
            text-decoration: none;
            margin-right: 20px;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
        }
        
        .contact-info a:hover {
            color: var(--accent);
            transform: translateY(-2px);
        }
        
        .contact-info i {
            margin-right: 8px;
            font-size: 16px;
        }
        
        /* Navigation */
        header {
            background-color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 28px;
            font-weight: 800;
            color: var(--dark);
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            color: var(--primary);
            margin-right: 10px;
            font-size: 32px;
        }
        
        .logo span {
            color: var(--primary);
            font-weight: 700;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin: 0 12px;
            position: relative;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            transition: color 0.3s;
            padding: 8px 0;
            position: relative;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary);
            transition: width 0.3s;
            border-radius: 3px;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .nav-menu a:hover {
            color: var(--primary);
        }
        
        .book-now-btn {
            background: linear-gradient(135deg, var(--primary), var(--dark));
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 8px rgba(42, 157, 143, 0.3);
            display: flex;
            align-items: center;
        }
        
        .book-now-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(42, 157, 143, 0.4);
        }
        
        .book-now-btn i {
            margin-left: 8px;
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 24px;
            color: var(--dark);
        }
        
        /* Banner Section */
        .banner {
            background: linear-gradient(rgba(38, 70, 83, 0.7), rgba(38, 70, 83, 0.7)), url('./images/banner.avif');
            background-size: cover;
            background-position: center;
            height: 85vh;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(42, 157, 143, 0.3), rgba(231, 111, 81, 0.3));
            z-index: 1;
        }
        
        .banner-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
            padding: 0 20px;
        }
        
        .banner h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .banner p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .banner-btn {
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            color: white;
            border: none;
            padding: 15px 35px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 8px rgba(231, 111, 81, 0.3);
            font-size: 1.1rem;
        }
        
        .banner-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(231, 111, 81, 0.4);
        }
        
        /* About Section */
        .about {
            padding: 50px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: var(--gray);
        }
        
        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 30px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
        }
        
        .feature-icon {
            background-color: var(--primary);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 14px;
        }
        
        .about-image {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transform: perspective(1000px) rotateY(-5deg);
            transition: all 0.5s;
        }
        
        .about-image:hover {
            transform: perspective(1000px) rotateY(0deg);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Rooms Section */
        .rooms {
            padding: 50px 0;
            background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
        }
        
        .rooms-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }
        
        .room-card {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.4s;
            position: relative;
        }
        
        .room-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .room-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .room-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .room-card:hover .room-image img {
            transform: scale(1.1);
        }
        
        .room-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .room-details {
            padding: 25px;
        }
        
        .room-details h3 {
            color: var(--dark);
            margin-bottom: 10px;
            font-size: 1.4rem;
        }
        
        .room-price {
            color: var(--primary);
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 15px;
        }
        
        .room-features {
            list-style: none;
            margin-bottom: 20px;
        }
        
        .room-features li {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            color: var(--gray);
        }
        
        .room-features i {
            color: var(--primary);
            margin-right: 10px;
            font-size: 14px;
        }
        
        .room-btn {
            background: linear-gradient(135deg, var(--primary), var(--dark));
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .room-btn i {
            margin-left: 8px;
        }
        
        .room-btn:hover {
            background: linear-gradient(135deg, var(--dark), var(--primary));
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(42, 157, 143, 0.3);
        }
        
        /* Features Section */
        .features {
            padding: 50px 0;
            background-color: white;
        }
        
        .features-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .feature-box {
            text-align: center;
            padding: 40px 30px;
            border-radius: 15px;
            background: linear-gradient(to bottom, white, #f8f9fa);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .feature-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(135deg, var(--primary), var(--dark));
            opacity: 0.05;
            transition: height 0.5s;
            z-index: -1;
        }
        
        .feature-box:hover::before {
            height: 100%;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 25px;
            background: linear-gradient(135deg, var(--primary), var(--dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .feature-box h3 {
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .feature-box p {
            color: var(--gray);
        }
        
        /* Gallery Section */
        .gallery {
            padding: 50px 0;
            background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
        }
        
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.4s;
            cursor: pointer;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        
        .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(38, 70, 83, 0.9));
            color: white;
            padding: 30px 20px 20px;
            transform: translateY(100%);
            transition: transform 0.4s;
        }
        
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }
        
        .gallery-overlay h3 {
            margin-bottom: 8px;
            font-size: 1.3rem;
        }
        
        .gallery-overlay p {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        /* Experts Section */
        .experts {
            padding: 50px 0;
            background: linear-gradient(rgba(38, 70, 83, 0.85), rgba(38, 70, 83, 0.85)), url('./images/bg.avif');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            text-align: center;
            position: relative;
        }
        
        .experts-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .experts-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .experts-content p {
            margin-bottom: 40px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .btn-group {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 15px 35px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            color: white;
            border: none;
            box-shadow: 0 4px 8px rgba(231, 111, 81, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(231, 111, 81, 0.4);
        }
        
        .btn-outline {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .btn-outline:hover {
            background-color: white;
            color: var(--primary);
            transform: translateY(-3px);
        }
        
        /* Contact Form */
        .contact {
            padding: 50px 0;
            background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
        }
        
        .contact-form {
            max-width: 700px;
            margin: 0 auto;
            background-color: white;
            padding: 50px;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }
        
        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: 'Open Sans', sans-serif;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.1);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background: linear-gradient(135deg, var(--primary), var(--dark));
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            font-size: 1.1rem;
            box-shadow: 0 4px 8px rgba(42, 157, 143, 0.3);
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(42, 157, 143, 0.4);
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--dark), #1a3340);
            color: white;
            padding: 80px 0 0;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .footer-logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 28px;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .footer-logo-icon {
            color: var(--primary);
            margin-right: 10px;
            font-size: 32px;
        }
        
        .footer-about {
            margin-bottom: 25px;
            color: #cbd3da;
            line-height: 1.8;
        }
        
        .footer-heading {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            color: white;
        }
        
        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 3px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #cbd3da;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
        }
        
        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }
        
        .footer-links i {
            margin-right: 10px;
            font-size: 14px;
            color: var(--primary);
        }
        
        .footer-contact li {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            color: #cbd3da;
        }
        
        .footer-contact i {
            color: var(--primary);
            margin-right: 15px;
            margin-top: 5px;
            font-size: 18px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding: 25px 0;
            margin-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #cbd3da;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .banner h1 {
                font-size: 2.8rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                order: -1;
                margin-bottom: 40px;
                transform: perspective(1000px) rotateX(5deg);
            }
            
            .about-image:hover {
                transform: perspective(1000px) rotateX(0deg);
            }
        }
        
        @media (max-width: 768px) {
            .contact-info-container {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background-color: white;
                width: 100%;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
                padding: 30px 0;
                transition: 0.4s;
                z-index: 99;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
                text-align: center;
            }
            
            .hamburger {
                display: block;
            }
            
            .banner {
                height: 70vh;
            }
            
            .banner h1 {
                font-size: 2.2rem;
            }
            
            .btn-group {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-form {
                padding: 30px;
            }
            
            .gallery-container {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
            }
            
            .gallery-item img {
                height: 250px;
            }
        }
        
        @media (max-width: 576px) {
            .banner {
                height: 60vh;
            }
            
            .banner h1 {
                font-size: 1.8rem;
            }
            
            .banner p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .contact-form {
                padding: 20px;
            }
            
            .footer-container {
                gap: 30px;
            }
            
            .gallery-container {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .gallery-item img {
                height: 200px;
            }
            
            .gallery-overlay {
                padding: 20px 15px 15px;
            }
            
            .gallery-overlay h3 {
                font-size: 1.1rem;
            }
        }
