/* ==========================================================================
   HAIR LIFE — PREMIUM HAIR RESTORATION BRAND (KOLKATA)
   CUSTOM LUXURY DESIGN SYSTEM (HTML5 / CSS3 / VANILLA JS)
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. CSS CUSTOM PROPERTIES & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --primary-dark: #101820;      /* Primary dark/charcoal */
  --deep-navy: #07182C;         /* Background for header, footer & dark sections */
  --premium-gold: #D5A33D;      /* Accent gold for CTAs, highlighted text, stats */
  --champagne-gold: #E6C574;    /* Accent champagne gold for subtle badges, icons */
  --soft-ivory: #FFF9F1;        /* Primary section background */
  --warm-cream: #F8F1E7;        /* Secondary section/card background */
  --soft-beige: #EFE5D7;        /* Neutral warm accent */
  --pure-white: #FFFFFF;        /* Cards & elements backgrounds */
  
  --primary-text: #202020;
  --secondary-text: #6D675F;
  --text-muted: #9E978F;
  
  --muted-border: rgba(213, 163, 61, 0.22);
  --light-shadow: rgba(20, 26, 35, 0.08);
  --hover-shadow: rgba(20, 26, 35, 0.16);
  --dark-overlay: rgba(7, 24, 44, 0.72);
  --gold-glow: rgba(213, 163, 61, 0.15);

  /* Typography */
  --font-headings: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing */
  --container-max-width: 1200px;
  --section-padding-desktop: 100px;
  --section-padding-mobile: 64px;

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
}

/* --------------------------------------------------------------------------
   1. RESET & BASE ELEMENTS
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--soft-ivory);
  color: var(--primary-text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--primary-dark);
  font-weight: 500;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

/* Focus indicator for keyboard accessibility */
:focus-visible {
  outline: 2.5px solid var(--premium-gold);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   2. LAYOUT & CONTAINERS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

section {
  padding-top: var(--section-padding-desktop);
  padding-bottom: var(--section-padding-desktop);
  position: relative;
  overflow: hidden;
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--premium-gold);
  background: linear-gradient(135deg, var(--premium-gold) 0%, var(--champagne-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-muted {
  color: var(--text-muted);
}

.text-white {
  color: var(--pure-white) !important;
}

/* Section Headers */
.section-header {
  margin-bottom: 56px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--premium-gold);
  margin-bottom: 14px;
  padding: 4px 16px;
  background-color: rgba(213, 163, 61, 0.08);
  border: 1px solid var(--muted-border);
  border-radius: var(--radius-full);
}

.section-badge.badge-gold {
  color: var(--champagne-gold);
  background-color: rgba(230, 197, 116, 0.08);
  border-color: rgba(230, 197, 116, 0.15);
}

.section-title {
  font-size: clamp(34px, 4.5vw, 48px);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 16px;
  color: var(--secondary-text);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   3. BUTTONS & CALL-TO-ACTIONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.btn-primary {
  background-color: var(--premium-gold);
  color: var(--primary-dark);
  border: 1px solid var(--premium-gold);
}

.btn-primary:hover {
  background-color: #c7922d;
  border-color: #c7922d;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(213, 163, 61, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-dark);
  border: 1px solid var(--premium-gold);
}

.btn-secondary:hover {
  background-color: rgba(213, 163, 61, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--pure-white);
  border: 1px solid #25D366;
}

.btn-whatsapp:hover {
  background-color: #1ebd54;
  border-color: #1ebd54;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
  border-radius: 10px;
}

.btn-xs {
  padding: 6px 14px;
  font-size: 11px;
  border-radius: 8px;
}

.btn-block {
  display: flex;
  width: 100%;
}

.icon-btn {
  transition: transform 0.3s ease;
}

.btn:hover .icon-btn {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   4. STICKY HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--deep-navy);
  border-bottom: 1px solid rgba(213, 163, 61, 0.12);
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  transition: var(--transition-smooth);
}

/* Shrink header on scroll */
.site-header.scrolled {
  height: 72px;
  box-shadow: 0 10px 30px rgba(7, 24, 44, 0.25);
  border-bottom-color: rgba(213, 163, 61, 0.2);
}

.site-header.scrolled .header-container {
  height: 72px;
}

.header-logo {
  display: flex;
  align-items: center;
  max-width: 140px;
}

.logo-img {
  width: 100%;
  height: auto;
  max-height: 54px;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.site-header.scrolled .logo-img {
  max-height: 44px;
}

/* Desktop navigation list */
.desktop-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 22px;
}

.desktop-nav .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.02em;
  padding: 8px 4px;
  position: relative;
}

.desktop-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--premium-gold);
  transition: var(--transition-fast);
}

