/* ============================================================
   DERMATALES — Premium Dermatology Clinic
   Custom Stylesheet (Bootstrap 5 Override)
   ============================================================ */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
  /* Primary Palette — Rose Gold & Deep Navy */
  --dt-ivory: #F1E8EA;
  --dt-beige: #E8DBDE;
  --dt-warm-white: #FEFBFB;
  --dt-taupe: #B8A99A;
  --dt-sage: #A3B5A6;
  --dt-dusty-rose: #D4A5A5;
  --dt-champagne: #B76E79;
  --dt-champagne-light: #D4A5A5;
  --dt-champagne-dark: #9E5563;
  --dt-charcoal: #1B2A4A;
  --dt-charcoal-light: #263A5E;
  --dt-teal: #4A5568;
  --dt-white: #FFFFFF;
  --dt-black: #0F1A30;

  /* Functional */
  --dt-text: #2D3748;
  --dt-text-light: #4A5568;
  --dt-text-muted: #718096;
  --dt-border: #E8DFE0;
  --dt-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --dt-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
  --dt-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);
  --dt-radius: 12px;
  --dt-radius-lg: 20px;

  /* Typography */
  --dt-font-display: 'Playfair Display', Georgia, serif;
  --dt-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transitions */
  --dt-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* WhatsApp */
  --dt-whatsapp: #25D366;
}

/* ---------- GLOBAL RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: var(--dt-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dt-text);
  background-color: var(--dt-warm-white);
  overflow-x: clip;
}

::selection {
  background-color: var(--dt-champagne);
  color: var(--dt-white);
}

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

a {
  color: var(--dt-champagne-dark);
  text-decoration: none;
  transition: color var(--dt-transition);
}

a:hover {
  color: var(--dt-champagne);
}

/* ---------- TYPOGRAPHY ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--dt-font-display);
  font-weight: 600;
  color: var(--dt-charcoal);
  line-height: 1.25;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--dt-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--dt-champagne-dark);
  margin-bottom: 12px;
}

.section-eyebrow-light {
  color: var(--dt-champagne-light);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 20px;
  color: var(--dt-charcoal);
}

.section-lead {
  font-size: 17px;
  color: var(--dt-text-light);
  line-height: 1.8;
}

.section-text {
  color: var(--dt-text-light);
  line-height: 1.8;
}

.section-padding {
  padding: 60px 0;
}

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

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

/* ---------- BUTTONS ---------- */
.btn {
  font-family: var(--dt-font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: all var(--dt-transition);
  border: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--dt-champagne), var(--dt-champagne-dark));
  color: var(--dt-white);
  border: none;
  box-shadow: 0 4px 15px rgba(183, 110, 121, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--dt-champagne-dark), var(--dt-champagne));
  color: var(--dt-white);
  box-shadow: 0 6px 25px rgba(183, 110, 121, 0.4);
  transform: translateY(-1px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--dt-champagne-dark);
  border: 1.5px solid var(--dt-champagne);
}

.btn-outline-gold:hover {
  background: var(--dt-champagne);
  color: var(--dt-white);
}

.btn-whatsapp {
  background-color: var(--dt-whatsapp);
  color: var(--dt-white);
}

.btn-whatsapp:hover {
  background-color: #1EBE57;
  color: var(--dt-white);
  transform: translateY(-1px);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--dt-white);
}

.btn-outline-light:hover {
  background: var(--dt-white);
  color: var(--dt-charcoal);
  border-color: var(--dt-white);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background-color: var(--dt-charcoal);
  padding: 8px 0;
  font-size: 13.5px;
}

.top-bar-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color var(--dt-transition);
}

.top-bar-link:hover {
  color: var(--dt-champagne-light);
}

.top-bar-link i {
  font-size: 12px;
  margin-right: 4px;
}

.top-bar-text {
  color: rgba(255, 255, 255, 0.55);
}

.top-bar-text i {
  font-size: 12px;
  margin-right: 4px;
}

.top-bar-social {
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  transition: color var(--dt-transition);
}

.top-bar-social:hover {
  color: var(--dt-champagne-light);
}

/* ============================================================
   MAIN HEADER — Lamidas-style Navigation
   ============================================================ */
.main-header {
  background: var(--dt-white);
  border-bottom: 1px solid var(--dt-border);
  position: sticky;
  top: 0;
  z-index: 1040;
  transition: box-shadow var(--dt-transition), padding var(--dt-transition);
}

.main-header.scrolled {
  box-shadow: var(--dt-shadow-md);
}

/* Logo */
.navbar-brand {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin-right: 2rem;
}

.logo-text {
  font-family: var(--dt-font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dt-charcoal);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.logo-accent {
  color: var(--dt-champagne-dark);
}

.logo-tagline {
  font-family: var(--dt-font-body);
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dt-text-muted);
  margin-top: 1px;
}

/* Navbar */
.navbar {
  padding: 0;
}

.navbar-nav {
  gap: 8px;
}

.navbar-nav .nav-link {
  font-family: var(--dt-font-body);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--dt-charcoal);
  padding: 28px 18px;
  letter-spacing: 0.2px;
  position: relative;
  transition: color var(--dt-transition);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 22px;
  right: 22px;
  height: 2px;
  background: var(--dt-champagne);
  transform: scaleX(0);
  transition: transform var(--dt-transition);
}

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

.nav-link:focus-visible {
  box-shadow: none !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.show,
.navbar-nav .dropdown-toggle.show {
  color: var(--dt-champagne-dark);
}

.navbar-nav .nav-link.active {
  color: var(--dt-champagne-dark);
}

/* Dropdown toggle caret override */
.navbar-nav .dropdown-toggle::after {
  content: none;
}

.navbar-nav .dropdown-toggle::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  vertical-align: 1px;
  border-top: 4px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  opacity: 0.5;
  transition: transform var(--dt-transition);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.nav-exclusive {
  color: var(--dt-champagne-dark) !important;
}

/* ============================================================
   MEGA MENU — Lamidas-inspired
   ============================================================ */
.mega-dropdown {
  position: static;
}

.mega-menu {
  width: 100%;
  border: none;
  border-top: 2px solid var(--dt-champagne);
  border-radius: 0 0 var(--dt-radius) var(--dt-radius);
  box-shadow: var(--dt-shadow-lg);
  padding: 0;
  margin-top: 0;
  background: var(--dt-white);
  animation: megaFadeIn 0.25s ease;
}

@keyframes megaFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mega-heading {
  font-family: var(--dt-font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--dt-charcoal);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--dt-border);
}

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

.mega-list li {
  margin-bottom: 2px;
}

.mega-list a {
  display: block;
  padding: 6px 0;
  font-size: 14.5px;
  color: var(--dt-text-light);
  transition: all var(--dt-transition);
  position: relative;
  padding-left: 0;
}

.mega-list a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1px;
  background: var(--dt-champagne);
  margin-right: 0;
  transition: all var(--dt-transition);
  vertical-align: middle;
}

.mega-list a:hover {
  color: var(--dt-champagne-dark);
  padding-left: 14px;
}

.mega-list a:hover::before {
  width: 8px;
  margin-right: 6px;
}

/* Mega menu promo card */
.mega-promo {
  background: linear-gradient(135deg, var(--dt-ivory), var(--dt-beige));
  border-radius: var(--dt-radius);
  padding: 28px 24px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mega-promo-icon {
  font-size: 33px;
  color: var(--dt-champagne-dark);
  margin-bottom: 14px;
}

.mega-promo-title {
  font-family: var(--dt-font-display);
  font-size: 18px;
  color: var(--dt-charcoal);
  margin-bottom: 8px;
}

.mega-promo-text {
  font-size: 14px;
  color: var(--dt-text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

/* Elegant dropdown (non-mega) */
.dropdown-menu-elegant {
  border: none;
  border-top: 2px solid var(--dt-champagne);
  border-radius: 0 0 var(--dt-radius) var(--dt-radius);
  box-shadow: var(--dt-shadow-lg);
  padding: 12px 0;
  min-width: 260px;
  animation: megaFadeIn 0.25s ease;
}

.dropdown-menu-elegant .dropdown-item {
  font-size: 14.5px;
  padding: 9px 24px;
  color: var(--dt-text-light);
  transition: all var(--dt-transition);
}

.dropdown-menu-elegant .dropdown-item:hover {
  background: var(--dt-ivory);
  color: var(--dt-champagne-dark);
  padding-left: 30px;
}

/* ============================================================
   MOBILE TOGGLER
   ============================================================ */
.navbar-toggler {
  border: none;
  padding: 6px;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 30px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.toggler-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dt-charcoal);
  border-radius: 2px;
  transition: all var(--dt-transition);
}

.navbar-toggler:not(.collapsed) .toggler-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler:not(.collapsed) .toggler-line:nth-child(2) {
  opacity: 0;
}

.navbar-toggler:not(.collapsed) .toggler-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   MOBILE OFFCANVAS MENU
   ============================================================ */
.offcanvas-mobile {
  width: 340px;
  max-width: 85vw;
  background: var(--dt-warm-white);
  border-left: none;
}

.offcanvas-mobile .offcanvas-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--dt-border);
}

.offcanvas-mobile .offcanvas-body {
  padding: 16px 24px 32px;
}

.btn-close-custom {
  background: none;
  border: none;
  font-size: 21px;
  color: var(--dt-charcoal);
  padding: 4px;
  cursor: pointer;
}

/* Mobile nav links */
.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav>li {
  border-bottom: 1px solid var(--dt-border);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  font-family: var(--dt-font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--dt-charcoal);
  background: none;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: color var(--dt-transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--dt-champagne-dark);
}

.mobile-nav-link i.bi-chevron-down {
  font-size: 13px;
  transition: transform var(--dt-transition);
}

.mobile-nav-link[aria-expanded="true"] i.bi-chevron-down {
  transform: rotate(180deg);
}

