/**
 * AESTIQUE CLINIC - Professional Plastic Surgery Website
 * Golden & Beige Luxury Theme
 * Location: Lahore, Pakistan
 */

/* ============================================================================
   CSS RESET & BASE STYLES
   ============================================================================ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #5A5048;
  background-color: #FEFCF9;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
}

/* ============================================================================
   CSS VARIABLES - GOLDEN & BEIGE DESIGN TOKENS
   ============================================================================ */

:root {
  /* Primary Golden Palette */
  --primary: #9B8A5E;
  --primary-light: #B5A078;
  --primary-dark: #7D7050;
  --gold: #C4B590;
  --gold-light: #D1C6A8;
  --gold-dark: #A89B78;

  /* Beige & Cream Palette */
  --beige: #F7F3EA;
  --beige-light: #FDFBF7;
  --beige-dark: #EDE8DD;
  --cream: #FEFCF9;
  --ivory: #FDFBF6;
  --sand: #E5DDD0;

  /* Dark Tones (for contrast) */
  --dark: #3D3530;
  --dark-brown: #4A4038;
  --charcoal: #5A5048;

  /* Neutral */
  --white: #ffffff;
  --light: #FBF9F5;
  --text-dark: #3D3530;
  --text-body: #5A5048;
  --text-light: #7A6652;
  --text-muted: #A89680;
  --border: #EDE8DD;
  --success: #6B8E4E;
  --warning: #C9B87A;
  --danger: #B85450;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Raleway', -apple-system, sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 24px;
  --font-size-2xl: 32px;
  --font-size-3xl: 48px;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 3.5rem;
  --space-2xl: 5rem;
  --space-3xl: 6rem;

  /* Borders & Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows - warm toned */
  --shadow-sm: 0 2px 4px rgba(155, 138, 94, 0.08);
  --shadow-md: 0 4px 12px rgba(155, 138, 94, 0.12);
  --shadow-lg: 0 8px 24px rgba(155, 138, 94, 0.15);
  --shadow-xl: 0 12px 40px rgba(155, 138, 94, 0.2);

  /* Z-Index Stack */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-tooltip: 500;
}

/* ============================================================================
   TYPOGRAPHY
   ============================================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: var(--space-md);
}

h1 { font-size: var(--font-size-3xl); }
h2 { font-size: var(--font-size-2xl); }
h3 { font-size: var(--font-size-xl); }
h4 { font-size: var(--font-size-lg); }

p {
  margin-bottom: var(--space-sm);
  color: var(--text-body);
}

/* ============================================================================
   BUTTONS
   ============================================================================ */

.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--font-size-base);
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--primary-light));
  color: var(--white);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 181, 144, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

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

.btn-dark {
  background: var(--dark);
  color: var(--gold-light);
  border-color: var(--dark);
}

.btn-dark:hover {
  background: var(--dark-brown);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 20px;
  font-size: var(--font-size-sm);
}

.btn-lg {
  padding: 18px 40px;
  font-size: var(--font-size-lg);
}

/* ============================================================================
   HEADER & NAVIGATION
   ============================================================================ */

header,
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-color: var(--dark);
  transition: all var(--transition-base);
  z-index: var(--z-sticky);
  padding: 0;
  box-shadow: 0 2px 10px rgba(61, 53, 48, 0.3);
}

header.scrolled,
.sticky-header.scrolled {
  background-color: rgba(61, 53, 48, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(61, 53, 48, 0.4);
  height: 70px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  position: relative;
}

/* Logo */
.logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  transition: all var(--transition-base);
}

.logo:hover {
  transform: scale(1.03);
}

.logo a,
.logo h1 {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  margin: 0;
  letter-spacing: 2px;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.old-logo-text {
  font-size: 28px;
  letter-spacing: 4px;
  color: var(--gold);
}

.logo-tagline {
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.8;
  font-family: var(--font-body);
  font-weight: 400;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-sm);
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--beige);
  font-weight: 500;
  font-size: var(--font-size-sm);
  padding: 10px 16px;
  transition: all var(--transition-base);
  position: relative;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background-color: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--gold);
}

/* Book Now button in nav */
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--primary-light));
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-md);
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(196, 181, 144, 0.4);
}

/* Mega Menu Dropdown */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 15px 40px rgba(61, 53, 48, 0.25);
  padding: var(--space-xl) var(--space-lg);
  margin-top: 0;
  width: 820px;
  max-width: 95vw;
  display: none;
  border-top: 3px solid var(--gold);
  z-index: var(--z-dropdown);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

@media (min-width: 769px) {
  .nav-item:hover .mega-menu,
  .nav-item.active .mega-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

/* Multi-column grid inside mega menu */
.mega-menu-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg) var(--space-xl);
}

.mega-menu-column {
  padding: 0;
}

.mega-menu-column h4 {
  color: var(--dark);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--gold-light);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.mega-menu-column h4 i {
  color: var(--gold);
  font-size: 14px;
}

.mega-menu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu-column ul li a {
  display: block;
  color: var(--text-light);
  font-size: 13px;
  padding: 5px 0 5px 12px;
  border-left: 2px solid transparent;
  transition: all var(--transition-fast);
  line-height: 1.5;
}

.mega-menu-column ul li a:hover {
  color: var(--primary);
  border-left-color: var(--gold);
  padding-left: 18px;
  background-color: var(--beige-light);
}

/* Fallback styles for old mega-menu-category/items classes */
.mega-menu-category {
  text-decoration: none;
}

.mega-menu-title {
  color: var(--primary);
  font-weight: 700;
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
}

.mega-menu-title i {
  color: var(--gold);
}

.mega-menu-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mega-menu-items a {
  color: var(--text-light);
  font-size: var(--font-size-sm);
  transition: all var(--transition-base);
  padding: 6px 0 6px 12px;
  display: block;
  border-left: 2px solid transparent;
}

.mega-menu-items a:hover {
  color: var(--primary);
  border-left-color: var(--gold);
  padding-left: 18px;
  background-color: var(--beige-light);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  padding: 5px;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background-color: var(--gold);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-brown) 50%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(196, 181, 144, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(184, 134, 11, 0.1) 0%, transparent 60%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 850px;
  padding: var(--space-lg);
  animation: fadeInUp 1s ease;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
  animation: slideUp 0.8s ease 0.2s both;
}

