/* Reset & Font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #fef6f2;
  color: #3b2e2a;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #3b2e2a;
  transition: color 0.3s ease;
}

a:hover {
  color: #c59d5f;
}

h1, h2 {
  text-align: center;
  margin-bottom: 0.5em;
}

.section-subtitle {
  text-align: left;
  margin: 2em 0 1em 0;
  font-size: 1.3em;
  color: #9b6f31;
  font-weight: 600;
  border-left: 4px solid #c59d5f;
  padding-left: 0.5em;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 0em;
}

.logo {
  position: relative;
  font-size: 2vw;
  font-weight: bold;
  color: #c59d5f;
  white-space: nowrap;
  overflow: hidden;
  cursor: default;
  animation: fadeInUp 1s ease-out;
}

/* Responsive size for smaller screens */
@media (max-width: 480px) {
  .logo {
    font-size: 6vw;
  }
}

/* Shooting star styles */
.shooting-star {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1em;
  color: #f5e1a4;
  animation: shoot 2.5s ease-out forwards;
  opacity: 0;
}

/* Logo fade-in */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Shooting star animation */
@keyframes shoot {
  0% {
    left: 0;
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
  }
  10% {
    opacity: 1;
  }
  60% {
    opacity: 1;
    transform: scale(1.2) rotate(20deg);
  }
  100% {
    left: 100%;
    opacity: 0;
    transform: scale(0.5) rotate(45deg);
  }
}


.nav-links {
  display: flex;
  gap: 1.5em;
}

.nav-links a {
  font-weight: 600;
  padding: 0.4em 0.6em;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  background-color: #c59d5f;
  color: white;
  outline: none;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  font-size: 1.8em;
  border: none;
  cursor: pointer;
  color: #3b2e2a;
}

/* Hero Section */
.hero {
  background-image: url("hero-image.jpg"); /* ensure this path is correct */
  background-size: cover;
  background-position: center;
  height: 80vh;
  position: relative;
}

.hero-overlay {
  background-color: rgba(255, 245, 238, 0.9);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2em;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5em;
  color: #8b5e00;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 1em;
  font-weight: 600;
  color: #7c5a0b;
}

.hero .btn {
  background-color: #c59d5f;
  color: white;
  padding: 0.8em 1.5em;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  margin-top: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero .btn:hover,
.hero .btn:focus {
  background-color: #aa8140;
  outline: none;
}

.slideshow-container {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 80vh;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide:first-child {
  background-image: url('hero-image.jpg'); /* your existing hero background */
}

.slide.active {
  opacity: 1;
  position: relative;
  z-index: 1;
}

.slide-overlay {
  background-color: rgba(255, 245, 238, 0.7); /* slightly transparent */
  padding: 2em;
  border-radius: 12px;
  text-align: center;
  max-width: 90%;
  color: #3b2e2a;
}

.slide-overlay h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5em;
  color: #8b5e00;
}

.slide-overlay p {
  font-size: 1.3rem;
  margin-bottom: 1em;
  font-weight: 600;
  color: #7c5a0b;
}

.slide-overlay .btn {
  background-color: #c59d5f;
  color: white;
  padding: 0.8em 1.5em;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.slide-overlay .btn:hover,
.slide-overlay .btn:focus {
  background-color: #aa8140;
  outline: none;
}

/* Services */
.services {
  padding: 4em 2em;
  background-color: #fff6f0;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2em;
  margin-top: 2em;
}

.card {
  background-color: #fffaf7;
  border-radius: 12px;
  padding: 1.5em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  text-align: center;
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card h4 {
  margin-bottom: 0.6em;
  color: #b97514;
}

.card strong {
  display: block;
  margin-top: 0.8em;
  font-weight: 700;
  color: #7b4d08;
}

/* Hover effect on cards */
.card:hover,
.card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(197, 157, 95, 0.5);
  outline: none;
  cursor: pointer;
}

/* Premium Medical cards style */
.premium-medical {
  border: 2px solid #b97514;
  background-color: #fff7e6;
}

/* Combo cards style */
.combo {
  border: 2px solid #c59d5f;
  background-color: #fff2d9;
}

/* Contact Section */
.contact {
  padding: 4em 2em;
  text-align: center;
  background-color: #fff6f0;
}

.contact p {
  font-weight: 600;
  margin-bottom: 1.5em;
  font-size: 1.1rem;
  color: #7b4d08;
}

.contact-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2em;
  margin-bottom: 2em;
}

/* Email button */
.email-btn {
  background-color: #b97514;
  color: white;
  padding: 0.8em 1.6em;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  min-width: 140px;
  height: 45px;
  align-self: center;
}

.email-btn:hover,
.email-btn:focus {
  background-color: #c59d5f;
  outline: none;
}


/* Contact form */
.contact-form {
  max-width: 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  text-align: left;
}

.contact-form label {
  font-weight: 600;
  color: #8b5e00;
}

.contact-form input,
.contact-form textarea {
  padding: 0.6em 0.8em;
  border: 1.5px solid #c59d5f;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #b97514;
  outline: none;
}

.submit-btn {
  background-color: #b97514;
  color: white;
  padding: 0.8em 1.5em;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 0.6em;
}

.submit-btn:hover,
.submit-btn:focus {
  background-color: #c59d5f;
  outline: none;
}

/* Map */
.map-container {
  margin-top: 2em;
  max-width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(197, 157, 95, 0.4);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  border-radius: 12px;
}

/* Footer */
footer {
  text-align: center;
  padding: 2em;
  background-color: #fff;
  color: #a3907c;
  font-size: 0.9em;
}
.contact-email-form {
  margin: 2em auto 3em auto;
  max-width: 400px;
  text-align: left;
  font-size: 1rem;
  color: #3b2e2a;
}

.contact-email-form label {
  display: block;
  margin-bottom: 0.5em;
  font-weight: 600;
  color: #8b5e00;
}
#serviceCheckboxes {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 1rem 2rem;
  max-width: 600px;
  margin: 1.5em auto 2em;
  padding: 1em 1.5em;
  background-color: #fffaf7;
  border: 1.5px solid #c59d5f;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(197, 157, 95, 0.3);
  width: 100%;
  box-sizing: border-box;
}