.mobile-nav-exclusive {
  color: var(--dt-champagne-dark);
}

.mobile-sub-nav {
  list-style: none;
  padding: 0 0 12px 8px;
  margin: 0;
}

.mobile-sub-nav li a {
  display: block;
  padding: 7px 0 7px 16px;
  font-size: 14.5px;
  color: var(--dt-text-light);
  text-decoration: none;
  border-left: 1px solid var(--dt-border);
  transition: all var(--dt-transition);
}

.mobile-sub-nav li a:hover {
  color: var(--dt-champagne-dark);
  border-left-color: var(--dt-champagne);
}

.mobile-sub-heading {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--dt-champagne-dark);
  padding: 12px 0 4px 16px;
  border-left: 1px solid var(--dt-border);
}

.mobile-cta-block {
  padding-top: 16px;
  border-top: 1px solid var(--dt-border);
}

.mobile-contact-info {
  font-size: 14px;
  color: var(--dt-text-light);
}

.mobile-contact-info p {
  margin-bottom: 6px;
}

.mobile-contact-info a {
  color: var(--dt-text-light);
  font-size: 19px;
}

.mobile-contact-info a:hover {
  color: var(--dt-champagne-dark);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--dt-charcoal) 0%, #162240 40%, #1F1A2E 100%);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 900"><defs><radialGradient id="a" cx="70%" cy="40%" r="60%"><stop offset="0%" style="stop-color:%23B76E79;stop-opacity:0.12"/><stop offset="100%" style="stop-color:%23B76E79;stop-opacity:0"/></radialGradient></defs><rect fill="url(%23a)" width="1440" height="900"/></svg>') center / cover no-repeat;
  pointer-events: none;
}

.min-vh-hero {
  min-height: calc(100vh - 80px);
}

.hero-content {
  padding: 60px 0;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: var(--dt-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--dt-champagne-light);
  padding: 8px 20px;
  border: 1px solid rgba(183, 110, 121, 0.3);
  border-radius: 30px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--dt-font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--dt-white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title-accent {
  color: var(--dt-champagne-light);
  font-style: italic;
  font-weight: 500;
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-cta .btn {
  padding: 14px 32px;
  font-size: 15px;
}

/* Hero Trust Bar */
.hero-trust {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
}

.hero-trust-number {
  font-family: var(--dt-font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dt-champagne-light);
  line-height: 1.2;
}

.hero-trust-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
}

.hero-trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-image-wrapper {
  position: relative;
}

.about-image-placeholder,
.doctor-image-placeholder {
  border-radius: var(--dt-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  gap: 8px;
}

.about-image-placeholder i,
.doctor-image-placeholder i {
  font-size: 49px;
}

/* --- About Carousel Premium Styling --- */
.about-carousel {
  border-radius: var(--dt-radius-lg);
  overflow: hidden;
  box-shadow: var(--dt-shadow-lg);
  aspect-ratio: 4/5;
  position: relative;
  z-index: 2;
}

.about-carousel .carousel-inner,
.about-carousel .carousel-item {
  height: 100%;
}

.about-carousel .carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 8s ease-out;
}

.about-carousel .carousel-item.active img {
  transform: scale(1.1);
}

.about-carousel .carousel-indicators {
  bottom: 20px;
}

.about-carousel .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--dt-white);
  border: none;
  opacity: 0.4;
  transition: all 0.3s ease;
  margin: 0 5px;
}

.about-carousel .carousel-indicators .active {
  background-color: var(--dt-white);
  width: 20px;
  border-radius: 4px;
  opacity: 1;
}

.about-carousel .carousel-control-prev,
.about-carousel .carousel-control-next {
  width: 38px;
  height: 38px;
  background: var(--dt-white);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: var(--dt-shadow-md);
  margin: 0 15px;
}

.about-carousel:hover .carousel-control-prev,
.about-carousel:hover .carousel-control-next {
  opacity: 1;
}

.about-carousel .carousel-control-prev-icon,
.about-carousel .carousel-control-next-icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(42%) sepia(18%) saturate(1045%) hue-rotate(305deg) brightness(88%) contrast(85%);
  /* Approximate --dt-champagne color */
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--dt-champagne);
  border-radius: var(--dt-radius-lg);
  z-index: -1;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--dt-white);
  border-radius: var(--dt-radius);
  box-shadow: var(--dt-shadow-sm);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--dt-charcoal);
}

.value-item i {
  font-size: 21px;
  color: var(--dt-champagne-dark);
}

/* ============================================================
   DOCTOR SECTION
   ============================================================ */
.doctor-image-wrapper {
  position: relative;
}

.doctor-badge-card {
  position: absolute;
  bottom: 24px;
  left: -16px;
  background: var(--dt-white);
  border-radius: var(--dt-radius);
  box-shadow: var(--dt-shadow-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dt-charcoal);
  line-height: 1.3;
}

.doctor-badge-card i {
  font-size: 29px;
  color: var(--dt-champagne-dark);
}

.doctor-designation {
  font-size: 15px;
  color: var(--dt-champagne-dark);
  font-weight: 500;
  margin-bottom: 16px;
}

.credential-badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--dt-border);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dt-text-light);
  background: var(--dt-ivory);
}

/* ============================================================
   TREATMENTS SECTION — Background Image Cards
   ============================================================ */
.treatment-card-img {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  border-radius: var(--dt-radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-decoration: none;
  color: var(--dt-white);
  transition: transform var(--dt-transition), box-shadow var(--dt-transition);
}

.treatment-card-img:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  color: var(--dt-white);
}

/* Dark gradient overlay */
.treatment-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(20, 20, 20, 0.92) 0%,
      rgba(20, 20, 20, 0.65) 45%,
      rgba(20, 20, 20, 0.15) 100%);
  transition: background var(--dt-transition);
  z-index: 1;
}

.treatment-card-img:hover .treatment-card-overlay {
  background: linear-gradient(to top,
      rgba(20, 20, 20, 0.95) 0%,
      rgba(20, 20, 20, 0.72) 50%,
      rgba(20, 20, 20, 0.25) 100%);
}

/* Content sitting on top of overlay */
.treatment-card-content {
  position: relative;
  z-index: 2;
  padding: 28px 26px;
}

.treatment-card-title {
  font-family: var(--dt-font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--dt-white);
  margin-bottom: 16px;
  line-height: 1.3;
}

/* Service bullet points */
.treatment-card-services {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.treatment-card-services li {
  font-family: var(--dt-font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
  transition: color var(--dt-transition), padding-left var(--dt-transition);
}

.treatment-card-services li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dt-champagne);
  transition: transform var(--dt-transition);
}

.treatment-card-img:hover .treatment-card-services li {
  color: rgba(255, 255, 255, 0.95);
}

.treatment-card-img:hover .treatment-card-services li::before {
  transform: scale(1.3);
}

/* CTA link at bottom */
.treatment-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--dt-font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--dt-champagne-light);
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  transition: gap var(--dt-transition), color var(--dt-transition);
}

.treatment-card-img:hover .treatment-card-cta {
  gap: 14px;
  color: var(--dt-champagne);
}

/* Gold accent line on top of card */
.treatment-card-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--dt-champagne), var(--dt-champagne-dark));
  z-index: 3;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Keep treatment-link for blog section */
.treatment-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--dt-champagne-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--dt-transition);
}

.treatment-link:hover {
  gap: 10px;
  color: var(--dt-champagne);
}

/* ============================================================
   RESULTS / BEFORE-AFTER
   ============================================================ */
.result-card {
  border-radius: var(--dt-radius-lg);
  overflow: hidden;
  background: var(--dt-white);
  box-shadow: var(--dt-shadow-sm);
  transition: all var(--dt-transition);
}

.result-card:hover {
  box-shadow: var(--dt-shadow-md);
  transform: translateY(-4px);
}

.result-placeholder {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--dt-beige), var(--dt-taupe));
  display: flex;
  position: relative;
  overflow: hidden;
}

.result-before,
.result-after {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.result-before {
  background: rgba(0, 0, 0, 0.15);
}

.result-after {
  background: rgba(183, 110, 121, 0.15);
}

.result-label {
  font-size: 14.5px;
  font-weight: 500;
  text-align: center;
  padding: 14px;
  margin: 0;
  color: var(--dt-charcoal);
}

/* ============================================================
   BEST TECHNOLOGIES WE USE
   ============================================================ */
/* ============================================================
   BEST TECHNOLOGIES WE USE (Redesign)
   ============================================================ */
.tech-card-new {
  position: relative;
  overflow: hidden;
  border-radius: var(--dt-radius-lg);
  box-shadow: var(--dt-shadow-sm);
  aspect-ratio: 3/4;
  background: var(--dt-charcoal);
  cursor: pointer;
  transition: box-shadow var(--dt-transition), transform var(--dt-transition);
}

.tech-card-new:hover {
  box-shadow: var(--dt-shadow-lg);
  transform: translateY(-4px);
}

.tech-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.tech-card-new:hover .tech-card-img {
  transform: scale(1.08);
  /* Zoom effect on hover */
}

.tech-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 20, 20, 0.95) 0%, rgba(20, 20, 20, 0.1) 50%, rgba(20, 20, 20, 0) 100%);
  transition: background 0.4s ease;
  z-index: 1;
}

.tech-card-new:hover .tech-card-overlay {
  background: linear-gradient(to top, rgba(20, 20, 20, 0.98) 0%, rgba(20, 20, 20, 0.6) 50%, rgba(20, 20, 20, 0.2) 100%);
}

.tech-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px 28px;
  z-index: 2;
}