.hero h1 span {
  color: var(--gold);
  display: block;
}

.hero p {
  font-size: var(--font-size-xl);
  color: var(--beige);
  margin-bottom: var(--space-2xl);
  animation: slideUp 0.8s ease 0.4s both;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  animation: slideUp 0.8s ease 0.6s both;
  flex-wrap: wrap;
}

/* ============================================================================
   SECTIONS & CONTAINERS
   ============================================================================ */

section {
  padding: var(--space-3xl) var(--space-lg);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-padding {
  padding: var(--space-3xl) var(--space-lg);
}

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

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

.bg-dark {
  background-color: var(--dark);
  color: var(--beige);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: var(--space-md);
  color: var(--dark);
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--primary-light));
  border-radius: 2px;
}

.section-header p {
  color: var(--text-light);
  font-size: var(--font-size-lg);
  margin-top: var(--space-sm);
}

/* Section subtitle/label */
.section-label {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: var(--font-size-sm);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

/* ============================================================================
   DOCTOR CARDS
   ============================================================================ */

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.doctor-card {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  overflow: visible;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  text-align: center;
  border: 1px solid var(--beige-dark);
  padding-top: 80px;
  position: relative;
  margin-top: 80px;
}

.doctor-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold);
}

.doctor-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid var(--gold);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background-color: var(--dark);
}

.doctor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.doctor-card:hover .doctor-image {
  transform: translateX(-50%) scale(1.15);
  box-shadow: 0 12px 35px rgba(155, 138, 94,0.3);
  border-color: var(--gold-light);
}

.doctor-info {
  padding: var(--space-lg) var(--space-lg) var(--space-xl);
}

.doctor-name {
  font-size: var(--font-size-xl);
  color: var(--dark);
  margin-bottom: var(--space-xs);
  font-family: var(--font-heading);
}

.doctor-credentials {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-md);
}

.doctor-specialty {
  color: var(--text-light);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-lg);
  min-height: 40px;
}

.doctor-socials,
.doctor-social,
.social-links {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--beige-dark);
  flex-wrap: wrap;
}

.social-link,
.doctor-social a,
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all var(--transition-base);
  font-size: var(--font-size-lg);
}

.social-link:hover,
.doctor-social a:hover,
.social-links a:hover {
  background: linear-gradient(135deg, var(--gold), var(--primary-light));
  color: var(--white);
  transform: scale(1.15);
}

/* Footer Column Base */
.footer-column {
  padding: var(--space-md);
}

.footer-column h4 {
  color: var(--gold);
  margin-bottom: var(--space-lg);
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
}

.footer-column p {
  color: rgba(245, 236, 215, 0.8);
  font-size: var(--font-size-sm);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: var(--space-sm);
}

.footer-column ul li a {
  color: rgba(245, 236, 215, 0.8);
  font-size: var(--font-size-sm);
  transition: all var(--transition-base);
}

.footer-column ul li a:hover {
  color: var(--gold);
  padding-left: var(--space-xs);
}

/* Footer social links (different context - dark bg) */
.footer-column .social-links {
  border-top: none;
  padding-top: 0;
  justify-content: flex-start;
}

.footer-column .social-links a {
  background-color: rgba(196, 181, 144, 0.15);
  color: var(--gold);
}

.footer-column .social-links a:hover {
  background: linear-gradient(135deg, var(--gold), var(--primary-light));
  color: var(--white);
}

/* ============================================================================
   SERVICE/PROCEDURE CARDS
   ============================================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid var(--beige-dark);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--primary-light), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 2rem;
  color: var(--white);
  transition: all var(--transition-base);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(196, 181, 144, 0.3);
}

.service-title {
  color: var(--dark);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
}

.service-description {
  color: var(--text-light);
  font-size: var(--font-size-sm);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.service-link {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 600;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-base);
}

.service-link:hover {
  color: var(--primary);
  border-bottom-color: var(--gold);
}

/* ============================================================================
   BEFORE/AFTER SLIDER
   ============================================================================ */

.before-after-container {
  position: relative;
  max-width: 600px;
  margin: var(--space-2xl) auto;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--beige-dark);
}

.before-after-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.before-image,
.after-image {
  display: block;
  width: 100%;
  height: auto;
}

.after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.after-image img {
  width: 100%;
  display: block;
}

.before-after-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: var(--gold);
  cursor: col-resize;
  transform: translateX(-50%);
}

.before-after-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--primary-light));
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.before-after-handle::after {
  content: '\25C0  \25B6';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  z-index: 5;
}

.ba-label {
  position: absolute;
  bottom: 15px;
  padding: 6px 14px;
  background: rgba(61, 53, 48, 0.7);
  color: var(--gold);
  font-size: var(--font-size-sm);
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ba-label-before { left: 15px; }
.ba-label-after { right: 15px; }

/* ============================================================================
   PROCEDURE PAGES STYLING
   ============================================================================ */

/* Section Titles */
.section-title {
  text-align: center;
  font-size: var(--font-size-3xl);
  color: var(--dark);
  margin-bottom: var(--space-2xl);
  font-family: var(--font-heading);
  font-weight: 700;
  position: relative;
  padding-bottom: var(--space-lg);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--primary-light), var(--gold));
  border-radius: 2px;
}

/* Intro Section */
.intro-section {
  max-width: 900px;
  margin: var(--space-3xl) auto;
  padding: var(--space-2xl);
  background: var(--beige-light);
  border-radius: var(--radius-lg);
  text-align: center;
}

.intro-section h2 {
  color: var(--dark);
  margin-bottom: var(--space-lg);
}

.intro-section p {
  color: var(--text-body);
  line-height: 1.8;
  font-size: var(--font-size-lg);
}

/* Procedures Grid */
.procedures-section {
  padding: var(--space-3xl) var(--space-lg);
}

.procedures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

/* Procedure Card */
.procedure-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid var(--beige-dark);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.procedure-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--primary-light), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.procedure-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold);
}

