/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Playfair+Display:wght@400;700&family=Poppins:wght@400;700&display=swap');

/* Font Variables */
:root {
  --font-primary: 'Roboto', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  --font-tertiary: 'Poppins', sans-serif;
}
html{
  scroll-behavior: smooth;
  font-size: 16px; /* Base font size */
  overflow-x: hidden;
}


/* Apply Fonts */
body {
  font-family: var(--font-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
}

p, a, button {
  font-family: var(--font-tertiary);
}

/* Reset & base */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'Helvetica Neue', sans-serif; line-height:1.6; color:#333; overflow-x: hidden; }
.container { width:90%; max-width:1200px; margin:0 auto; overflow-x: hidden; }

/* Variables */
:root {
  --gold: #c19a6b;
  --dark: #333;
  --light: #fff;
}

/* ---------------- Header ---------------- */
.site-header {
  background: var(--dark);
  /* border-bottom: 1px solid #eee; */
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 100px;
  /* Allow dropdowns to overflow */
  overflow: visible;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  max-height: 100px;
}

.site-header .container {
  display: flex;
  align-items: center;
  position: sticky;
  z-index: 80;
  top: 0;
  justify-content: space-between;
  /* padding: 1rem 0; */
  overflow: visible;
  min-height: 100px;
}

.logo img {
  max-height: 100px;
  width: auto;
  height: auto; 
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
}

/* -------- Main Nav -------- */
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  color: var(--gold);
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--light);
}

/* ----- Submenu ----- */
.site-nav ul li {
  position: relative;
}

.site-nav .submenu {
  display: none;
  position: absolute;
  top: 100%;    /* directly under “Treatments” */
  left: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  min-width: 180px;
  z-index: 100;
}

.site-nav .submenu li a {
  display: block;
  padding: 0.75em 1em;
  color: #333;
  white-space: nowrap;
}

.site-nav .submenu li a:hover {
  background: #f5f5f5;
}

/* show on hover (desktop) */
.site-nav ul li.has-submenu:hover > .submenu {
  display: block;
}

/* arrow indicator */
.site-nav ul li.has-submenu > a::after {
  content: " ▼";
  font-size: 0.7em;
}

/* -------- Responsive -------- */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--light);
    flex-direction: column;
    padding: 1rem;
  }
  .site-nav.open {
    display: flex;
  }
  .site-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .site-nav a {
    padding: 0.5rem 0;
  }

  /* in mobile, let tapping “Treatments” toggle its submenu */
  .site-nav .submenu {
    position: static;
    box-shadow: none;
  }
  .site-nav ul li.has-submenu.open > .submenu {
    display: block;
  }
}




/* Hero */
/* .hero { height:70vh; background-size:cover; background-position:center; display:flex; align-items:center; color:var(--light); }
.hero-content { max-width:600px; }
.hero h1 { font-size:3rem; margin-bottom:0.5rem; }
.hero p { margin-bottom:1.5rem; } */

/* Buttons */
.btn, .btn-outline {
  display:inline-block; padding:0.75rem 1.5rem; text-decoration:none; font-weight:600; border-radius:4px;
}
.btn-treat, .btn-outline {
  display:inline-block; padding:0.75rem 1.5rem; text-decoration:none; font-weight:600; border-radius:4px; margin-bottom: 50px;
}
.btn, .btn-treat{ background:var(--gold); color:var(--light); }
.btn:hover { opacity:0.9; }
.btn-outline { border:2px solid var(--gold); color:var(--gold); }
.btn-outline:hover { background:var(--gold); color:var(--light); }

.hero {
    /* background: url('/images/istockphoto-501398614-612x612.jpg') no-repeat center center/cover; */
    background-color: #BF863F;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.hero h1 {
    font-size: 3rem;
}
.content {
    padding: 20px;
}
.content h2 {
    text-align: center;
    margin-bottom: 20px;
}
.services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    text-align: justify;
}
.service {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    width: 300px;
    text-align: justify;
}
.service img {
    max-width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 5px;
}



/* Why Choose Us */
/* Why Choose My Clinic */
.why-choose {
  padding: 4rem 0;
  background: var(--light);
}

.why-choose .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.why-choose h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--dark);
  font-size: 2rem;
  font-weight: 700;
}

/* grid of cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.why-card {
  background: #fff;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-radius: 4px;
}

.why-card img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.why-card h3 {
  margin: 0.5rem 0;
  font-size: 1.25rem;
  color: var(--dark);
}

.why-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* optional tweak at very small widths */
@media (max-width: 400px) {
  .why-choose h2 {
    font-size: 1.75rem;
  }
}

/* FAQ section */
/* 1) Grid layout: image + FAQ side-by-side */
.faq-section .faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  padding: 4rem 0;
}

/* full-width container */
.faq-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* image styling */
.faq-image img {
  width: 100%;
  height: 500px;
  display: block;
  border-radius: 4px;
  margin-bottom: 50px;
  margin-top: 20px;
}

/* FAQ heading */
.faq-container h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
  text-align: left;
}

/* each FAQ item */
.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
}

/* question styling – acts like a button */
.faq-question {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-right: 1.5rem;
  margin-bottom: 30px;
}

/* plus/minus indicator */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.2s;
}

/* answer hidden by default */
.faq-answer {
  display: none;
  margin-top: 0.5rem;
  color: #555;
  line-height: 1.6;
}

/* when open, show answer & rotate indicator */
.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question::after {
  content: "–";
}

/* responsive: stack into one column under 768px */
@media (max-width: 768px) {
  .faq-section .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-image {
    margin-bottom: 2rem;
  }
}

/* Footer */
/* Footer base */
/* Footer base */
.site-footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
  }
  .site-footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
  }
  .site-footer a:hover {
    color: var(--gold);
  }
  
  /* Four-column grid */
  .footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    /* justify-items: center; */
    text-align: justify;
  }
  .footer-column h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: justify;

  }
  .footer-column p,
  .footer-column ul {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  .footer-column ul li {
    margin-bottom: 0.5rem;
  }
  
  /* Social links layout */
  .social{
    margin-left: 40px;
  }
  .social-links {
    display: flex;
    /* justify-content: center; */
    text-align: justify;
    gap: 10px;
    flex-wrap: wrap;
    
  }
  
  /* Footer bottom text */
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #ccc;
  }
  
  /* Tablet: 2 columns */
  @media (max-width: 1024px) {
    .footer-columns {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Mobile: 1 column */
  @media (max-width: 600px) {
    .footer-columns {
      grid-template-columns: 1fr;
    }
    .footer-column {
      padding: 1rem 0;
    }
  }
  /* Responsive adjustments */
  @media (max-width:600px){
     .social{
    margin: 0px;
  }
  }

  /* whats app button style */
   .whatsapp-float {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 999;
      background: #25d366;
      border-radius: 50%;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      padding: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: box-shadow 0.2s;
    }
    .whatsapp-float:hover {
      box-shadow: 0 4px 16px rgba(0,0,0,0.25);
      background: #20ba5a;
    }