.desktop-nav .nav-link:hover {
  color: var(--champagne-gold);
}

.desktop-nav .nav-link:hover::after,
.desktop-nav .nav-link.active::after {
  width: 100%;
}

.desktop-nav .nav-link.active {
  color: var(--premium-gold);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hamburger button */
.menu-toggle-btn {
  display: none;
  color: var(--pure-white);
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.menu-toggle-btn:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--premium-gold);
}

/* --------------------------------------------------------------------------
   5. MOBILE NAVIGATION OVERLAY
   -------------------------------------------------------------------------- */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(7, 24, 44, 0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 400px;
  padding: 24px;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.mobile-nav-link {
  font-family: var(--font-headings);
  font-size: 26px;
  font-weight: 400;
  color: var(--pure-white);
  letter-spacing: 0.02em;
  padding: 8px;
  transition: var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--premium-gold);
  transform: scale(1.05);
}

.mobile-nav-actions {
  width: 100%;
  margin-top: 10px;
}

.mobile-menu-cta {
  display: flex;
  width: 100%;
  text-align: center;
}

/* Body lock when mobile menu is open */
.body-scroll-lock {
  overflow: hidden !important;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: 150px;
  padding-bottom: 80px;
  background-color: var(--soft-ivory);
  min-height: 720px;
  display: flex;
  align-items: center;
  position: relative;
}

/* No gradient overlay */
.hero-section::before {
  display: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 48fr 52fr;
  gap: 40px;
  align-items: center;
}

.hero-title {
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--secondary-text);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-trust-indicators {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  border-top: 1px solid var(--muted-border);
  padding-top: 28px;
  max-width: 520px;
}

.trust-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary-text);
}

.trust-indicator svg {
  color: var(--premium-gold);
  flex-shrink: 0;
}

/* Hero Visual Column (Right) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
}

.hero-model-img {
  width: 100%;
  max-width: 440px;
  height: auto;
  border-radius: 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 45px rgba(20, 26, 35, 0.12);
  /* Elegant blend mode if transparent */
}

/* Circle design motifs behind model */
.visual-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.gold-ring {
  position: absolute;
  border: 1px solid rgba(213, 163, 61, 0.3);
  border-radius: var(--radius-full);
}

.gold-ring-1 {
  width: 480px;
  height: 480px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gold-ring-2 {
  width: 520px;
  height: 520px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-style: dashed;
  opacity: 0.5;
}

.glow-effect {
  position: absolute;
  width: 320px;
  height: 320px;
  background-color: var(--champagne-gold);
  filter: blur(120px);
  opacity: 0.18;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: var(--radius-full);
}

/* Floating transformation card */
.floating-results-card {
  position: absolute;
  bottom: -15px;
  left: -35px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: 18px;
  border: 1px solid var(--muted-border);
  box-shadow: 0 12px 30px rgba(7, 24, 44, 0.08);
  z-index: 3;
  width: 250px;
  transition: var(--transition-smooth);
}

.floating-results-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(7, 24, 44, 0.12);
}

.floating-results-card .card-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--premium-gold);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.card-comparison {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 12px;
}

.comparison-side {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.comp-label {
  font-size: 8px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--secondary-text);
  letter-spacing: 0.05em;
}

.comp-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-divider {
  width: 1px;
  height: 60px;
  background-color: var(--muted-border);
}