.procedure-card:hover::before {
  transform: scaleX(1);
}

.procedure-card h3 {
  color: var(--dark);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
}

.procedure-card p {
  color: var(--text-light);
  font-size: var(--font-size-sm);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

/* Procedure Icon */
.procedure-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 2rem;
  color: var(--white);
  transition: all var(--transition-base);
  position: relative;
  z-index: 2;
}

.procedure-card:hover .procedure-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(196, 181, 144, 0.3);
}

/* Before/After Slider */
.before-after-slider {
  width: 100%;
  max-width: 100%;
  margin: var(--space-lg) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.comparison-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 15px rgba(155, 138, 94, 0.1);
}

.comparison-slider img {
  display: block;
  width: 100%;
  height: auto;
}

.img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0 50% 0 0);
  z-index: 2;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.resize-handle {
  position: absolute;
  width: 4px;
  height: 100%;
  background-color: var(--gold);
  left: 50%;
  top: 0;
  cursor: col-resize;
  transform: translateX(-50%);
  z-index: 10;
}

.resize-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--primary-light));
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Learn More Button */
.btn-learn-more {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(135deg, var(--gold), var(--primary-light));
  color: var(--white);
  font-weight: 600;
  font-size: var(--font-size-base);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.btn-learn-more:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 181, 144, 0.4);
}

/* CTA Section */
.cta-section {
  padding: var(--space-3xl) var(--space-lg);
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-brown) 100%);
  color: var(--white);
  text-align: center;
  border-radius: var(--radius-lg);
  margin: var(--space-3xl) 0;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.cta-section p {
  color: var(--beige);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2xl);
}

/* CTA Button */
.btn-cta {
  display: inline-block;
  padding: 10px 28px;
  background: linear-gradient(135deg, var(--gold), var(--primary-light));
  color: var(--white);
  font-weight: 600;
  max-height: 44px;
  box-sizing: border-box;
  font-size: var(--font-size-base);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-cta:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 181, 144, 0.5);
}

.btn-cta i {
  margin-right: 10px;
}

/* CTA hidden from navbar but shown as floating bottom pill */
.btn-cta.navbar-hidden {
  position: fixed !important;
  top: auto !important;
  bottom: 20px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 997 !important;
  padding: 10px 24px !important;
  font-size: 13px !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 20px rgba(155, 138, 94, 0.4) !important;
  white-space: nowrap !important;
  max-height: 40px !important;
}

/* ============================================================================
   LANGUAGE TOGGLE - Material Design
   ============================================================================ */

/* Hide Google Translate default UI — keep widget functional but invisible.
   IMPORTANT: Do NOT use display:none on #google_translate_element or
   .skiptranslate — it prevents the translate <select> from initializing. */
#google_translate_element {
  position: fixed !important;
  top: -300px !important;
  left: -300px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}
/* Hide the top banner that Google Translate adds */
.goog-te-banner-frame { display: none !important; }
/* Hide popup tooltip on hover */
#goog-gt-tt, .goog-te-balloon-frame { display: none !important; }
/* Remove text highlight styling from translated text */
.goog-text-highlight { background: none !important; box-shadow: none !important; }
/* Prevent Google Translate from pushing body down */
body { top: 0 !important; }
/* Hide the "Powered by Google" bar that appears at top */
.skiptranslate.goog-te-gadget { display: none !important; }
iframe.skiptranslate { display: none !important; }

/* Language toggle button in navbar */
.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(155, 138, 94, 0.12);
  border: 1.5px solid #C4B590;
  border-radius: 50px;
  padding: 3px;
  margin-left: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.lang-toggle:hover {
  box-shadow: 0 2px 8px rgba(155, 138, 94, 0.25);
  border-color: #9B8A5E;
}

.lang-toggle__option {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #8A7D6B;
  white-space: nowrap;
  user-select: none;
  line-height: 1.2;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1;
}
.lang-toggle__option.active {
  background: linear-gradient(135deg, #9B8A5E, #C4B590);
  color: #fff;
  box-shadow: 0 2px 6px rgba(155, 138, 94, 0.35);
}
.lang-toggle__option:not(.active):hover {
  color: #3D3530;
  background: rgba(155, 138, 94, 0.08);
}

/* Urdu text styling */
.lang-toggle__option[data-lang="ur"] {
  font-family: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', serif;
  font-size: 13px;
  font-weight: 400;
}

/* Material ripple effect */
.lang-toggle__option::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(155, 138, 94, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s, opacity 0.4s;
  opacity: 0;
}
.lang-toggle__option:active::after {
  width: 80px;
  height: 80px;
  opacity: 1;
  transition: 0s;
}

/* Globe icon before toggle */
.lang-toggle__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 2px;
  color: #9B8A5E;
  font-size: 12px;
  flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .lang-toggle {
    position: fixed;
    top: auto;
    bottom: 70px;
    left: 15px;
    right: auto;
    z-index: 998;
    margin-left: 0;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    background: rgba(254, 252, 249, 0.97);
    border: 1.5px solid #C4B590;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .lang-toggle__icon { display: none; }
  .lang-toggle__option { padding: 5px 10px; font-size: 11px; }
  .lang-toggle__option[data-lang="ur"] { font-size: 12px; }
}

@media (max-width: 480px) {
  .lang-toggle {
    bottom: 65px;
    left: 12px;
    right: auto;
  }
  .lang-toggle__option { padding: 4px 8px; font-size: 10px; }
  .lang-toggle__option[data-lang="ur"] { font-size: 11px; }
}

/* Why Choose Us */
.why-choose-us {
  padding: var(--space-3xl) var(--space-lg);
  background: var(--beige-light);
  border-radius: var(--radius-lg);
}

.why-choose-us .section-title {
  margin-bottom: var(--space-2xl);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2xl);
}

.feature-item {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid var(--beige-dark);
  box-shadow: var(--shadow-sm);
}

.feature-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: var(--space-lg);
  display: block;
  transition: all var(--transition-base);
}

.feature-item:hover i {
  transform: scale(1.1);
  color: var(--primary-light);
}

.feature-item h4 {
  color: var(--dark);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-lg);
}

