:root {
  /* Colors based on requirements */
  --clr-white: #ffffff;
  --clr-bg: #FCFCFB;
  --clr-light: #F4F6F5;
  --clr-teal-dark: #1F2F4C;
  --clr-teal: #2B4168;
  --clr-teal-light: #F0F4F8;
  --clr-gold: #cda85f;
  --clr-gold-light: #FBF7E9;
  --clr-text: #334155;
  --clr-text-light: #64748B;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Radii & Shadows */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-pill: 100px;

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(15, 58, 68, 0.1);
  --shadow-gold: 0 15px 30px -5px rgba(212, 175, 55, 0.2);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background-color: var(--clr-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--clr-teal-dark);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-accent {
  color: var(--clr-gold);
}

.text-center {
  text-align: center;
}

.section-header {
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--clr-text-light);
}

.bg-light {
  background-color: var(--clr-light);
}

section {
  padding: 6rem 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--clr-teal-dark);
  color: var(--clr-white);
  border: 2px solid var(--clr-teal-dark);
}

.btn-primary:hover {
  background-color: var(--clr-teal);
  border-color: var(--clr-teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--clr-teal-dark);
  border: 2px solid var(--clr-teal-dark);
}

.btn-outline:hover {
  background-color: var(--clr-teal-dark);
  color: var(--clr-white);
}

.btn-text {
  color: var(--clr-teal-dark);
  font-weight: 500;
}

.btn-text:hover {
  color: var(--clr-gold);
  text-decoration: underline;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  background-color: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-white);
}

.btn-large:hover {
  background-color: #c4a132;
  border-color: #c4a132;
  box-shadow: var(--shadow-gold);
}

/* Navbar */
.navbar {
  padding: 1.5rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out;
}

.navbar.navbar-hidden {
  transform: translateY(-100%);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--clr-teal-dark);
  letter-spacing: -0.5px;
}

.logo-accent {
  color: var(--clr-gold);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--clr-text);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--clr-gold);
}

/* Desktop Dropdown */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.nav-dropdown>a {
  position: relative;
  z-index: 201;
}

.nav-dropdown::after {
  content: '▼';
  font-size: 0.6rem;
  color: var(--clr-text-light);
  transform: translateY(1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 1rem;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 200;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Invisible bridge so hover doesn't break */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  display: block;
  transition: background-color 0.2s, color 0.2s;
}

.nav-dropdown-menu a:hover {
  background-color: var(--clr-light);
  color: var(--clr-teal);
}

/* Active Link States */
.nav-links a.active,
.mobile-accordion-header a.active,
.mobile-accordion-content a.active,
.mobile-link.active {
  color: var(--clr-gold) !important;
  font-weight: 600;
}

/* Glow Link Effect */
.glow-link {
  font-weight: 600 !important;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(205, 168, 95, 0.1), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s infinite linear;
  border-left: 2px solid var(--clr-gold);
}

/* Adjust Glow Link for Mobile Menu Accordion */
.mobile-accordion-content .glow-link {
  padding-left: 1.5rem !important;
  border-left: 2px solid var(--clr-gold);
  background: linear-gradient(90deg, transparent, rgba(205, 168, 95, 0.1), transparent) !important;
  color: var(--clr-gold) !important;
  animation: shimmer 3s infinite linear !important;
}

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

  100% {
    background-position: 200% 0;
  }
}

.nav-cta {
  display: flex;
  gap: 1rem;
}

.mobile-icons {
  display: none;
  position: relative;
}

.actions-dropdown {
  position: absolute;
  top: 120%;
  right: 0;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 0.5rem;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 200;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.actions-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.action-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--clr-text);
  text-decoration: none;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s ease;
}

.action-item:hover {
  background: var(--clr-teal-light);
  color: var(--clr-teal-dark);
}

.action-icon {
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  padding: 4rem 0 6rem;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.subheadline {
  font-size: 1.25rem;
  color: var(--clr-text-light);
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero-image-wrapper {
  flex: 1;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background-color: var(--clr-teal-light);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 4/5;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--clr-white);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

.badge-icon {
  font-size: 2rem;
}

.badge-text strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--clr-teal-dark);
  font-size: 1.1rem;
}

.badge-text span {
  font-size: 0.85rem;
  color: var(--clr-text-light);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Why Us Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: var(--clr-white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--clr-gold);
}

