/* === Base Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #7BA083;
  --accent-color: #8A4E56;
  --light-bg: #F6F9F7;
  --cream-bg: #fffaf6;
  --text-dark: #1f1f1f;
  --text-brown: #4a2c2a;
  --hover-dark: #703f3e;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--cream-bg);
  color: var(--text-brown);
  line-height: 1.6;
  margin-left: 220px;
}

/* === Sidebar === */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 100%;
  background: var(--accent-color);
  color: #fff;
  padding: 2rem 1rem;
  z-index: 1000;
}

.sidebar .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.sidebar ul {
  list-style: none;
}

.sidebar ul li {
  margin-bottom: 1.2rem;
}

.sidebar ul li a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.sidebar ul li a:hover {
  color: #ccc;
}

/* === Mobile Menu Button === */
.menu-toggle {
  display: none;
  position: fixed;
  top: 1rem;
  left: 1rem;
  font-size: 2rem;
  background: none;
  border: none;
  z-index: 1001;
  color: var(--text-dark);
}

/* === Hero Section === */
.hero {
  background-color: var(--light-bg);
  padding: 4rem 2rem;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* === Buttons === */
.btn {
  background: var(--primary-color);
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--hover-dark);
}

/* === Sections === */
.section {
  padding: 3rem 2rem;
}

.section-heading {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--accent-color);
  text-align: center;
  margin-bottom: 2rem;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.treatment-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.treatment-card:hover {
  transform: translateY(-5px);
}

.treatment-card h3 {
  color: var(--accent-color);
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
}

.testimonial {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* === Contact & Map === */
.mini-contact, .mini-contact-map {
  text-align: center;
}

.mini-contact-map iframe {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  border: none;
}

/* === WhatsApp Floating Button === */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  padding: 14px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 100;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

/* === Footer === */
.site-footer {
  text-align: center;
  padding: 2rem;
  background: var(--light-bg);
  font-size: 0.9rem;
  color: var(--text-brown);
}

/* === Responsive === */
@media (max-width: 768px) {
  body {
    margin-left: 0;
  }

  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .sidebar.active {
    transform: translateX(0);
  }

  .menu-toggle {
    display: block;
  }

  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }
}