.feature-item p {
  color: var(--text-light);
  font-size: var(--font-size-sm);
  line-height: 1.7;
}

/* Breadcrumb Container */
.breadcrumb-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Hero Section for Procedure Pages */
.hero-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-brown) 50%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
  padding: 150px var(--space-lg) 100px;
  text-align: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(196, 181, 144, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(184, 134, 11, 0.1) 0%, transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
  width: 100%;
}

.hero-content h1 {
  font-size: var(--font-size-3xl);
  color: var(--white);
  margin-bottom: var(--space-lg);
  animation: slideUp 0.8s ease 0.2s both;
}

.hero-content p {
  font-size: var(--font-size-xl);
  color: var(--beige);
  opacity: 0.9;
  animation: slideUp 0.8s ease 0.4s both;
}

/* ============================================================================
   TESTIMONIAL CAROUSEL
   ============================================================================ */

.testimonials-carousel {
  position: relative;
  max-width: 900px;
  margin: var(--space-2xl) auto;
  padding: var(--space-2xl);
}

.testimonials-container {
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  opacity: 0;
  transition: opacity var(--transition-slow);
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  border: 1px solid var(--beige-dark);
}

.testimonial-slide.active {
  opacity: 1;
  position: relative;
}

.testimonial-stars {
  color: var(--gold);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-md);
  letter-spacing: 4px;
}

.testimonial-quote {
  color: var(--text-body);
  font-size: var(--font-size-lg);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  font-style: italic;
  position: relative;
  padding: 0 var(--space-lg);
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--gold-light);
  position: absolute;
  top: -20px;
  left: 0;
  font-family: Georgia, serif;
  opacity: 0.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--beige);
  flex-shrink: 0;
  object-fit: cover;
  border: 3px solid var(--gold-light);
}

.testimonial-name {
  color: var(--dark);
  font-weight: 700;
  font-family: var(--font-heading);
}

.testimonial-role {
  color: var(--text-light);
  font-size: var(--font-size-sm);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.carousel-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background-color: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: all var(--transition-base);
  font-size: var(--font-size-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-button:hover {
  background: linear-gradient(135deg, var(--gold), var(--primary-light));
  color: var(--white);
  border-color: var(--gold);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--beige-dark);
  cursor: pointer;
  transition: all var(--transition-base);
}

.dot.active {
  background-color: var(--gold);
  width: 30px;
  border-radius: 5px;
}

/* ============================================================================
   GALLERY GRID
   ============================================================================ */

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.filter-btn {
  padding: 8px 24px;
  border: 2px solid var(--beige-dark);
  border-radius: 30px;
  background: transparent;
  color: var(--text-light);
  font-weight: 600;
  font-size: var(--font-size-sm);
  cursor: pointer;
  transition: all var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--primary-light));
  color: var(--white);
  border-color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  cursor: pointer;
  border: 2px solid var(--beige-dark);
  transition: all var(--transition-base);
}

.gallery-item:hover {
  border-color: var(--gold);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(61, 53, 48, 0.8), rgba(155, 138, 94, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.gallery-label {
  color: var(--beige);
  font-weight: 600;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================================
   STATS COUNTER SECTION
   ============================================================================ */

.stats-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-brown) 50%, var(--primary-dark) 100%);
  color: var(--white);
  padding: var(--space-3xl) var(--space-lg);
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(196, 181, 144, 0.08) 0%, transparent 70%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-2xl);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: var(--space-xs);
  font-family: var(--font-heading);
}

.stat-label {
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--beige);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ============================================================================
   FAQ ACCORDION
   ============================================================================ */

.faq-container {
  max-width: 800px;
  margin: var(--space-2xl) auto 0;
}

.faq-item {
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: all var(--transition-base);
  background: var(--white);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.faq-question {
  padding: var(--space-lg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-base);
  font-weight: 600;
  color: var(--dark);
}

.faq-item.active .faq-question {
  background: var(--beige-light);
  color: var(--dark);
}

.faq-toggle {
  font-size: var(--font-size-xl);
  transition: transform var(--transition-base);
  color: var(--gold);
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
  background-color: var(--white);
}

.faq-item.active .faq-answer {
  max-height: 2000px;
  padding: var(--space-lg);
  border-top: 1px solid var(--beige-dark);
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================================================================
   CONTACT FORM
   ============================================================================ */

.contact-form {
  max-width: 600px;
  margin: var(--space-2xl) auto 0;
  background-color: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--beige-dark);
}

.form-group {
  margin-bottom: var(--space-lg);
}

label {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--dark);
  font-weight: 600;
  font-size: var(--font-size-sm);
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  color: var(--text-dark);
  background-color: var(--beige-light);
  transition: all var(--transition-base);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 181, 144, 0.15);
  background-color: var(--white);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group.checkbox,
.form-group.radio {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.form-group.checkbox input,
.form-group.radio input {
  width: auto;
}

.form-group.checkbox label,
.form-group.radio label {
  margin-bottom: 0;
}

.form-help {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

.form-error {
  color: var(--danger);
  font-size: var(--font-size-sm);
  margin-top: var(--space-xs);
}

/* ============================================================================
   CTA BANNER
   ============================================================================ */

.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--primary-light) 50%, var(--gold) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(196, 181, 144, 0.1) 0%, transparent 60%);
}

.cta-banner h2 {
  color: var(--dark);
  position: relative;
  font-weight: 900;
}

.cta-banner p {
  color: var(--dark);
  position: relative;
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xl);
  font-weight: 500;
}

.cta-banner .btn {
  position: relative;
}

/* ============================================================================
   FOOTER
   ============================================================================ */

footer {
  background-color: var(--dark);
  color: var(--beige);
  padding: var(--space-3xl) var(--space-lg) var(--space-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2xl);
  max-width: 1400px;
  margin: 0 auto var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(196, 181, 144, 0.2);
}

.footer-section h4 {
  color: var(--gold);
  margin-bottom: var(--space-lg);
  font-family: var(--font-heading);
}

.footer-section p {
  color: rgba(245, 236, 215, 0.7);
  font-size: var(--font-size-sm);
  line-height: 1.8;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  color: rgba(245, 236, 215, 0.7);
  transition: all var(--transition-base);
  font-size: var(--font-size-sm);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: var(--space-sm);
}

