/* =============================
   Base Reset & Layout
============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fdfaf7;
  overflow-x: hidden;
}

/* =============================
   Top Contact Bar
============================= */
.top-bar {
  background-color: #9a8f88;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.top-bar i {
  color: #fff;
  margin-right: 5px;
}

@media (max-width: 768px) {
  .top-bar {
    font-size: 0.85rem;
    padding: 0.3rem 0;
  }
  .small-contact div {
    line-height: 1.2;
  }
}

/* =============================
   Navbar & Branding
============================= */
.bubble-navbar-container {
  position: sticky;
  top: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transform: translateY(20px);
}

.bubble-navbar-container.scrolled {
  transform: translateY(0);
}

.glassy-navbar {
  position: relative;
  width: 90%;
  max-width: 900px;
  min-height: 60px;
  border-radius: 30px;
  background-color: #9a8f88;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.2rem;
  z-index: 2;
  transition: background-color 0.3s ease, border-radius 0.4s ease;
}

.glassy-navbar .nav-link {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.3rem 0.8rem;
  margin: 0 5px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: background-color 0.3s ease;
  z-index: 3;
}

.glassy-navbar .nav-link:hover {
  background-color: #7bb27d;
  color: #fff;
}

.lux-logo {
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.8rem; /* Reverted to original padding */
  border-radius: 30px;
  z-index: 3;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.lux-logo:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.02);
}

.logo-img {
  max-height: 35px; /* Reverted to original height */
  width: auto;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.lux-logo:hover .logo-img {
  transform: scale(1.05);
}

.bubble-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.bubble {
  position: absolute;
  bottom: 0;
  width: 15px;
  height: 15px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1));
  border-radius: 50%;
  animation: rise 10s infinite ease-in;
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.5);
}

.bubble:nth-child(1) { left: 10%; animation-duration: 6s; }
.bubble:nth-child(2) { left: 20%; animation-duration: 7.5s; }
.bubble:nth-child(3) { left: 30%; animation-duration: 8s; }
.bubble:nth-child(4) { left: 40%; animation-duration: 6.5s; }
.bubble:nth-child(5) { left: 50%; animation-duration: 9s; }
.bubble:nth-child(6) { left: 60%; animation-duration: 7s; }
.bubble:nth-child(7) { left: 70%; animation-duration: 8.5s; }
.bubble:nth-child(8) { left: 80%; animation-duration: 6.2s; }
.bubble:nth-child(9) { left: 90%; animation-duration: 9.5s; }
.bubble:nth-child(10) { left: 95%; animation-duration: 7.8s; }

@keyframes rise {
  0% { transform: translateY(0); opacity: 0.7; }
  100% { transform: translateY(-100px); opacity: 0; }
}

.navbar-scrolled {
  background-color: #bc9e82 !important;
  transition: background-color 0.3s ease;
}

.navbar-scrolled .nav-link,
.navbar-scrolled .lux-logo {
  color: #fff !important;
}

.navbar-colored {
  background-color: #9a8f88 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-nav {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

/* Ensure logo and toggler stay at top always */
.glassy-navbar > .navbar-brand,
.glassy-navbar > .navbar-toggler {
  z-index: 11;
}

/* ===== Mobile Styles ===== */
@media (max-width: 991px) {
  .bubble-navbar-container {
    position: sticky;
    top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    transform: translateY(20px);
  }

  .bubble-navbar-container.scrolled {
    transform: translateY(0);
  }
   


  .glassy-navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
    padding: 0.6rem 0 0.6rem 0;
    background-color: #9a8f88;
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 2;
    position: relative;
    transition: border-radius 0.4s ease;
  }

  .glassy-navbar .lux-logo {
    margin-left: -1.2rem; /* Offset to compensate for original padding and push to edge */
  }

  /* Remove bottom border-radius when menu is open */
  .glassy-navbar.menu-open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    transition: border-radius 0.1s ease-out;
  }

  .lux-logo {
    padding: 0px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
    margin: 0;
  }

  .navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 10px;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    transition: transform 0.3s ease; /* Smooth transition for button */
  }

  .navbar-toggler.menu-open {
    background-color: rgba(255, 255, 255, 0.3); /* Slight highlight when open */
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 25px;
    height: 25px;
    transition: background-image 0.7s ease; /* Smooth icon transition */
  }

  .navbar-toggler.menu-open .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' stroke-linecap='round' d='M4 4l22 22M26 4L4 26'/%3e%3c/svg%3e");
  }

  .mobile-nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #9a8f88;
    border-radius: 0 0 20px 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-top: none;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    background: inherit; /* Inherit navbar background for continuity */
    backdrop-filter: blur(16px); /* Match navbar glassy effect */
    transition: max-height 0.1s ease-out, opacity 0.1s ease-out, padding 1.2s ease-out;
  }

  .mobile-nav-links:not(.show) {
    transition-delay: 0.2s, 0s, 0s; /* Reduce delay, apply only to max-height */
  }

  .mobile-nav-links.show {
    max-height: 300px;
    opacity: 1;
    padding: 1rem 0;
  }

  .navbar-scrolled .mobile-nav-links,
  .navbar-scrolled .mobile-nav-links.show {
    background-color: #bc9e82; /* Matches navbar-scrolled color */
  }

  .mobile-nav-links .nav-item {
    width: 100%;
    text-align: center;
  }

  .mobile-nav-links .nav-link {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.9rem 1.2rem;
    margin: 6px 0;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    transition: background-color 0.25s ease, transform 0.25s ease;
    display: block;
  }

  .mobile-nav-links .nav-link:hover {
    background-color: #7bb27d;
    color: #fff;
    transform: scale(1.03);
  }

  /* Adjust bubble container to move into dropdown when open */
  .glassy-navbar.menu-open .bubble-container {
    position: absolute;
    top: 0;
    height: calc(100% + 300px);
  }

  .mobile-nav-links .bubble-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .mobile-nav-links .bubble {
    bottom: 0;
  }
}


