/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #464933;
  color: #3a4a1a;
  line-height: 1.6;
}

a {
  color: #3a4a1a;
}

header {
  background-color: #f9f9f0;
  box-shadow: none;
}

.navbar {
  padding: 1rem 3rem;
}

.logo {
  color: #3a4a1a;
  font-weight: 700;
  font-size: 1.8rem;
}

.nav-links li a {
  color: #3a4a1a;
  font-weight: 600;
}

.nav-links li a:hover,
.nav-links li a:focus {
  background-color: transparent;
  color: #6a7a3a;
  border-radius: 0;
}

/* Remove all list-style and custom icons from amenities list */
.amenities-list {
  list-style: none;
  padding-left: 0;
}

.amenities-list li {
  margin-left: 0;
  padding-left: 0;
  position: relative;
  margin-bottom: 0.5rem;
  color: #4a5a1a;
  list-style-type: none;
  list-style: none !important;
}

.amenities-list li::before {
  content: none !important;
}


.location-map {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(106, 122, 58, 0.2);
}

.location-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 12px;
}

a {
  text-decoration: none;
  color: inherit;
}

header {
  background-color: #5a5a3d;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  vertical-align: middle;
  display: inline-block;
  max-height: 50px;
  height: 50px;
  width: auto;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #d9cbb6;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  padding: 0.75rem 1rem;
  display: block;
  color: #d9cbb6;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a:focus {
  background-color: #7a7a52;
  border-radius: 4px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #5a5a3d;
  min-width: 160px;
  top: 100%;
  left: 0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1001;
}

.dropdown-content li a {
  padding: 0.75rem 1rem;
  font-weight: 400;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  display: block;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle .bar {
  height: 3px;
  width: 25px;
  background-color: #d9cbb6;
  margin: 4px 0;
  border-radius: 2px;
}

/* Banner styles */
.home-section {
  position: relative;
  height: 80vh;
  max-height: 700px;
  overflow: hidden;
}

.banner-video,
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.banner-content {
  color: #f4f1ea;
  max-width: 1100px;
  z-index: 2;
  margin: 0 auto;
  padding: 0 1rem 0 3rem;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.banner-content p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}


.btn {
  padding: 0.75rem 1.75rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
  text-align: center;
  display: inline-block;
}

.btn-primary {
  background-color: #7a7a52;
  color: #f4f1ea;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #5a5a3d;
}

.btn-secondary {
  background-color: transparent;
  color: #f4f1ea;
  border: 2px solid #f4f1ea;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #f4f1ea;
  color: #5a5a3d;
}

/*flooting whatsapppp*/
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
}

/* Responsive adjustments for tablets and smaller screens */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float img {
        width: 25px;
        height: 25px;
    }
}

/* Even smaller devices (e.g., smartphones) */
@media (max-width: 480px) {
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float img {
        width: 22px;
        height: 22px;
    }
}

/* Slideshow container */
.slideshow-container {
  position: relative;
  height: 80vh;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Slides */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  top: 0;
  left: 0;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Responsive navigation */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    left: -100%;
    top: 60px;
    flex-direction: column;
    background-color: #5a5a3d;
    width: 100%;
    height: calc(100% - 60px);
    transition: left 0.3s ease;
    padding-top: 1rem;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    padding: 1rem 2rem;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background-color: transparent;
  }

  .dropdown:hover .dropdown-content,
  .dropdown:focus-within .dropdown-content {
    display: none;
  }

  

  .menu-toggle {
    display: flex;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section, .banner-content, .btn {
  animation: fadeInUp 1s ease forwards;
}

section {
  opacity: 0;
  animation-delay: 0.3s;
}

.banner-content {
  animation-delay: 0.5s;
}

.btn {
  animation-delay: 0.7s;
}

/* Section padding and container */
.section-padding {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* About Us Section */
.accommodations-section h2,
.activities-section h2,
.nearby-places-section h2,
.testimonials-section h2,
.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #5a5a3d;
  text-align: center;
}

.about-content {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  color: #3e3a36;
}

.about-content h3 {
  margin-bottom: 0.5rem;
  color: #7a7a52;
}

.location-map iframe {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Accommodations Section */
.accommodation-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.accommodation-item {
  background-color: #d9cbb6;
  border-radius: 8px;
  padding: 1rem;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  color: #3e3a36;
}

.accommodation-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.accommodation-item h3 {
  margin-bottom: 0.5rem;
  color: #464933;
}

.accommodation-item p {
  margin-bottom: 1rem;
  font-weight: 600;
}

.available {
  color: #2e7d32;
  font-weight: 700;
}

.amenities {
  margin-top: 2rem;
  text-align: center;
  color: #5a5a3d;
}

.amenities ul {
  list-style: none;
  padding: 0;
}

.amenities ul li {
  display: inline-block;
  margin: 0 1rem;
  font-weight: 600;
}

/* Activities Section *//* Section Title */
.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #4a5a1a;
  margin-bottom: 2rem;
}

/* Activities Grid */
.activity-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 0 1rem;
}