.footer-info {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.footer-info-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(196, 181, 144, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-info-text {
  flex: 1;
}

.footer-info-text p {
  margin: 0;
  color: rgba(245, 236, 215, 0.7);
  font-size: var(--font-size-sm);
}

.footer-socials {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(196, 181, 144, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all var(--transition-base);
}

.footer-social-link:hover {
  background: linear-gradient(135deg, var(--gold), var(--primary-light));
  color: var(--white);
  transform: scale(1.15);
}

.newsletter-form {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.newsletter-form input {
  flex: 1;
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  border: 1px solid rgba(196, 181, 144, 0.3);
  background: rgba(255,255,255,0.05);
  color: var(--beige);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form button {
  padding: var(--space-sm) var(--space-lg);
  background: linear-gradient(135deg, var(--gold), var(--primary-light));
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 181, 144, 0.3);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
  font-size: var(--font-size-sm);
  color: rgba(245, 236, 215, 0.4);
  max-width: 1400px;
  margin: 0 auto;
}

.footer-bottom a {
  color: rgba(245, 236, 215, 0.5);
  transition: color var(--transition-base);
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* ============================================================================
   FLOATING ELEMENTS
   ============================================================================ */

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  z-index: var(--z-fixed);
  animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  animation: none;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0.15); }
}

/* Chatbot Widget */
.chatbot-widget {
  position: fixed;
  bottom: 30px;
  right: 100px;
  font-family: var(--font-body);
  z-index: var(--z-fixed);
}

.chatbot-button {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--primary-light));
  border-radius: 50%;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(196, 181, 144, 0.4);
}

.chatbot-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 370px;
  height: 500px;
  background-color: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--beige-dark);
}

.chatbot-window.active {
  display: flex;
}

.chatbot-header {
  background: linear-gradient(135deg, var(--dark), var(--dark-brown));
  color: var(--gold);
  padding: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header h4 {
  color: var(--gold);
  margin: 0;
  font-size: var(--font-size-base);
}

.chatbot-close {
  background: none;
  border: none;
  color: var(--beige);
  font-size: var(--font-size-xl);
  cursor: pointer;
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  background: var(--beige-light);
}

.chatbot-message {
  max-width: 80%;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  word-wrap: break-word;
  font-size: var(--font-size-sm);
}

.chatbot-message.user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--gold), var(--primary-light));
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.chatbot-message.bot {
  align-self: flex-start;
  background-color: var(--white);
  color: var(--text-body);
  border: 1px solid var(--beige-dark);
  border-bottom-left-radius: 4px;
}

.chatbot-input {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-md);
  border-top: 1px solid var(--beige-dark);
  background: var(--white);
}

.chatbot-input input {
  flex: 1;
  border: 1px solid var(--beige-dark);
  padding: 10px;
  border-radius: var(--radius-md);
  background: var(--beige-light);
  font-size: var(--font-size-sm);
}

.chatbot-input button {
  background: linear-gradient(135deg, var(--gold), var(--primary-light));
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  transition: all var(--transition-base);
}

.chatbot-input button:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

/* Quick reply buttons */
.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: var(--space-sm);
}

.quick-reply-btn {
  padding: 5px 12px;
  border: 1px solid var(--gold-light);
  border-radius: 20px;
  background: transparent;
  color: var(--gold-dark);
  font-size: 12px;
  cursor: pointer;
  transition: all var(--transition-base);
}

.quick-reply-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: var(--z-fixed);
  font-size: var(--font-size-lg);
  border: none;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(196, 181, 144, 0.4);
}

/* ============================================================================
   BREADCRUMBS
   ============================================================================ */

.breadcrumbs {
  background-color: var(--beige);
  padding: var(--space-md) var(--space-lg);
  margin-top: 80px;
}

.breadcrumbs-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  max-width: 1400px;
  margin: 0 auto;
}

.breadcrumbs-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-light);
  font-size: var(--font-size-sm);
}

.breadcrumbs-item a {
  color: var(--gold-dark);
  font-weight: 600;
}

.breadcrumbs-item a:hover {
  color: var(--primary);
}

.breadcrumbs-item.active {
  color: var(--dark);
  font-weight: 600;
}

.breadcrumbs-separator {
  color: var(--text-muted);
}

/* ============================================================================
   PAGE HERO BANNERS
   ============================================================================ */

.page-hero {
  background: url('../photos/banner-bg.jpg') center/cover no-repeat,
              linear-gradient(135deg, var(--dark) 0%, var(--dark-brown) 50%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 6rem var(--space-lg);
  margin-top: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(61, 53, 48, 0.85) 0%, rgba(61, 41, 20, 0.75) 50%, rgba(155, 138, 94, 0.65) 100%);
  z-index: 1;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(196, 181, 144, 0.15) 0%, transparent 60%);
  z-index: 2;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  color: var(--beige);
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  letter-spacing: 0.5px;
}

.page-hero p {
  color: var(--gold-light);
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================================
   PROCEDURE DETAIL PAGE
   ============================================================================ */

.procedure-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
  margin-top: var(--space-2xl);
}

.procedure-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--beige-dark);
}

.procedure-image img {
  width: 100%;
  display: block;
  transition: transform var(--transition-slow);
}

.procedure-content h2 {
  color: var(--dark);
  margin-bottom: var(--space-lg);
}

.procedure-content h3 {
  color: var(--primary);
}

.procedure-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  background-color: var(--beige-light);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  border: 1px solid var(--beige-dark);
}

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

.meta-label {
  color: var(--text-light);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.meta-value {
  color: var(--primary);
  font-size: var(--font-size-lg);
  font-weight: 700;
  font-family: var(--font-heading);
}

.procedure-benefits {
  background-color: var(--beige-light);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  border: 1px solid var(--beige-dark);
}

.procedure-benefits h3 {
  color: var(--dark);
  margin-bottom: var(--space-lg);
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  padding: var(--space-sm) 0;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.benefits-list li::before {
  content: '\2713';
  color: var(--gold);
  font-weight: 700;
  font-size: var(--font-size-lg);
  flex-shrink: 0;
}

/* ============================================================================
   REVIEWS PAGE
   ============================================================================ */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
}

.review-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--beige-dark);
  transition: all var(--transition-base);
}