/* =============================
   Hero Section
============================= */
.hero-section {
  position: relative;
  height: 90vh;
  margin-top: -70px;
  padding-top: 120px;
  background: url('/brain/img/home.jpg') no-repeat center center fixed;
  background-size: cover;
  z-index: 1;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
  pointer-events: none;
}

.hero-overlay {
  height: 100%;
  padding: 0 3rem;
  z-index: 2;
  position: relative;
}

.hero-section h1 {
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 255, 255, 0.2); /* Shadow for pop */
  letter-spacing: 2px; /* Elegant spacing */
}

.hero-section p {
  font-size: 2.2rem;
  margin-top: 1.5rem;
  color: #ffffff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4), 0 0 8px rgba(255, 255, 255, 0.1); /* Subtle shadow */
  font-style: italic; 
}

.hero-section .btn {
  font-size: 1.3rem;
  border-radius: 30px;
  padding: 0.75rem 1.5rem; /* Consistent with buttons section */
  transition: all 0.3s ease;
}

/* Specific style for Explore Packages button */
.hero-section .btn-explore {
  background-color: rgba(255, 255, 255, 0.15); /* Transparent glassy effect */
  backdrop-filter: blur(10px); /* Blur effect */
  border: 2px solid #bc9e82;
  color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.hero-section .btn-explore:hover {
  background-color: #bc9e82;
  color: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

/* =============================
   Buttons
============================= */
.btn-outline-primary {
  border-color: #7bb27d;
  color: #7bb27d;
  font-size: 1.1rem;
  padding: 0.75rem 1.5rem;
  border-width: 2px;
  background-color: rgba(255, 255, 255, 0.1); /* Slight background for visibility */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #7bb27d;
  color: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  border-color:#7bb27d;
}

.btn-success {
  background-color: #7bb27d;
  border: none;
  font-size: 1.1rem;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.btn-success:hover {
  background-color: #689e6b;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.book-btn {
  font-size: 1.4rem;
  border-radius: 20px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  background-color: rgb(255, 255, 255);
  color: #000000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.book-btn:hover {
  background-color: #bc9e82; /* Match Explore button hover */
  color: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}
/* =============================
   Testimonials
============================= */
#testimonials {
  background-color: #fdfaf7;
}

#testimonials .carousel-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 3px solid #aad4ab;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

#testimonials .carousel-item img:hover {
  transform: scale(1.05);
}

.carousel-item p {
  font-style: italic;
  font-size: 1.1rem;
}

.carousel-item small {
  color: #7bb27d;
}
/* =============================
   Carousel Controls & Indicators
============================= */
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
  width: 40px !important;
  height: 40px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  background-color: #e6d7c4 !important; /* Force nude background */
  border-radius: 50% !important;
  border: 2px solid #000000 !important;
  color: #000000 !important;
  outline: none !important; /* Prevent any outline interference */
}

#testimonialCarousel .carousel-control-prev {
  left: 15px !important; /* Space from left edge */
}

#testimonialCarousel .carousel-control-next {
  right: 15px !important; /* Space from right edge */
}

#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
  background-color: #e6d7c4 !important; /* Nude background */
  padding: 10px;
  border-radius: 50% !important;
}

#testimonialCarousel .carousel-control-prev-icon path,
#testimonialCarousel .carousel-control-next-icon path {
  fill: #000000 !important; /* Black icons for visibility */
}

/* =============================
   WhatsApp Floating Button
============================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  font-size: 28px;
  padding: 14px 16px;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* =============================
   Footer
============================= */
.footer-link {
  color: #e0d2c3;
  text-decoration: none;
  display: block;
  margin-bottom: 0.3rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
}

footer i {
  transition: transform 0.3s;
}

footer i:hover {
  transform: scale(1.1);
}

/* =============================
   Our Work Carousel
============================= */
#our-work .carousel-inner img {
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

#our-work .carousel-inner img:hover {
  transform: scale(1.02);
}

.package-card {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Keep content at bottom */
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: scale(1.02);
}

.card-overlay {
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  display: flex;
  flex-direction: column;
  align-items: center; /* Center horizontally */
}

.package-card .card-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.package-card .card-text {
  font-size: 1.3rem;
  font-weight: semibold;
  margin-bottom: 1rem;
  text-shadow: #333;
}

