* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: #ffff;
}

iframe {
    max-width: 100%;
}

.main-wrapper {
    width: 95%;
    max-width: 95%;
    margin: 20px auto;
    background: none;
    border-radius: 25px;
    overflow: visible;
    color: #fff;
}

.navbar {
    position: relative;
    top: 0;
    left: auto;
    transform: none;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #166647;
    border-radius: 48px;
    height: auto;
    min-height: 138px;
    z-index: 100;
}

.navbar-header {
    display: flex;
    align-items: center;
}

.navbar .logo {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.1), inset 0 0 0px 0px rgba(255, 255, 255, 0);
    padding: 7px 20px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 137px;
    height: 64px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 20px;
}

.navbar .logo img {
    display: block;
    height: 45px;
    width: 93px;
    max-width: 100%;
}

.navbar .logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.navbar .logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent, rgba(255, 255, 255, 0.3));
}

.nav-wrapper {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.1), inset 0 0 0px 0px rgba(255, 255, 255, 0);
    padding: 12px;
    border-radius: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: auto;
    max-width: 850px;
    height: 64px;
    gap: 8px;
    position: static;
    left: auto;
    transform: none;
    overflow: visible;
    flex-grow: 1;
    margin: 0 20px;
    z-index: 100;
}

.nav-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.nav-wrapper::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent, rgba(255, 255, 255, 0.3));
}

.nav-links {
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
    justify-content: center;
    flex-grow: 1;
    transition: all 0.4s ease-in-out;
}