.review-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
  transform: translateY(-5px);
}

.review-stars {
  color: var(--gold);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-md);
}

.review-text {
  color: var(--text-body);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.review-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-light);
}

.review-name {
  font-weight: 700;
  color: var(--dark);
}

.review-procedure {
  font-size: var(--font-size-sm);
  color: var(--gold-dark);
}

/* Cookie consent removed */

/* ============================================================================
   PRELOADER
   ============================================================================ */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  animation: preloader-auto-hide 0.5s ease 2.5s forwards;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: none;
}

@keyframes preloader-auto-hide {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: none;
  }
}

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

.preloader-spinner,
.preloader .spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--beige-dark);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto var(--space-lg);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.preloader p,
.preloader-text {
  color: var(--gold-dark);
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  letter-spacing: 3px;
}

/* ============================================================================
   ANIMATIONS
   ============================================================================ */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

@media (max-width: 1024px) {
  :root {
    --font-size-3xl: 36px;
    --font-size-2xl: 28px;
    --space-3xl: 3rem;
  }

  .nav-menu { gap: 4px; }

  .nav-link {
    padding: 8px 10px;
    font-size: 13px;
  }

  .mega-menu {
    width: 650px;
    left: 50%;
    transform: translateX(-50%);
  }

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

  .hero h1 { font-size: 2.5rem; }

  .procedure-detail { grid-template-columns: 1fr; }
  .procedure-meta { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --font-size-3xl: 28px;
    --font-size-2xl: 24px;
    --font-size-xl: 20px;
    --space-3xl: 2rem;
    --space-2xl: 2rem;
  }

  header {
    height: 65px;
  }

  .header .logo-icon,
  .logo-icon {
    height: 40px;
  }

  .header .logo-text,
  .logo-text {
    height: 22px;
  }

  .header .logo-container,
  .logo-container {
    gap: 6px;
  }

  .navbar-brand {
    max-width: 50%;
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
  }

  /* Force nav-menu to be a mobile drawer, overriding .desktop-nav */
  .nav-menu,
  .nav-menu.desktop-nav {
    display: none !important;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background-color: var(--dark);
    gap: 0;
    border-top: 2px solid var(--gold);
    overflow-y: auto;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2rem;
  }

  .nav-menu.active,
  .nav-menu.desktop-nav.active {
    display: flex !important;
  }

  .nav-item {
    border-bottom: 1px solid rgba(196, 181, 144, 0.1);
    flex-shrink: 0;
  }

  /* Hide the desktop hover-underline on mobile nav links */
  .nav-link::after {
    display: none !important;
  }

  .nav-link {
    padding: 0.9rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: 0.95rem;
  }

  /* Dropdown arrow indicator on mobile */
  .nav-item.dropdown > .nav-link .fa-chevron-down {
    transition: transform 0.3s ease;
    font-size: 0.65rem;
    margin-left: auto;
  }

  .nav-item.dropdown.mobile-open > .nav-link .fa-chevron-down {
    transform: rotate(180deg);
  }

  /* Mega menu hidden by default on mobile */
  .mega-menu,
  .dropdown > .mega-menu {
    display: none !important;
    position: static !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0.75rem 0.5rem 0.75rem 0.75rem !important;
    border-top: none !important;
    background: rgba(0, 0, 0, 0.25) !important;
    transform: none !important;
    left: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    border-radius: 0 !important;
    max-height: none !important;
    overflow: visible !important;
  }

  /* Show mega menu when parent has .mobile-open */
  .nav-item.dropdown.mobile-open > .mega-menu,
  .dropdown.mobile-open > .mega-menu {
    display: block !important;
  }

  /* Single column on mobile for the mega-menu categories */
  .mega-menu-content {
    grid-template-columns: 1fr !important;
    gap: 0.25rem;
    display: grid !important;
    width: 100% !important;
  }

  /* On mobile, ONLY .mobile-open class should show mega-menu (not :hover) */
  .dropdown:hover > .mega-menu {
    display: none !important;
  }
  .dropdown.mobile-open > .mega-menu {
    display: block !important;
    grid-template-columns: none !important;
  }

  .mega-menu-column {
    padding: 0;
    margin-bottom: 0.25rem;
  }

  .mega-menu-column h4 {
    color: var(--gold);
    border-bottom: 1px solid rgba(196, 181, 144, 0.2);
    font-size: 0.8rem;
    padding: 0.5rem 0.5rem 0.35rem;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(196, 181, 144, 0.08);
    border-radius: 4px 4px 0 0;
    cursor: default;
  }

  .mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mega-menu-column ul li a {
    color: var(--beige);
    font-size: 13px;
    padding: 0.4rem 0.75rem;
    display: block;
    border-radius: 4px;
    line-height: 1.4;
  }

  .mega-menu-column ul li a:hover,
  .mega-menu-column ul li a:active {
    color: var(--gold);
    background-color: rgba(196, 181, 144, 0.12);
  }

  /* Dropdown plain <ul> submenu also needs mobile treatment */
  .dropdown > ul {
    position: static !important;
    display: none !important;
    background: rgba(0, 0, 0, 0.25) !important;
    box-shadow: none !important;
    min-width: 0 !important;
    padding: 0.5rem 0 0.5rem 1rem !important;
    border-radius: 0 !important;
  }

  .dropdown.mobile-open > ul {
    display: block !important;
  }

  .dropdown > ul li a {
    color: var(--beige) !important;
    font-size: 13px;
    padding: 0.4rem 0.75rem;
  }

  .dropdown > ul li a:hover {
    color: var(--gold) !important;
    background: rgba(196, 181, 144, 0.12) !important;
  }

  /* Hamburger visible on mobile */
  .hamburger {
    display: flex;
  }

  /* Mobile: Convert CTA button to fixed floating button at bottom-center */
  .navbar .btn-cta,
  .header .btn-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 997;
    padding: 10px 24px;
    font-size: 13px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(155, 138, 94, 0.4);
    white-space: nowrap;
    max-height: 40px;
  }

  .hero {
    padding-top: 65px;
    min-height: 80vh;
  }

  .hero h1 { font-size: 2rem; }
  .hero p { font-size: var(--font-size-lg); }
  .hero-buttons { flex-direction: column; align-items: center; }

  .doctors-grid,
  .services-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .whatsapp-float,
  .back-to-top { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .chatbot-widget { bottom: 20px; right: 80px; }
  .chatbot-window { width: 300px; height: 430px; }

  .page-hero { margin-top: 65px; }
  .page-hero h1 { font-size: 1.75rem; }
  .breadcrumbs { margin-top: 65px; }
}

