@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary-color: #D4AF37;
  --primary-hover: #B5952F;
  --bg-white: #FFFCF5;
  --bg-beige: #F4EEDF;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --text-muted: #666666;
  --footer-bg: #0A0A0A;
  
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.3s ease-in-out;
  --border-radius: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--primary-color);
  color: #0A0A0A;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  background-color: var(--primary-hover);
  color: #0A0A0A;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 1. Navbar */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 1000;
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-white);
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-radius: var(--border-radius);
  padding: 0.5rem 0;
}

.dropdown:hover .dropdown-content {
  display: block;
  animation: fadeIn 0.3s;
}

.dropdown-content a {
  display: block;
  padding: 0.8rem 1.5rem;
  text-transform: none;
  font-weight: 400;
}

.dropdown-content a:hover {
  background-color: var(--bg-beige);
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
}

/* 2. Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(20, 20, 20, 0.4), rgba(20, 20, 20, 0.6)), url('../images/clinic.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  padding: 0 20px;
}

.hero-content {
  max-width: 800px;
}

.hero-label {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 5px 15px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  border-radius: 20px;
}

.hero h1 {
  font-size: 4.5rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* 3. Trust/Stats Bar */
.trust-bar {
  background-color: var(--bg-beige);
  padding: 4rem 5%;
  text-align: center;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem auto;
  flex-wrap: wrap;
}

.stat-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  flex: 1;
  min-width: 250px;
}

.stat-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* 4. Trending Treatments Exact Match */
.trending {
  padding: 5rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.trending-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.trending-header-left .section-label {
  color: var(--primary-color);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  margin-bottom: 10px;
  display: block;
}

.trending-header-left h2 {
  font-size: 2.8rem;
  color: #222222;
  font-weight: 700;
  margin: 0;
}

.trending-header-right {
  max-width: 400px;
  text-align: right;
}

.trending-header-right p {
  color: #555555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.pill-btn {
  background-color: #4A4343;
  border-radius: 50px;
  font-size: 0.85rem;
  padding: 12px 32px;
}
.pill-btn:hover {
  background-color: var(--primary-color);
}

.treatments-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.masonry-card {
  position: relative;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.span-3 { grid-column: span 3; }
.span-5 { grid-column: span 5; }
.span-6 { grid-column: span 6; }
.span-7 { grid-column: span 7; }
.span-9 { grid-column: span 9; }

.masonry-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.50, 1);
  z-index: 1;
}

.masonry-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.85) 0%, rgba(212, 175, 55, 0.45) 100%);
  z-index: 2;
  transition: opacity 0.6s ease;
}

.masonry-card:hover .masonry-bg {
  transform: scale(1.06);
}

.view-label {
  position: absolute;
  top: 24px;
  left: 24px;
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  z-index: 3;
}

.arrow-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #ffffff;
  font-size: 1.2rem;
  z-index: 3;
}

.masonry-card h3 {
  position: relative;
  z-index: 3;
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
  margin: 0;
  padding: 0 20px;
}

.span-6 h3, .span-7 h3, .span-9 h3 {
  font-size: 2.2rem;
}
/* 5. Service Category Image Accordion */
.service-accordion-section {
  padding: 5rem 5%;
  background-color: var(--bg-beige);
}

.accordion-container {
  display: flex;
  height: 600px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 15px;
}

.accordion-panel {
  position: relative;
  flex: 1;
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  display: flex;
  align-items: flex-end;
}

.accordion-panel.active,
.accordion-panel:hover {
  flex: 4;
}

.panel-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 100%);
  transition: background 0.6s ease;
}

.accordion-panel:hover .panel-overlay,
.accordion-panel.active .panel-overlay {
  background: linear-gradient(to top, rgba(212, 175, 55,0.9) 0%, rgba(0,0,0,0.3) 100%);
}

.panel-content-wrap {
  position: relative;
  z-index: 2;
  padding: 2rem;
  color: var(--text-light);
  width: 100%;
}

.panel-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.accordion-panel h2 {
  color: var(--text-light);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  white-space: nowrap;
}

.panel-hidden-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.accordion-panel.active .panel-hidden-content,
.accordion-panel:hover .panel-hidden-content {
  opacity: 1;
  max-height: 200px;
  margin-top: 1rem;
}

.panel-hidden-content p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #eeeeee;
  line-height: 1.5;
}

.read-more {
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid var(--text-light);
  padding-bottom: 2px;
}

.read-more::after {
  content: '→';
  margin-left: 8px;
  transition: transform 0.3s;
}

.read-more:hover::after {
  transform: translateX(5px);
}

/* 6. Testimonials Slider */
.testimonials {
  padding: 5rem 5%;
  background-color: var(--bg-white);
  overflow: hidden;
  position: relative;
}

.slider-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  flex: 0 0 33.333%;
  padding: 0 15px;
}

.testimonial-inner {
  background: var(--bg-beige);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  height: 100%;
}

.stars {
  color: #FFD700;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.quote {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.author {
  font-weight: 600;
  color: var(--text-dark);
}