/* Single Activity Card */
.activity-card {
  background-color: #f0f1e8;
  border-radius: 12px;
  padding: 1.5rem 1.2rem;
  width: 240px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, opacity 0.6s ease, transform 0.6s ease;
  opacity: 0;
  transform: translateY(20px);
}

.activity-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.activity-card:hover {
  transform: translateY(-8px);
}

/* Activity Image */
.activity-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.activity-image:hover {
  transform: scale(1.05);
}

/* Card Title */
.activity-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #4a5a1a;
  margin-bottom: 0.4rem;
}

/* Card Description */
.activity-card p {
  font-size: 0.95rem;
  font-weight: 500;
  color: #6a7a3a;
}

/* Responsive */
@media (max-width: 768px) {
  .activity-card {
    width: 100%;
    max-width: 300px;
  }

  .section-title {
    font-size: 1.8rem;
  }
}


/* Nearby Places Section */
.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  color: #3e3a36;
}

.place-item {
  background-color: #d9cbb6;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  padding-bottom: 1rem;
}

.place-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-bottom: 2px solid #7a7a52;
}

.place-item h4 {
  margin: 0.5rem 0 0.25rem;
  color: #5a5a3d;
}

.place-item p {
  font-weight: 600;
  color: #7a7a52;
}

/* Testimonials Section */
.testimonial-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  padding-bottom: 1rem;
}

.testimonial-item {
  flex: 0 0 300px;
  background-color: #d9cbb6;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  scroll-snap-align: start;
  color: #3e3a36;
}

.testimonial-item p {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-item h4 {
  text-align: right;
  font-weight: 600;
  color: #5a5a3d;
}

/* Contact Section */
.contact-info {
  text-align: center;
  margin-bottom: 2rem;
  color: #3e3a36;
}

.contact-info p {
  margin: 0.25rem 0;
  font-weight: 600;
}

#booking-form {
  background-color: rgba(90, 90, 61, 0.8); /* Semi-transparent version of your theme color */
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  margin: 2rem auto;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#booking-form h3 {
  color: #f4f1ea;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

#booking-form h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #7a7a52;
}

#booking-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #f4f1ea;
  font-weight: 600;
  font-size: 0.95rem;
}

#booking-form input,
#booking-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  background-color: rgba(244, 241, 234, 0.9);
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: #3e3a36;
}

#booking-form input:focus,
#booking-form textarea:focus {
  outline: none;
  border-color: #7a7a52;
  background-color: #f4f1ea;
  box-shadow: 0 0 0 3px rgba(122, 122, 82, 0.2);
}

#booking-form textarea {
  min-height: 120px;
  resize: vertical;
}

#booking-form button[type="submit"] {
  width: 100%;
  padding: 1rem;
  background-color: #7a7a52;
  color: #f4f1ea;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

#booking-form button[type="submit"]:hover {
  background-color: #6a7a3a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Date input custom styling */
#booking-form input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235a5a3d' width='18px' height='18px'%3e%3cpath d='M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM9 10H7v2h2v-2zm4 0h-2v2h2v-2zm4 0h-2v2h2v-2zm-8 4H7v2h2v-2zm4 0h-2v2h2v-2zm4 0h-2v2h2v-2z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  #booking-form {
    padding: 1.5rem;
    margin: 1rem auto;
  }
  
  #booking-form h3 {
    font-size: 1.5rem;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .accommodation-list {
    flex-direction: column;
    align-items: center;
  }

  .activities-list {
    flex-direction: column;
    align-items: center;
  }

  .places-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-slider {
    flex-direction: column;
    overflow-x: visible;
  }

  .testimonial-item {
    width: 100%;
  }
}