.tech-card-title {
  font-family: var(--dt-font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dt-white);
  margin: 0;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.tech-card-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.tech-card-new:hover .tech-card-body {
  max-height: 180px;
  opacity: 1;
  margin-top: 16px;
}

.tech-card-text {
  font-family: var(--dt-font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================================
   FEATURED IN
   ============================================================ */
.section-featured-in {
  padding: 64px 0;
  background: var(--dt-warm-white);
  border-top: 1px solid var(--dt-border);
  border-bottom: 1px solid var(--dt-border);
  overflow: hidden;
}

.featured-logos-track {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.featured-logos-slider {
  display: flex;
  gap: 48px;
  animation: scrollLogos 30s linear infinite;
  width: max-content;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.featured-logos-slider:hover {
  animation-play-state: paused;
}

.featured-logo-item {
  flex-shrink: 0;
}

.featured-logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 140px;
  height: 80px;
  border-radius: 10px;
  border: 1px solid var(--dt-border);
  background: var(--dt-ivory);
  color: var(--dt-taupe);
  transition: all var(--dt-transition);
  cursor: default;
}

.featured-logo-placeholder i {
  font-size: 23px;
}

.featured-logo-placeholder span {
  font-family: var(--dt-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.featured-logo-placeholder:hover {
  border-color: var(--dt-champagne);
  color: var(--dt-champagne-dark);
  box-shadow: var(--dt-shadow-sm);
}

/* ============================================================
   WHY CHOOSE US — V2
   ============================================================ */
.why-stats {
  display: flex;
  flex-direction: column;
}

.why-stat-box {
  background: var(--dt-white);
  border: 1px solid var(--dt-border);
  border-radius: var(--dt-radius);
  padding: 20px 16px;
  text-align: center;
  transition: box-shadow var(--dt-transition);
}

.why-stat-box:hover {
  box-shadow: var(--dt-shadow-sm);
}

.why-stat-number {
  font-family: var(--dt-font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dt-champagne-dark);
  line-height: 1.1;
}

.why-stat-plus {
  font-family: var(--dt-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dt-champagne-dark);
}

.why-stat-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--dt-text-light);
  margin-top: 4px;
  letter-spacing: 0.3px;
}

.why-card-v2 {
  background: var(--dt-white);
  border: 1px solid var(--dt-border);
  border-radius: var(--dt-radius);
  padding: 28px 22px;
  height: 100%;
  transition: all var(--dt-transition);
  position: relative;
}

.why-card-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, var(--dt-champagne), var(--dt-champagne-dark));
  border-radius: 3px 0 0 3px;
  transition: height 0.35s ease;
}

.why-card-v2:hover {
  box-shadow: var(--dt-shadow-md);
  transform: translateY(-3px);
}

.why-card-v2:hover::before {
  height: 100%;
}

.why-card-v2-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--dt-ivory), var(--dt-beige));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  color: var(--dt-champagne-dark);
  margin-bottom: 16px;
}

.why-card-v2-title {
  font-family: var(--dt-font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dt-charcoal);
  margin-bottom: 8px;
}

.why-card-v2-text {
  font-size: 14px;
  color: var(--dt-text-light);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   POPULAR PROCEDURES — Image + Content Layout
   ============================================================ */
.procedure-card {
  display: flex;
  flex-direction: row;
  background: #fff;
  border: 1px solid var(--dt-border);
  border-radius: var(--dt-radius-lg);
  overflow: hidden;
  height: 100%;
  transition: all var(--dt-transition);
}

.procedure-card:hover {
  background: var(--dt-white);
  box-shadow: var(--dt-shadow-lg);
  transform: translateY(-4px);
}

/* Left image area */
.procedure-img {
  width: 200px;
  min-height: 220px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.procedure-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 20, 20, 0.5) 0%, rgba(20, 20, 20, 0.05) 60%);
  transition: background var(--dt-transition);
}

.procedure-card:hover .procedure-img::after {
  background: linear-gradient(to top, rgba(20, 20, 20, 0.6) 0%, rgba(20, 20, 20, 0.1) 60%);
}

.procedure-number {
  position: relative;
  z-index: 2;
  font-family: var(--dt-font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1;
  padding: 14px 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: color var(--dt-transition);
}

.procedure-card:hover .procedure-number {
  color: var(--dt-champagne-light);
}

/* Right content area */
.procedure-body {
  flex: 1;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.procedure-title {
  font-family: var(--dt-font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dt-charcoal);
  margin-bottom: 8px;
}

.procedure-desc {
  font-size: 14.5px;
  color: var(--dt-text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}

.procedure-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.procedure-meta span {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--dt-text-muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.procedure-meta span i {
  font-size: 13px;
  color: var(--dt-champagne-dark);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--dt-charcoal-light);
  border-radius: var(--dt-radius-lg);
  padding: 32px 28px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--dt-transition);
}

.testimonial-card:hover {
  border-color: rgba(183, 110, 121, 0.2);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: var(--dt-champagne);
  font-size: 15px;
}

.testimonial-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dt-champagne), var(--dt-champagne-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dt-white);
  font-family: var(--dt-font-display);
  font-size: 17px;
  font-weight: 600;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  color: var(--dt-white);
}

.testimonial-author span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* Old why-card classes removed — replaced by why-card-v2 above */

/* ============================================================
   FAQ
   ============================================================ */
.faq-item {
  border: none !important;
  margin-bottom: 12px;
}

.faq-button {
  font-family: var(--dt-font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--dt-charcoal);
  background: var(--dt-white);
  border-radius: var(--dt-radius) !important;
  padding: 20px 24px;
  box-shadow: none !important;
  border: 1px solid var(--dt-border);
  transition: all var(--dt-transition);
}

.faq-button:not(.collapsed) {
  background: var(--dt-white);
  color: var(--dt-champagne-dark);
  border-color: var(--dt-champagne);
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.faq-button::after {
  background-image: none;
  content: '+';
  font-family: var(--dt-font-body);
  font-size: 23px;
  font-weight: 300;
  color: var(--dt-champagne-dark);
  width: auto;
  height: auto;
  transform: none;
}

.faq-button:not(.collapsed)::after {
  content: '−';
  transform: none;
}

.faq-body {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--dt-text-light);
  line-height: 1.8;
  background: var(--dt-white);
  border: 1px solid var(--dt-champagne);
  border-top: none;
  border-radius: 0 0 var(--dt-radius) var(--dt-radius);
}

/* ============================================================
   BLOG PREVIEW
   ============================================================ */
.blog-card {
  background: var(--dt-white);
  border-radius: var(--dt-radius-lg);
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--dt-border);
  transition: all var(--dt-transition);
}

.blog-card:hover {
  box-shadow: var(--dt-shadow-md);
  transform: translateY(-4px);
}

.blog-image-placeholder {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--dt-beige), var(--dt-taupe));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 37px;
  color: rgba(255, 255, 255, 0.5);
}

.blog-body {
  padding: 24px;
}

.blog-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dt-champagne-dark);
  margin-bottom: 10px;
}

.blog-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-title a {
  color: var(--dt-charcoal);
  text-decoration: none;
  transition: color var(--dt-transition);
}

.blog-title a:hover {
  color: var(--dt-champagne-dark);
}

.blog-excerpt {
  font-size: 14.5px;
  color: var(--dt-text-light);
  line-height: 1.7;
  margin-bottom: 14px;
}

/* ============================================================
   OUR LOCATIONS — Premium Location Cards
   ============================================================ */
.location-card {
  background: var(--dt-charcoal-light);
  border-radius: var(--dt-radius-lg);
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--dt-transition);
}

.location-card:hover {
  border-color: rgba(183, 110, 121, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

/* Image header */
.location-card-img {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.location-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 20, 20, 0.7) 0%, rgba(20, 20, 20, 0.1) 100%);
}

.location-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  font-family: var(--dt-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dt-white);
  background: rgba(183, 110, 121, 0.85);
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: 30px;
}

/* Card body */
.location-card-body {
  padding: 28px 24px;
}

.location-card-title {
  font-family: var(--dt-font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dt-white);
  margin-bottom: 2px;
}

.location-card-subtitle {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dt-champagne);
  margin-bottom: 20px;
}

/* Detail rows */
.location-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.location-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.location-detail-row i {
  font-size: 16px;
  color: var(--dt-champagne);
  flex-shrink: 0;
  margin-top: 2px;
}

.location-detail-row a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--dt-transition);
}

.location-detail-row a:hover {
  color: var(--dt-champagne-light);
}

/* Action buttons */
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

.location-actions .btn-outline-gold {
  border-color: rgba(183, 110, 121, 0.35);
  color: var(--dt-champagne-light);
  font-size: 13px;
}

.location-actions .btn-outline-gold:hover {
  background: var(--dt-champagne);
  border-color: var(--dt-champagne);
  color: var(--dt-white);
}

.location-actions .btn-gold {
  font-size: 13px;
}

/* Map inside location card */
.location-map .map-placeholder {
  aspect-ratio: 16/7;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.25);
}

/* Shared contact strip */
.location-shared-strip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--dt-radius-lg);
  padding: 28px 20px;
}

.shared-strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.shared-strip-item i {
  font-size: 25px;
  color: var(--dt-champagne);
}

.shared-strip-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dt-white);
}

.shared-strip-item a,
.shared-strip-item span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.shared-strip-item a:hover {
  color: var(--dt-champagne-light);
}

/* ============================================================
   APPOINTMENT / CONTACT
   ============================================================ */

/* Appointment highlights */
.appt-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--dt-text);
}

.appt-highlight i {
  font-size: 19px;
  color: var(--dt-champagne-dark);
  flex-shrink: 0;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--dt-ivory), var(--dt-beige));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: var(--dt-champagne-dark);
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-size: 15px;
  color: var(--dt-charcoal);
  margin-bottom: 2px;
}

.contact-info-item p {
  font-size: 14.5px;
  color: var(--dt-text-light);
  margin: 0;
}

.contact-info-item p a {
  color: var(--dt-text-light);
}

.contact-info-item p a:hover {
  color: var(--dt-champagne-dark);
}