.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  gap: 1rem;
}

.slider-arrow {
  background: none;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--primary-color);
  color: var(--text-light);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary-color);
  width: 20px;
  border-radius: 10px;
}

/* 7. Blog Section Exact Match */
.blog {
  padding: 5rem 0;
  background-color: #F4F1EA;
  overflow: hidden;
}

.blog-header {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-carousel-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 60px;
}

.swiper.blogSwiper {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 50px;
}

.swiper-slide.blog-slide {
  width: 320px;
  height: 420px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-thumb {
  height: 70%;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.blog-title-box {
  height: 30%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.blog-title-box h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: #222222;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

.blog-title-box h3 a {
  color: #222222;
}
.blog-title-box h3 a:hover {
  color: var(--primary-color);
}

.swiper-nav-prev, .swiper-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10;
  user-select: none;
}
.swiper-nav-prev { left: 10px; }
.swiper-nav-next { right: 10px; }

/* 8. FAQ Accordion */
.faq {
  padding: 5rem 5%;
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 1rem;
}

.accordion-header {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem 0;
  font-size: 1.2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dark);
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-body p {
  padding-bottom: 1.5rem;
  color: var(--text-muted);
}

/* 9. Footer */
.footer {
  background-color: var(--footer-bg);
  color: var(--text-light);
  padding: 4rem 5% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto 3rem;
}

.footer-col h4 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-col p, .footer-col a {
  color: #aaaaaa;
  margin-bottom: 0.8rem;
  display: block;
}

.footer-col a:hover {
  color: var(--primary-color);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  display: inline-block;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 1.5rem;
}

.social-links a {
  background: #222;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #777;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-bottom-links a {
  color: #777;
  margin-left: 15px;
}

.footer-bottom-links a:hover {
  color: var(--text-light);
}

/* 11. Treatments Grid (Services Page) */
.service-category {
  padding: 5rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}
.category-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.category-header h2 {
  font-size: 2.8rem;
  color: #222222;
  margin-bottom: 1rem;
}
.category-header p {
  color: #666;
  font-size: 1.1rem;
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 4rem;
  background: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
}
.service-row:hover {
  transform: translateY(-5px);
}
.service-row.reversed .service-img-col {
  order: 2;
}
.service-row.reversed .service-text-col {
  order: 1;
}
.service-img-col {
  height: 100%;
  min-height: 400px;
}
.service-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-text-col {
  padding: 3rem 4rem;
}
.service-text-col h3 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
}
.service-text-col p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-benefits {
  margin-bottom: 2rem;
}
.service-benefits li {
  margin-bottom: 0.8rem;
  color: #444;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.service-benefits .check {
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 10px;
}
.btn.outline-btn {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.btn.outline-btn:hover {
  background: var(--primary-color);
  color: var(--text-light);
}

/* Old Treatments Grid for backward compatibility */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.treatment-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 350px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.treatment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.50, 1);
}

.treatment-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.5rem;
  transition: background 0.4s ease;
  z-index: 2;
}

.treatment-card:hover img {
  transform: scale(1.08);
}

.treatment-card:hover .treatment-overlay {
  background: linear-gradient(to top, rgba(212, 175, 55,0.9) 0%, rgba(0,0,0,0.2) 80%);
}

.treatment-label {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-light);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  align-self: flex-start;
}