.nav-links .mobile-btn {
    display: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 16px 8px;
    border-radius: 20px;
    opacity: 0.7;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    width: auto;
    min-width: 90px;
    height: 40px;
    flex-shrink: 0;
    white-space: nowrap;
    border: 1px solid transparent;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-links a.active {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    opacity: 1;
    width: auto;
    min-width: 90px;
    height: 40px;
    padding: 16px 8px;
}

.nav-btn {
    background: #1C7F56;
    color: white;
    height: 64px;
    width: 271px;
    flex-shrink: 0;
    padding: 0 68px 0 24px;
    border-radius: 32px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    gap: 8px;
}

.nav-btn .arrow-icon {
    background: white;
    color: #1C7F56;
    width: 56px;
    height: 56px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-btn:hover {
    background: #166c41;
}

.hamburger-menu {
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 5px;
    z-index: 1000;
    display: none;
    align-self: center;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 1025px) and (max-width: 1440px) {
    .navbar {
        padding: 15px 15px;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .navbar .logo {
        margin-right: 5px;
        width: 110px;
        padding: 5px 10px;
    }

    .navbar .logo img {
        width: 70px;
        height: auto;
    }

    .nav-wrapper {
        margin: 0 5px;
        padding: 8px;
        gap: 0;
        max-width: none;
        flex-grow: 1;
        width: auto;
        justify-content: center;
    }

    .nav-links {
        gap: 5px;
        width: 100%;
        justify-content: space-evenly;
    }

    .nav-links a,
    .nav-links a.active {
        font-size: 13px;
        min-width: auto;
        padding: 10px 10px;
        height: 35px;
    }
}

@media (max-width: 1024px) {
    .navbar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .navbar {
        flex-direction: column;
        gap: 0;
        padding: 15px 20px;
        min-height: auto;
    }

    .nav-wrapper {
        max-width: 100%;
        width: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .nav-links .mobile-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
        opacity: 0.7;
        height: 50px;
        width: 100%;
        padding: 0 8px;
        border-radius: 20px;
        text-decoration: none;
        position: relative;
        font-weight: normal;
    }

    .nav-links .mobile-btn:hover {
        opacity: 0.9;
        background: rgba(255, 255, 255, 0.1);
    }

    .navbar .logo {
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .desktop-only {
        display: none;
    }

    .nav-wrapper::before,
    .nav-wrapper::after {
        display: none;
    }

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        position: static;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 8px;
        padding: 5px;
        z-index: 1001;
        margin-top: 0;
        margin-bottom: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        padding: 0;
        background: rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 20px;
        transition: all 0.4s ease-in-out;
    }

    .nav-links.open {
        max-height: 600px;
        opacity: 1;
        visibility: visible;
        padding: 12px;
        margin-bottom: 10px;
        margin-top: 20px;
    }

    .nav-links a {
        flex-grow: 1;
        justify-content: center;
        gap: 10px;
        min-width: unset;
        width: 100%;
    }

    .nav-links a.active {
        width: 100%;
        height: 50px;
        font-size: 16px;
        padding: 10px 8px;
        text-align: center;
        margin-bottom: 5px;
    }

    .hamburger-menu.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger-menu.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

.dropdown-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(22, 102, 71, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 10px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 9999;
}

.dropdown-container:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.dropdown-menu a {
    color: #fff;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 12px;
    transition: background 0.3s ease;
    text-align: center;
    font-size: 15px;
    display: block;
    width: 100%;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 1024px) {
    .dropdown-container {
        flex-direction: column;
        width: 100%;
        height: auto;
    }

    .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        box-shadow: none;
        border: none;
        backdrop-filter: none;
        padding: 0;
        min-width: 100%;
        display: none;
    }

    .dropdown-container:hover .dropdown-menu {
        display: flex;
        transform: none;
    }

    .dropdown-menu a {
        font-size: 14px;
        padding: 10px;
        background: rgba(255, 255, 255, 0.05);
        margin-bottom: 5px;
    }
}

.intro-section {
    font-family: 'poppins', sans-serif;
    width: 90%;
    height: auto;
    margin: 60px auto;
    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    background: #E5FAEA;
    color: #1C7F56;
    padding: 12px 24px;
    border-radius: 32px;
    font-size: 16px;
    margin-bottom: 20px;
    font-family: 'poppins', sans-serif;
}

.section-label::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background-color: #1C7F56;
    border-radius: 50%;
    margin-right: 10px;
}

.service-title {
    font-family: 'poppins', sans-serif;
    text-align: center;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
}

@media (max-width: 1024px) {
    .service-title {
        font-size: 48px;
    }

    .intro-section {
        margin: 50px auto;
    }
}

@media (max-width: 768px) {
    .service-title {
        font-size: 36px;
    }

    .section-label {
        padding: 10px 20px;
        font-size: 14px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .service-title {
        font-size: 28px;
    }

    .intro-section {
        margin: 30px auto;
    }

    .section-label {
        padding: 8px 16px;
    }
}

:root {
    --primary-green:#166c41;
    --light-gray: #f9f9f9;
    --text-light: #777777;
    --text-dark: #333333;
}

.closing-section {
  width: 90%;
  max-width: 90%;
  padding: 60px 0;
  box-sizing: border-box;
  margin: 0 auto;
}

.cta-box {
  font-family: 'Poppins', sans-serif; 
  color: white;
  text-align: center;
  padding: 60px 40px;
  border-radius: 48px;
  margin-bottom: 60px;
  height: auto;
  min-height: 459px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: 
    linear-gradient(40deg, 
      rgba(0, 0, 0, 0) 0%,           
      rgba(20, 102, 82, 0.58) 50%,  
      #297B68 100%),               
    url('/graphics/ctaCover.png'); 
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat;
}

.cta-box h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 15px;
}

.cta-box p {
  font-size: 24px;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 0px 0px rgba(255, 255, 255, 0);
  padding: 12px 32px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
  width: auto; 
  min-width: 200px; 
  height: 64px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap; 
}

.cta-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer-logo-img {
  width: 198px;
  height: 96px;
  display: block;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 24px;
  font-weight: 500;
  opacity: 0.7;
  margin-right: 20px;
  text-align: right;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .cta-box h2 {
    font-size: 38px;
  }

  .cta-box p {
    font-size: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
  }

  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
  }

  .footer-tagline {
    font-size: 18px;
    margin-right: 0;
    margin-bottom: 15px;
    text-align: center;
  }

  .footer-logo {
    align-items: center;
  }
}

@media (max-width: 576px) {
  .cta-box h2 {
    font-size: 32px;
  }

  .cta-box {
    padding: 40px 20px;
    margin-bottom: 40px;
    min-height: 350px;
  }
}

.footer-section {
  width: 100%;
  background: white;
  padding: 60px 0;
  box-sizing: border-box;
}

.footer-divider {
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-divider.bottom-line {
  margin-top: 60px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
  gap: 40px;
  padding: 40px 0;
}

.footer-column {
  flex-grow: 1;
  min-width: 150px;
  max-width: 250px;
}

.footer-column:last-child {
  flex-grow: 2;
  min-width: 250px;
  max-width: 400px;
}

.footer-column h4 {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: bold;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 20px;
}

.footer-column ul li a {
  font-size: 20px;
  opacity: 0.4;
  text-decoration: none;
  color: inherit;
}

.contact-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 6px;
}

.contact-item span {
  margin-right: 6px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.social-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1C7F56;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 32px;
  flex-shrink: 0;
}

.social-icon:hover {
  opacity: 1;
}

.map-container {
  width: 100%; 
  height: 224px;
  overflow: hidden;
}

.map-container-responsive {
    width: 100%;
    margin-top: 15px;
}

.footer-bottom {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  opacity: 0.4;
  padding-top: 16px;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .footer-column,
    .footer-column:last-child {
        max-width: 100%;
        min-width: 100%;
        text-align: center;
    }

    .footer-column ul {
        width: fit-content;
        margin: 0 auto;
    }

    .footer-column h4 {
        margin-bottom: 15px;
    }

    .footer-column ul li a {
        font-size: 18px;
    }

    .social-links {
      justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 40px 0;
    }
    
    .footer-divider.bottom-line {
        margin-top: 40px;
    }

    .social-links {
      justify-content: center;
    }
}

.booking-section {
  max-width: 1400px;
  margin: 40px auto;
  padding: 0 20px;
}

.booking-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.booking-left {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.booking-left h2 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-weight: 600;
}

.booking-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.calendar-container {
  margin-top: 30px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-header h3 {
  font-size: 1.3rem;
  color: #1a1a1a;
  font-weight: 600;
}

.calendar-nav-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #166647;
  cursor: pointer;
  padding: 8px 15px;
  border-radius: 8px;
  transition: all 0.3s;
}

.calendar-nav-btn:hover {
  background: #f0f0f0;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}

.weekday {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #166647;
  padding: 10px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  background: #f8f8f8;
  color: #666;
  border: 2px solid transparent;
}

.calendar-day.disabled {
  background: #fef2f2;
  color: #ccc;
  cursor: not-allowed;
  opacity: 0.5;
}

.calendar-day.disabled:hover {
  background: #fef2f2;
  border-color: transparent;
}

.calendar-day.available {
  background: #e8f5f0;
  color: #1a1a1a;
}

.calendar-day.available:hover {
  background: #166647;
  color: #fff;
  transform: scale(1.05);
}

.calendar-day.selected {
  background: #166647;
  color: #fff;
  border-color: #166647;
}

.calendar-day.has-bookings {
  position: relative;
}

.calendar-day.has-bookings::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #166647;
  border-radius: 50%;
}

.calendar-day.selected.has-bookings::after {
  background: #fff;
}

.calendar-day .time-label {
  font-size: 0.65rem;
  color: #999;
  margin-top: 2px;
}

.time-slots-container {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.time-slots-container h3 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-weight: 600;
}

.selected-date-display {
  color: #166647;
  font-size: 0.95rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.time-slot {
  padding: 15px 20px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  background: #fff;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
  color: #1a1a1a;
}

.time-slot:hover {
  border-color: #166647;
  background: #e8f5f0;
}

.time-slot.selected {
  background: #166647;
  border-color: #166647;
  color: #fff;
}

.time-slot.booked {
  background: #f5f5f5;
  border-color: #e0e0e0;
  color: #999;
  cursor: not-allowed;
  opacity: 0.6;
}

.time-slot.booked:hover {
  background: #f5f5f5;
  border-color: #e0e0e0;
}

.booking-right {
  position: sticky;
  top: 20px;
}

.info-card {
  background: #e8f5f0;
  padding: 30px;
  border-radius: 20px;
}

.info-card h3 {
  font-size: 1.3rem;
  color: #166647;
  margin-bottom: 25px;
  font-weight: 600;
}

.info-item {
  margin-bottom: 25px;
}

.info-item h4 {
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-weight: 600;
}

.info-item p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.contact-info {
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid #c5e4d6;
}

.contact-info h4 {
  font-size: 0.95rem;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #666;
}

.contact-item i {
  color: #166647;
  margin-top: 3px;
  font-size: 1rem;
}

.view-map-link {
  display: block;
  color: #166647;
  font-size: 0.85rem;
  margin-top: 5px;
  margin-left: 24px;
  text-decoration: underline;
}

.booking-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.booking-modal.active {
  display: flex;
}

.booking-modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #999;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}

.modal-close:hover {
  color: #333;
}

.booking-modal-content h2 {
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: 25px;
  font-weight: 600;
}

.booking-details {
  background: #e8f5f0;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.booking-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.booking-detail-item:last-child {
  margin-bottom: 0;
}

.booking-detail-item i {
  color: #166647;
  font-size: 1.1rem;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-weight: 500;
}

.required {
  color: #e74c3c;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #166647;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: #166647;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
  background: #124d35;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(22, 102, 71, 0.3);
}

.submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 1024px) {
  .booking-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .booking-right {
    position: static;
  }

  .time-slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .booking-left {
    padding: 25px;
  }

  .booking-left h2 {
    font-size: 1.5rem;
  }

  .calendar-days {
    gap: 6px;
  }

  .calendar-day {
    font-size: 0.9rem;
    border-radius: 8px;
  }

  .time-slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-card {
    padding: 25px;
  }

  .booking-modal-content {
    padding: 30px 25px;
  }
}

@media (max-width: 480px) {
  .booking-section {
    padding: 0 15px;
  }

  .booking-left {
    padding: 20px 15px;
  }

  .calendar-weekdays {
    gap: 2px;
  }

  .weekday {
    font-size: 0.75rem;
    padding: 8px 2px;
  }

  .calendar-days {
    gap: 4px;
  }

  .calendar-day {
    font-size: 0.8rem;
  }

  .time-slots-grid {
    grid-template-columns: 1fr;
  }

  .booking-modal-content h2 {
    font-size: 1.5rem;
  }

  .calendar-nav-btn {
    padding: 5px 10px;
  }
}