.map-placeholder {
  background: var(--dt-beige);
  border-radius: var(--dt-radius);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--dt-taupe);
  font-size: 15px;
  gap: 6px;
}

.map-placeholder i {
  font-size: 37px;
}

/* Appointment form */
.appointment-form-wrapper {
  background: var(--dt-white);
  border-radius: var(--dt-radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--dt-border);
  box-shadow: var(--dt-shadow-sm);
}

.form-title {
  font-family: var(--dt-font-display);
  font-size: 1.35rem;
  margin-bottom: 24px;
  color: var(--dt-charcoal);
}

.appointment-form .form-label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--dt-text);
  letter-spacing: 0.3px;
  margin-bottom: 6px;
}

.appointment-form .form-control,
.appointment-form .form-select {
  background: var(--dt-white);
  border: 1px solid var(--dt-border);
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 15px;
  color: var(--dt-text);
  transition: border-color var(--dt-transition), box-shadow var(--dt-transition);
}

.appointment-form .form-control:focus,
.appointment-form .form-select:focus {
  border-color: var(--dt-champagne);
  box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.12);
}

.appointment-form .form-control::placeholder {
  color: var(--dt-text-muted);
}

.form-note {
  font-size: 13px;
  color: var(--dt-text-muted);
}

/* ============================================================
   FOOTER — Estique-inspired
   ============================================================ */
.site-footer {
  background: var(--dt-ivory);
  color: var(--dt-text);
  border-top: 1px solid var(--dt-border);
}

/* --- Footer Top: Centered brand --- */
.footer-top {
  text-align: center;
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--dt-border);
}

.footer-brand-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand-center .logo-text {
  font-size: 2.25rem;
  color: var(--dt-charcoal);
}

.footer-brand-center .logo-tagline {
  color: var(--dt-text-muted);
  margin-top: 2px;
}

.footer-tagline-text {
  font-size: 15px;
  color: var(--dt-text-light);
  max-width: 540px;
  margin: 16px auto 24px;
  line-height: 1.7;
}

/* Social icons — colored circles */
.footer-social-center {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.footer-social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: var(--dt-white);
  transition: all var(--dt-transition);
}

.footer-social-icon:hover {
  transform: scale(1.1);
  color: var(--dt-white);
}

.footer-social-instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-social-youtube {
  background: #FF0000;
}

.footer-social-whatsapp {
  background: var(--dt-whatsapp);
}

.footer-social-facebook {
  background: #1877F2;
}

/* --- Footer Treatments: 3-column service grid --- */
.footer-treatments {
  padding: 44px 0;
}

.footer-treat-group {
  margin-bottom: 24px;
}

.footer-treat-group:last-child {
  margin-bottom: 0;
}

.footer-treat-heading {
  font-family: var(--dt-font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--dt-charcoal);
  margin-bottom: 8px;
  line-height: 1.3;
}

.footer-treat-tags {
  font-size: 14px;
  line-height: 1.8;
  color: var(--dt-text-light);
  margin: 0;
}

.footer-treat-tags a {
  color: var(--dt-text-light);
  transition: color var(--dt-transition);
}

.footer-treat-tags a:hover {
  color: var(--dt-champagne-dark);
}

.footer-treat-tags span {
  color: var(--dt-taupe);
  margin: 0 3px;
  user-select: none;
}

/* --- Footer Bottom --- */
.footer-bottom {
  border-top: 1px solid var(--dt-border);
  padding: 20px 0;
}

.footer-copy {
  font-size: 13.5px;
  color: var(--dt-text-muted);
  margin: 0;
}

.footer-locations-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--dt-text-muted);
}

.footer-locations-mini i {
  font-size: 12px;
  color: var(--dt-champagne-dark);
  margin-right: 2px;
}

.footer-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dt-taupe);
}

.footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 13.5px;
  color: var(--dt-text-muted);
  transition: color var(--dt-transition);
}

.footer-legal a:hover {
  color: var(--dt-champagne-dark);
}

/* ============================================================
   FLOATING CTAs
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1030;
}

.floating-whatsapp {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--dt-whatsapp);
  color: var(--dt-white);
  font-size: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all var(--dt-transition);
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  color: var(--dt-white);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}

.floating-phone {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dt-champagne-dark);
  color: var(--dt-white);
  font-size: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(183, 110, 121, 0.35);
  transition: all var(--dt-transition);
}

.floating-phone:hover {
  transform: scale(1.08);
  color: var(--dt-white);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dt-charcoal);
  border: none;
  color: var(--dt-white);
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--dt-transition);
  z-index: 1029;
  cursor: pointer;
}

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

.back-to-top:hover {
  background: var(--dt-champagne-dark);
  transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */

/* Large desktop */
@media (min-width: 1400px) {
  .navbar-nav .nav-link {
    padding: 28px 18px;
    font-size: 15px;
  }
}

/* Tablet landscape */
@media (max-width: 1199.98px) {
  .navbar-nav .nav-link {
    padding: 20px 12px;
    font-size: 14px;
  }

  .section-padding {
    padding: 50px 0;
  }
}

/* Tablet portrait */
@media (max-width: 991.98px) {
  .section-padding {
    padding: 45px 0;
  }

  .hero-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
  }

  .about-image-accent {
    display: none;
  }

  .doctor-badge-card {
    left: 16px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  body {
    font-size: 15px;
  }

  .section-padding {
    padding: 40px 0;
  }

  .treatment-card-img {
    min-height: 400px;
  }

  .treatment-card-title {
    font-size: 1.15rem;
  }

  .section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .tech-showcase-img {
    min-height: 280px;
  }

  .tech-showcase-body {
    padding: 28px 20px;
  }

  .tech-showcase-title {
    font-size: 1.35rem;
  }

  .tech-showcase-text {
    font-size: 14.5px;
  }

  .section-featured-in {
    padding: 40px 0;
  }

  .featured-logo-placeholder {
    width: 110px;
    height: 64px;
  }

  .why-stat-number {
    font-size: 1.5rem;
  }

  .procedure-card {
    flex-direction: column;
  }

  .procedure-img {
    width: 100%;
    min-height: 180px;
  }

  .procedure-body {
    padding: 20px;
  }

  .location-card-img {
    height: 160px;
  }

  .location-card-body {
    padding: 22px 18px;
  }

  .location-actions {
    flex-direction: column;
  }

  .location-actions .btn {
    width: 100%;
    text-align: center;
  }

  .shared-strip-item {
    justify-content: flex-start;
    text-align: left;
  }

  .location-shared-strip {
    padding: 22px 16px;
  }

  .hero-section {
    min-height: auto;
  }

  .min-vh-hero {
    min-height: 60vh;
  }

  .hero-content {
    padding: 40px 0;
  }

  .hero-cta .btn {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }

  .hero-trust {
    flex-direction: column;
    gap: 16px !important;
  }

  .hero-trust-divider {
    display: none !important;
  }

  .hero-trust-item {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .appointment-form-wrapper {
    padding: 28px 20px;
  }

  .floating-cta {
    bottom: 16px;
    right: 16px;
  }

  .floating-whatsapp {
    width: 50px;
    height: 50px;
    font-size: 23px;
  }

  .back-to-top {
    bottom: 78px;
    right: 20px;
  }

  .footer-top {
    padding: 40px 0 28px;
  }

  .footer-brand-center .logo-text {
    font-size: 1.75rem;
  }

  .footer-tagline-text {
    font-size: 14px;
  }

  .footer-treatments {
    padding: 32px 0;
  }

  .footer-treat-heading {
    font-size: 15px;
  }

  .footer-treat-tags {
    font-size: 13.5px;
  }

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

  .footer-locations-mini {
    justify-content: center;
    margin-bottom: 8px;
  }

  .footer-legal {
    justify-content: center;
    margin-top: 8px;
  }
}

/* Small mobile */
@media (max-width: 575.98px) {
  .logo-text {
    font-size: 1.5rem;
  }

  .logo-tagline {
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 14px;
  }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {

  .main-header,
  .top-bar,
  .floating-cta,
  .back-to-top,
  .hero-section {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section-padding {
    padding: 20px 0;
  }
}


/* ============================================================
       ABOUT DOCTOR PAGE — Luxury Aesthetic Styles
       ============================================================ */

/* --- Hero Section --- */
.doctor-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dt-charcoal) 0%, #162240 40%, #1F1A2E 100%);
  overflow: hidden;
  padding: 100px 0 100px;
}

.doctor-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 900"><defs><radialGradient id="a" cx="70%" cy="40%" r="60%"><stop offset="0%" style="stop-color:%23B76E79;stop-opacity:0.12"/><stop offset="100%" style="stop-color:%23B76E79;stop-opacity:0"/></radialGradient></defs><rect fill="url(%23a)" width="1440" height="900"/></svg>') center / cover no-repeat;
  pointer-events: none;
}

.doctor-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--dt-warm-white), transparent);
  pointer-events: none;
  z-index: 2;
}

.doctor-hero-content {
  position: relative;
  z-index: 3;
}

.doctor-hero .dh-eyebrow {
  font-family: var(--dt-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dt-champagne-light);
  margin-bottom: 1.25rem;
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(183, 110, 121, 0.3);
  border-radius: 30px;
}