@media (max-width: 480px) {
  :root {
    --font-size-lg: 16px;
    --space-lg: 1rem;
    --space-md: 1rem;
  }

  section { padding: var(--space-2xl) var(--space-md); }
  .navbar { padding: 0 var(--space-md); }
  .logo-text { height: 16px; }
  .logo-img { height: 36px; }
  .logo-icon { height: 30px; }
  .logo-container { gap: 4px; }
  .navbar-brand { max-width: 55%; overflow: hidden; flex-shrink: 1; }
  .header .logo-icon { height: 30px; }
  .header .logo-text { height: 16px; }
  .header .logo-container { gap: 4px; }
  .hero h1 { font-size: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }

  .chatbot-window { width: 100vw; height: 100vh; bottom: 0; right: 0; border-radius: 0; }
  .chatbot-widget { right: 0; bottom: 20px; }

  /* Tighter mobile nav for very small screens */
  .mega-menu-column ul li a {
    font-size: 12px;
    padding: 0.35rem 0.5rem;
  }

  .mega-menu-column h4 {
    font-size: 0.75rem;
    padding: 0.4rem 0.5rem 0.3rem;
  }

  .nav-link {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  /* Smaller floating CTA on very small screens */
  .navbar .btn-cta,
  .header .btn-cta {
    padding: 8px 18px;
    font-size: 12px;
    max-height: 36px;
  }
}

/* ============================================================================
   UTILITY CLASSES
   ============================================================================ */

.u-hidden { display: none !important; }
.u-visible { display: block !important; }
.container-full { max-width: 100%; padding: 0; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-gold { color: var(--gold); }
.text-dark { color: var(--dark); }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: var(--space-sm) !important; }
.mt-2 { margin-top: var(--space-md) !important; }
.mt-3 { margin-top: var(--space-lg) !important; }
.mt-4 { margin-top: var(--space-xl) !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--space-sm) !important; }
.mb-2 { margin-bottom: var(--space-md) !important; }
.mb-3 { margin-bottom: var(--space-lg) !important; }
.mb-4 { margin-bottom: var(--space-xl) !important; }

/* ============================================================================
   PRINT STYLES
   ============================================================================ */

@media print {
  header, footer, .whatsapp-float, .chatbot-widget, .back-to-top, .preloader {
    display: none !important;
  }
  body { background-color: white; color: #333; }
}

/* ============================================================================
   ACCESSIBILITY
   ============================================================================ */

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================================
   MISSING CLASS ALIASES & ADDITIONS
   ============================================================================ */

/* Hero Section Aliases */
.hero-background {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(61, 53, 48, 0.4);
  z-index: 1;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subheading {
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--beige);
  margin-bottom: 2rem;
  font-weight: 300;
  max-width: 600px;
}

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

/* Button Variants */
.btn-white {
  background: var(--white);
  color: var(--dark);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
}

.btn-cta {
  background: var(--gold);
  color: var(--white);
  padding: 8px 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-height: 44px;
  box-sizing: border-box;
  font-size: 0.85rem;
}
.btn-cta:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-link {
  color: var(--gold);
  background: transparent;
  padding: 0.85rem 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-link:hover {
  color: var(--gold-dark);
  transform: translateX(4px);
}

/* Stats Section */
.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(155, 138, 94, 0.08);
  border: 1px solid var(--beige-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(155, 138, 94, 0.15);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
  font-size: 1.5rem;
}

/* Section Utilities */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.lead-text {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }
}

.about-text {
  color: var(--text-body);
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 1rem;
}

.about-preview {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(155, 138, 94, 0.15);
}

.about-preview img {
  width: 100%;
  height: auto;
  display: block;
}

/* Services Overview */
.services-overview {
  padding: 4rem 0;
}

/* Procedures Section */
.procedures-section {
  padding: 4rem 0;
}

.procedures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.procedure-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Doctors Section */
.doctors-section {
  padding: 4rem 0;
}

.doctor-bio {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Before-After Section */
.before-after-section {
  padding: 4rem 0;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

/* BA Slider aliases */
.ba-slider-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(155, 138, 94, 0.1);
}

.ba-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: ew-resize;
}

.img-before, .img-after {
  display: block;
  width: 100%;
  height: auto;
}

.img-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(0 50% 0 0);
}

.slider-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 3;
}