.benefit-card .icon {
  width: 60px;
  height: 60px;
  background-color: var(--clr-teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--clr-text-light);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .subheadline {
    margin: 0 auto 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .nav-cta .btn-outline {
    display: none;
  }
}

/* Specializations Section (New Layout) */
.spec-header-title {
  color: var(--clr-gold);
  font-weight: 600;
}

.spec-header-desc {
  color: var(--clr-gold);
  font-size: 1.25rem;
}

.spec-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.spec-card-new {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  /* very light shadow */
  border: 1px solid rgba(205, 168, 95, 0.2);
  /* subtle gold border */
  display: flex;
  flex-direction: column;
}

.spec-image-box {
  width: 100%;
  height: 350px;
  background-color: #faf8f5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.spec-img-generated {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* covers the box completely */
}

.spec-content-new {
  padding: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.spec-content-new h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--clr-gold);
}

.spec-content-new p {
  color: var(--clr-text);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--clr-gold);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
  margin: 0 auto;
}

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

/* Treatment Process */
.process-steps {
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin-top: 5rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: var(--clr-teal-light);
  z-index: 1;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--clr-teal-dark);
  color: var(--clr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--clr-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.step:hover .step-number {
  transform: scale(1.1);
  background: var(--clr-gold);
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.step p {
  font-size: 0.95rem;
  color: var(--clr-text-light);
}

/* Services Overview */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-box {
  background: var(--clr-white);
  border: 1px solid var(--clr-teal-light);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--clr-gold);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: bottom;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-box:hover::before {
  transform: scaleY(1);
}

.service-box h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-box p {
  color: var(--clr-text-light);
  font-size: 0.95rem;
}

/* More Responsive adjustments */
@media (max-width: 992px) {

  .spec-grid-new {
    grid-template-columns: 1fr;
  }

  .process-steps {
    flex-direction: column;
    gap: 3rem;
    max-width: 600px;
    margin: 3rem auto 0;
  }

  .process-steps::before {
    top: 0;
    left: 40px;
    width: 2px;
    height: 100%;
  }

  .step {
    display: flex;
    text-align: left;
    gap: 2rem;
    align-items: flex-start;
  }

  .step-number {
    margin: 0;
    flex-shrink: 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--clr-white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.stars {
  color: var(--clr-gold);
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.review-text {
  font-style: italic;
  color: var(--clr-text);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.patient-info {
  border-top: 1px solid var(--clr-teal-light);
  padding-top: 1.5rem;
}

.patient-name {
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--clr-teal-dark);
}

.patient-treatment {
  color: var(--clr-text-light);
  font-size: 0.9rem;
}

/* Before / After Placeholder */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.ba-card {
  text-align: center;
}

.ba-images {
  height: 300px;
  background: #E2E8F0;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.ba-split {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--clr-white);
}

.ba-label {
  position: absolute;
  bottom: 1rem;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
}

.before-label {
  left: 1rem;
}

.after-label {
  right: 1rem;
}

.ba-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.ba-card p {
  color: var(--clr-text-light);
}

/* Pricing */
.pricing-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.pricing-text {
  flex: 1;
}

.pricing-text h2 {
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
}

.pricing-text p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: var(--clr-text-light);
}

.pricing-benefits {
  list-style: none;
  margin-bottom: 2.5rem;
}

.pricing-benefits li {
  margin-bottom: 0.75rem;
  font-weight: 500;
  display: flex;
  gap: 0.75rem;
}

.pricing-benefits .check {
  color: var(--clr-gold);
  font-weight: bold;
}

.pricing-cards {
  flex: 1;
  display: flex;
  justify-content: center;
}

.price-box {
  background: var(--clr-white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  border-top: 5px solid var(--clr-gold);
}

/* Pricing Accordions */
.pricing-accordion-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-accordion {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.pricing-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: var(--clr-white);
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--clr-teal-dark);
  transition: background-color 0.3s ease;
}

.pricing-accordion-header:hover {
  background-color: var(--clr-teal-light);
}

.pricing-accordion-icon {
  font-size: 1.5rem;
  color: var(--clr-gold);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-accordion.active .pricing-accordion-icon {
  transform: rotate(45deg);
  /* assuming it's a + icon */
}

.pricing-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: var(--clr-teal-light);
}

.pricing-list {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pricing-item-info {
  flex: 1;
  padding-right: 2rem;
}

.pricing-item-title {
  font-weight: 600;
  color: var(--clr-teal-dark);
  margin-bottom: 0.25rem;
}

.pricing-item-desc {
  font-size: 0.9rem;
  color: var(--clr-text-light);
}

.pricing-item-val {
  font-weight: 700;
  color: var(--clr-gold);
  font-size: 1.1rem;
  white-space: nowrap;
}

.mobile-menu-container {
  position: absolute;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100%;
  background: var(--clr-white);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-md);
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu-container {
  left: 0;
}

.menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  font-size: 2.5rem;
  color: var(--clr-text);
  cursor: pointer;
  line-height: 1;
}

.mobile-links {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-link {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--clr-teal-dark);
}

/* --- Appointment Popup Modal --- */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 58, 68, 0.8);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.popup-content {
  background: var(--clr-white);
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  max-height: 90vh;
  overflow-y: auto;
}

.popup-overlay.active .popup-content {
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--clr-light);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--clr-text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.popup-close:hover {
  background: var(--clr-teal-light);
  color: var(--clr-teal-dark);
}

.popup-header {
  margin-bottom: 2rem;
  text-align: center;
}

.popup-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--clr-teal-dark);
  font-family: var(--font-heading);
}

.popup-header p {
  color: var(--clr-text-light);
}

.wp-shortcode-wrapper {
  width: 100%;
}

/* --- Mobile Menu & Header Adjustments Base --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1000;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--clr-teal-dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 58, 68, 0.5);
  backdrop-filter: blur(5px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --- Mobile Accordion --- */
.mobile-accordion {
  width: 100%;
}

.mobile-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--clr-teal-dark);
  padding: 0;
  border-bottom: none;
  transition: color 0.3s;
}