.doctor-hero .dh-name {
  font-family: var(--dt-font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--dt-white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.doctor-hero .dh-name .name-accent {
  background: linear-gradient(135deg, var(--dt-champagne-light), var(--dt-champagne));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.doctor-hero .dh-designation {
  font-family: var(--dt-font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.doctor-hero .dh-designation strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.doctor-hero .dh-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.doctor-hero .dh-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem;
  padding: 0.55rem 1.15rem !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(183, 110, 121, 0.25) !important;
  border-radius: 50px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  backdrop-filter: blur(8px);
  margin-bottom: 0 !important;
  transition: var(--dt-transition);
}

.doctor-hero .dh-badge:hover {
  background: rgba(183, 110, 121, 0.12) !important;
  border-color: rgba(183, 110, 121, 0.4) !important;
}

.doctor-hero .dh-badge i {
  color: var(--dt-champagne);
  font-size: 0.85rem;
}

.doctor-hero .dh-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.doctor-hero .btn-hero-gold {
  background: linear-gradient(135deg, var(--dt-champagne), var(--dt-champagne-dark));
  color: var(--dt-white);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: none;
  font-size: 0.95rem;
  transition: var(--dt-transition);
}

.doctor-hero .btn-hero-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(183, 110, 121, 0.35);
}

.doctor-hero .btn-hero-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.95rem;
  transition: var(--dt-transition);
}

.doctor-hero .btn-hero-outline:hover {
  border-color: var(--dt-champagne);
  color: var(--dt-champagne-light);
}

/* Hero Image */
.dh-image-wrapper {
  position: relative;
  z-index: 3;
}

.dh-image-frame {
  position: relative;
  border-radius: var(--dt-radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.dh-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(183, 110, 121, 0.2);
  border-radius: var(--dt-radius-lg);
  z-index: 2;
  pointer-events: none;
}

.dh-image-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.dh-image-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100px;
  height: 100px;
  border: 2px solid var(--dt-champagne);
  border-radius: var(--dt-radius-lg);
  opacity: 0.25;
  z-index: 0;
}

.dh-floating-card {
  position: absolute;
  bottom: 24px;
  left: -10px;
  background: var(--dt-white);
  border-radius: var(--dt-radius);
  box-shadow: var(--dt-shadow-lg);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dt-charcoal);
  line-height: 1.3;
  z-index: 5;
}

.dh-floating-card i {
  font-size: 27px;
  color: var(--dt-champagne-dark);
}

/* --- Decorative Divider --- */
.luxury-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 0;
}

.luxury-divider .divider-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--dt-champagne), transparent);
}

.luxury-divider .divider-icon {
  color: var(--dt-champagne);
  font-size: 1.2rem;
}

/* --- About Story Section --- */
.about-story {
  padding: 0px 0px 80px 0px;
  background: var(--dt-warm-white);
}

.story-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--dt-text);
}

.story-text .highlight {
  color: var(--dt-champagne-dark);
  font-weight: 500;
}

.story-lead {
  font-family: var(--dt-font-display);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--dt-charcoal);
  line-height: 1.5;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 2rem;
  border-left: 3px solid var(--dt-champagne);
}

/* --- Credentials Section --- */
.credentials-section {
  padding: 80px 0;
  background: var(--dt-ivory);
}

.credential-card {
  background: var(--dt-white);
  border-radius: var(--dt-radius-lg);
  padding: 2.5rem 2rem;
  height: 100%;
  border: 1px solid var(--dt-border);
  box-shadow: var(--dt-shadow-sm);
  text-align: center;
  transition: var(--dt-transition);
}

.credential-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--dt-shadow-lg);
}

.credential-card .credential-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dt-champagne), var(--dt-champagne-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.credential-card .credential-icon i {
  font-size: 1.5rem;
  color: var(--dt-white);
}

.credential-card h3 {
  font-family: var(--dt-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dt-charcoal);
  margin-bottom: 0.5rem;
}

.credential-card p {
  font-size: 0.9rem;
  color: var(--dt-text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* --- Expertise Section --- */
.expertise-section {
  padding: 80px 0;
  background: var(--dt-warm-white);
}

.expertise-card {
  position: relative;
  background: var(--dt-white);
  border-radius: var(--dt-radius-lg);
  padding: 2.5rem 2rem;
  height: 100%;
  border: 1px solid var(--dt-border);
  box-shadow: var(--dt-shadow-sm);
  overflow: hidden;
  transition: var(--dt-transition);
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--dt-champagne), var(--dt-champagne-dark));
  opacity: 0;
  transition: var(--dt-transition);
}

.expertise-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--dt-shadow-lg);
}

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

.expertise-card .expertise-number {
  font-family: var(--dt-font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--dt-ivory);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.expertise-card .expertise-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(183, 110, 121, 0.1), rgba(183, 110, 121, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.expertise-card .expertise-icon i {
  font-size: 1.3rem;
  color: var(--dt-champagne-dark);
}

.expertise-card h3 {
  font-family: var(--dt-font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dt-charcoal);
  margin-bottom: 0.75rem;
}

.expertise-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.expertise-card ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--dt-text-light);
}

.expertise-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dt-champagne);
}

/* --- Philosophy Section --- */
.philosophy-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dt-charcoal) 0%, var(--dt-charcoal-light) 100%);
  position: relative;
  overflow: hidden;
}

.philosophy-section::before {
  content: '\201C';
  position: absolute;
  top: 2rem;
  left: 5%;
  font-family: var(--dt-font-display);
  font-size: 20rem;
  color: rgba(183, 110, 121, 0.05);
  line-height: 1;
  pointer-events: none;
}

.philosophy-quote {
  font-family: var(--dt-font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--dt-white);
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.philosophy-author {
  text-align: center;
  color: var(--dt-champagne);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
}

/* --- Approach Section --- */
.approach-section {
  padding: 80px 0;
  background: var(--dt-ivory);
}

.approach-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.approach-item:last-child {
  margin-bottom: 0;
}

.approach-item .approach-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--dt-champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--dt-font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dt-champagne-dark);
}

.approach-item h4 {
  font-family: var(--dt-font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dt-charcoal);
  margin-bottom: 0.35rem;
}

.approach-item p {
  font-size: 0.9rem;
  color: var(--dt-text-light);
  margin-bottom: 0;
  line-height: 1.7;
}

.approach-image {
  border-radius: var(--dt-radius-lg);
  overflow: hidden;
  box-shadow: var(--dt-shadow-lg);
}

.approach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

/* --- Stats Strip --- */
.stats-strip {
  padding: 60px 0;
  background: var(--dt-warm-white);
}

.stat-box {
  text-align: center;
  padding: 1.5rem;
}

.stat-box .stat-number {
  font-family: var(--dt-font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dt-champagne-dark);
  line-height: 1.2;
}

.stat-box .stat-label {
  font-size: 0.85rem;
  color: var(--dt-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

/* --- CTA Section --- */
.doctor-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dt-champagne-dark) 0%, var(--dt-champagne) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.doctor-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.doctor-cta h2 {
  font-family: var(--dt-font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--dt-white);
  margin-bottom: 1rem;
}

.doctor-cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.doctor-cta .btn-white {
  background: var(--dt-white);
  color: var(--dt-champagne-dark);
  font-weight: 600;
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  transition: var(--dt-transition);
}

.doctor-cta .btn-white:hover {
  background: var(--dt-charcoal);
  color: var(--dt-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
  .doctor-hero {
    padding: 80px 0 60px;
    min-height: auto;
    text-align: center;
  }

  .doctor-hero .dh-badges {
    justify-content: center;
  }

  .doctor-hero .dh-cta-group {
    justify-content: center;
  }

  .dh-image-frame img {
    height: 400px;
  }

  .dh-image-wrapper {
    margin-bottom: 2.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .dh-floating-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -16px;
  }

  .dh-image-accent {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .doctor-hero {
    padding: 70px 0 50px;
  }

  .dh-image-frame img {
    height: 340px;
  }

  .doctor-hero .dh-badge {
    font-size: 0.75rem !important;
    padding: 0.4rem 0.9rem !important;
  }

  .story-lead {
    font-size: 1.35rem;
  }

  .philosophy-quote {
    font-size: 1.3rem;
  }
}

/* ============================================================
   ENHANCED DOCTOR HERO SECTION
   ============================================================ */
.doctor-hero-premium {
  position: relative;
  background: var(--dt-charcoal);
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 60px;
  z-index: 1;
}

/* Background Animations */
.hero-bg-elements {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: #111A2E;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(183, 110, 121, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183, 110, 121, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 15s infinite alternate ease-in-out;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--dt-champagne-dark);
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: var(--dt-charcoal-light);
  bottom: -100px;
  left: -150px;
  animation-delay: -5s;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: rgba(183, 110, 121, 0.6);
  top: 40%;
  left: 30%;
  animation-delay: -10s;
  animation-duration: 20s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -50px) scale(1.1);
  }

  100% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.min-vh-75 {
  min-height: 75vh;
}

/* Image Showcase */
.hero-image-showcase {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 480px;
}

.img-frame-outer {
  padding: 15px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.img-frame-inner {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s ease;
}

.hero-image-showcase:hover .hero-img {
  transform: scale(1.05);
}

.img-frame-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 40%);
  border-radius: 20px;
}

/* Floating Badges */
.hero-float-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(183, 110, 121, 0.2);
  z-index: 3;
  animation: badgeFloat 6s infinite alternate ease-in-out;
}

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

  100% {
    transform: translateY(-15px);
  }
}

.exp-badge {
  bottom: 40px;
  left: -30px;
  animation-delay: 0s;
}

.trust-badge {
  top: 50px;
  right: -30px;
  animation-delay: -3s;
}

.float-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--dt-champagne), var(--dt-champagne-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.float-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.float-text strong {
  color: var(--dt-charcoal);
  font-size: 1.1rem;
  font-weight: 800;
}

.float-text span {
  color: var(--dt-text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Typography & Content */
.hero-eyebrow-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.hero-eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--dt-champagne);
}

.hero-eyebrow {
  color: var(--dt-champagne-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--dt-font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--dt-white);
  line-height: 1.1;
  letter-spacing: -1px;
}

.text-gradient-gold {
  background: linear-gradient(to right, #e8dfc7, var(--dt-champagne), #e8dfc7);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shine 5s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.hero-credentials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.cred-item {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cred-item i {
  color: var(--dt-champagne);
  font-size: 1.1rem;
}

.cred-dot {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
}

/* Premium Buttons */
.btn-premium-glow {
  background: linear-gradient(135deg, var(--dt-champagne), var(--dt-champagne-dark));
  color: white;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(183, 110, 121, 0.3);
}

.btn-premium-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
  z-index: -1;
}

.btn-premium-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(183, 110, 121, 0.4);
  color: white;
}

