/* MIŠKA – Premium Hair | Dental | Skin – Elegant Professional */

:root {
  --navy: #1a2d4a;
  --navy-light: #2a4060;
  --gold: #b8860b;
  --gold-light: #d4a84b;
  --gold-muted: #c9a962;
  --gold-bg: rgba(184, 134, 11, 0.08);
  --grey: #6b7280;
  --grey-light: #9ca3af;
  --grey-bg: #f8f9fa;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(26, 45, 74, 0.08);
  --shadow-lg: 0 20px 60px rgba(26, 45, 74, 0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  padding: 12px 20px;
  background: var(--navy);
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--radius);
  z-index: 100;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
}

/* Header – Premium */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(26, 45, 74, 0.05);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--navy);
}

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

.logo-tagline {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--grey);
  margin-top: 4px;
}

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

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-list > li {
  position: relative;
}

.nav-list > li > a {
  display: block;
  padding: 10px 16px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--gold);
}

.nav-dropdown {
  list-style: none;
  margin: 0;
  padding: 12px 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 60;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.nav-dropdown a {
  display: block;
  padding: 12px 24px;
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown a:hover,
.nav-dropdown a.active {
  background: var(--gold-bg);
  color: var(--gold);
}

.has-dropdown > a::after {
  content: '▾';
  margin-left: 6px;
  font-size: 10px;
  opacity: 0.6;
}

.header-cta {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header-inner.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header-inner.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.header-inner.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-gold {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: white;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}
.btn-whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 15px;
}
.btn-block {
  width: 100%;
}

/* Hero – Premium Full-Width */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 100px 48px 80px;
  background: linear-gradient(180deg, var(--grey-bg) 0%, var(--white) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold-bg) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  padding: 10px 24px;
  background: var(--navy);
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 24px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.hero-title span {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--grey);
  margin: 0 0 40px;
  max-width: 560px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 700px;
}

.stat {
  font-size: 13px;
  color: var(--grey);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

/* Sections */
.section {
  padding: 100px 48px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin: 0 0 20px;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--grey);
  margin: 0 0 56px;
  max-width: 600px;
  line-height: 1.8;
}

/* Services – Premium Cards */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

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

.service-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--navy);
}

.service-card p {
  color: var(--grey);
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
}

.service-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
}
.service-link:hover {
  gap: 12px;
}

/* Pricing – Premium Table */
.pricing {
  background: var(--grey-bg);
}

.pricing-table-wrap {
  max-width: 480px;
  margin: 0 auto 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 20px 28px;
  text-align: left;
  font-size: 15px;
}

.pricing-table th {
  background: var(--navy);
  color: white;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.pricing-table tr:nth-child(even) {
  background: var(--grey-bg);
}

.pricing-table td:last-child {
  font-weight: 600;
  color: var(--gold);
}

.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--grey);
  margin: 0;
}

/* Why Choose – DHI Style */
.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  padding: 40px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
}

.why-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.why-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.6;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--navy);
}

.why-card p {
  color: var(--grey);
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

/* SEO content */
.seo-content {
  background: var(--grey-bg);
}

.seo-text {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.seo-text p {
  margin-bottom: 20px;
  color: var(--navy);
  line-height: 1.8;
}

/* Testimonials – Premium */
.testimonials {
  background: var(--navy);
  color: white;
}

.testimonials .section-label {
  color: var(--gold-light);
}

.testimonials .section-title,
.testimonials .section-subtitle {
  color: white;
}

.testimonials .section-subtitle {
  opacity: 0.9;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
}

.testimonial-card p {
  margin: 0 0 24px;
  font-size: 1.05rem;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-card footer {
  font-size: 14px;
  opacity: 0.8;
}

/* Footer – Premium with Logo */
.footer {
  padding: 64px 48px 32px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
  /* Original colors – filter was making logo appear as solid white */
  opacity: 0.95;
}

.footer-tagline {
  font-size: 10px;
  letter-spacing: 0.2em;
  margin-top: 8px;
  opacity: 0.7;
}

.footer-nav {
  display: flex;
  gap: 32px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  text-align: center;
  opacity: 0.7;
}

/* Float CTA */
.float-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
}

.float-btn:hover {
  transform: scale(1.05);
}

.float-call {
  background: var(--navy);
}

.float-whatsapp {
  background: #25D366;
}

/* Chat widget */
.chat-widget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 40;
}

.chat-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
}

