:root {
    /* Primary Colors */
    --color-primary: #C7C0BA;       /* Green - Main brand color */
    --color-primary-dark: #80766c; /* Light green - Secondary brand color */
    --color-primary-darker: #575049;
    
    /* Text Colors */
    --color-text: #505050;          /* Main text color */
    --color-heading: #3a3a3a;       /* Heading text color */
    --color-text-light: #c5c5c5;    /* Light text color used in footer */
    
    /* Background Colors */
    --color-bg-primary: #ffffff;    /* Primary background color */
    --color-bg-secondary: #e8dfd8;  /* f8f8f8 Secondary background color */
    --color-bg-form: #fcfcfc;
    --color-bg-dark: #3a3a3a;       /* Dark background (footer) */
    
    /* UI Colors */
    --color-border: #cecece;        /* Border color */
    --color-shadow: rgba(0, 0, 0, 0.1); /* Shadow color */
    --color-rating: #f7b731;        /* Star rating color */
    
    /* Overlay Colors */
    --color-overlay: rgba(0, 0, 0, 0.4);    /* Image overlay */
    --color-overlay-dark: rgba(0, 0, 0, 0.9); /* Modal overlay */
    --color-modal-btn: rgba(255, 255, 255, 0.1); /* Modal button */
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cormorant Garamond', serif;
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    /* font-family: 'Montserrat', sans-serif; */
    font-weight: 300;
    color: var(--color-text);
    background-color: var(--color-bg-secondary);
    line-height: 1.6;
    overflow-x: hidden;
  }
  h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: var(--color-heading);
  }
  h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
  }
  h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
  }
  h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 1px;
    background-color: var(--color-primary-dark);
  }
  h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.8;
  }
  a {
    text-decoration: none;
    color: var(--color-primary-dark);
    transition: all 0.3s ease;
  }
  a:hover {
    color: var(--color-primary-darker);
  }
  img {
    max-width: 100%;
    height: auto;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  .center-text {
    text-align: center;
  }
  .hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
  }
  .show {
    opacity: 1;
    transform: translateY(0);
  }
  .btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .btn:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-primary);
  }
  /* Header Styles */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.4s ease;
  }
  .header-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 10px var(--color-shadow);
    padding: 1rem 0;
  }
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--color-heading);
    letter-spacing: 1px;
  }
  .logo span {
    color: var(--color-primary);
  }
  .logo-image {
    max-height: 80px;
    transition: var(--transition);
    filter:invert(1);
}
.header-scrolled .logo-image {
    filter:none;
}
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 35px;
  border: none;
  outline: none;
  background-color: transparent;
  color:var(--color-primary);
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn:hover {
  color: var(--color-primary-dark);
}
  .nav-links {
    display: flex;
    list-style: none;
  }
  .nav-links li {
    margin-left: 2rem;
  }
  .nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-bg-primary);
  }
  .header-scrolled .nav-links a {
    color: var(--color-heading);
}
  .nav-links a:hover {
    color: var(--color-primary);
  }
  .hamburger {
    display: none;
    cursor: pointer;
  }
  .hamburger div {
    width: 25px;
    height: 2px;
    background-color: var(--color-bg-primary);
    margin: 5px 0;
    transition: all 0.3s ease;
  }
  .header-scrolled .hamburger div {
    background-color: var(--color-heading);
  }
  
  /* Hero Section */
  .hero {
    height: 100vh;
    background-image: linear-gradient(var(--color-overlay), var(--color-overlay)), url('../images/233.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--color-bg-primary);
    position: relative;
  }
  .hero-content {
    max-width: 600px;
  }
  .hero-title {
    font-size: 3.5rem;
    margin-bottom: 0rem;
    color: var(--color-bg-primary);
  }
  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
  }
  .hero-btn {
    border-color: var(--color-bg-primary);
    color: var(--color-bg-primary);
  }
  .hero-btn:hover {
    background-color: var(--color-bg-primary);
    color: var(--color-heading);
  }
  .intro {
    padding: 8rem 15% 14rem;
    position: relative;
    background-color: var(--color-bg-primary);
}

.intro-content {
    max-width: 800px;
}

.intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 400;
}

.accent {
    color: var(--color-primary-dark);
    font-style: italic;
}

.decorative-line {
    position: absolute;
    right: 10%;
    top: 50%;
    width: 200px;
    display: block;
    color: var(--color-primary-dark);
}

.editorial {
    width: 60%; 
    height: 270px; 
    object-fit: cover; 
    margin-top:2rem;
}
.strong{
    font-weight:600;
}
  /* Welcome Section */
  .welcome {
    padding: 8rem 0;
    background-color: var(--color-bg-primary);
  }
  .welcome-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  .welcome-title {
    margin-bottom: 2rem;
    position: relative;
  }
  .welcome-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--color-primary-dark);
  }
  /* About Section */
  .about {
    padding: 8rem 0;
    background-color: var(--color-bg-primary);
  }
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .about-img {
    position: relative;
    overflow: hidden;
    height: 100%;
  }
  .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .about-text h2:after {
    left: 0;
  }
  /* Villa Features Section */
  .features {
    padding: 8rem 0;
    background-color: var(--color-bg-primary);
  }
  .features-title {
    text-align: center;
    margin-bottom: 4rem;
  }
  .features-title:after {
    left: 50%;
    transform: translateX(-50%);
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  .feature-item {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: default;
    }
  .feature-icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
  }
  .feature-title {
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
  /* Gallery Section */
/* Gallery styling */
.gallery {
    padding: 8rem 0;
    background-color: var(--color-bg-secondary);
    position: relative;
  }
  
  .gallery-title {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .gallery-title:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Carousel Container */
  .gallery-carousel {
    max-width: 100%;
    position: relative;
    margin: 0 auto;
  }
  
  .gallery-carousel-container {
    display: flex;
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
  }
  
  .gallery-slide {
    min-width: 100%;
    transition: transform 0.5s ease;
    display: flex;
    gap: 1.5rem;
  }
  
  .gallery-item {
    position: relative;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    border-radius: 0px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
  }
  
  /* Three items per slide for desktop */
  .gallery-slide .gallery-item {
    flex-basis: calc(33.333% - 1rem);
  }
  
  .gallery-item:hover {
    transform: translateY(-5px);
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .gallery-item:hover img {
    transform: scale(1.05);
  }
  
  .gallery-item:hover .gallery-item-title {
    opacity: 1;
  }
  
  /* Navigation Controls */
  .gallery-carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  
  .gallery-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .gallery-nav-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-primary);
    border-color: var(--color-primary);
  }
  
  .gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    max-width: 70%;
  }
  
  .gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-border);
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0.25rem;
  }
  
  .gallery-dot.active {
    background-color: var(--color-primary);
  }
  
  /* Modal styles */
  .gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-overlay-dark);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
  }
  
  .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--color-bg-primary);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
  }
  
  .modal-close:hover {
    color: var(--color-primary);
  }
  
  .modal-content {
    width: 80%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .modal-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  
  .modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-modal-btn);
    color: var(--color-bg-primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .modal-nav-btn:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-bg-primary);
    border-color: var(--color-primary);
  }
  
  .modal-nav-btn.prev {
    left: 30px;
  }
  
  .modal-nav-btn.next {
    right: 30px;
  }

  /* Facilities Section */
  /* Updated Facilities Section */
  .facilities {
    padding: 8rem 0;
    background-color: var(--color-bg-primary);
  }
  .facilities-title {
    text-align: center;
    margin-bottom: 4rem;
  }
  .facilities-title:after {
    left: 50%;
    transform: translateX(-50%);
  }
  .facilities-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
    align-items: center;
  }
  .facilities-row:last-child {
    margin-bottom: 0;
  }
  .facilities-row.reverse {
    direction: rtl;
  }
  .facilities-row.reverse .facilities-content {
    direction: ltr;
  }
  .facilities-content h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
  }
  .facilities-content h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 1px;
    background-color: var(--color-primary-dark);
  }
  .facilities-image {
    overflow: hidden;
    border-radius: 0px;
  }
  .facilities-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .facilities-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .facilities-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 1.2rem;
  }
  .facilities-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-primary);
  }
  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  .amenity-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .amenity-item i {
    font-size: 2rem;
    color: var(--color-primary);
  }
  .amenity-item span {
    font-size: 1.2rem;
  }
  .service-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .service-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .service-item i {
    font-size: 2rem;
    color: var(--color-primary);
  }
  .service-item h4 {
    margin-bottom: 0.5rem;
    color: var(--color-heading);
    font-size: 1.4rem;
  }
  .service-item p {
    margin: 0;
    font-size: 1.2rem;
  }

  /* Awards Section */
  .awards {
    padding: 8rem 0;
    background-color: var(--color-bg-secondary);
  }
  .awards-title {
    text-align: center;
    margin-bottom: 4rem;
  }
  .awards-title:after {
    left: 50%;
    transform: translateX(-50%);
  }
  .awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
}
  img.award {
    max-width: 50%;
    height: auto;
    justify-content: center;
    justify-self: flex-start;
}
img.award.award-right {
        justify-self: flex-end;

}
  /* Contact Section */
  .contact {
    padding: 8rem 0;
    background-color: var(--color-bg-primary);
  }
  .contact-title {
    text-align: center;
    margin-bottom: 4rem;
  }
  .contact-title:after {
    left: 50%;
    transform: translateX(-50%);
  }
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
  }
  .form-group {
    margin-bottom: 1.5rem;
  }
  .form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-form);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
  }
  .form-control:focus {
    outline: none;
    border-color: var(--color-primary-dark);
  }
  textarea.form-control {
    height: 150px;
    resize: none;
  }
  .form-submit {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: var(--color-primary);
    color: var(--color-bg-primary);
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }
  .form-submit:hover {
    background-color: var(--color-primary-dark);
  }
  /* Footer */
  footer {
    padding: 4rem 0;
    background-color: var(--color-bg-dark);
    color: var(--color-bg-primary);
  }
  .footer-col {
    align-self: center;
  }
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
  }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--color-bg-primary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
  }
  .footer-text, .footer-links li {
    color: var(--color-text-light);
  }
  .footer-social {
    display: flex;
    list-style: none;
  }
  .footer-social li {
    margin-right: 1rem;
  }
  .footer-social a {
    color: var(--color-bg-primary);
    font-size: 1.2rem;
  }
  .footer-social a:hover {
    color: var(--color-primary-dark);
  }
  .footer-heading {
    font-size: 1.5rem;
    color: var(--color-bg-primary);
    margin-bottom: 1.5rem;
    position: relative;
  }
  .footer-heading:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: var(--color-primary-dark);
  }
  .footer-links {
    list-style: none;
  }
  .footer-links li {
    margin-bottom: 0.8rem;
  }
  .footer-links a {
    color: var(--color-text-light);
    transition: all 0.3s ease;
  }
  .footer-links a:hover {
    color: var(--color-bg-primary);
    padding-left: 5px;
  }
  .footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.9rem;
  }
  .footer-bottom a {
    color: var(--color-primary-dark);
  }

  /* Testimonials Section */
  .testimonials {
    padding: 8rem 0;
    background-color: var(--color-bg-secondary);
    position: relative;
  }
  .testimonials-title {
    text-align: center;
    margin-bottom: 4rem;
  }
  .testimonials-title:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .testimonials-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }

  .testimonials-container {
    display: flex;
    transition: transform 0.5s ease;
  }

  .testimonial-item {
    min-width: 100%;
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--color-bg-primary);
    border-radius: 0px;
  }

  .testimonial-quote {
    margin-bottom: 2rem;
    position: relative;
  }

  .testimonial-quote .fa-quote-left,
  .testimonial-quote .fa-quote-right {
    font-size: 1.5rem;
    color: var(--color-primary);
    opacity: 0.3;
  }

  .testimonial-quote .fa-quote-left {
    position: absolute;
    top: -10px;
    left: -10px;
  }

  .testimonial-quote .fa-quote-right {
    position: absolute;
    bottom: -10px;
    right: -10px;
  }

  .testimonial-quote p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 1rem 0;
  }

  .testimonial-author h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    color: var(--color-heading);
  }

  .testimonial-author p {
    font-size: 0.9rem;
    color: var(--color-primary-dark);
    margin: 0;
  }

  .testimonials-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
  }

  .testimonials-dots {
    display: flex;
    justify-content: center;
    margin: 0 20px;
  }

  .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-border);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .dot.active {
    background-color: var(--color-primary);
  }

  .nav-arrow {
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
  }

  .nav-arrow:hover {
    color: var(--color-primary-dark);
  }

  .progress-bar {
    height: 3px;
    background-color: var(--color-border);
    width: 100%;
    max-width: 800px;
    margin: 20px auto 0;
    position: relative;
  }

  .progress-indicator {
    height: 100%;
    background-color: var(--color-primary);
    width: 0;
    transition: width 0.5s linear;
  }
  /* Map Section */
  .map {
    padding: 0;
    background-color: var(--color-bg-primary);
  }
  .map-container {
    width: 100%;
    height: 450px;
  }
  /* Form Styling Updates */
  .date-inputs {
    display: flex;
    gap: 1rem;
  }
  .date-inputs .form-control {
    width: 50%;
  }
  /* Media Queries */