.btn-premium-glow:hover::before {
  left: 100%;
}

.btn-outline-premium {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.btn-outline-premium:hover {
  background: white;
  color: var(--dt-charcoal);
  border-color: white;
  transform: translateY(-3px);
}

/* Curved Bottom */
.hero-bottom-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-bottom-curve svg {
  display: block;
  width: 100%;
  height: 6vw;
  min-height: 60px;
}

/* Entrance Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

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

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .doctor-hero-premium {
    padding: 100px 0 40px;
    text-align: center;
  }

  .hero-image-showcase {
    margin-bottom: 30px;
  }

  .hero-eyebrow-wrapper,
  .hero-credentials,
  .hero-actions {
    justify-content: center;
  }

  .hero-description {
    margin: 0 auto 2rem;
  }

  .cred-dot {
    display: none;
  }

  .cred-item {
    width: 100%;
    justify-content: center;
  }

  .exp-badge {
    left: -10px;
    bottom: 20px;
  }

  .trust-badge {
    right: -10px;
    top: 30px;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-float-badge {
    padding: 8px 12px;
  }

  .float-icon {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }

  .float-text strong {
    font-size: 0.9rem;
  }

  .float-text span {
    font-size: 0.65rem;
  }
}


/* Why Hover Cards */
.why-hover-card {
  transition: all 0.3s ease;
}

.why-hover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

/* ============================================================
   ULTRA LUXURY 'ABOUT DOCTOR' PAGE
   ============================================================ */

/* Global Luxury Elements */
.lux-eyebrow {
  font-family: var(--dt-font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dt-champagne-dark);
  margin-bottom: 1rem;
  display: inline-block;
}

.lux-section-title {
  font-family: var(--dt-font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--dt-charcoal);
  line-height: 1.2;
}

.text-charcoal-deep {
  color: #e8e8e8;
}

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

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

/* --- Luxury Hero --- */
.doctor-hero-luxury {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 10px 0 40px;
  background: linear-gradient(135deg, #fdfbfb 0%, #f4f0ea 100%);
  z-index: 1;
}

.hero-bg-luxury {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.luxury-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
}

.glow-1 {
  width: 60vw;
  height: 60vw;
  background: rgba(222, 194, 155, 0.3);
  /* Soft Champagne */
  top: -10vw;
  right: -10vw;
  animation: float 20s infinite alternate ease-in-out;
}

.glow-2 {
  width: 50vw;
  height: 50vw;
  background: rgba(255, 255, 255, 0.8);
  bottom: -20vw;
  left: -10vw;
  animation: float 15s infinite alternate-reverse ease-in-out;
}

.hero-eyebrow-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.hero-eyebrow-line-gold {
  width: 40px;
  height: 2px;
  background: var(--dt-champagne-dark);
}

.hero-eyebrow-gold {
  color: var(--dt-champagne-dark);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-title-lux {
  font-family: var(--dt-font-display);
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 300;
  /* Lighter weight for luxury feel */
  color: #9E5563;
  line-height: 1.05;
  letter-spacing: -1px;
}

.hero-credentials-lux {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.cred-lux-item {
  color: var(--dt-charcoal-light);
  font-size: 1rem;
  font-weight: 500;
}

.cred-lux-dot {
  width: 4px;
  height: 4px;
  background: var(--dt-champagne);
  border-radius: 50%;
}

.hero-description-lux {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--dt-text);
  max-width: 600px;
}

/* Image & Glass Badges */
.hero-image-luxury {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.luxury-img-frame {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 200px 200px 20px 20px;
  /* Elegant Arch */
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

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

.arch-overlay {
  position: absolute;
  inset: 15px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  pointer-events: none;
}

.hero-glass-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  padding: 16px 24px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 3;
}

.glass-exp {
  bottom: 40px;
  left: -40px;
}

.glass-trust {
  top: 60px;
  right: -40px;
}

.glass-icon i {
  font-size: 1.4rem;
  color: var(--dt-champagne-dark);
}

.glass-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.glass-text strong {
  color: var(--dt-charcoal);
  font-size: 1.2rem;
  font-weight: 800;
}

.glass-text span {
  color: var(--dt-text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Buttons */
.btn-gold-solid {
  background: var(--dt-champagne-dark);
  color: white;
  padding: 18px 40px;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  transition: all 0.4s ease;
  box-shadow: 0 10px 20px rgba(183, 110, 121, 0.15);
}

.btn-gold-solid:hover {
  background: var(--dt-charcoal);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* --- About Story --- */
.about-story-lux {
  padding: 50px 0;
  background: #ffffff;
}

.story-image-wrap {
  position: relative;
}

.story-image-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 150px;
  height: 150px;
  background: var(--dt-champagne-light);
  border-radius: 100px 100px 0 100px;
  z-index: -1;
  opacity: 0.4;
}

.story-text-lux {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--dt-text);
  font-weight: 300;
}

.has-drop-cap::first-letter {
  float: left;
  font-family: var(--dt-font-display);
  font-size: 4.5rem;
  line-height: 0.8;
  padding-right: 12px;
  padding-top: 4px;
  color: var(--dt-champagne-dark);
  font-weight: 400;
}

.signature-lux {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1.5rem;
}

.signature-lux .sig-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-style: italic;
  color: var(--dt-charcoal);
}

.signature-lux .sig-title {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dt-champagne-dark);
  margin-top: 0.25rem;
}

/* --- Credentials --- */
.cred-card-lux {
  background: white;
  padding: 40px 30px;
  border-radius: 0;
  height: 100%;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.cred-card-lux:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(183, 110, 121, 0.08);
  border-color: transparent;
}

.cred-icon-lux {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  background: var(--dt-ivory);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dt-white);
  font-size: 25px;
  box-shadow: 0 8px 20px rgba(183, 110, 121, 0.3);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cred-card-lux:hover .cred-icon-lux {
  transform: scale(1.1) rotate(5deg);
}

.cred-title-lux {
  font-family: var(--dt-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dt-charcoal);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.cred-card-lux:hover .cred-title-lux {
  color: var(--dt-champagne-dark);
}

.cred-text-lux {
  font-family: var(--dt-font-body);
  font-size: 15px;
  color: var(--dt-text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

/* --- Expertise --- */
.exp-menu-lux {
  padding: 20px;
}

.exp-menu-title {
  font-family: var(--dt-font-display);
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.exp-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.exp-menu-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 1.05rem;
  color: var(--dt-text);
  font-weight: 300;
}

.exp-menu-list li:last-child {
  border-bottom: none;
}

/* --- Philosophy --- */
.quote-mark-lux {
  font-family: var(--dt-font-display);
  font-size: 8rem;
  color: var(--dt-champagne);
  line-height: 0.5;
  margin-bottom: 1rem;
}

.philosophy-quote-lux {
  font-family: var(--dt-font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto;
}

.auth-name {
  font-family: var(--dt-font-display);
  font-size: 1.25rem;
  color: var(--dt-champagne-light);
  letter-spacing: 1px;
}

/* --- Timeline Approach --- */
.lux-timeline {
  position: relative;
  padding-left: 30px;
}

.lux-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: rgba(183, 110, 121, 0.3);
}

.lux-timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.lux-timeline-item:last-child {
  margin-bottom: 0;
}

.point-marker {
  position: absolute;
  left: -35px;
  top: 5px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--dt-champagne-dark);
  box-shadow: 0 0 0 4px rgba(183, 110, 121, 0.15);
}

@media (max-width: 991.98px) {
  .doctor-hero-luxury {
    padding: 10px 0 40px;
    text-align: center;
    min-height: auto;
  }

  .luxury-img-frame {
    border-radius: 15px;
  }

  .arch-overlay {
    display: none;
  }

  .glass-exp {
    left: 10px;
    bottom: -20px;
  }

  .glass-trust {
    right: 10px;
    top: -20px;
  }

  .hero-eyebrow-wrapper,
  .hero-credentials-lux,
  .hero-actions-lux {
    justify-content: center;
  }

  .cred-lux-dot {
    display: none;
  }

  .cred-lux-item {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-description-lux {
    margin-left: auto;
    margin-right: auto;
  }

  .exp-menu-lux {
    border-right: none !important;
    padding: 0;
  }

  .lux-timeline {
    padding-left: 20px;
    margin-top: 30px;
  }
}

/* --- Credentials (Open Layout v2) --- */
.cred-item-open-new {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 15px 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.cred-item-open-new:hover {
  transform: translateX(8px);
}

.cred-icon-open-new {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--dt-white);
  border: 1px dashed var(--dt-champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 33px;
  color: var(--dt-champagne-dark);
  position: relative;
  transition: all 0.4s ease;
}

.cred-icon-open-new::before {
  content: '';
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: 8px;
  left: 8px;
  background: linear-gradient(135deg, var(--dt-champagne) 0%, transparent 100%);
  border-radius: 50%;
  opacity: 0.1;
  transition: opacity 0.4s ease;
}

.cred-item-open-new:hover .cred-icon-open-new {
  background: var(--dt-champagne-dark);
  color: var(--dt-white);
  border-color: var(--dt-champagne-dark);
  box-shadow: 0 8px 24px rgba(183, 110, 121, 0.25);
  transform: scale(1.05);
}

.cred-item-open-new:hover .cred-icon-open-new::before {
  opacity: 0;
}

.cred-content-open-new h3 {
  font-family: var(--dt-font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dt-charcoal);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.cred-item-open-new:hover .cred-content-open-new h3 {
  color: var(--dt-champagne-dark);
}

.cred-content-open-new p {
  font-family: var(--dt-font-body);
  font-size: 15.5px;
  color: var(--dt-text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================================
   SERVICE & SIDEBAR PAGE — Shared Styles
   (Used on: skin-tag-removal, acne-scar-treatment, etc.)
   ============================================================ */

.service-hero {
  position: relative;
  padding: 60px 0 60px;
  background: linear-gradient(135deg, var(--dt-charcoal) 0%, #162240 100%);
  color: var(--dt-white);
  overflow: hidden;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 900"><defs><radialGradient id="a" cx="70%" cy="40%" r="60%"><stop offset="0%" style="stop-color:%23B76E79;stop-opacity:0.08"/><stop offset="100%" style="stop-color:%23B76E79;stop-opacity:0"/></radialGradient></defs><rect fill="url(%23a)" width="1440" height="900"/></svg>') center / cover no-repeat;
  pointer-events: none;
}

.breadcrumb-lux {
  display: flex;
  gap: 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-lux a {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-lux a:hover {
  color: var(--dt-champagne-light);
}

.sidebar-sticky {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--dt-white);
  border-radius: var(--dt-radius-lg);
  padding: 30px;
  box-shadow: var(--dt-shadow-md);
  margin-bottom: 30px;
  border: 1px solid var(--dt-border);
}

.widget-title {
  font-family: var(--dt-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dt-charcoal);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--dt-ivory);
}

/* Condensed Form Styles */
.condensed-form .form-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dt-text-light);
  margin-bottom: 6px;
}

.condensed-form .form-control,
.condensed-form .form-select {
  font-size: 15px;
  padding: 10px 14px;
  border-color: var(--dt-border);
}

.condensed-form .form-control:focus {
  border-color: var(--dt-champagne);
  box-shadow: none;
}

/* Doctor Card Widget */
.dr-widget-card {
  text-align: center;
}

.dr-widget-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid var(--dt-ivory);
}

.dr-widget-name {
  font-family: var(--dt-font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.dr-widget-title {
  font-size: 13px;
  color: var(--dt-champagne-dark);
  font-weight: 600;
  margin-bottom: 12px;
}

/* Related Services List */
.related-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-list li {
  margin-bottom: 10px;
}

.related-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--dt-ivory);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dt-charcoal);
  transition: all var(--dt-transition);
}

.related-list a:hover {
  background: var(--dt-champagne-dark);
  color: var(--dt-white);
  padding-left: 20px;
}

/* Main Content Typography */
.content-area h2 {
  font-size: 2rem;
  margin: 25px 0 15px;
  position: relative;
}

.content-area p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--dt-text-light);
  margin-bottom: 24px;
}

.content-area ul {
  margin-bottom: 24px;
}

.content-area li {
  margin-bottom: 12px;
  color: var(--dt-text-light);
}

.treatment-method-card {
  background: var(--dt-white);
  border-radius: var(--dt-radius-lg);
  padding: 30px;
  margin-bottom: 30px;
  border-left: 5px solid var(--dt-champagne);
  box-shadow: var(--dt-shadow-sm);
}

.treatment-method-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dt-charcoal);
}

/* Stats Strip Local */
.stats-row-local {
  background: var(--dt-ivory);
  border-radius: var(--dt-radius-lg);
  padding: 30px 20px;
  margin: 30px 0;
}

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

.stat-num-local {
  font-family: var(--dt-font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dt-champagne-dark);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.stat-num-local::after {
  content: '+';
  font-size: 1.5rem;
  opacity: 0.8;
  margin-top: -5px;
}

.stat-label-local {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dt-text-muted);
}

/* Before/After Local */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

/* Testimonials */
.testimonial-item-local {
  background: var(--dt-white);
  padding: 30px;
  border-radius: var(--dt-radius-lg);
  border: 1px solid var(--dt-border);
  margin-bottom: 20px;
}

.testimonial-stars {
  color: var(--dt-champagne);
  margin-bottom: 10px;
}

.testimonial-author-local {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

.author-avatar-local {
  width: 40px;
  height: 40px;
  background: var(--dt-champagne-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Service Thumbnail */
.service-thumb-wrap {
  position: relative;
  border-radius: var(--dt-radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  border: 1px solid var(--dt-border);
  box-shadow: var(--dt-shadow-lg);
}

.service-thumb-wrap::after {
  content: '';
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 120px 120px 20px 20px;
  pointer-events: none;
}

/* Premium Treatment Cards */
.treatment-card-lux {
  background: var(--dt-white);
  border-radius: var(--dt-radius-lg);
  overflow: hidden;
  border: 1px solid var(--dt-border);
  margin-bottom: 40px;
  transition: all var(--dt-transition);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .treatment-card-lux {
    flex-direction: row;
  }

  .treatment-card-lux .treatment-card-img {
    width: 40%;
    min-height: 100%;
  }

  .treatment-card-lux .treatment-card-body {
    width: 60%;
    padding: 40px !important;
  }
}

.treatment-card-lux:hover {
  transform: translateY(-5px);
  box-shadow: var(--dt-shadow-lg);
  border-color: var(--dt-champagne-light);
}

.treatment-card-lux .treatment-card-img {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 250px;
}

.treatment-card-lux .treatment-card-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.treatment-card-lux .treatment-card-body h3 {
  font-family: var(--dt-font-display);
  font-size: 1.6rem;
  color: var(--dt-charcoal);
  margin-bottom: 15px;
}

/* Luxury Feature Grid */
.lux-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.lux-feature-item {
  padding: 30px;
  background: var(--dt-white);
  border-radius: var(--dt-radius-lg);
  border: 1px solid var(--dt-border);
  transition: all var(--dt-transition);
  position: relative;
  overflow: hidden;
}

.lux-feature-item:hover {
  border-color: var(--dt-champagne);
  box-shadow: var(--dt-shadow-md);
}

.lux-feature-icon {
  font-size: 2.5rem;
  color: var(--dt-champagne-dark);
  margin-bottom: 20px;
  opacity: 0.8;
}

.lux-feature-title {
  font-family: var(--dt-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dt-charcoal);
}

.lux-feature-text {
  font-size: 15px;
  color: var(--dt-text-light);
  line-height: 1.6;
}

/* Timeline Steps */
.timeline-lux {
  position: relative;
  padding-left: 50px;
  border-left: 2px solid var(--dt-ivory);
  margin: 40px 20px;
}

.timeline-lux-item {
  position: relative;
  margin-bottom: 50px;
}

.timeline-lux-item::before {
  content: attr(data-step);
  position: absolute;
  left: -66px;
  top: 0;
  width: 32px;
  height: 32px;
  background: var(--dt-charcoal);
  color: var(--dt-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  border: 4px solid var(--dt-warm-white);
  z-index: 2;
}

/* Candidate Boxes */
.candidate-card {
  padding: 35px;
  border-radius: var(--dt-radius-lg);
  height: 100%;
  transition: transform var(--dt-transition);
}

.candidate-card-ideal {
  background: rgba(183, 110, 121, 0.04);
  border: 1px solid rgba(183, 110, 121, 0.1);
}

.candidate-card-avoid {
  background: #f8f9fa;
  border: 1px solid var(--dt-border);
}

.candidate-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.candidate-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 15.5px;
}

.candidate-list i {
  font-size: 19px;
}

/* Editorial Feature List */
.feature-list-lux {
  margin-top: 40px;
}

.feature-list-item {
  display: flex;
  gap: 25px;
  padding: 30px 0;
  border-bottom: 1px solid var(--dt-ivory);
  transition: all var(--dt-transition);
}

.feature-list-item:last-child {
  border-bottom: none;
}

.feature-list-item:hover .feature-list-icon {
  background: var(--dt-champagne);
  color: var(--dt-white);
  transform: scale(1.1);
}

.feature-list-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--dt-ivory);
  color: var(--dt-champagne-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: all var(--dt-transition);
}

.feature-list-content h4 {
  font-family: var(--dt-font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dt-charcoal);
  margin-bottom: 8px;
}

.feature-list-content p {
  font-size: 16px;
  color: var(--dt-text-light);
  margin-bottom: 0;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .feature-list-item {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    align-items: center;
  }

  .feature-list-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

@media (max-width: 991px) {
  .sidebar-sticky {
    position: static;
    margin-top: 40px;
  }
}

/* ===================== PREMIUM SERVICE PAGE STYLES ===================== */

/* ===================== SIDEBAR & SERVICE PAGE STYLES ===================== */
.service-hero {
  position: relative;
  padding: 60px 0 60px;
  background: linear-gradient(135deg, var(--dt-charcoal) 0%, #162240 100%);
  color: var(--dt-white);
  overflow: hidden;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 900"><defs><radialGradient id="a" cx="70%" cy="40%" r="60%"><stop offset="0%" style="stop-color:%23B76E79;stop-opacity:0.08"/><stop offset="100%" style="stop-color:%23B76E79;stop-opacity:0"/></radialGradient></defs><rect fill="url(%23a)" width="1440" height="900"/></svg>') center / cover no-repeat;
  pointer-events: none;
}

.breadcrumb-lux {
  display: flex;
  gap: 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-lux a {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-lux a:hover {
  color: var(--dt-champagne-light);
}

.sidebar-sticky {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--dt-white);
  border-radius: var(--dt-radius-lg);
  padding: 30px;
  box-shadow: var(--dt-shadow-md);
  margin-bottom: 30px;
  border: 1px solid var(--dt-border);
}

.widget-title {
  font-family: var(--dt-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dt-charcoal);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--dt-ivory);
}

/* Condensed Form Styles */
.condensed-form .form-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dt-text-light);
  margin-bottom: 6px;
}

.condensed-form .form-control,
.condensed-form .form-select {
  font-size: 15px;
  padding: 10px 14px;
  border-color: var(--dt-border);
}

.condensed-form .form-control:focus {
  border-color: var(--dt-champagne);
  box-shadow: none;
}

/* Doctor Card Widget */
.dr-widget-card {
  text-align: center;
}

.dr-widget-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid var(--dt-ivory);
}

.dr-widget-name {
  font-family: var(--dt-font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.dr-widget-title {
  font-size: 13px;
  color: var(--dt-champagne-dark);
  font-weight: 600;
  margin-bottom: 12px;
}

/* Related Services List */
.related-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-list li {
  margin-bottom: 10px;
}

.related-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--dt-ivory);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dt-charcoal);
  transition: all var(--dt-transition);
}

.related-list a:hover {
  background: var(--dt-champagne-dark);
  color: var(--dt-white);
  padding-left: 20px;
}

/* Main Content Typography */
.content-area h2 {
  font-size: 2rem;
  margin: 25px 0 15px;
  position: relative;
}

.content-area p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--dt-text-light);
  margin-bottom: 24px;
}

.content-area ul {
  margin-bottom: 24px;
}

.content-area li {
  margin-bottom: 12px;
  color: var(--dt-text-light);
}

.treatment-method-card {
  background: var(--dt-white);
  border-radius: var(--dt-radius-lg);
  padding: 30px;
  margin-bottom: 30px;
  border-left: 5px solid var(--dt-champagne);
  box-shadow: var(--dt-shadow-sm);
}

.treatment-method-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dt-charcoal);
}