.chat-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.chat-toggle-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.chat-panel {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 280px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
}

.chat-widget.open .chat-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.chat-header h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--navy);
}

.chat-close {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--grey-bg);
  border-radius: var(--radius);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}

.chat-body {
  padding: 20px;
}

.chat-body p {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--grey);
}

.chat-action {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  margin-bottom: 8px;
  background: var(--grey-bg);
  border-radius: var(--radius);
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  transition: background var(--transition);
}

.chat-action:hover {
  background: var(--gold-bg);
}

/* Page hero */
.page-hero {
  background: linear-gradient(180deg, var(--grey-bg) 0%, var(--white) 100%);
  padding: 64px 48px 56px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--navy);
}

.page-hero p {
  color: var(--grey);
  margin: 0;
  font-size: 1.1rem;
}

.breadcrumb {
  font-size: 13px;
  color: var(--grey);
  margin: 0 0 24px;
  letter-spacing: 0.02em;
}

.breadcrumb a {
  color: var(--grey);
  text-decoration: none;
}

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

/* Page content */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 48px 100px;
}

.page-content h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin: 40px 0 16px;
  color: var(--navy);
}

.page-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 28px 0 12px;
  color: var(--navy);
}

.page-content p {
  margin: 0 0 20px;
  color: var(--navy);
  line-height: 1.8;
}

.page-content ul {
  margin: 0 0 20px;
  padding-left: 24px;
}

.page-content .cta-block {
  margin-top: 48px;
  padding: 48px;
  background: var(--grey-bg);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border);
}

.page-content .cta-block .btn {
  margin: 0 8px 8px 0;
}

.page-content .service-link {
  display: inline-block;
  margin-right: 16px;
  margin-bottom: 8px;
  color: var(--gold);
}

/* Consult form */
.consult {
  background: var(--navy);
  color: white;
}

.consult .section-title,
.consult p {
  color: white;
}

.consult p {
  opacity: 0.95;
}

.consult-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

/* Contact page – form first */
.contact-form-first {
  padding-top: 32px;
}
.contact-page-intro {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.contact-page-intro .breadcrumb {
  margin-bottom: 8px;
}
.contact-page-intro h1 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 8px;
  color: var(--navy);
}
.contact-page-intro p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--grey);
}
.contact-page-inner {
  max-width: 720px;
  margin: 0 auto;
}

/* Contact form card – single column, flows down */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.contact-form-header {
  padding: 24px 32px 20px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(to bottom, var(--grey-bg) 0%, var(--white) 100%);
}

.contact-form-header h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 6px;
  color: var(--navy);
}

.contact-form-header p {
  margin: 0 0 14px;
  font-size: 0.95rem;
  color: var(--grey);
}

.contact-form-quick-actions {
  display: flex;
  gap: 12px;
}

.contact-form-quick-actions .btn {
  align-items: center;
}

.consult-form {
  padding: 24px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}

.form-optional {
  font-weight: 400;
  color: var(--grey);
}

.consult-form input,
.consult-form select,
.consult-form textarea {
  padding: 14px 16px;
  font-family: inherit;
  font-size: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.2s;
  min-height: 46px;
}

.consult-form input:focus,
.consult-form select:focus,
.consult-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.consult-form button {
  background: var(--gold);
  color: white;
  border: none;
  padding: 14px 24px;
  font-weight: 600;
  font-size: 1rem;
  min-height: 50px;
  margin-top: 4px;
}

.consult-form button:hover {
  background: var(--gold-light);
}

.contact-form-layout {
  display: block;
}

@media (max-width: 600px) {
  .contact-form-header,
  .consult-form {
    padding-left: 24px;
    padding-right: 24px;
  }
  .contact-form-first {
    padding-top: 20px;
  }
  .contact-page-intro {
    margin-top: 32px;
    padding-top: 24px;
  }
}

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