.package-card .card-title,
.package-card .card-text,
.package-tags .tag {
  text-shadow: 1.5px 1.5px 3px rgba(0, 0, 0, 0.7);
}

.package-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1rem;
}

.tag {
  background-color: rgba(46, 43, 53, 0.521);
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-size: 1rem;;
}



.addon-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px dashed #c9b9a5;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.addon-card .card-body {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center horizontally */
  text-align: center; /* Ensure text and button align */
}

.addon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.addon-icon i {
  font-size: 2.2rem;
  color: #7bb27d;
}

.addon-card .card-title {
  font-weight: 600;
  color: #59453d;
}

.addon-card ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #333;
}


/* =============================
   About Section
============================= */
#about {
  min-height: 700px; /* Increased to fit more content */
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  padding: 6rem 0;
}

#about .container {
  position: relative;
  z-index: 1;
}

#about h2 {
  font-family: 'Tenor Sans', sans-serif;
  color: #333;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.about-image {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  background: linear-gradient(45deg, #ffffff, #f0f0f0);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.award-image {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.award-image:hover {
  transform: scale(1.05);
}

.award-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #d4af37; /* Gold color */
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.about-content {
  background: #ffffff;
  padding: 2.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.about-content:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.about-content:hover::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ffffff, #f9e79f, #ffffff, #f9e79f);
  background-size: 200% 200%;
  animation: shimmer 2s linear infinite;
  border-radius: 16px;
  z-index: -1;
  filter: blur(10px);
  opacity: 0.7;
}

@keyframes shimmer {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

#about .lead {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #555;
}

#about p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1rem;
}

#about ul {
  padding-left: 0;
}

#about li {
  margin-bottom: 1.5rem;
}

#about .badge {
  font-size: 1rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

#about .badge:hover {
  transform: scale(1.1);
}

#about .btn-outline-gold {
  border-color: #d4af37;
  color: #d4af37;
  border-width: 2px;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

#about .btn-outline-gold:hover {
  background-color: #d4af37;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Icons */
#about .text-teal {
  color: #26a69a; /* Soft teal contrasting the theme */
}

#about .fas {
  transition: transform 0.3s ease;
}

#about .fas:hover {
  transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #about {
    padding: 3rem 0;
    min-height: auto;
  }
  .about-content {
    padding: 1.5rem;
  }
  .about-image {
    padding: 0.5rem;
  }
  .award-overlay {
    font-size: 0.9rem;
  }
  #about li {
    margin-bottom: 1rem;
  }
}

/* =============================
   Booking Form Styling
============================= */
#contact {
  background-color: #f8f9fa;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

#contact h2 {
  color: #333;
  font-weight: 700;
}

.form-label {
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
}

.form-control {
  border: 2px solid #e6d7c4;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  background-color: #fff;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #7bb27d;
  box-shadow: 0 0 5px rgba(123, 178, 125, 0.3);
  outline: none;
}

.service-options {
  margin-top: 1rem;
  justify-content: center;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border: 2px solid #e6d7c4;
  border-radius: 15px;
  padding: 10px;
  width: 130px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 220px;
}

.service-card input[type="radio"] {
  display: none;
}

.service-card input[type="radio"]:checked + .service-icon {
  background-color: #7bb27d;
  color: #fff;
}

.service-card input[type="radio"]:checked ~ .selection-indicator {
  background-color: #7bb27d; /* Filled circle when selected */
  border: none; /* Remove border when filled */
}

.service-icon {
  width: 40px;
  height: 40px;
  background-color: #e6d7c4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.service-card span {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.25rem;
}

.service-price {
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.75rem;
  color: #666;
  margin: 0;
  flex-grow: 1;
}

.selection-indicator {
  display: block; /* Always visible as an empty circle by default */
  width: 10px;
  height: 10px;
  border: 2px solid #e6d7c4; /* Empty circle */
  border-radius: 50%;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.btn-custom {
  background-color: #7bb27d;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  transition: background-color 0.3s ease;
}

.btn-custom:hover {
  background-color: #63a166;
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .service-options {
    gap: 10px;
  }
  .service-card {
    width: 45%;
    margin: 0 5px;
    min-height: 240px;
  }
  .service-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  #contact {
    padding: 15px;
  }
}

.extras-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.extra-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border: 2px solid #e6d7c4;
  border-radius: 15px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 180px;
  position: relative;
}

.extra-card input[type="radio"] {
  display: none;
}

.extra-card input[type="radio"]:checked ~ .extra-icon {
  background-color: #d4af37;
  color: #fff;
}

.extra-card input[type="radio"]:checked ~ .selection-indicator {
  background-color: #d4af37;
  border: none;
}

.extra-icon {
  width: 40px;
  height: 40px;
  background-color: #e6d7c4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.extra-card span {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.25rem;
}

.extra-price {
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
}

.selection-indicator {
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid #d4af37;
  border-radius: 50%;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

/* Optional: Slightly larger layout for desktop */
@media (min-width: 768px) {
  .extras-options {
    grid-template-columns: repeat(2, 1fr);
  }
}