/* Stats Strip Local */
.stats-row-local {
  background: var(--dt-ivory);
  border-radius: var(--dt-radius-lg);
  padding: 30px 20px;
  margin: 30px 0;
}

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

.stat-num-local {
  font-family: var(--dt-font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dt-champagne-dark);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.stat-num-local::after {
  content: '+';
  font-size: 1.5rem;
  opacity: 0.8;
  margin-top: -5px;
}

.stat-label-local {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dt-text-muted);
}

/* Before/After Local */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

/* Testimonials Sidebar-compatible */
.testimonial-item-local {
  background: var(--dt-white);
  padding: 30px;
  border-radius: var(--dt-radius-lg);
  border: 1px solid var(--dt-border);
  margin-bottom: 20px;
}

.testimonial-stars {
  color: var(--dt-champagne);
  margin-bottom: 10px;
}

.testimonial-author-local {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

.author-avatar-local {
  width: 40px;
  height: 40px;
  background: var(--dt-champagne-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Service Thumbnail */
.service-thumb-wrap {
  position: relative;
  border-radius: var(--dt-radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  border: 1px solid var(--dt-border);
  box-shadow: var(--dt-shadow-lg);
}

.service-thumb-wrap::after {
  content: '';
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 120px 120px 20px 20px;
  pointer-events: none;
}

/* Premium Treatment Cards */
.treatment-card-lux {
  background: var(--dt-white);
  border-radius: var(--dt-radius-lg);
  overflow: hidden;
  border: 1px solid var(--dt-border);
  margin-bottom: 40px;
  transition: all var(--dt-transition);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .treatment-card-lux {
    flex-direction: row;
  }

  .treatment-card-img {
    min-height: 100%;
  }

  .treatment-card-body {
    width: 60%;
    padding: 40px !important;
  }
}

.treatment-card-lux:hover {
  transform: translateY(-5px);
  box-shadow: var(--dt-shadow-lg);
  border-color: var(--dt-champagne-light);
}

.treatment-card-img {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 250px;
}

.treatment-card-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.treatment-card-body h3 {
  font-family: var(--dt-font-display);
  font-size: 1.6rem;
  color: var(--dt-charcoal);
  margin-bottom: 15px;
}

/* Luxury Feature Grid */
.lux-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.lux-feature-item {
  padding: 30px;
  background: var(--dt-white);
  border-radius: var(--dt-radius-lg);
  border: 1px solid var(--dt-border);
  transition: all var(--dt-transition);
  position: relative;
  overflow: hidden;
}

.lux-feature-item:hover {
  border-color: var(--dt-champagne);
  box-shadow: var(--dt-shadow-md);
}

.lux-feature-icon {
  font-size: 2.5rem;
  color: var(--dt-champagne-dark);
  margin-bottom: 20px;
  opacity: 0.8;
}

.lux-feature-title {
  font-family: var(--dt-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dt-charcoal);
}

.lux-feature-text {
  font-size: 15px;
  color: var(--dt-text-light);
  line-height: 1.6;
}

/* Timeline Steps */
.timeline-lux {
  position: relative;
  padding-left: 50px;
  border-left: 2px solid var(--dt-ivory);
  margin: 40px 20px;
}

.timeline-lux-item {
  position: relative;
  margin-bottom: 50px;
}

.timeline-lux-item::before {
  content: attr(data-step);
  position: absolute;
  left: -66px;
  top: 0;
  width: 32px;
  height: 32px;
  background: var(--dt-charcoal);
  color: var(--dt-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  border: 4px solid var(--dt-warm-white);
  z-index: 2;
}

/* Candidate Boxes */
.candidate-card {
  padding: 35px;
  border-radius: var(--dt-radius-lg);
  height: 100%;
  transition: transform var(--dt-transition);
}

.candidate-card-ideal {
  background: rgba(183, 110, 121, 0.04);
  border: 1px solid rgba(183, 110, 121, 0.1);
}

.candidate-card-avoid {
  background: #f8f9fa;
  border: 1px solid var(--dt-border);
}

.candidate-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.candidate-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 15.5px;
}

.candidate-list i {
  font-size: 19px;
}

/* Editorial Feature List (No Boxes) */
.feature-list-lux {
  margin-top: 40px;
}

.feature-list-item {
  display: flex;
  gap: 25px;
  padding: 30px 0;
  border-bottom: 1px solid var(--dt-ivory);
  transition: all var(--dt-transition);
}

.feature-list-item:last-child {
  border-bottom: none;
}

.feature-list-item:hover .feature-list-icon {
  background: var(--dt-champagne);
  color: var(--dt-white);
  transform: scale(1.1);
}

.feature-list-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--dt-ivory);
  color: var(--dt-champagne-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: all var(--dt-transition);
}

.feature-list-content h4 {
  font-family: var(--dt-font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dt-charcoal);
  margin-bottom: 8px;
}

.feature-list-content p {
  font-size: 16px;
  color: var(--dt-text-light);
  margin-bottom: 0;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .feature-list-item {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    align-items: center;
  }

  .feature-list-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

@media (max-width: 991px) {
  .sidebar-sticky {
    position: static;
    margin-top: 40px;
  }
}

/* ===================== CONTACT PAGE STYLES ===================== */

/* ===================== PREMIUM CONTACT PAGE STYLES ===================== */

/* Luxury Hero */
.contact-hero-lux {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #fdfbfb 0%, #f4f0ea 100%);
  overflow: hidden;
  z-index: 1;
}

.lux-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  z-index: 0;
}

.lux-glow-1 {
  width: 40vw;
  height: 40vw;
  background: rgba(183, 110, 121, 0.15);
  top: -10vw;
  right: -5vw;
}

.lux-glow-2 {
  width: 30vw;
  height: 30vw;
  background: rgba(27, 42, 74, 0.05);
  bottom: -10vw;
  left: -5vw;
}

/* Form Overlap Section */
.form-overlap-section {
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.contact-form-wrapper {
  background: var(--dt-white);
  border-radius: var(--dt-radius-lg);
  padding: 60px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(183, 110, 121, 0.1);
}

.form-label-lux {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--dt-charcoal);
  margin-bottom: 8px;
}

.form-control-lux {
  border: none;
  border-bottom: 2px solid var(--dt-border);
  border-radius: 0;
  padding: 12px 0;
  background: transparent;
  transition: all var(--dt-transition);
  font-size: 16px;
}

.form-control-lux:focus {
  box-shadow: none;
  border-color: var(--dt-champagne);
  background: transparent;
}

/* Location Cards — Luxury Edition */
.clinic-studio-card {
  background: var(--dt-white);
  border-radius: var(--dt-radius-lg);
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--dt-border);
  transition: all var(--dt-transition);
  display: flex;
  flex-direction: column;
}

.clinic-studio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--dt-shadow-lg);
  border-color: var(--dt-champagne-light);
}