/* Contact cards */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.contact-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.contact-card h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 0 12px;
  color: var(--gold);
}

.contact-card p {
  margin: 0;
  color: var(--grey);
}

.contact-card a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--gold);
}

/* Blog */
.blog-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 56px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.blog-card {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.blog-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}

.blog-card h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 12px;
}

.blog-card h2 a {
  color: var(--navy);
  text-decoration: none;
}

.blog-card h2 a:hover {
  color: var(--gold);
}

.blog-meta {
  font-size: 12px;
  color: var(--grey);
  margin: 0 0 16px;
  letter-spacing: 0.05em;
}

.blog-card p:last-of-type {
  margin-bottom: 20px;
}

.blog-post .page-content {
  max-width: 720px;
}

/* Mobile */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header {
    position: relative;
  }

  .header-inner {
    padding: 16px 20px;
    flex-wrap: wrap;
  }

  .logo img {
    height: 44px;
  }

  .logo-tagline {
    display: none;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
    z-index: 60;
  }

  .header-inner.nav-open .nav {
    display: block;
    order: 10;
    flex-basis: 100%;
    width: 100%;
  }

  .header-inner.nav-open .header-cta {
    display: flex;
    order: 11;
    flex-basis: 100%;
    width: 100%;
  }

  .nav {
    position: static;
    width: 100%;
    background: var(--grey-bg);
    padding: 0;
    border-bottom: none;
    border-top: 1px solid var(--border);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .nav-list > li {
    position: static;
    border-bottom: 1px solid var(--border);
  }

  .nav-list > li:last-child {
    border-bottom: none;
  }

  .has-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    min-height: 52px;
    font-weight: 600;
  }

  .has-dropdown > a::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--navy);
    border-bottom: 2px solid var(--navy);
    transform: rotate(45deg);
    margin-left: 8px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
  }

  .has-dropdown.is-open > a::after {
    transform: rotate(-135deg);
  }

  .nav-list > li:not(.has-dropdown) > a {
    padding: 16px 20px;
    min-height: 52px;
    display: flex;
    align-items: center;
    font-weight: 600;
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: rgba(0, 0, 0, 0.04);
    min-width: auto;
  }

  .has-dropdown.is-open .nav-dropdown {
    max-height: 500px;
  }

  .nav-dropdown li {
    border-top: 1px solid var(--border);
  }

  .nav-dropdown a {
    padding: 14px 20px 14px 36px;
    font-size: 15px;
    font-weight: 500;
  }

  .header-cta {
    flex-direction: row;
    gap: 12px;
    padding: 16px 20px;
    background: var(--white);
    border-top: 1px solid var(--border);
    justify-content: center;
  }

  .header-cta .btn {
    flex: 1;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding: 48px 20px 40px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 8px 16px;
    letter-spacing: 0.1em;
  }

  .hero-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
  }

  .hero-cta .btn {
    width: 100%;
    min-height: 48px;
    font-size: 15px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat {
    font-size: 12px;
  }

  .stat strong {
    font-size: 1.5rem;
  }

  .section {
    padding: 48px 20px;
  }

  .section-label {
    font-size: 11px;
  }

  .section-title {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
    margin-bottom: 12px;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 28px 20px;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 14px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-card {
    padding: 28px 20px;
  }

  .why-num {
    font-size: 2rem;
  }

  .pricing-table-wrap {
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 14px 16px;
    font-size: 14px;
  }

  .seo-text p {
    font-size: 15px;
    line-height: 1.75;
  }

  .testimonials-grid {
    gap: 20px;
  }

  .testimonial-card {
    padding: 28px 20px;
  }

  .testimonial-card p {
    font-size: 0.95rem;
  }

  .footer {
    padding: 40px 20px 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
    padding-bottom: 32px;
  }

  .footer-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .float-cta {
    bottom: max(16px, env(safe-area-inset-bottom));
    right: max(16px, env(safe-area-inset-right));
    gap: 10px;
  }

  .float-btn {
    min-height: 48px;
    padding: 12px 18px;
  }

  .chat-widget {
    bottom: max(16px, env(safe-area-inset-bottom));
    left: max(16px, env(safe-area-inset-left));
  }

  .chat-panel {
    width: calc(100vw - 48px);
    max-width: 320px;
  }

  .chat-toggle {
    min-height: 48px;
    padding: 12px 16px;
  }

  .page-hero {
    padding: 40px 20px 36px;
  }

  .page-hero h1 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .page-hero p {
    font-size: 1rem;
  }

  .breadcrumb {
    font-size: 12px;
  }

  .page-content {
    padding: 36px 20px 64px;
  }

  .page-content h2 {
    font-size: 1.4rem;
    margin: 32px 0 12px;
  }

  .page-content h3 {
    font-size: 1.15rem;
    margin: 24px 0 10px;
  }

  .page-content p,
  .page-content ul {
    font-size: 15px;
  }

  .page-content .cta-block {
    margin-top: 36px;
    padding: 28px 20px;
  }

  .page-content .cta-block .btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 0 10px;
  }

  .page-content .cta-block .btn:last-child {
    margin-bottom: 0;
  }

  .consult-form {
    padding: 28px 20px;
  }

  .consult-form input,
  .consult-form select,
  .consult-form textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .consult-form button {
    min-height: 52px;
    font-size: 16px;
  }

  .consult-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-form-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-card {
    padding: 24px 20px;
  }

  .float-text,
  .chat-toggle-text {
    display: none;
  }
}

