
/*
  ========================================
  Updated CSS Code
  ========================================
*/

/* --- CSS Variables --- */
:root {
  --primary-color: #035703;
  --accent-color: #ffe500;
  --secondary-accent-color: #a4c639;
  --dark-text: #333;
  --light-text: #f9fafb;
  --gray-text: #4b5563;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--dark-text);
  background-color: var(--light-text);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation Styles */
.navbar {
  background-color: var(--primary-color);
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 229, 0, 0.2);
}

.nav-logo-image {
  width: 40px;
  height: 40px;
  border-radius: 20%;
  object-fit: cover;
}

.nav-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav-logo {
  display: flex;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: bold;
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
  gap: 10px;
}

.nav-logo:hover {
  color: var(--secondary-accent-color);
}

/* Social Media Icons in Navbar */
.nav-social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-social a {
  color: white;
  font-size: 18px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav-social a:hover {
  color: var(--accent-color);
}

.nav-menu {
  display: flex;
  gap: 40px;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-link:hover {
  color: var(--accent-color);
}

.nav-underline {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-link.active {
  color: var(--accent-color);
}

.nav-link.active .nav-underline {
  opacity: 1;
}

/* Section Indicator */
.nav-section-indicator {
  position: absolute;
  top: 50%;
  right: 120px;
  transform: translateY(-50%);
  background-color: rgba(255, 229, 0, 0.1);
  color: var(--accent-color);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.nav-section-indicator.show {
  opacity: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 95vh;
  overflow: hidden;
  margin-top: 70px;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
  width: 100%;
}

.hero-slide {
  position: relative;
  width: 100%;
  min-height: 95vh;
  display: none;
  height: 100%;
}

.hero-slide.active {
  display: block;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 90vh;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(1px);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  z-index: 10;
  text-align: center;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: bold;
  color: white;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: white;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-btn {
  padding: 12px 48px;
  background-color: var(--accent-color);
  border: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: var(--secondary-accent-color);
  transform: translateY(-2px);
}

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
}

.dot.active {
  background-color: var(--accent-color);
}

/* About Us Section */
.aboutus-section {
  padding: 64px 0;
  background-color: white;
}

.about-header {
  text-align: center;
  margin-bottom: 14px;
}

.about-title {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.about-subtitle {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--gray-text);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.section-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.section-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.section-text {
  color: var(--gray-text);
  line-height: 1.6;
}

.section-text.italic {
  font-style: italic;
  margin-top: 24px;
}

.about-list {
  list-style-type: disc;
  padding-left: 24px;
  color: var(--gray-text);
  line-height: 1.6;
}

.about-list li {
  margin-bottom: 8px;
}

.about-numbered-list {
  list-style-type: decimal;
  padding-left: 24px;
  color: var(--gray-text);
  line-height: 1.6;
}

.about-numbered-list li {
  margin-bottom: 12px;
}

.about-footer {
  text-align: center;
  margin-top: 64px;
}

.about-cta {
  padding-top: 32px;
}

.cta-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--gray-text);
}

/* Services Section */
.services-section {
  padding: 64px 0;
  background-color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 10px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: normal;
  color: var(--primary-color);
}

.title-underline {
  width: 96px;
  height: 4px;
  background-color: var(--secondary-accent-color);
  margin: 0 auto 16px;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.25rem;
  font-weight: normal;
  color: #757575;
  margin-bottom: 16px;
}

.section-description {
  font-size: 1rem;
  color: #757575;
  max-width: 512px;
  /* margin: 0 auto; */
  margin: 0px;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  padding: 0 16px;
}

.service-card {
  position: relative;
  height: 350px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: scale(1.05);
}

.service-link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.service-image {
  position: relative;
  height: 100%;
  width: 100%;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  text-align: center;
}

.service-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: white;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.service-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  max-width: 512px;
  margin: 0 auto;
}

/* Testimonials Section */
.testimonials-section {
  padding: 64px 0;
  background-color: #fffbf0;
}

.testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  padding: 0 16px;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-image {
  position: relative;
  height: 256px;
  overflow: hidden;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover .testimonial-overlay {
  opacity: 0.8;
}

.testimonial-content {
  padding: 24px;
}

.testimonial-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.testimonial-text {
  color: var(--gray-text);
  margin-bottom: 16px;
  line-height: 1.6;
}

.testimonial-author {
  color: var(--primary-color);
  font-weight: 500;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background-color: var(--secondary-accent-color);
  position: relative;
  overflow: hidden;
}

.gallery-carousel {
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}

.gallery-track {
  display: flex;
  animation: marquee-left 20s linear infinite;
  width: max-content;
}

.gallery-item {
  position: relative;
  height: 256px;
  width: 256px;
  margin: 0 16px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Booking Section */
.booking-section {
  position: relative;
  padding: 16px 0;
  background: linear-gradient(
    to bottom right,
    var(--light-text),
    rgba(239, 246, 255, 0.3)
  );
  overflow: hidden;
}

.booking-content {
  display: flex;
  flex-direction: column;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.booking-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 10;
  padding-top: 80px;
}

.booking-title {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: bold;
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 24px;
}

.booking-description {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 32px;
}

.highlight {
  font-weight: 600;
  color: var(--accent-color);
}

.booking-features {
  list-style: none;
  margin-top: 32px;
}

.booking-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 1.125rem;
  color: #374151;
}

.booking-form-container {
  flex: 1;
  z-index: 10;
}

.booking-form-wrapper {
  max-width: 480px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 0;
  border: 1px solid var(--accent-color);
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-header {
  text-align: center;
  margin-bottom: 0;
}

.form-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0;
}

.form-subtitle {
  color: var(--accent-color);
}

.booking-form {
  background: white;
  padding: 33px;
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 16px;
  max-width: 490px;
  margin: 0 auto;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: 1px solid var(--accent-color);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 16px;
  margin-bottom: 0;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #6b7280;
}

.form-select {
  color: var(--secondary-accent-color);
  background-color: white;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  margin: 10px;
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
  padding: 12px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background-color: #006600;
  box-shadow: 0 4px 12px rgba(0, 128, 0, 0.3);
}

/* FAQ Section */
.faq-section {
  max-width: 900px;
  margin: 30px auto;
  padding: 0 20px;
}

.faq-title {
  text-align: center;
  color: var(--primary-color);
  font-size: 2em;
  margin-bottom: 30px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary-color);
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(0, 128, 0, 0.05);
}

.faq-toggle {
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 15px;
  color: var(--dark-text);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 15px 15px;
}

/* Contact Section */
.contact-hero {
  position: relative;
  min-height: 80vh;
  background: none;
  margin-top: 70px;
  display: flex;
  align-items: center;
}

.contact-hero-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding:20px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contact-hero-text {
  text-align: center;
  color: white;
}

.contact-hero-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 0;
  padding-left: 18px;
}

.contact-hero-subtitle {
  font-size: 1rem;
  opacity: 0.9;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--secondary-accent-color);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 350px;
}