.studio-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.studio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.clinic-studio-card:hover .studio-img {
  transform: scale(1.08);
}

.studio-arch-overlay {
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 120px 120px 15px 15px;
  pointer-events: none;
}

.studio-content {
  padding: 40px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.studio-city-tag {
  font-family: var(--dt-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--dt-champagne-dark);
  margin-bottom: 12px;
  display: inline-block;
}

.studio-title {
  font-family: var(--dt-font-display);
  font-size: 1.75rem;
  color: var(--dt-charcoal);
  margin-bottom: 24px;
}

.studio-info-row {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.studio-info-row i {
  color: var(--dt-champagne-dark);
  font-size: 19px;
  margin-top: 3px;
}

.studio-info-text {
  color: var(--dt-text-light);
  font-size: 16px;
  line-height: 1.6;
}

.studio-actions {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Map Box */
.studio-map-frame {
  width: 100%;
  height: 250px;
  background: #f8f9fa;
  border-top: 1px solid var(--dt-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--dt-text-muted);
  gap: 8px;
}

.studio-map-frame i {
  font-size: 33px;
  color: var(--dt-champagne-light);
}

/* Contact Strips */
.contact-accent-strip {
  background: var(--dt-charcoal);
  padding: 40px 0;
  color: var(--dt-white);
}

.accent-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.accent-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  color: var(--dt-champagne-light);
}

.accent-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

.accent-value {
  font-size: 17px;
  font-weight: 500;
  color: white;
}

@media (max-width: 991px) {
  .contact-form-wrapper {
    padding: 40px 30px;
  }

  .form-overlap-section {
    margin-top: -40px;
  }
}