.card-caption {
  font-size: 11px;
  color: var(--secondary-text);
  font-style: italic;
  text-align: center;
}

/* --------------------------------------------------------------------------
   7. TRUST STATISTICS STRIP
   -------------------------------------------------------------------------- */
.stats-strip-section {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -45px;
  position: relative;
  z-index: 10;
}

.stats-strip {
  display: flex;
  background-color: var(--pure-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--muted-border);
  box-shadow: 0 15px 40px var(--light-shadow);
  padding: 30px 40px;
  justify-content: space-between;
  align-items: center;
}

.stat-col {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

.stat-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background-color: rgba(213, 163, 61, 0.08);
  color: var(--premium-gold);
  border: 1px solid rgba(213, 163, 61, 0.15);
  flex-shrink: 0;
}

.stat-text {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-headings);
  font-size: clamp(28px, 3.5vw, 36px);
  color: var(--primary-dark);
  font-weight: 500;
  line-height: 1.1;
}

.stat-label {
  font-size: 13px;
  color: var(--secondary-text);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background-color: rgba(213, 163, 61, 0.2);
}

/* --------------------------------------------------------------------------
   8. ABOUT SECTION
   -------------------------------------------------------------------------- */
.about-section {
  background-color: var(--soft-ivory);
}

.about-container {
  display: grid;
  grid-template-columns: 50fr 50fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 2;
}

.about-ring {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 1.5px solid rgba(213, 163, 61, 0.25);
  border-radius: var(--radius-full);
  top: -25px;
  left: -25px;
  z-index: 1;
}

.about-content {
  padding-left: 20px;
}

