/* ==========================================================================
   Dr. Tahira Yasmin - Plastic Surgery & Aesthetic Clinic
   Design System: Clinical Luxury Dark Theme
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Noto+Nastaliq+Urdu:wght@400;600;700&display=swap');

:root {
  /* Color Palette - Dark Luxury Obsidian & Gold */
  --bg-pearl: #0B0A09;
  --bg-secondary: #121110;
  --bg-card: #1A1917;
  --gold-metallic: #E5C158;
  --gold-primary: #D4AF37;
  --gold-dark: #F0D278;
  --gold-light: rgba(212, 175, 55, 0.12);
  --gold-border: rgba(212, 175, 55, 0.32);
  --gold-gradient: linear-gradient(135deg, #E5C158 0%, #D4AF37 50%, #C5A059 100%);
  --gold-gradient-hover: linear-gradient(135deg, #F5D675 0%, #E5C158 50%, #D4AF37 100%);
  
  --charcoal: #FDFCF9;
  --charcoal-muted: #E5E2DC;
  --text-body: #D1CEC7;
  --text-subtle: #9E9B94;
  
  /* Shadows & Elevation */
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.5);
  --shadow-luxury: 0 12px 36px rgba(0, 0, 0, 0.6), 0 0 24px rgba(212, 175, 55, 0.08);
  --shadow-hover: 0 20px 48px rgba(0, 0, 0, 0.8), 0 0 32px rgba(212, 175, 55, 0.2);

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-urdu: 'Noto Nastaliq Urdu', 'Urdu Typesetting', serif;

  /* Layout */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --container-max: 1280px;
  --header-height: 84px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Typography Utilities */
h1, h2, h3, h4, .font-heading {
  font-family: var(--font-serif);
  color: var(--charcoal);
  line-height: 1.2;
}

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

.text-gradient-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.urdu-text {
  font-family: var(--font-urdu);
  line-height: 2.2;
  direction: rtl;
  text-align: right;
  color: #FDFCF9;
}

/* Section Common */
section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.2rem;
  background-color: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: #FDFCF9;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-subtle);
  max-width: 680px;
  margin-bottom: 3rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #0B0A09;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
  background-color: var(--bg-card);
  color: #FDFCF9;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--gold-metallic);
  background-color: var(--gold-light);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}

/* Cards */
.card-luxury {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-luxury);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.card-luxury:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(212, 175, 55, 0.65);
}

/* Sticky Navigation Header */
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(11, 10, 9, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-border);
  transition: all 0.3s ease;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.nav-logo-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  padding: 2px;
  background: #FFF;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.nav-brand-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-subtle);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
  padding: 0.4rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-dark) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100% !important;
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-dark);
  font-size: 1.8rem;
  cursor: pointer;
}

/* HERO SECTION */
.hero-section {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  color: #FDFCF9;
  margin-bottom: 1.25rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 620px;
}

.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
  width: fit-content;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.badge-pill:hover {
  transform: translateX(4px);
  border-color: var(--gold-metallic);
}

.badge-pill-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.hero-cta-cluster {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 12px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-luxury);
  max-width: 440px;
  width: 100%;
}

.hero-image-frame img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 8px);
  display: block;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: rgba(26, 25, 23, 0.95);
  backdrop-filter: blur(14px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.floating-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0B0A09;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* ABOUT SECTION */
.about-section {
  background-color: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-left-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border);
  padding: 2rem;
  box-shadow: var(--shadow-luxury);
  text-align: center;
}

.about-photo-wrapper {
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 320px;
}

.about-photo {
  width: 100%;
  border-radius: var(--radius-md);
  border: 2px solid var(--gold-border);
  box-shadow: var(--shadow-sm);
}

.urdu-badge-card {
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  margin-top: 1rem;
}

.urdu-badge-text {
  font-family: var(--font-urdu);
  font-size: 1.4rem;
  color: var(--gold-dark);
  font-weight: bold;
}

.about-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.micro-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.micro-card:hover {
  border-color: var(--gold-metallic);
  transform: translateY(-3px);
  box-shadow: var(--shadow-luxury);
}

.micro-card-icon {
  font-size: 1.5rem;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.micro-card-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #FDFCF9;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
  background: var(--gold-gradient);
  color: #0B0A09;
  border-color: transparent;
  transform: scale(1.05);
}

.service-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #FDFCF9;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}

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

/* PROCEDURES CATALOG (DUAL COLUMN) */
.procedures-section {
  background-color: var(--bg-secondary);
}

.procedures-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.procedure-column-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gold-primary);
  margin-bottom: 1.5rem;
}