.mobile-accordion-header a {
  color: inherit;
  text-decoration: none;
  flex: 1;
}

.mobile-accordion-header:hover {
  color: var(--clr-gold);
}

.accordion-toggle-btn {
  background: none;
  border: none;
  color: var(--clr-gold);
  font-size: 2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.mobile-accordion.active .accordion-toggle-btn {
  transform: rotate(45deg);
}

.mobile-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
}

.mobile-accordion-content a {
  font-size: 1.1rem;
  padding: 0.75rem 0;
  border-bottom: none;
  font-weight: 400;
  color: var(--clr-text-light);
  text-decoration: none;
}

.mobile-accordion-content a:hover {
  color: var(--clr-gold);
}

/* Base override for header layout on mobile */
@media (max-width: 992px) {
  .navbar {
    padding: 1rem 0;
  }

  .nav-content {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center;
    gap: 0;
    padding: 0 1rem;
    width: 100%;
  }

  .nav-left {
    display: flex;
    justify-self: start;
    align-items: center;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .logo {
    justify-self: center;
  }

  .nav-cta {
    justify-self: end;
    display: flex;
    justify-content: flex-end;
  }

  .desktop-menu,
  .desktop-only {
    display: none !important;
  }

  .mobile-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
  }

  .icon-btn {
    background: transparent;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--clr-teal-dark);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .icon-btn:hover {
    background: var(--clr-teal-light);
  }
}

@media (max-width: 500px) {
  .nav-content {
    grid-template-columns: 1fr auto 1fr !important;
    padding: 0 0.5rem;
  }

  .nav-cta .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .logo {
    font-size: 1.4rem;
  }

  .icon-btn {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }

  .mobile-icons {
    gap: 0.2rem;
  }

  .popup-content {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 380px) {
  .mobile-icons .icon-btn[aria-label="Hartă"] {
    display: none;
  }
}

.price-box h3 {
  margin-bottom: 1rem;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--clr-teal-dark);
  margin-bottom: 1rem;
}

/* Contact CTA */
.cta-section {
  padding: 4rem 0 8rem;
}

.cta-container {
  display: flex;
  background: var(--clr-teal-dark);
  color: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.cta-text {
  padding: 4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-text h2 {
  color: var(--clr-white);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
}

.contact-item .icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.cta-form-wrapper {
  flex: 1;
  padding: 4rem;
}

.appointment-form h3 {
  color: var(--clr-teal-dark);
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--clr-text);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--clr-teal);
  box-shadow: 0 0 0 3px var(--clr-teal-light);
}

.btn-block {
  width: 100%;
  display: block;
  font-size: 1.1rem;
}

/* Grid Utilities */
.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* Footer */
.footer {
  background: var(--clr-teal-dark);
  color: var(--clr-white);
  display: flex;
  flex-direction: column;
}

.map-container {
  line-height: 0;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 992px) {

  .testimonials-grid,
  .ba-grid {
    grid-template-columns: 1fr;
  }

  .grid-cols-3 {
    grid-template-columns: 1fr !important;
  }

  .pricing-content,
  .cta-container {
    flex-direction: column;
  }

  .cta-text,
  .cta-form-wrapper {
    padding: 2.5rem;
  }

  .pricing-cards {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
}