/* Footer */
.footer {
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
  min-height: 200px;
}

.back-to-top {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 24px;
  cursor: pointer;
  background-color: rgba(17, 70, 17, 0.783);
  transition: background-color 0.3s ease;
}

.back-to-top:hover {
  background-color: #415305;
}

.footer-content {
  padding-bottom: 20px;
}

.footer-desktop {
  display: block;
  padding-left: 100px;
  padding-right: 14px;
}

.footer-mobile {
  display: none;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  font-size: 14px;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.contact-number a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-number a:hover {
  color: var(--accent-color);
}

.footer-email {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
}

.footer-email a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-email a:hover {
  color: var(--accent-color);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 10px;
}

.social-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links a:hover {
  color: var(--accent-color);
}

.footer-address {
  font-size: 14px;
}

.footer-address h3 {
  margin-bottom: 8px;
}

.footer-address p {
  max-width: 250px;
  line-height: 1.4;
  margin-bottom: 16px;
  padding-top: 0;
}

.footer-map-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-map-link a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-map-link a:hover {
  color: var(--accent-color);
}

.footer-copyright {
  text-align: right;
  font-size: 14px;
  margin-top: 24px;
}

/* Labels */
label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 8px;
  text-align: left;
  transition: color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-social {
    display: none;
  }
  .nav-section-indicator {
    right: 60px;
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--primary-color);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    gap: 20px;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active .hamburger:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle.active .hamburger:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .booking-content {
    flex-direction: column;
    gap: 28px;
  }
  .booking-form-wrapper {
    padding-bottom: 0;
    min-height: 80vh;
    width: 100%;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-desktop {
    display: none;
  }
  .footer-mobile {
    display: block;
  }
  .footer-mobile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
    justify-content: center;
    align-items: flex-start;
  }
  .footer-mobile-section {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
    font-size: 14px;
  }
  .footer-mobile-section .social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .events-type {
    list-style: none;
    padding: 0;
  }
  .footer-mobile-section .footer-links {
    margin-top: 16px;
  }
  .footer-mobile-section .footer-links a {
    font-size: 14px;
  }
  .footer-mobile-section .contact-number {
    padding-top: 0;
  }
  .footer-address {
    grid-column: span 2;
    margin-top: 0;
    font-size: 14px;
  }
  .footer-copyright {
    grid-column: span 2;
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
  }
  .contact-hero-content {
    flex-direction: column;
    gap: 32px;
  }
}

@media (min-width: 769px) {
  .booking-content {
    flex-direction: row;
    gap: 112px;
  }
  .booking-info {
    flex: 1;
  }
  .booking-form-container {
    flex: 1;
  }
  .contact-hero-content {
    flex-direction: row;
    align-items: center;
  }
  .contact-hero-text {
    flex: 1;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .testimonials-carousel {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .booking-content {
    gap: 224px;
  }
}

.events-section ul {
  list-style-type: none;
  padding: 0;
  gap: 8px;
  padding-top: 10px;
}

.events-type {
  display: flex;
  flex-direction: column;
}