.procedure-column-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0B0A09;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.procedure-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  list-style: none;
}

.procedure-item {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.procedure-item:hover {
  border-color: var(--gold-metallic);
  transform: translateX(4px);
  box-shadow: var(--shadow-luxury);
}

.procedure-bullet {
  color: var(--gold-dark);
  font-size: 1.1rem;
}

/* AVAILABILITY & TIMINGS SECTION */
.timings-notice-card {
  background: linear-gradient(135deg, #141312 0%, #1A1917 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--gold-primary);
  position: relative;
  overflow: hidden;
}

.timings-notice-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.notice-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-gradient);
  color: #0B0A09;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.notice-urdu-heading {
  font-family: var(--font-urdu);
  font-size: 1.6rem;
  line-height: 2.2;
  color: #FDFCF9;
  text-align: right;
  direction: rtl;
  margin-bottom: 0.75rem;
}

.timings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.timing-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border);
  padding: 2rem;
  box-shadow: var(--shadow-luxury);
}

.timing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--gold-border);
  margin-bottom: 1.25rem;
}

.timing-badge-time {
  background: var(--gold-light);
  color: var(--gold-dark);
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  border: 1px solid var(--gold-border);
}

.timing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.timing-tag {
  background: var(--bg-secondary);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}

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

.location-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.location-header-tag {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  width: fit-content;
}

.tag-main {
  background: var(--gold-gradient);
  color: #0B0A09;
}

.tag-teaching {
  background: var(--gold-light);
  color: var(--gold-dark);
  border: 1px solid var(--gold-border);
}

.tag-dhq {
  background: rgba(255, 255, 255, 0.08);
  color: #FFF;
  border: 1px solid var(--gold-border);
}

.location-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #FDFCF9;
}

.location-details {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

/* APPOINTMENT & CONTACT SECTION */
.appointment-section {
  background-color: var(--bg-secondary);
}

.appointment-container-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-luxury);
  padding: 3rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-card-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

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

.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: 1px solid var(--gold-border);
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-subtle);
  font-weight: 600;
}

.contact-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FDFCF9;
  text-decoration: none;
}

.contact-value:hover {
  color: var(--gold-metallic);
}

.appointment-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #FDFCF9;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-border);
  background-color: #141312;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #FDFCF9;
  transition: all 0.25s ease;
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-metallic);
  background-color: #1A1917;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* FOOTER */
.site-footer {
  background-color: #070605;
  color: #FDFCF9;
  padding-top: 4rem;
  padding-bottom: 2rem;
  border-top: 2px solid var(--gold-primary);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold-metallic);
  padding: 2px;
  background: #FFF;
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold-dark);
  font-weight: 700;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav-link {
  color: #D1CEC7;
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  color: #9E9B94;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulse-glow 2s infinite;
}

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

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Multipage Active Navigation & Gallery Styles */
.nav-link.active {
  color: var(--gold-dark) !important;
  font-weight: 700;
}

.nav-link.active::after {
  width: 100% !important;
}

.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-luxury);
}

.service-detail-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-sm);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.ba-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-luxury);
  transition: all 0.3s ease;
}

.ba-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-metallic);
}

.ba-image-container {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.25rem;
  border: 1px solid var(--gold-border);
}

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

.ba-badge-trust {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(11, 10, 9, 0.88);
  color: var(--gold-metallic);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
  border: 1px solid var(--gold-border);
}

.ba-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--gold-border);
}

.ba-tag {
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
}

.single-location-banner {
  background: linear-gradient(135deg, #1A1917 0%, #121110 100%);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-luxury);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

/* Expanded Service Specs & Filter Tabs */
.service-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.filter-tab-btn {
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  color: #FDFCF9;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.filter-tab-btn:hover, .filter-tab-btn.active {
  background: var(--gold-gradient);
  color: #0B0A09;
  border-color: transparent;
  box-shadow: var(--shadow-luxury);
}

.service-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  background: #141312;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-border);
}

.spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.spec-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-subtle);
  font-weight: 700;
}

.spec-val {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-top: 2px;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .appointment-container-card {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .services-grid, .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .procedures-dual-grid, .timings-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .service-detail-card, .before-after-grid, .single-location-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: #0B0A09;
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gold-border);
    box-shadow: var(--shadow-luxury);
  }
  .nav-links.active {
    display: flex;
  }
  .nav-mobile-toggle {
    display: block;
  }
  .services-grid, .locations-grid {
    grid-template-columns: 1fr;
  }
  .about-highlights-grid {
    grid-template-columns: 1fr;
  }
  .service-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