/* Updated Navbar Styles */
header {
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #5a5a3d;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  padding: 0.75rem 1rem;
  display: block;
  color: #5a5a3d;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.nav-links li a:hover,
.nav-links li a:focus {
  background-color: #f0f1e8;
  color: #3a4a1a;
}

/* Removed dropdown-content styles as dropdown-content is removed from HTML */

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.menu-toggle .bar {
  height: 3px;
  width: 25px;
  background-color: #5a5a3d;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 1000;
    gap: 1rem;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .nav-links li a {
    padding: 1rem;
    border-bottom: 1px solid #f0f1e8;
    border-radius: 0;
  }
  
  .dropdown-content {
    position: static;
    box-shadow: none;
    background-color: transparent;
    border: none;
    display: none;
    width: 100%;
    padding-left: 1rem;
  }
  
  .dropdown:hover .dropdown-content,
  .dropdown:focus-within .dropdown-content {
    display: none;
  }
  
  .dropdown.active .dropdown-content {
    display: block;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}


/* Footer styles */
/* Footer styles */
 .custom-footer {
    background-color: #12100E;
    color: #EFE2C8;
    padding: 60px 20px;
    font-family: 'Georgia', serif;
    text-align: center;
  }

  .footer-logo {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .footer-tagline {
    font-size: 16px;
    margin-bottom: 30px;
    color: #EFE2C8;
  }

  .footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }

  .footer-nav a {
    color: #EFE2C8;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
  }

  .footer-nav a:hover {
    opacity: 0.7;
  }

  .footer-social {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
  }

  .footer-social a {
    color: #EFE2C8;
    font-size: 20px;
    transition: opacity 0.3s;
  }

  .footer-social a:hover {
    opacity: 0.7;
  }

  .footer-bottom {
    font-size: 14px;
    color: #EFE2C8;
    opacity: 0.8;
  }

  @media (max-width: 600px) {
    .footer-nav {
      flex-direction: column;
      gap: 15px;
    }

    .footer-social {
      gap: 20px;
    }

    .footer-logo {
      font-size: 28px;
    }
  }

/* New About Section Styles */
.about-section {
  background-color: #464933;
  padding: 5rem 2rem;
  position: relative;
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  color: #464933;
}

.about-text {
  padding: 2rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#about h2,
#about p {
  color: #ffffff;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #5a5a3d;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #3e3a36;
  margin-bottom: 1.5rem;
}

.about-cta {
  margin-top: 2rem;
}

.about-features {
  background-color: #f0f1e8;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  grid-auto-rows: 1fr; /* Make all rows equal height */
}

.feature-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  background-color: white;
  border-radius: 8px;
  transition: transform 0.3s ease;
  height: 100%; /* Make feature item fill the grid cell height */
  min-height: 80px; /* Ensure minimum height for consistency */
  justify-content: center; /* Center text horizontally */
}

.feature-item:hover {
  transform: translateY(-5px);
}

/* Remove icon styles since icons are removed */
.feature-item i {
  display: none;
}

.feature-item span {
  font-weight: 600;
  color: #5a5a3d;
  display: block;
  word-break: break-word; /* Allow breaking long words */
  max-width: 100%; /* Full width since no icon */
  text-align: center; /* Center text */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .about-text h2 {
    font-size: 2rem;
  }
  
  .about-text p {
    font-size: 1rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  color: #ffffff;
}


/*reviews*/
/* Reviews Section */
.reviews-section {
  padding: 3rem 2rem;
}

.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.review-card {
  background-color: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.reviewer-name {
  font-weight: 600;
  color: #5a5a3d;
  margin: 0;
}

.review-date {
  color: #888;
  font-size: 0.9rem;
}

.star-rating {
  unicode-bidi: bidi-override;
  direction: rtl;
  text-align: left;
  margin-bottom: 1rem;
}

.star-rating > input {
  display: none;
}

.star-rating > label {
  display: inline-block;
  position: relative;
  width: 1.1em;
  font-size: 1.5rem;
  color: #ddd;
  cursor: pointer;
}

.star-rating > label:hover,
.star-rating > label:hover ~ label,
.star-rating > input:checked ~ label {
  color: #ffc107;
}

.review-text {
  color: #555;
  line-height: 1.6;
}

.review-form-container {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .reviews-container {
    grid-template-columns: 1fr;
  }
}



/* Reviews Carousel Styles */
.reviews-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  min-height: 250px;
}

.review-slide {
  position: absolute;
  width: 100%;
  padding: 2rem;
  background-color: #f0f1e8;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  color: #5a5a3d;
}

.review-slide.active {
  opacity: 1;
  position: relative;
}

.reviewer-avatar {
  width: 60px;
  height: 60px;
  background-color: #7a7a52;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.review-content h4 {
  color: #5a5a3d;
  margin-bottom: 0.5rem;
}

.star-rating {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  gap: 1rem;
}

.carousel-controls button {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #f4f1ea;
  padding: 0.5rem;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(244, 241, 234, 0.5);
  cursor: pointer;
}

.carousel-dot.active {
  background-color: #f4f1ea;
}

.see-all-reviews {
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .review-slide {
    padding: 1.5rem;
  }
  
  .reviewer-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* Filter Controls */
.filter-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1rem;
  background-color: #f0f1e8;
  border: 1px solid #5a5a3d;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
  background-color: #5a5a3d;
  color: #f4f1ea;
}