.treatment-card h3 {
  color: var(--text-light);
  font-size: 1.5rem;
  margin: 0;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .treatments-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .hero h1 { font-size: 3.5rem; }
  
  .panel, .panel:nth-child(even) {
    flex-direction: column;
  }
  
  .panel-img {
    width: 100%;
    min-height: 300px;
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    transition: 0.3s;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .dropdown-content {
    position: static;
    display: none;
    box-shadow: none;
    text-align: center;
  }
  
  .dropdown.active .dropdown-content {
    display: block;
  }
  
  .hamburger {
    display: block;
  }
  
  .nav-cta {
    display: none;
  }
  
  .hero h1 { font-size: 2.5rem; }
  
  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonial-card {
    flex: 0 0 100%;
  }
}

/* 10. Inner Pages General */
.inner-hero {
  padding: 150px 5% 60px;
  background-color: var(--bg-beige);
  text-align: center;
  border-bottom: 1px solid #eaeaea;
}

.inner-hero h1 {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.inner-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.inner-content {
  padding: 5rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Two Column Layout */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.two-col-grid img {
  border-radius: var(--border-radius);
}

.text-col h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.text-col p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.section-label {
  display: inline-block;
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* Contact Page Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.info-item .icon {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-right: 15px;
  line-height: 1;
}

.info-item p {
  margin: 0;
  color: #444;
}

.contact-form {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* Blog Archive Grid */
.blog-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.archive-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.archive-card:hover {
  transform: translateY(-5px);
}
.archive-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.archive-card-content {
  padding: 1.5rem;
}
.archive-card-content .date {
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.archive-card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}
.archive-card-content p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .blog-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .two-col-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .treatments-masonry {
    display: flex;
    flex-direction: column;
  }
  .masonry-card {
    height: 250px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .treatments-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: sticky;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.whatsapp-float:hover {
  background-color: #1ebe57;
  transform: scale(1.1);
  box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
  color: #FFF;
}

@media (max-width: 768px) {
  .accordion-container {
    flex-direction: column;
    height: 800px;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 900px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .service-img-col {
    min-height: 250px;
  }
  .service-row.reversed .service-img-col {
    order: unset;
  }
  .service-row.reversed .service-text-col {
    order: unset;
  }
  .service-text-col {
    padding: 2rem;
  }
}


/* 0. Topbar */
.topbar { background-color: var(--primary-color); color: white; font-size: 0.85rem; height: 40px; display: flex; align-items: center; z-index: 1001; position: relative; }
.topbar-container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 5%; display: flex; justify-content: space-between; align-items: center; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar a { color: white; text-decoration: none; font-weight: 500; display: flex; align-items: center; transition: var(--transition); }
.topbar a:hover { color: rgba(255,255,255,0.8); }
.topbar .icon { margin-right: 8px; font-size: 1rem; }
.topbar-divider { color: rgba(255,255,255,0.4); }
@media (max-width: 768px) {
    .topbar-container { flex-direction: column; text-align: center; gap: 10px; padding: 10px 5%; }
    .topbar-left, .topbar-right { flex-direction: column; gap: 5px; }
    .topbar-divider { display: none; }
    .topbar { height: auto; }
}

/* Dark Mode Styles */
:root.dark-mode {
  --bg-white: #0A0A0A;
  --bg-beige: #0D0D0D;
  --text-dark: #FFFFFF;
  --text-muted: #B3AE9F;
}
.dark-mode body {
  background-color: var(--bg-white);
  color: var(--text-dark);
}
.dark-mode .trending-header-left h2,
.dark-mode .blog-title-box h3,
.dark-mode .blog-title-box h3 a,
.dark-mode .section-header h2,
.dark-mode .accordion-header,
.dark-mode .author {
  color: var(--text-dark) !important;
}
.dark-mode .trending-header-right p,
.dark-mode .quote {
  color: var(--text-muted) !important;
}
.dark-mode .blog,
.dark-mode .service-accordion-section,
.dark-mode .trust-bar,
.dark-mode .testimonial-inner {
  background-color: var(--bg-beige) !important;
}
.dark-mode .blog-slide,
.dark-mode .stat-card,
.dark-mode .testimonials {
  background-color: var(--bg-white) !important;
}
.dark-mode .accordion-item {
  border-bottom: 1px solid #333 !important;
}
.dark-mode .navbar {
  background-color: var(--bg-white) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5) !important;
}
.dark-mode .dropdown-content {
  background-color: var(--bg-white) !important;
  box-shadow: 0 8px 16px rgba(0,0,0,0.5) !important;
}
.dark-mode .dropdown-content a:hover {
  background-color: var(--bg-beige) !important;
}
.dark-mode .lang-switcher a {
  color: var(--text-dark);
}
.dark-mode .lang-switcher a#lang-en,
.dark-mode .lang-switcher a#lang-ur {
  color: inherit;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: translateY(-3px);
  color: #FFF;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}
.whatsapp-float svg {
  width: 35px;
  height: 35px;
}

/* Enhanced Comprehensive Mobile Responsiveness */
@media (max-width: 768px) {
  /* Containers & Padding */
  .trending, .trust-bar, .service-accordion-section, .hero, .blog, .testimonials, .footer {
    padding: 3rem 5%;
  }

  /* Flex Layouts -> Stack */
  .stats-container, .trending-header-wrap, .accordion-container, .service-row, .footer-grid, .contact-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px;
  }
  
  .footer-grid {
    gap: 30px;
  }
  
  .service-row.reversed .service-img-col {
    order: 0;
  }

  /* Stats / Trust Bar */
  .stats-container .stat-card {
    width: 100%;
    margin-bottom: 0;
  }

  /* Trending Header */
  .trending-header-right {
    text-align: left;
    max-width: 100%;
  }

  /* Masonry Grid -> Single Column */
  .treatments-masonry {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .masonry-card {
    width: 100% !important;
    height: 250px !important;
  }

  /* Accordion (Specialities) */
  .accordion-container {
    height: auto !important;
  }
  
  .accordion-panel {
    width: 100%;
    height: 120px;
    margin-bottom: 10px;
    flex: none !important;
  }
  
  .accordion-panel.active,
  .accordion-panel:hover {
    height: 280px;
  }

  /* Typography Scaling */
  .hero h1 { font-size: 2.2rem !important; }
  h2 { font-size: 1.8rem !important; }
  .section-header h2 { font-size: 2rem !important; }
  .trending-header-left h2 { font-size: 2rem !important; }
  
  /* Contact Form */
  .contact-info, .contact-form-container {
    width: 100% !important;
    padding: 2rem !important;
  }
}