#serviceCheckboxes label {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  font-size: 1.1rem;
  color: #8b5e00;
  cursor: pointer;
  padding: 0.5em 1em;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(197, 157, 95, 0.15);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
  width: 100%;
  box-sizing: border-box;
}

#serviceCheckboxes input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #c59d5f;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
}

#serviceCheckboxes label:hover {
  background-color: #c59d5f;
  color: white;
  box-shadow: 0 4px 12px rgba(197, 157, 95, 0.7);
}

@media (max-width: 600px) {
  #serviceCheckboxes {
    grid-template-columns: 1fr;
  }
}





#serviceSelect {
  width: 100%;
  height: auto;
  padding: 0.5em;
  border: 1.5px solid #c59d5f;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fffaf7;
  color: #3b2e2a;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
  cursor: pointer;
  user-select: none;
}

#serviceSelect option {
  padding: 0.3em;
}

#serviceSelect option:hover {
  background-color: #c59d5f;
  color: white;
}

/* Base button style */
/* Shared Button Style */
.btn {
  margin-top: 1em;
  background-color: #c59d5f;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  width: 100%;
  height: 45px; /* Force both buttons to have the same height */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-size: 1rem;
  line-height: 1;
}

/* Hover effect */
.btn:hover,
.btn:focus {
  background-color: #aa8140;
  outline: none;
  color: white;
}

/* WhatsApp Icon */
.whatsapp-icon {
  height: 28px;
  width: 28px;
  margin-top: 1px; /* slight adjustment */
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    right: 1em;
    top: 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1em;
    border-radius: 8px;
    min-width: 150px;
    z-index: 200;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 0.8em 1em;
    border-radius: 6px;
  }

  .nav-links a:hover,
  .nav-links a:focus {
    background-color: #c59d5f;
    color: white;
  }

  .hamburger {
    display: block;
    color: #3b2e2a;
    cursor: pointer;
  }

  .contact-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .contact-form {
    max-width: 100%;
  }
}
/* Gallery Section */
.gallery-section {
  padding: 4rem 2rem;
  background-color: #fdf8f5;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #a67c6b;
  font-weight: bold;
}

.section-description {
  font-size: 1.1rem;
  color: #6e5c58;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  background: #fdf8f5;
   
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease, filter 0.3s ease;
  border-radius: 12px;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}


/* Wrap TikTok in fixed 9:16 container */
.tiktok-embed-container {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 12px;
  background: #000; /* Prevents white flashes */
  display: flex;
  align-items: center;
  justify-content: center;
}

.tiktok-embed-container blockquote {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  top: 0;
  left: 0;
  margin: 0;
}
.tiktok-embed-container:hover {
  transform: scale(1.03);
}
/* Base style for icons */
footer .social-links .icon {
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  
}

/* Individual sizing for better visual balance */
footer .social-links .tiktok-icon {
  width: 28px;
  height: 35px;
}

footer .social-links .fb-icon {
  width: 30px;
  height: 35px;
}

/* Hover effect */
footer .social-links .icon:hover {
  transform: scale(1.2);
  filter: grayscale(0%);
}


/* Collapsible section styles */
.collapsible {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Push arrow to the right */
  cursor: pointer;
}
.collapsible::after {
  content: '\25BC';
  font-size: 0.8em;
  transform-origin: center;
  transition: transform 0.3s ease;
  position: static; /* No need for absolute positioning */
  margin-left: 8px; /* Space between text and arrow */
}

.collapsible.active::after {
  transform: rotate(180deg); /* Point up when active */
}

.collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.collapsible-content.open {
  max-height: 9000px; /* adjust if needed */
}