.label-before, .label-after {
  position: absolute;
  bottom: 10px;
  background: rgba(61, 53, 48, 0.8);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.label-before {
  left: 10px;
}

.label-after {
  right: 10px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 4rem 0;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(155, 138, 94, 0.08);
  border: 1px solid var(--beige-dark);
}

.testimonial-text {
  color: var(--text-body);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
}

.testimonial-rating {
  color: var(--gold);
  margin-bottom: 1rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

/* Why Choose Us */
.why-choose-us {
  padding: 4rem 0;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
}

/* Map Section */
.map-section {
  padding: 4rem 0;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(155, 138, 94, 0.1);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer Aliases */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(196, 181, 144, 0.15);
  border-radius: 50%;
  color: var(--gold);
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
}

.footer-newsletter {
  margin-top: 1.5rem;
  padding: var(--space-xl) var(--space-lg);
  background: rgba(196, 181, 144, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(196, 181, 144, 0.15);
}

.footer-newsletter h4 {
  color: var(--gold);
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
}

.footer-newsletter p {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

/* Navbar Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
}

/* Desktop Nav - mobile behavior handled in main 768px media query above */
.desktop-nav {
  display: flex;
  align-items: center;
}

/* Chatbot Placeholder */
.chatbot-placeholder {
  display: none;
}

/* Header Sticky State */
.header.sticky,
header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  z-index: 1000;
}

/* Dropdown for non-mega items */
.dropdown {
  position: relative;
}

/* Desktop-only dropdown hover (mobile uses .mobile-open class via JS) */
@media (min-width: 769px) {
  .dropdown .mega-menu {
    display: none;
  }
  .dropdown:hover .mega-menu {
    display: block;
  }
}

/* Mega-menu parent hover */
.mega-menu-parent {
  position: relative;
}

@media (min-width: 769px) {
  .mega-menu-parent:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* ============================================================================
   ALTERNATE HEADER STRUCTURE (about, doctor pages)
   ============================================================================ */

.header {
  background-color: #3D3530;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.header .logo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #C4B590;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.header .logo i {
  font-size: 1.3rem;
  color: #D1C6A8;
}

.header .logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.header .logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header .logo-icon {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.header .logo-text {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 0;
  margin: 0;
  padding: 0;
}

.nav-list .nav-item > a {
  color: #F7F3EA;
  padding: 1.5rem 1rem;
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-list .nav-item > a:hover {
  color: #C4B590;
}

/* Hero Banner for subpages */
.hero-banner {
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  color: #fff;
}

.hero-banner .container {
  position: relative;
  z-index: 1;
}

.hero-banner h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
  color: #fff;
}

.hero-banner p {
  font-size: 1.15rem;
  color: #F7F3EA;
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 0;
  background: #FDFBF7;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  color: #7A6652;
  font-size: 0.9rem;
}

.breadcrumb li a {
  color: #9B8A5E;
  text-decoration: none;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

.breadcrumb li + li::before {
  content: "›";
  margin-right: 0.5rem;
  color: #A89680;
}

/* ============================================================================
   PROCEDURE PAGE NAV FIXES
   ============================================================================ */

/* Nav container inside navbar (procedure pages) */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
}

/* Style nav-menu links that don't use .nav-link class */
.nav-menu > li {
  position: relative;
  list-style: none;
}

.nav-menu > li > a {
  color: var(--beige);
  font-weight: 500;
  font-size: var(--font-size-sm);
  padding: 10px 16px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  white-space: nowrap;
}

.nav-menu > li > a:hover {
  color: var(--gold);
}

/* Dropdown submenu (plain <ul> inside .dropdown) */
.dropdown > ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(61, 53, 48, 0.15);
  padding: 0.75rem 0;
  min-width: 200px;
  z-index: 1001;
  list-style: none;
}

@media (min-width: 769px) {
  .dropdown:hover > ul {
    display: block;
  }
}

.dropdown > ul li a {
  display: block;
  padding: 0.5rem 1.25rem;
  color: var(--text-body);
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.dropdown > ul li a:hover {
  background: var(--beige-light);
  color: var(--gold-dark);
}

/* Make mega-menu in procedure dropdown work */
.dropdown > .mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 50px rgba(61, 53, 48, 0.15);
  padding: 2rem;
  z-index: 1001;
  min-width: 700px;
}

@media (min-width: 769px) {
  .dropdown:hover > .mega-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
  }
}

/* Hamburger base styles (mobile visibility handled in main 768px media query) */


/* ============================================================================
   GLOBAL STATS STRIP (Double Banner)
   ============================================================================ */
.stats-strip {
    background: linear-gradient(135deg, #9B8A5E, #B5A078);
    padding: 0;
    margin: 0;
}
.stats-strip-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}
.stats-strip-item {
    padding: 1.5rem 1rem;
    position: relative;
    color: #fff;
}
.stats-strip-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.2);
}
.stats-strip-item i {
    display: block;
    font-size: 1.4rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.4rem;
}
.stats-strip-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
    line-height: 1.2;
    color: #fff;
}
.stats-strip-label {
    font-size: 0.8rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    color: rgba(255,255,255,0.85);
}

@media (max-width: 768px) {
    .stats-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-strip-item:nth-child(2)::after {
        display: none;
    }
}
@media (max-width: 480px) {
    .stats-strip-number {
        font-size: 1.4rem;
    }
}

/* ============================================================================
   LUXURY DESIGN ENHANCEMENTS (Inspired by revivesurgery.com)
   ============================================================================ */

/* Enhanced section spacing for luxury feel */
section {
    position: relative;
}

/* Golden divider between major sections */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, var(--gold) 50%, transparent 90%);
    margin: 0;
    opacity: 0.3;
}

/* Enhanced card styling with luxury feel */
.luxury-card {
    background: var(--cream);
    border: 1px solid rgba(196, 181, 144, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary-light));
    opacity: 0;
    transition: opacity 0.4s;
}

.luxury-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(155, 138, 94, 0.12);
    border-color: rgba(196, 181, 144, 0.3);
}

.luxury-card:hover::before {
    opacity: 1;
}

/* Gold accent link style */
a.gold-link {
    color: var(--gold-dark);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

a.gold-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

a.gold-link:hover {
    color: var(--primary);
}

a.gold-link:hover::after {
    width: 100%;
}

/* Enhanced WhatsApp button */
.whatsapp-button {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* Enhanced back to top button */
.back-to-top {
    border-radius: 50%;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(196, 181, 144, 0.3);
}

/* Smooth scroll offset for sticky header */
html {
    scroll-padding-top: 100px;
}

/* Selection color matching theme */
::selection {
    background: rgba(196, 181, 144, 0.25);
    color: var(--dark);
}

::-moz-selection {
    background: rgba(196, 181, 144, 0.25);
    color: var(--dark);
}

/* Enhanced focus styles for accessibility */
*:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Subtle page load animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-hero-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Print styles */
@media print {
    .hamburger,
    .whatsapp-button,
    .back-to-top,
    .btn-cta,
    .proc-sidebar {
        display: none !important;
    }
    .proc-layout {
        grid-template-columns: 1fr !important;
    }
    .page-hero {
        min-height: auto !important;
        padding: 1rem !important;
    }
}