.about-text {
  font-size: 16px;
  color: var(--primary-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-subtext {
  font-size: 14px;
  color: var(--secondary-text);
  font-style: italic;
  margin-bottom: 32px;
}

.about-actions {
  display: flex;
}

/* --------------------------------------------------------------------------
   9. SERVICES SECTION
   -------------------------------------------------------------------------- */
.services-section {
  background-color: var(--warm-cream);
  position: relative;
}

/* Muted gold dots texture background overlay */
.services-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(213, 163, 61, 0.15) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.45;
  z-index: 1;
}

.services-section .container {
  position: relative;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  background-color: var(--pure-white);
  border-radius: 18px;
  border: 1px solid rgba(213, 163, 61, 0.14);
  padding: 32px 28px;
  box-shadow: 0 10px 24px rgba(20, 26, 35, 0.04);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 32px rgba(20, 26, 35, 0.08);
  border-color: var(--premium-gold);
}

.card-icon-wrapper {
  color: var(--premium-gold);
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.service-card:hover .card-icon-wrapper {
  transform: scale(1.08);
}

.service-card .card-title {
  font-size: clamp(20px, 2.2vw, 22px);
  margin-bottom: 14px;
}

.service-card .card-description {
  font-size: 14px;
  color: var(--secondary-text);
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card .card-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: auto;
}

.card-link svg {
  color: var(--premium-gold);
  transition: transform 0.3s ease;
}

.service-card:hover .card-link svg {
  transform: translateX(4px);
}

.service-card:hover .card-link {
  color: var(--premium-gold);
}

/* --------------------------------------------------------------------------
   10. WHY HAIR LIFE SECTION
   -------------------------------------------------------------------------- */
.why-section {
  background-color: var(--deep-navy);
  color: var(--pure-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 4px;
}

.why-icon-wrapper {
  color: var(--champagne-gold);
  margin-bottom: 20px;
}

.why-title {
  color: var(--pure-white);
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 400;
}

.why-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   11. BEFORE & AFTER SECTION (RESULTS CAROUSEL)
   -------------------------------------------------------------------------- */
.results-section {
  background-color: var(--primary-dark);
  border-top: 1px solid rgba(213, 163, 61, 0.1);
}

.results-carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 960px;
  margin: 0 auto 36px;
  gap: 24px;
}

.carousel-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(213, 163, 61, 0.4);
  background-color: rgba(7, 24, 44, 0.8);
  color: var(--champagne-gold);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.carousel-nav-btn:hover {
  background-color: var(--premium-gold);
  color: var(--primary-dark);
  border-color: var(--premium-gold);
  transform: scale(1.05);
}

.carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(213, 163, 61, 0.15);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 100%;
}

.carousel-slide {
  width: 100%;
  flex-shrink: 0;
  opacity: 0.3;
  transition: opacity 0.5s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.slide-card {
  background-color: var(--deep-navy);
  padding: 36px;
}

.slide-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.image-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1 / 1;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.slide-label {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 12px;
  background-color: rgba(7, 24, 44, 0.85);
  border-radius: 6px;
  letter-spacing: 0.05em;
  color: var(--pure-white);
  z-index: 5;
}

.slide-label.before-label {
  border-left: 2px solid #ff4d4d;
}

.slide-label.after-label {
  border-left: 2px solid var(--premium-gold);
}

.slide-meta {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.slide-title {
  color: var(--pure-white);
  font-size: clamp(20px, 2.5vw, 24px);
  margin-bottom: 10px;
  font-weight: 400;
}

.slide-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* Dots Navigation */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-dots .dot.active {
  background-color: var(--premium-gold);
  width: 24px;
}

.results-disclaimer {
  font-size: 12px;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 40px;
}

/* --------------------------------------------------------------------------
   12. HOW IT WORKS SECTION (PROCESS TIMELINE)
   -------------------------------------------------------------------------- */
.process-section {
  background-color: var(--soft-ivory);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  margin-top: 40px;
}

.timeline-line {
  position: absolute;
  top: 35px;
  left: 12%;
  width: 76%;
  height: 2px;
  background-color: var(--muted-border);
  z-index: 1;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-num-circle {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-full);
  background-color: var(--pure-white);
  border: 2px solid var(--premium-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-size: 24px;
  font-weight: 600;
  color: var(--premium-gold);
  margin-bottom: 24px;
  box-shadow: 0 6px 16px rgba(213, 163, 61, 0.12);
  transition: var(--transition-smooth);
}

.timeline-step:hover .step-num-circle {
  transform: scale(1.1);
  background-color: var(--premium-gold);
  color: var(--primary-dark);
  box-shadow: 0 8px 24px rgba(213, 163, 61, 0.25);
}

.step-title {
  font-size: clamp(20px, 2.2vw, 22px);
  margin-bottom: 12px;
  font-weight: 500;
}

.step-desc {
  font-size: 14px;
  color: var(--secondary-text);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   13. MID-PAGE EMOTIONAL CTA
   -------------------------------------------------------------------------- */
.emotional-cta-section {
  position: relative;
  padding: 120px 0;
  color: var(--pure-white);
}

.cta-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.cta-banner-container {
  position: relative;
  z-index: 2;
}

.cta-banner-content {
  max-width: 600px;
}

.cta-banner-heading {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--pure-white);
  margin-bottom: 20px;
  font-weight: 300;
}

.cta-banner-text {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
}

/* --------------------------------------------------------------------------
   14. TESTIMONIALS SECTION
   -------------------------------------------------------------------------- */
.testimonials-section {
  background-color: var(--soft-ivory);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background-color: var(--pure-white);
  border-radius: 18px;
  border: 1px solid var(--muted-border);
  padding: 36px;
  box-shadow: 0 10px 24px var(--light-shadow);
  display: flex;
  flex-direction: column;
}

.card-quote-icon {
  color: rgba(213, 163, 61, 0.25);
  margin-bottom: 20px;
}

.star-rating {
  margin-bottom: 18px;
  display: flex;
  gap: 4px;
}

.star-filled {
  color: var(--premium-gold);
  font-size: 16px;
}

.testimonial-text {
  font-size: 15.5px;
  color: var(--primary-text);
  line-height: 1.65;
  margin-bottom: 28px;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--primary-dark);
}

.author-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   15. CLINIC GALLERY
   -------------------------------------------------------------------------- */
.gallery-section {
  background-color: var(--warm-cream);
}

.gallery-layout {
  display: grid;
  grid-template-columns: 50fr 50fr;
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 4 / 3;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 24, 44, 0.45);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-text {
  color: var(--pure-white);
  font-size: 16px;
  font-weight: 500;
  transform: translateY(15px);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.03);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-text {
  transform: translateY(0);
}

/* Large image details */
.gallery-layout .large-item {
  aspect-ratio: auto;
  height: 100%;
}

.gallery-small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* --------------------------------------------------------------------------
   16. FAQ SECTION (ACCORDION SYSTEM)
   -------------------------------------------------------------------------- */
.faq-section {
  background-color: var(--soft-ivory);
}

.faq-container {
  max-width: 800px;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background-color: var(--pure-white);
  border-radius: 12px;
  border: 1px solid var(--muted-border);
  overflow: hidden;
  box-shadow: 0 4px 12px var(--light-shadow);
  transition: var(--transition-smooth);
}

.faq-item:hover {
  box-shadow: 0 8px 20px rgba(20, 26, 35, 0.06);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
}

.faq-arrow-icon {
  color: var(--premium-gold);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Expanded state styles */
.faq-trigger[aria-expanded="true"] .faq-arrow-icon {
  transform: rotate(180deg);
}

.faq-item:has(button[aria-expanded="true"]) {
  border-color: var(--premium-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-answer-content {
  padding: 0 28px 22px 28px;
  font-size: 14.5px;
  color: var(--secondary-text);
  line-height: 1.65;
  border-top: 1px solid rgba(213, 163, 61, 0.08);
}

/* --------------------------------------------------------------------------
   17. CONTACT & BOOKING SECTION
   -------------------------------------------------------------------------- */
.contact-section {
  background-color: var(--soft-beige);

  overflow-x: hidden;}

.contact-container {
  display: grid;
  grid-template-columns: 46fr 54fr;
  gap: 60px;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
}

.contact-lead-text {
  font-size: 16px;
  color: var(--secondary-text);
  margin-bottom: 36px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: rgba(213, 163, 61, 0.08);
  color: var(--premium-gold);
  border: 1px solid rgba(213, 163, 61, 0.15);
  flex-shrink: 0;
}

.detail-text strong {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-dark);
}

.detail-text p {
  font-size: 15px;
  color: var(--secondary-text);
  margin-top: 4px;
}

.phone-link:hover, .social-link:hover {
  color: var(--premium-gold);
  text-decoration: underline;
}

.contact-quick-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.contact-action-btn {
  flex: 1;
  min-width: 180px;
}

/* Location Card */
.location-card {
  display: flex;
  align-items: center;
  background-color: var(--pure-white);
  border: 1px solid var(--muted-border);
  padding: 16px 20px;
  border-radius: 12px;
  gap: 16px;
  box-shadow: 0 8px 20px var(--light-shadow);
}

.loc-card-icon {
  color: var(--premium-gold);
  flex-shrink: 0;
}

.loc-card-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
}

.loc-card-info p {
  font-size: 12px;
  color: var(--secondary-text);
  margin-top: 2px;
}

.loc-map-btn {
  margin-left: auto;
  flex-shrink: 0;
}

/* Booking Form Panel */
.contact-form-panel {
  background-color: var(--pure-white);
  border-radius: 20px;
  border: 1px solid var(--muted-border);
  padding: 44px;
  box-shadow: 0 12px 36px var(--light-shadow);
}

.form-title {
  font-size: clamp(24px, 3vw, 28px);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 14px;
  color: var(--secondary-text);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.form-label .required {
  color: #ff4d4d;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--primary-dark);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background-color: var(--pure-white);
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--premium-gold);
  box-shadow: 0 0 0 3px rgba(213, 163, 61, 0.1);
}

/* Radio Group styling */
.radio-group {
  display: flex;
  gap: 24px;
  margin-top: 4px;
}

.radio-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--secondary-text);
  cursor: pointer;
}

.radio-label input[type="radio"] {
  accent-color: var(--premium-gold);
  width: 18px;
  height: 18px;
}

/* Select element wrapper styling */
.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--secondary-text);
  border-bottom: 2px solid var(--secondary-text);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.select-wrapper select {
  appearance: none;
  padding-right: 40px;
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
}

/* Validation Feedback styles */
.invalid-feedback {
  display: none;
  font-size: 11.5px;
  color: #ff4d4d;
  margin-top: 6px;
  font-weight: 500;
}

.form-control.is-invalid {
  border-color: #ff4d4d;
  background-image: radial-gradient(#ff4d4d 1px, transparent 1px);
}

.form-control.is-invalid + .invalid-feedback {
  display: block;
}

/* Form Status Alert */
.form-status-alert {
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.5;
  border: 1px solid transparent;
}

.form-status-alert.alert-success {
  background-color: rgba(37, 211, 102, 0.08);
  border-color: rgba(37, 211, 102, 0.2);
  color: #127c38;
}

.form-status-alert.alert-error {
  background-color: rgba(255, 77, 77, 0.08);
  border-color: rgba(255, 77, 77, 0.2);
  color: #cc2424;
}

/* --------------------------------------------------------------------------
   18. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--deep-navy);
  color: rgba(255, 255, 255, 0.8);
  border-top: 2px solid var(--premium-gold);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 35fr 20fr 20fr 25fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  max-width: 140px;
  margin-bottom: 16px;
}

.footer-logo-img {
  width: 100%;
}

.footer-tagline {
  font-family: var(--font-headings);
  font-size: 18px;
  color: var(--premium-gold);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.footer-about-brief {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-social-icons {
  display: flex;
}

.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--pure-white);
  transition: var(--transition-fast);
}

.social-icon-btn:hover {
  background-color: var(--premium-gold);
  border-color: var(--premium-gold);
  color: var(--primary-dark);
}

.footer-col-title {
  color: var(--pure-white);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  font-weight: 600;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--premium-gold);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--premium-gold);
  padding-left: 4px;
}

.footer-contact-info {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-contact-info strong {
  color: var(--pure-white);
}

.footer-phone-link:hover {
  color: var(--premium-gold);
}

/* Footer bottom bar */
.footer-bottom {
  padding: 24px 0;
  background-color: #040e1b;
  font-size: 13px;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-link {
  color: rgba(255, 255, 255, 0.55);
}

.legal-link:hover {
  color: var(--premium-gold);
}

.legal-separator {
  color: rgba(255, 255, 255, 0.15);
}

/* --------------------------------------------------------------------------
   19. MOBILE FIXED CTA BOTTOM BAR
   -------------------------------------------------------------------------- */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: var(--deep-navy);
  border-top: 1px solid rgba(213, 163, 61, 0.2);
  z-index: 998;
  display: none; /* Screen width triggers this */
  grid-template-columns: repeat(3, 1fr);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
}

.m-cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 500;
  gap: 4px;
  transition: var(--transition-fast);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.m-cta-btn:last-child {
  border-right: none;
}

.m-cta-btn svg {
  color: var(--champagne-gold);
  transition: var(--transition-fast);
}

.m-cta-btn:hover {
  color: var(--premium-gold);
  background-color: rgba(255, 255, 255, 0.02);
}

.m-cta-btn:hover svg {
  transform: scale(1.08);
}

.m-cta-book {
  background-color: var(--premium-gold);
  color: var(--primary-dark) !important;
  font-weight: 700;
}

.m-cta-book svg {
  color: var(--primary-dark) !important;
}

.m-cta-book:hover {
  background-color: #c7922d;
}

/* --------------------------------------------------------------------------
   20. TRANSITIONS & INTERSECTION REVEALS
   -------------------------------------------------------------------------- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.8, 0.25, 1), 
              transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   21. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */

/* Responsive ranges */

/* --- 1. Large screens (above 1200px) --- */
@media (min-width: 1200px) {
  /* Enforces max container widths */
}

/* --- 2. Desktop/Tablet landscape (below 1200px) --- */
@media (max-width: 1199px) {
  :root {
    --section-padding-desktop: 80px;
  }
  
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 40fr 30fr 30fr;
  }
  .footer-col.contact-col {
    grid-column: 1 / span 3;
    margin-top: 10px;
  }
}

/* --- 3. Tablet Portrait / Mobile Toggle boundary (below 900px) --- */
@media (max-width: 900px) {
  /* Hide desktop navigation elements */
  .desktop-nav {
    display: none;
  }

  .menu-toggle-btn {
    display: block;
  }

  /* Reduce header actions width spacing */
  .btn-header {
    display: none; /* Hide top CTA button to keep logo and hamburger clean */
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 56px;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-trust-indicators {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    padding-left: 0;
    margin-top: 20px;
  }

  .floating-results-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px;
  }
  .floating-results-card:hover {
    transform: translate(-50%, -5px);
  }

  .stats-strip-section {
    margin-top: 20px;
  }

  .stats-strip {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }

  .stat-col {
    width: 100%;
  }

  .stat-divider {
    width: 80%;
    height: 1px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-content {
    padding-left: 0;
    text-align: center;
  }
  
  .about-actions {
    justify-content: center;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .timeline-line {
    display: none;
  }

  .timeline-step {
    padding-bottom: 24px;
    border-bottom: 1px dashed var(--muted-border);
  }

  .timeline-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col.brand-col,
  .footer-col.contact-col {
    grid-column: 1 / span 2;
  }
}

/* --- 4. Mobile landscape/large phone (below 768px) --- */
@media (max-width: 767px) {
  :root {
    --section-padding-desktop: var(--section-padding-mobile);
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  
  .results-carousel-container {
    display: block; /* override flex to prevent squishing */
    position: relative;
    padding-bottom: 70px;
  }
  
  .carousel-nav-btn {
    position: absolute;
    bottom: 0;
    top: auto;
    margin: 0;
    transform: none;
  }
  
  .prev-btn {
    left: calc(50% - 60px);
  }
  
  .next-btn {
    right: calc(50% - 60px);
  }
  
  .carousel-track-wrapper {
    width: 100%;
  }

  .slide-images {

    grid-template-columns: 1fr;
    gap: 16px;
  }

  .slide-card {
    padding: 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .gallery-layout {
    grid-template-columns: 1fr;
  }
  
  .gallery-layout .large-item {
    aspect-ratio: 4 / 3;
  }

  .gallery-small-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-panel {
    padding: 28px 20px;
  }

  .contact-quick-actions {
    flex-direction: column;
  }

  /* Show mobile sticky cta bar */
  .mobile-sticky-cta {
    display: grid;
  }

  /* Add padding to body to prevent footer from being hidden behind sticky bar */
  body {
    padding-bottom: 60px;
  }
}

/* --- 5. Small mobile (below 480px) --- */
@media (max-width: 479px) {
  .hero-ctas .btn {
    width: 100%;
  }

  .hero-trust-indicators {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .gallery-small-grid {
    grid-template-columns: 1fr;
  }

  .faq-trigger {
    padding: 18px;
    font-size: 15px;
  }

  .faq-answer-content {
    padding: 0 18px 18px 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-col.brand-col,
  .footer-col.contact-col {
    grid-column: 1;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   22. ACCESSIBILITY COMPLIANCE (REDUCED MOTION)
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
  
  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  
  .gallery-item:hover .gallery-img,
  .service-card:hover,
  .timeline-step:hover .step-num-circle,
  .btn:hover,
  .m-cta-btn:hover svg {
    transform: none !important;
    box-shadow: none !important;
  }

  .carousel-track {
    transition: none !important;
  }
}


/* Mobile Fix for Contact Section */
@media (max-width: 900px) {
  .contact-container {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .contact-info-panel, .contact-form-panel {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .contact-action-btn {
    min-width: 0 !important;
    width: 100% !important;
  }
  .contact-section {
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }
}