/* Mobile – Before & After, Graft, Hair Profile, etc. */
@media (max-width: 768px) {
  .before-after-promo-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .before-after-promo-preview {
    justify-content: center;
  }

  .before-after-promo-preview .preview-link img {
    width: 64px;
    height: 64px;
  }

  .before-after-promo .section-subtitle {
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .before-after-promo-content .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .before-after-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .page-hero-before-after {
    padding: 40px 20px;
  }

  .page-hero-subtitle {
    font-size: 1rem;
  }

  .before-after-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .before-after-card {
    border-radius: var(--radius);
  }

  .graft-estimator {
    padding: 24px 20px;
  }

  .graft-estimator-stages {
    flex-wrap: wrap;
    gap: 10px;
  }

  .graft-stage-btn {
    min-width: calc(50% - 6px);
    padding: 12px 10px;
  }

  .hair-profile-form {
    padding: 24px 20px;
  }

  .hair-profile-step input,
  .hair-profile-step select {
    min-height: 48px;
  }

  .hair-profile-nav .btn {
    min-height: 48px;
  }
}

/* Small phones (480px and below) */
@media (max-width: 480px) {
  .header-inner {
    padding: 12px 16px;
  }

  .hero {
    padding: 36px 16px 32px;
  }

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

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .section {
    padding: 36px 16px;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .pricing-table-wrap {
    margin-left: -16px;
    margin-right: -16px;
  }

  .page-hero {
    padding: 32px 16px 28px;
  }

  .page-content {
    padding: 28px 16px 48px;
  }

  .footer {
    padding: 32px 16px 20px;
  }

  .float-cta {
    bottom: 12px;
    right: 12px;
  }

  .chat-widget {
    bottom: 12px;
    left: 12px;
  }

  .graft-stage-btn {
    min-width: 100%;
  }

  .graft-result-values {
    grid-template-columns: 1fr;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

/* Before & After Promo – Main Page */
.before-after-promo {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  overflow-x: hidden;
}
.before-after-promo .container {
  overflow-x: hidden;
}
.before-after-promo .section-label { color: var(--gold-light); }
.before-after-promo .section-title { color: var(--white); }
.before-after-promo .section-subtitle { color: rgba(255,255,255,0.85); }
.before-after-promo-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  overflow-x: hidden;
  gap: 64px;
  max-width: 1000px;
  margin: 0 auto;
}
.before-after-promo-content .btn { margin-top: 8px; font-size: 0.95rem; padding: 12px 24px; }
.before-after-promo-preview {
  display: flex;
  align-items: center;
  gap: 8px;
}
.before-after-promo-preview .preview-link {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  text-decoration: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}
.before-after-promo-preview .preview-link:hover {
  transform: scale(1.02);
}
.before-after-promo-preview .preview-link img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}
.before-after-promo-preview .preview-more {
  padding: 12px 20px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
}

/* Before & After Page – Hero */
.page-hero-before-after {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 64px 48px;
}
.page-hero-before-after .breadcrumb { color: rgba(255,255,255,0.8); }
.page-hero-before-after .breadcrumb a { color: rgba(255,255,255,0.95); }
.page-hero-before-after .breadcrumb a:hover { color: var(--gold-light); }
.page-hero-before-after h1 { color: var(--white); }
.page-hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin: 0 0 32px;
}
.before-after-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.before-after-stats span {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.before-after-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}

/* Before & After Gallery */
.before-after-intro {
  margin-bottom: 40px;
  font-size: 1.1rem;
}
.gallery-heading {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 48px 0 12px;
}
.gallery-subheading {
  color: var(--grey);
  margin-bottom: 32px;
}
.before-after-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.before-after-card {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,45,74,0.1);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}
.before-after-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,45,74,0.15);
}
.before-after-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  position: relative;
}
.before-after-images {
  aspect-ratio: 1;
  overflow: hidden;
}
.before-after-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}
.before-after-trigger:hover .before-after-images img {
  transform: scale(1.05);
}
.before-after-view {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.before-after-trigger:hover .before-after-view { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.9);
  cursor: pointer;
}
.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 95vw;
  max-height: 90vh;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255,255,255,0.2);
  color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.3);
}

/* Before & After Testimonials */
.before-after-testimonials { margin: 64px 0; }
.before-after-testimonials h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 24px;
}
.testimonials-inline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.cta-block-before-after {
  background: linear-gradient(135deg, var(--gold-bg) 0%, rgba(184,134,11,0.12) 100%);
  padding: 48px;
  border-radius: var(--radius-lg);
  text-align: center;
}
.cta-block-before-after h2 { margin-top: 0; }
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

/* Graft & Cost Estimator */
.graft-estimator {
  background: linear-gradient(135deg, var(--grey-bg) 0%, #fff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 48px 0;
  box-shadow: var(--shadow);
}
.graft-estimator-header {
  text-align: center;
  margin-bottom: 32px;
}
.graft-estimator-header h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 0 0 12px;
  color: var(--navy);
}
.graft-estimator-header p {
  color: var(--grey);
  margin: 0;
  font-size: 0.95rem;
}
.graft-estimator-stages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}
.graft-stage-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 20px;
  min-width: 120px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  transition: all var(--transition);
}
.graft-stage-btn:hover {
  border-color: var(--gold-muted);
  box-shadow: var(--shadow);
}
.graft-stage-btn.active,
.graft-stage-btn[aria-pressed="true"] {
  border-color: var(--gold);
  background: var(--gold-bg);
  box-shadow: 0 0 0 1px var(--gold);
}
.graft-stage-btn .stage-img {
  display: block;
  width: 90px;
  height: 75px;
  margin: 0 auto 10px;
}
.graft-stage-btn .stage-img svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.graft-stage-btn .stage-num {
  display: inline-block;
  padding: 4px 10px;
  background: var(--navy);
  color: white;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 8px;
  font-size: 13px;
}
.graft-stage-btn.active .stage-num,
.graft-stage-btn[aria-pressed="true"] .stage-num {
  background: var(--gold);
  color: var(--navy);
}
.graft-stage-btn .stage-label {
  font-weight: 600;
  margin-bottom: 4px;
}
.graft-stage-btn .stage-desc {
  font-size: 12px;
  color: var(--grey);
}
.graft-estimator-result {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 36px;
  border: 1px solid var(--border);
  text-align: center;
}
.graft-result-prompt {
  color: var(--grey);
  margin: 0;
  font-size: 0.95rem;
}
.graft-result-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 560px;
  margin: 0 auto;
}
.graft-result-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.graft-result-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey);
}
.graft-result-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
}
.graft-result-cost {
  color: var(--gold);
  font-size: 1.4rem;
}
.graft-estimator-disclaimer {
  margin: 16px 0 0;
  font-size: 12px;
  color: var(--grey-light);
  text-align: center;
}
@media (max-width: 600px) {
  .graft-estimator { padding: 24px 20px; }
  .graft-estimator-stages { gap: 8px; }
  .graft-stage-btn { min-width: 100px; padding: 12px 10px; }
  .graft-stage-btn .stage-img { width: 70px; height: 58px; }
  .graft-result-values { grid-template-columns: 1fr; }
}

/* Hair Profile Assessment */
.page-hero-profile { padding: 48px 24px; }
.hair-profile-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.hair-profile-progress {
  height: 6px;
  background: var(--grey-bg);
  border-radius: 3px;
  margin-bottom: 24px;
  overflow: hidden;
}
.hair-profile-progress-bar {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
  transition: width 0.3s ease;
}
.hair-profile-step-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--grey);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.hair-profile-step h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 24px;
  color: var(--navy);
}
.hair-profile-step label {
  display: block;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
}
.hair-profile-step input,
.hair-profile-step select {
  display: block;
  width: 100%;
  padding: 14px 18px;
  margin-top: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--white);
}
.hair-profile-step input:focus,
.hair-profile-step select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold-bg);
}
.hair-profile-nav {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hair-profile-nav .btn { flex: 1; }

.hair-profile-report {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.hair-profile-report h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 16px;
  color: var(--navy);
}
.hair-report-intro {
  color: var(--grey);
  margin-bottom: 32px;
  font-size: 0.95rem;
}
.hair-report-score {
  text-align: center;
  margin-bottom: 40px;
  padding: 32px;
  background: linear-gradient(135deg, var(--gold-bg) 0%, rgba(255,255,255,0.8) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184, 134, 11, 0.2);
}
.hair-report-score-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.hair-report-score-value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hair-report-score-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey);
  margin-top: 4px;
}
.hair-report-score-level {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 4px;
}
.hair-report-section {
  margin-bottom: 32px;
}
.hair-report-section h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin: 0 0 8px;
}
.hair-report-section p {
  color: var(--grey);
  font-size: 0.95rem;
  margin: 0 0 16px;
}
.hair-report-causes,
.hair-report-treatments,
.hair-report-tips {
  margin: 0;
  padding-left: 20px;
}
.hair-report-causes li,
.hair-report-treatments li,
.hair-report-tips li {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 0.95rem;
}
.hair-report-profile {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hair-report-profile h4 {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin: 0 0 16px;
  text-transform: uppercase;
}
.hair-report-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.hair-report-card {
  background: var(--grey-bg);
  border-radius: var(--radius);
  padding: 24px;
}
.hair-report-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin: 0 0 12px;
  text-transform: uppercase;
}
.hair-report-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.hair-report-card li {
  padding: 6px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.hair-report-card li:last-child { border-bottom: none; }
.hair-report-estimate {
  background: var(--gold-bg);
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
}
.hair-report-estimate h4 {
  font-size: 1rem;
  margin: 0 0 12px;
  color: var(--navy);
}
.hair-report-estimate p { margin: 0; font-size: 0.95rem; }
.hair-report-cta {
  text-align: center;
  padding: 32px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
}
.hair-report-cta h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 8px;
}
.hair-report-cta p {
  margin: 0 0 24px;
  opacity: 0.9;
}
.hair-report-cta .btn {
  margin: 0 8px 8px 0;
}
.hair-report-cta .btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.hair-report-cta .btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
}

/* Dental services grid & sections */
.dental-services-grid {
  display: grid;
  gap: 24px;
  margin: 32px 0;
}
.dental-service-section {
  padding: 24px;
  background: var(--grey-bg);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  scroll-margin-top: 100px;
}
.dental-service-section h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 12px;
  color: var(--navy);
}
.dental-service-section p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Dental treatment cards (clickable, link to detail pages) */
/* Dental treatments – Clove-style image cards */
.dental-intro {
  padding-top: 0;
}
.dental-intro-text {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--grey);
}
.dental-treatment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.dental-treatment-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.dental-treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.dental-treatment-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 28px;
  background: linear-gradient(135deg, var(--gold-bg) 0%, rgba(255,255,255,0.5) 100%);
  border-bottom: 1px solid var(--border);
}
.dental-icon {
  font-size: 3rem;
  line-height: 1;
  color: var(--navy);
}
.dental-treatment-card:hover .dental-treatment-card-icon {
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.15) 0%, rgba(255,255,255,0.8) 100%);
}
.dental-treatment-card-body {
  padding: 20px 24px 24px;
}
.dental-treatment-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 8px;
  color: var(--navy);
}
.dental-treatment-card-body p {
  margin: 0 0 12px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--grey);
}
.dental-treatment-link {
  font-weight: 600;
  color: var(--gold);
  font-size: 0.9rem;
}
.dental-treatment-card:hover .dental-treatment-link {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .dental-treatment-grid {
    grid-template-columns: 1fr;
  }
}

.dental-treatment-cards {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.dental-service-card {
  display: block;
  padding: 24px;
  background: var(--grey-bg);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}
.dental-service-card:hover {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.dental-service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 10px;
  color: var(--navy);
}
.dental-service-card p {
  margin: 0 0 12px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--grey);
}
.dental-service-card .service-card-link {
  font-weight: 600;
  color: var(--gold);
  font-size: 0.9rem;
}

/* Dental treatment detail pages */
.treatment-page .treatment-intro,
.treatment-page .treatment-section {
  margin-bottom: 48px;
}
.treatment-page .treatment-section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 20px;
  color: var(--navy);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
}
.treatment-list,
.treatment-steps,
.sops-list {
  margin: 0 0 16px;
  padding-left: 24px;
  line-height: 1.8;
}
.treatment-list li,
.sops-list li {
  margin-bottom: 12px;
}
.treatment-steps li {
  margin-bottom: 20px;
  padding-left: 8px;
}
.treatment-page .sops-section {
  background: var(--grey-bg);
  padding: 32px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
}
.treatment-page .faq-block {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--grey-bg);
  border-radius: var(--radius);
}
.treatment-page .faq-block h3 {
  font-size: 1.1rem;
  margin: 0 0 8px;
  color: var(--navy);
}
.treatment-page .faq-block p {
  margin: 0;
  font-size: 0.95rem;
}

/* Laser hair removal pricing & sessions tables */
.laser-pricing-section .pricing-table-wrap {
  max-width: 100%;
  margin: 24px 0;
}
.laser-pricing th,
.laser-pricing td {
  padding: 14px 16px;
  font-size: 14px;
}
.laser-pricing td:nth-child(2),
.laser-pricing td:nth-child(3) {
  text-align: center;
}
.laser-pricing td:last-child {
  font-weight: 600;
  color: var(--gold);
  text-align: right;
}
.laser-sessions-table {
  width: 100%;
  max-width: 560px;
  border-collapse: collapse;
  margin: 20px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.laser-sessions-table th,
.laser-sessions-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
}
.laser-sessions-table th {
  background: var(--navy);
  color: white;
  font-weight: 600;
}
.laser-sessions-table tr:nth-child(even) {
  background: var(--grey-bg);
}
.laser-pricing-note {
  font-size: 13px;
  color: var(--grey);
  margin: 16px 0 0;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .laser-pricing-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .laser-pricing {
    min-width: 480px;
  }
}

/* Laser page hero (Kaya-style) */
.page-hero-laser {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%) !important;
  color: var(--white);
  padding: 72px 48px 64px !important;
}
.page-hero-laser .breadcrumb { color: rgba(255,255,255,0.8); }
.page-hero-laser .breadcrumb a { color: rgba(255,255,255,0.95); }
.page-hero-laser .breadcrumb a:hover { color: var(--gold-light); }
.page-hero-laser h1 { color: var(--white); margin-bottom: 16px; }
.page-hero-laser .page-hero-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 32px;
}
.laser-hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-radius: 999px;
}
.laser-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 600px;
  margin: 0 auto 36px;
}
.laser-stat {
  text-align: center;
  font-size: 13px;
  opacity: 0.9;
}
.laser-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.laser-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* Laser 4-step process */
.laser-process-section { background: var(--white); }
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.process-step-card {
  padding: 32px 24px;
  background: var(--grey-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}
.process-step-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: white;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 50%;
  margin-bottom: 20px;
}
.process-step-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 12px;
  color: var(--navy);
}
.process-step-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.6;
}

/* Laser why section */
.laser-why-section { background: var(--grey-bg); }

/* Laser results section */
.laser-results-section { background: var(--white); }
.laser-results-content {
  max-width: 680px;
  margin-top: 16px;
}
.laser-results-content ul {
  margin: 16px 0 0;
  padding-left: 24px;
  line-height: 1.8;
}

/* Laser testimonials */
.laser-testimonials { margin-top: 24px; }

/* Laser content section */
.laser-content-section { background: var(--grey-bg); max-width: none; }
.laser-content-section .container { max-width: 1100px; }

/* Contact form popup (5s delay) */
.contact-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  -webkit-tap-highlight-color: transparent;
}
.contact-popup-overlay.open {
  opacity: 1;
  visibility: visible;
}
.contact-popup {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow-x: hidden;
}
.contact-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--grey);
  cursor: pointer;
  padding: 4px;
}
.contact-popup-close:hover {
  color: var(--navy);
}
.contact-popup h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 8px;
  color: var(--navy);
}
.contact-popup p {
  margin: 0 0 20px;
  font-size: 0.95rem;
  color: var(--grey);
}
.contact-popup .consult-form {
  background: transparent;
  padding: 0;
}
.contact-popup-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.contact-popup-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-popup-field label {
  font-size: 0.85rem;
  color: var(--grey);
}
.contact-popup-field select {
  padding: 14px 16px;
  font-size: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

@media (max-width: 768px) {
  .page-hero-laser { padding: 48px 24px 40px !important; }
  .laser-hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .process-steps-grid { grid-template-columns: 1fr; }

  /* Contact popup – mobile optimized (fits viewport) */
  .contact-popup-overlay {
    padding: 8px;
    align-items: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
  }
  .contact-popup {
    max-width: 100%;
    margin: 0 auto 16px;
    padding: 16px 16px 20px;
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    flex-shrink: 0;
  }
  .contact-popup-close {
    top: 8px;
    right: 8px;
    font-size: 1.5rem;
    padding: 6px;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .contact-popup h3 {
    font-size: 1.1rem;
    padding-right: 36px;
    margin-bottom: 4px;
  }
  .contact-popup-intro {
    display: none;
  }
  .contact-popup-form .contact-popup-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .contact-popup-form .contact-popup-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .contact-popup-form .contact-popup-field select {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 16px;
  }
  .contact-popup-form input {
    min-height: 42px !important;
    padding: 10px 12px !important;
    font-size: 16px !important;
  }
  .contact-popup-form textarea {
    min-height: 56px !important;
    padding: 10px 12px !important;
    font-size: 16px !important;
  }
  .contact-popup-form button {
    min-height: 46px !important;
    padding: 12px 16px !important;
    font-size: 0.95rem !important;
    margin-top: 4px !important;
  }
  .contact-popup-form .form-group,
  .contact-popup-form > * {
    margin-bottom: 0;
  }
  .contact-popup .consult-form {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .contact-popup-overlay {
    padding: 4px;
  }
  .contact-popup {
    padding: 12px 12px 16px;
  }
  .contact-popup h3 {
    font-size: 1rem;
  }
  .contact-popup-form .contact-popup-form-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .contact-popup-form input,
  .contact-popup-form .contact-popup-field select {
    min-height: 40px !important;
    padding: 8px 10px !important;
  }
  .contact-popup-form textarea {
    min-height: 48px !important;
    padding: 8px 10px !important;
  }
  .contact-popup-form button {
    min-height: 44px !important;
    padding: 10px 14px !important;
  }
}
