  :root {
            --forest-green: #2d4a3e;
            --forest-light: #4a6b5a;
            --cream: #f8f6f0;
            --gold: #d4af37;
            --gold-light: #e6c352;
            --mist: rgba(255, 255, 255, 0.9);
            --shadow: rgba(45, 74, 62, 0.1);
        }

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

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--forest-green);
            background-color: var(--cream);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }

        /* Navbar Styles */
        .navbar-custom {
            background: var(--mist);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px var(--shadow);
            transition: all 0.3s ease;
        }

        .navbar-custom.scrolled {
            background: rgba(248, 246, 240, 0.95);
        }

        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--forest-green) !important;
        }

        .nav-link {
            color: var(--forest-green) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--gold) !important;
        }

        /* Hero Section */
        .hero-section {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('./src/assets/hero-resort.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            position: relative;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease;
        }

        .hero-content p {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero-buttons {
            animation: fadeInUp 1s ease 0.4s both;
        }

        .btn-hero {
            background: var(--gold);
            color: var(--forest-green);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            margin: 0 10px;
            transition: all 0.3s ease;
        }

        .btn-hero:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
        }

        .btn-outline-light {
            border: 2px solid white;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            margin: 0 10px;
            transition: all 0.3s ease;
        }

        .btn-outline-light:hover {
            background: white;
            color: var(--forest-green);
            transform: translateY(-2px);
        }

        /* Section Styles */
        .section-padding {
            padding: 100px 0;
        }

        .section-title {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--forest-green);
        }

        .section-divider {
            width: 80px;
            height: 4px;
            background: var(--gold);
            margin: 0 auto 3rem;
        }

        .card-elegant {
            background: white;
            border: none;
            border-radius: 15px;
            box-shadow: 0 10px 30px var(--shadow);
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .card-elegant:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(45, 74, 62, 0.15);
        }

        .card-elegant img {
            transition: transform 0.5s ease;
        }

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

        /* Room Cards */
        .room-card {
            margin-bottom: 2rem;
        }

        .room-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--gold);
            color: var(--forest-green);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.875rem;
            font-weight: 600;
        }

        .price {
            font-size: 2rem;
            font-weight: bold;
            color: var(--forest-green);
        }

        /* Amenities */
        .amenity-card {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px var(--shadow);
            margin-bottom: 2rem;
            transition: transform 0.3s ease;
        }

        .amenity-card:hover {
            transform: translateY(-5px);
        }

        .amenity-icon {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        /* Gallery */
        .gallery-container {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            height: 400px;
        }

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

        .gallery-controls {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.8);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--forest-green);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gallery-controls:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .gallery-prev {
            left: 1rem;
        }

        .gallery-next {
            right: 1rem;
        }

        /* Testimonials */
        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px var(--shadow);
            text-align: center;
            margin: 1rem;
        }

        .testimonial-stars {
            color: var(--gold);
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--forest-green);
        }

        /* Contact Form */
        .contact-form {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px var(--shadow);
        }

        .form-control {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 12px 15px;
            transition: border-color 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--gold);
            box-shadow: none;
        }

        /* Footer */
        .footer {
            background: var(--forest-green);
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-link {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: var(--gold);
        }

        .social-icon {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: var(--gold);
            color: var(--forest-green);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin: 0 5px;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            color: var(--forest-green);
        }

        /* Chatbot Styles */
        .chatbot-button {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background: var(--gold);
            color: var(--forest-green);
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .chatbot-button:hover {
            transform: scale(1.1);
            background: var(--gold-light);
        }

        .chatbot-window {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 350px;
            height: 450px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            display: none;
            flex-direction: column;
            z-index: 1001;
        }

        .chatbot-header {
            background: var(--forest-green);
            color: white;
            padding: 1rem;
            border-radius: 15px 15px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chatbot-messages {
            flex: 1;
            padding: 1rem;
            overflow-y: auto;
            max-height: 300px;
        }

        .message {
            margin-bottom: 1rem;
            padding: 0.75rem;
            border-radius: 10px;
            max-width: 60%;
        }

        .message.bot {
            background: #f8f9fa;
            margin-right: auto;
        }

        .message.user {
            background: var(--gold);
            color: var(--forest-green);
            margin-left: auto;
        }

        .chatbot-input {
            display: flex;
            padding: 1rem;
            border-top: 1px solid #dee2e6;
        }

        .chatbot-input input {
            flex: 1;
            border: 1px solid #dee2e6;
            border-radius: 25px;
            padding: 0.5rem 1rem;
            margin-right: 0.5rem;
        }


        .chatbot-input button {
            background: var(--gold);
            color: var(--forest-green);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 6px;
        }

        #micButton {
            margin-left: 0;
            margin-right: 6px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.8s ease;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .chatbot-window {
                width: 90%;
                right: 5%;
            }
            
            .hero-buttons .btn {
                display: block;
                margin: 10px auto;
                width: 200px;
            }
        }

.popup-content {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.popup-left {
  flex: 1 1 50%;
  padding: 2rem;
  z-index: 2;
  background-color: white; /* For readability */
}

.popup-right {
  flex: 1 1 50%;
  background-size: cover;
  background-position: center;
  min-height: 300px;
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

/* Close button default (white) */
.btn-close-custom {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  padding: 5px;
  filter: invert(1); /* white icon */
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .popup-content {
    flex-direction: column;
    position: relative;
    background-image: url('./src/assets/sorry.png'); /* your local image */
    background-size: cover;
    background-position: center;
  }

  .popup-left {
    flex: 1 1 100%;
    background-color: rgba(255, 255, 255, 0.85); /* translucent background over image */
    padding: 2rem;
  }

  .popup-right {
    display: none; /* hide image section, now shown as background */
  }

  .btn-close-custom {
    top: 5px;
    right: 5px;
    filter: invert(0); /* black icon */
  }
}


    /* Fade-in animation for elements */
  .fade-slide {
    opacity: 0;
    animation: fadeIn 0.6s forwards;
  }

  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }


.btn-whatsapp{
    background-color: #25D366; /* WhatsApp green */
    color: white;
    transition: transform 0.2s cubic-bezier(.4,2,.6,1), box-shadow 0.2s, background 0.2s;
    box-shadow: 0 2px 8px rgba(37,211,102,0.15);
}

.btn-whatsapp:hover {
    background-color: #075E54; /* Even darker WhatsApp green */
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(7,94,84,0.25);
}
        