@media (max-width: 1024px) {
    h1 {
      font-size: 3rem;
    }
    h2 {
      font-size: 2rem;
    }
    .about-content, .facilities-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .facilities-row {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
    .amenities-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    .intro {
        padding: 6rem 10% 3rem;
    }
   
    .decorative-line {
        width: 150px;
        right: 5%;
    }
    .gallery-slide .gallery-item {
        flex-basis: calc(50% - 0.75rem);
      }
      
      .gallery-item {
        height: 300px;
      }
  }
  @media (max-width: 768px) {
    body {
      font-size: 0.9rem;
    }
    h1 {
      font-size: 2.5rem;
    }
    h2 {
      font-size: 1.8rem;
    }
    .hamburger {
      display: block;
    }
    .nav-links {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: var(--color-bg-primary);
      flex-direction: column;
      align-items: center;
      padding: 2rem 0;
      box-shadow: 0 10px 15px var(--color-shadow);
      transform: translateY(-150%);
      transition: transform 0.3s ease;
      z-index: 999;
    }
    .nav-links.active a {
        color: var(--color-heading);
    }
    .nav-links.active {
      transform: translateY(0);
    }
    .nav-links li {
      margin: 1rem 0;
    }
    .welcome, .about, .features, .gallery, .facilities, .awards, .contact {
      padding: 4rem 0;
    }
    img.award {
        max-width: 90%;
    }
    .facilities-list {
      grid-template-columns: 1fr;
    }
    .amenities-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    .service-item {
      flex-direction: column;
      gap: 1rem;
      align-items: center;
      text-align: center;
    }
    .testimonial-item {
        padding: 2rem 1rem;
      }
      .testimonial-quote p {
        font-size: 1rem;
      }
    .date-inputs {
    flex-direction: column;
    gap: 1rem;
    }
    .date-inputs .form-control {
    width: 100%;
    }
    .editorial {
        width: 80%; 
    }
    .intro h2 {
        font-size: 1.8rem;
    }
   
    .decorative-line {
        display: none;
    }
    .gallery {
        padding: 4rem 0;
      }
      
      .gallery-slide {
        gap: 0;
      }
      
      .gallery-slide .gallery-item {
        flex-basis: 100%;
        height: 280px;
      }
      
      .modal-content {
        width: 90%;
      }
      
      .modal-nav-btn {
        width: 40px;
        height: 40px;
      }
      
      .modal-nav-btn.prev {
        left: 10px;
      }
      
      .modal-nav-btn.next {
        right: 10px;
      }
      
      .gallery-carousel-nav {
        gap: 1rem;
      }
      
      .gallery-nav-btn {
        width: 40px;
        height: 40px;
      }
  }

  @media (max-width: 480px) {
    .amenities-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    h1 {
      font-size: 2rem;
    }
    h2 {
      font-size: 1.5rem;
    }
    .container {
      padding: 0 1rem;
    }
    .hero-content {
      text-align: center;
    }
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }