/* ==========================================================================
   BG Güzellik & Bakım Salonu Style System (demo6.bgsoft.com.tr Inspired)
   Fonts: Playfair Display (Headings) & Jost (Body/UI)
   Palette: Rose Quartz / Dusty Rose, Warm Soft Cream, Deep Espresso Ink
   Pill Floating Header, Rounded-3xl Cards, Soft Glows, Ultra-Mobile Friendly
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

:root {
  /* Ustam Kombi Servisim Technical Color Palette */
  --c-primary: 0, 145, 126;            /* #00917E Deep Teal / Emerald */
  --c-primary-light: 20, 184, 162;     /* #14b8a2 Light Teal */
  --c-primary-dark: 0, 115, 100;       /* #007364 Deep Teal */
  --c-cream: 248, 250, 252;            /* #f8fafc Clean Light Slate */
  --c-cream-deep: 226, 232, 240;       /* #e2e8f0 Soft Border Gray */
  --c-ink: 15, 23, 42;                 /* #0f172a Deep Slate Navy */
  --c-ink-soft: 51, 65, 85;            /* #334155 Slate Soft */
  --c-ink-muted: 100, 116, 139;        /* #64748b Muted Slate */

  --c-accent: 249, 115, 22;            /* #f97316 Flame Orange */

  --primary: rgb(var(--c-primary));
  --primary-light: rgb(var(--c-primary-light));
  --primary-dark: rgb(var(--c-primary-dark));
  --color-primary: rgb(var(--c-primary));
  --color-primary-light: rgb(var(--c-primary-light));
  --color-primary-dark: rgb(var(--c-primary-dark));
  --cream: rgb(var(--c-cream));
  --cream-deep: rgb(var(--c-cream-deep));
  --ink: rgb(var(--c-ink));
  --ink-soft: rgb(var(--c-ink-soft));
  --ink-muted: rgb(var(--c-ink-muted));
  --accent: rgb(var(--c-accent));

  /* Surface & Base */
  --bg-body: #f8fafc;
  --bg-surface: #ffffff;
  --text-main: #334155;
  --text-title: #0f172a;
  --text-muted: #64748b;

  /* Typography */
  --font-display: 'Outfit', 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 20px 45px -20px rgba(15, 23, 42, 0.15);
  --shadow-card: 0 12px 30px -15px rgba(15, 23, 42, 0.12);
  --shadow-float: 0 20px 35px -12px rgba(0, 145, 126, 0.35);

  /* Transitions */
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease-in-out;

  /* Radii */
  --radius-sm: 0.5rem;
  --radius-md: 0.85rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --radius-full: 9999px;
  
  --container-max: 80rem; /* 1280px */
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-body);
  line-height: 1.625;
  font-weight: 400;
  overflow-x: hidden;
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  border: none;
  outline: none;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-title);
  line-height: 1.2;
}

.display-1 { 
  font-size: clamp(1.85rem, 3.5vw, 2.85rem); 
  font-weight: 600; 
  line-height: 1.15; 
  letter-spacing: -0.01em;
}

.display-2 { 
  font-size: clamp(1.6rem, 2.6vw, 2.25rem); 
  font-weight: 600; 
  line-height: 1.2; 
}

.display-3 { 
  font-size: clamp(1.3rem, 2vw, 1.75rem); 
  font-weight: 600; 
}

.lead { 
  font-size: 1.05rem; 
  line-height: 1.7; 
  color: var(--text-muted); 
  font-weight: 400; 
}

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

@media (min-width: 640px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

@media (min-width: 1024px) {
  .container { padding-left: 2.5rem; padding-right: 2.5rem; }
}

.section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  position: relative;
}

.section-sm { padding-top: 3rem; padding-bottom: 3rem; }
.section-lg { padding-top: 6rem; padding-bottom: 6rem; }

.bg-cream-deep { background-color: var(--cream-deep); }
.bg-white { background-color: #ffffff; }
.bg-dark { 
  background-color: var(--ink); 
  color: #ffffff; 
}
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: #ffffff; }
.bg-dark .text-muted { color: rgba(255, 255, 255, 0.7); }

/* Alignment Utilities */
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

/* Page Header Hero Banner */
.page-header-hero,
.page-header {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-header {
  padding: 3rem 0 1.5rem 0;
  width: 100%;
}

.page-header .container,
.page-header-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-header .eyebrow,
.page-header-hero .eyebrow {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.page-header .page-title,
.page-header-hero .display-1,
.page-hero-title {
  text-align: center;
  margin-bottom: 0.85rem;
  font-size: clamp(1.2rem, 3.2vw, 2.3rem);
  white-space: nowrap;
  letter-spacing: -0.01em;
  max-width: 100%;
}

.page-header .page-subtitle,
.page-header-hero .lead {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted);
}

/* Eyebrow Badge (Exact demo6.bgsoft.com.tr style) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary);
  margin-bottom: 0.85rem;
}

.eyebrow svg {
  width: 1rem;
  height: 1rem;
  stroke: var(--primary);
}

.section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem auto;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.section-title {
  margin-top: 0.4rem;
  margin-bottom: 0.85rem;
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Marquee Banner (Continuous Smooth Infinite Ticker - Primary Theme)
   ========================================================================== */
.marquee-wrapper {
  overflow: hidden;
  user-select: none;
  background-color: var(--primary);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.25rem 0;
  display: flex;
  position: relative;
  box-shadow: 0 10px 30px -10px rgba(183, 110, 121, 0.4);
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--primary), transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--primary), transparent);
}

.marquee-track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  white-space: nowrap;
  gap: 3rem;
  animation: marquee-scroll 26s linear infinite;
  padding-right: 3rem;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  transition: var(--transition-fast);
  cursor: default;
}

.marquee-item:hover {
  color: #ffffff;
  opacity: 0.9;
}

.marquee-separator {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   Demo6 Floating Pill Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 1000 !important;
  transition: all 0.3s ease;
  padding-top: 0.75rem;
  padding-bottom: 0.5rem;
}

.site-header .container {
  max-width: 1480px;
  width: 100%;
}

.header-nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.5rem 1.25rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  gap: 1rem;
  flex-wrap: nowrap;
}

.site-header.scrolled .header-nav-pill {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px -24px rgba(120, 80, 50, 0.45);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.68rem;
  font-weight: 800;
  color: var(--text-title);
  letter-spacing: -0.015em;
  line-height: 1;
}

.brand-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 auto;
  white-space: nowrap;
}

.nav-link {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 0.25rem 0.15rem;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-deep);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.mobile-menu-toggle:hover {
  background: var(--primary);
  color: #ffffff;
}

/* ==========================================================================
   Buttons (Exact demo6.bgsoft.com.tr style)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-full);
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  border: 1px solid var(--primary);
  box-shadow: 0 24px 60px -28px rgba(120, 80, 50, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 20px 40px -15px rgba(183, 110, 121, 0.45);
  color: #ffffff;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid rgba(var(--c-primary), 0.4);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-white {
  background-color: #ffffff;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
}

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

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 0.95rem;
}

/* Announcement Top Bar */
.announcement-bar {
  background: var(--ink);
  color: var(--cream);
  font-size: 0.8rem;
  padding: 0.45rem 1rem;
  text-align: center;
  letter-spacing: 0.04em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

/* ==========================================================================
   Hero Section (demo6.bgsoft.com.tr style)
   ========================================================================== */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 6rem 0;
  background-color: var(--bg-body);
}

.hero-glow-1 {
  position: absolute;
  top: 2rem;
  left: -8rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(var(--c-primary), 0.12);
  filter: blur(64px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  top: 30%;
  right: 0;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: rgba(var(--c-primary-light), 0.2);
  filter: blur(64px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  margin-top: 0.75rem;
  margin-bottom: 1.35rem;
  color: var(--text-title);
  font-size: clamp(1.2rem, 3.1vw, 2.25rem) !important;
  white-space: nowrap;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-description {
  max-width: 480px;
  border-left: 2px solid rgba(var(--c-primary), 0.4);
  padding-left: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 2.25rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats-row {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(var(--c-ink), 0.08);
}

.stat-item-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-title);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-item-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
  background: var(--cream-deep);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image-frame:hover img {
  transform: scale(1.03);
}

.hero-floating-badge {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.15rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3;
}

.floating-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(var(--c-primary), 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* ==========================================================================
   About Split Grid (demo6 style)
   ========================================================================== */
.about-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4.5rem;
  align-items: center;
}

.about-images-collage {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/4.5;
  background: var(--cream-deep);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-main:hover img {
  transform: scale(1.03);
}

.about-img-sub {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 4px solid #ffffff;
  background: var(--cream-deep);
}

.about-img-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-split-grid .section-title {
  font-size: clamp(1.2rem, 2.9vw, 2.25rem) !important;
  white-space: nowrap;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(var(--c-primary), 0.15);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ==========================================================================
   Services Grid & Rounded Cards (demo6 style)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--c-primary), 0.3);
  box-shadow: var(--shadow-soft);
}

.service-card-media {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream-deep);
  margin-bottom: 1.5rem;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-media img {
  transform: scale(1.05);
}

.service-card-tag {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: var(--cream-deep);
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
}

.service-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.service-duration {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
  color: var(--text-title);
  transition: color 0.2s ease;
}

.service-card:hover .service-card-title {
  color: var(--primary);
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--cream-deep);
}

.service-price-block {
  display: flex;
  flex-direction: column;
}

.service-price-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.service-price-current {
  font-family: var(--font-sans);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary);
}

.service-price-old {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: var(--text-muted);
  margin-left: 0.35rem;
}

/* Category Filter Tabs (Single-Line Horizontal Pill Bar) */
.filter-tabs {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 3rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0.25rem 0.75rem 0.25rem;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.filter-tabs::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

@media (min-width: 992px) {
  .filter-tabs {
    justify-content: center;
  }
}

.filter-btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid rgba(var(--c-ink), 0.08);
  color: var(--ink-soft);
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  flex-shrink: 0;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(183, 110, 121, 0.3);
}

/* About Split Grid */
.about-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.about-images-collage {
  position: relative;
}

.about-img-main {
  width: 85%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-sub {
  position: absolute;
  bottom: -2.5rem;
  right: 0;
  width: 50%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 8px solid var(--bg-body);
  box-shadow: var(--shadow-card);
}

.about-img-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(var(--c-primary), 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-size: 0.85rem;
}

/* Stats Counter Banner */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-box {
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
}

.stat-box-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-box-title {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.team-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.team-media {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cream-deep);
}

.team-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card:hover .team-media img {
  transform: scale(1.04);
}

.team-info {
  padding: 1.75rem;
  text-align: center;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
  color: var(--text-title);
}

.team-role {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.team-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.team-social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.team-social-link:hover {
  background: var(--primary);
  color: #ffffff;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream-deep);
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43, 38, 34, 0.85) 0%, transparent 60%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #ffffff;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

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

.gallery-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.2rem;
  color: #ffffff;
}

.gallery-category {
  font-size: 0.75rem;
  color: var(--primary-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
}

.rating-stars {
  color: #f59e0b;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--cream-deep);
  padding-top: 1.25rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream-deep);
}

.author-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-title);
}

.author-title {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Pricing Packages */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.pricing-card.featured {
  background: var(--ink);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
  transform: scale(1.03);
}

.pricing-card.featured .pricing-title,
.pricing-card.featured .pricing-price {
  color: #ffffff;
}

.pricing-card.featured .pricing-feature-item {
  color: rgba(255, 255, 255, 0.85);
}

.pricing-card.featured .pricing-header {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.35rem 1.25rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cream-deep);
}

.pricing-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.pricing-price {
  font-family: var(--font-sans);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.pricing-card.featured .pricing-price {
  color: var(--primary-light);
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 400;
  margin-right: 0.2rem;
}

.pricing-period {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.pricing-features {
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.pricing-feature-icon {
  color: var(--primary);
  font-weight: bold;
}

/* Blog Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.blog-card-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--cream-deep);
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.2rem;
  transition: color 0.2s ease;
}

.blog-card:hover .blog-card-title {
  color: var(--primary);
}

.blog-detail-title {
  font-size: clamp(1.35rem, 2.4vw, 2.15rem) !important;
  line-height: 1.25 !important;
  max-width: 820px;
  margin: 0 auto 1.15rem auto;
  text-align: center;
}

.blog-card-summary {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

/* Appointment Wizard */
.appointment-wizard-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 3.5rem;
  max-width: 800px;
  margin: 0 auto;
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid rgba(var(--c-ink), 0.12);
  background: #ffffff;
  padding: 0.875rem 1.25rem;
  font-size: 0.95rem;
  color: var(--ink);
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--c-primary), 0.15);
}

/* Time Slots Picker */
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.time-slot-option {
  position: relative;
}

.time-slot-option input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.time-slot-label {
  display: block;
  text-align: center;
  padding: 0.75rem 0.5rem;
  background: var(--cream);
  border: 1px solid rgba(var(--c-ink), 0.08);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.time-slot-option input[type="radio"]:checked + .time-slot-label {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* Specialist Selection Chips */
.specialist-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.specialist-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.specialist-card-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #ffffff;
  border: 1.5px solid var(--cream-deep);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.specialist-chip-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  border: 1px solid rgba(var(--c-ink), 0.08);
}

.specialist-card-chip strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-title);
  line-height: 1.2;
}

.specialist-card-chip small {
  font-size: 0.76rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.15rem;
}

.specialist-option input[type="radio"]:checked + .specialist-card-chip {
  border-color: var(--primary);
  background: rgba(183, 110, 121, 0.08);
  box-shadow: 0 0 0 1px var(--primary);
}

.specialist-card-chip:hover {
  border-color: rgba(var(--c-primary), 0.4);
  transform: translateY(-2px);
}

/* ==========================================================================
   Contact Page Styles (Clean & Responsive)
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #ffffff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-deep);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: rgba(var(--c-primary), 0.2);
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--cream-deep);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-card);
}

.contact-map-wrap {
  height: 400px;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--cream-deep);
  position: relative;
}

.contact-map-wrap iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .contact-info-panel {
    text-align: center;
    align-items: center;
  }
  .contact-info-panel .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }
  .contact-info-panel .section-title {
    text-align: center;
  }
  .contact-info-panel > p {
    text-align: center;
  }
  .contact-info-list {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
  .contact-item {
    text-align: left;
    padding: 1.15rem 1.25rem;
  }
  .contact-form-card {
    padding: 2rem 1.25rem;
    border-radius: var(--radius-lg);
  }
  .contact-map-wrap {
    height: 320px;
  }
}

/* Toast Alerts */
.toast-container {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: var(--ink);
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 300px;
  animation: slideInRight 0.3s ease-out;
  border-left: 4px solid var(--primary);
}

.toast.toast-error {
  border-left-color: #e74c3c;
}

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

/* ==========================================================================
   Desktop Fixed Action Buttons (Floating on Bottom-Right)
   ========================================================================== */
.desktop-floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
  pointer-events: none;
}

.desktop-floating-actions > * {
  pointer-events: auto;
}

.desktop-float-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.desktop-float-btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.desktop-float-whatsapp {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}
.desktop-float-whatsapp:hover {
  background: #20ba59;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.48);
}

.desktop-float-phone {
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(43, 38, 34, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.desktop-float-phone:hover {
  background: #1a1614;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(43, 38, 34, 0.38);
}

.desktop-float-appointment {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(183, 110, 121, 0.42);
}
.desktop-float-appointment:hover {
  background: var(--primary-dark);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(183, 110, 121, 0.55);
}

/* ==========================================================================
   Mobile Fixed Sticky Action Bar (Bottom Docked Conversion Bar)
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
}

@media (max-width: 768px) {
  .desktop-floating-actions {
    display: none !important;
  }

  body {
    padding-bottom: 74px !important;
  }

  .mobile-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(183, 110, 121, 0.2);
    box-shadow: 0 -4px 25px rgba(43, 38, 34, 0.1);
    padding: 0.6rem 0.85rem;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-bar-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.45rem 0.5rem;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    flex: 1;
    min-width: 0;
    line-height: 1;
  }

  .mobile-bar-phone {
    background: var(--cream-deep);
    color: var(--ink);
    border: 1px solid rgba(43, 38, 34, 0.08);
  }

  .mobile-bar-whatsapp {
    background: rgba(37, 211, 102, 0.12);
    color: #128c40;
    border: 1px solid rgba(37, 211, 102, 0.25);
  }

  .mobile-bar-appointment {
    flex: 1.5;
    background: var(--primary);
    color: #ffffff;
    padding: 0.65rem 0.75rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.35);
    flex-direction: row;
    gap: 0.4rem;
    font-size: 0.82rem;
  }

  .mobile-bar-appointment:active {
    transform: scale(0.97);
  }
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
}

/* ==========================================================================
   Luxury CTA Card Section (Separated from Footer)
   ========================================================================== */
.section-cta-wrap {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: var(--bg-body);
  position: relative;
}

.cta-luxury-card {
  background: linear-gradient(140deg, #261f22 0%, #171315 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 4.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(43, 38, 34, 0.35), 0 0 50px -15px rgba(183, 110, 121, 0.25);
}

.cta-glow-left {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(var(--c-primary), 0.22);
  filter: blur(60px);
  pointer-events: none;
}

.cta-glow-right {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(var(--c-primary-light), 0.18);
  filter: blur(60px);
  pointer-events: none;
}

.cta-luxury-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.cta-luxury-title {
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.cta-luxury-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 2.75rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.cta-luxury-buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.cta-trust-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-trust-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(var(--c-primary), 0.3);
  color: var(--primary-light);
  font-size: 0.75rem;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .section-cta-wrap {
    padding-bottom: 4rem;
  }
  .cta-luxury-card {
    padding: 3rem 1.5rem;
    border-radius: var(--radius-lg);
  }
  .cta-trust-row {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
}

/* Footer */
.site-footer {
  background-color: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1.05fr 1.55fr;
  gap: 2.25rem;
  padding-bottom: 4rem;
}

.footer-brand h3 {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  color: #94a3b8;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.footer-social-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-heading {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  white-space: nowrap !important;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #cbd5e1;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #38bdf8;
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  transition: all 0.2s ease;
}

.footer-contact-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(56, 189, 248, 0.3);
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(2, 132, 199, 0.18);
  color: #38bdf8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.footer-contact-text {
  display: flex;
  flex-direction: column;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #cbd5e1;
}

.footer-contact-text strong {
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.footer-contact-text a {
  color: #38bdf8;
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-text a:hover {
  color: #7dd3fc;
}

.footer-bottom {
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Mobile Offcanvas Drawer (demo6 style dropdown/drawer) */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  z-index: 45;
  padding: 0 1.25rem;
}

.mobile-nav-drawer.active {
  display: block;
}

.mobile-nav-card {
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
  padding: 1.25rem 1.5rem;
}

.mobile-links {
  display: flex;
  flex-direction: column;
}

.mobile-links li {
  border-bottom: 1px solid var(--cream-deep);
}

.mobile-links li:last-child {
  border-bottom: none;
}

.mobile-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.mobile-links a:hover, .mobile-links a.active {
  color: var(--primary);
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .hero-grid, .about-split-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .pricing-card.featured {
    transform: none;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1180px) {
  .nav-menu, .header-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}

.skin-quiz-banner-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

@media (max-width: 991px) {
  .section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .about-split-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  /* Global Section & Container */
  .section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .container {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  /* Global Headings & Eyebrows */
  .section-header {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 2.25rem !important;
  }
  .eyebrow {
    justify-content: center !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: inline-flex !important;
    font-size: 0.72rem !important;
  }
  .display-1,
  .hero-title {
    text-align: center !important;
    font-size: clamp(1.6rem, 5.8vw, 2.35rem) !important;
    white-space: normal !important;
    line-height: 1.22 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .display-2,
  .section-title {
    text-align: center !important;
    font-size: clamp(1.35rem, 4.8vw, 1.95rem) !important;
    white-space: normal !important;
    line-height: 1.3 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .section-subtitle,
  .hero-description,
  .lead {
    text-align: center !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 540px !important;
  }

  .site-header .header-nav-pill {
    padding: 0.5rem 0.85rem !important;
  }
  .brand-logo-custom {
    gap: 8px !important;
  }
  .brand-logo-icon {
    width: 48px !important;
    height: 48px !important;
    font-size: 1.35rem !important;
    border-radius: 13px !important;
  }
  .brand-text-col .brand-title {
    font-size: 1.38rem !important;
  }
  .brand-text-col .brand-sub {
    font-size: 0.74rem !important;
  }

  /* Hero Section Centering */
  .hero-section {
    padding: 2.5rem 0 3.5rem 0 !important;
    text-align: center !important;
  }
  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .hero-cta-group {
    flex-direction: column !important;
    width: 100% !important;
    max-width: 360px !important;
    margin: 1.5rem auto 0 auto !important;
    gap: 10px !important;
  }
  .hero-cta-group .btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .hero-features-chips {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    margin: 1.25rem auto 0 auto !important;
  }
  .hero-stats-row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.75rem !important;
    justify-content: center !important;
    text-align: center !important;
    max-width: 440px !important;
    margin: 1.75rem auto 0 auto !important;
    width: 100% !important;
  }
  .hero-stats-row .stat-item {
    text-align: center !important;
    align-items: center !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .stat-item-num {
    font-size: 1.45rem !important;
  }
  .stat-item-label {
    font-size: 0.72rem !important;
  }

  /* Brands Ribbon */
  .brands-ribbon-section {
    padding: 1.25rem 0 !important;
    text-align: center !important;
  }
  .brands-ribbon-title {
    text-align: center !important;
  }

  /* About Summary / Neden Bizi Tercih Etmelisiniz Cards */
  .about-split-grid {
    text-align: center !important;
  }
  .feature-list {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }
  .feature-item {
    width: 100% !important;
    max-width: 360px !important;
    justify-content: flex-start !important;
  }

  /* Services Grid & Cards */
  .services-grid, 
  .team-grid, 
  .blog-grid,
  .testimonials-grid,
  .before-after-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .service-card,
  .ba-card,
  .testimonial-card,
  .blog-card,
  .team-card {
    text-align: center !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 440px !important;
  }
  .service-card-body,
  .testimonial-card,
  .blog-card-body,
  .team-info {
    text-align: center !important;
    align-items: center !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .service-meta-row {
    justify-content: center !important;
  }
  .service-card-footer {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.85rem !important;
    width: 100% !important;
    text-align: center !important;
  }
  .service-card-footer .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  /* Before / After Slider Mobile */
  .ba-slider-container {
    height: 230px !important;
  }

  /* Arıza Tespit Banner Mobile */
  .skin-quiz-banner-grid {
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.25rem !important;
  }
  .skin-quiz-banner-grid .btn {
    width: 100% !important;
    max-width: 360px !important;
    justify-content: center !important;
    margin: 0 auto !important;
  }

  /* Stats Section Mobile */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
    text-align: center !important;
  }

  /* CTA Luxury Banner Mobile */
  .section-cta-wrap {
    padding-top: 1rem !important;
    padding-bottom: 3.5rem !important;
  }
  .cta-luxury-card {
    padding: 2.5rem 1.25rem !important;
    border-radius: 18px !important;
    text-align: center !important;
  }
  .cta-luxury-title {
    font-size: clamp(1.25rem, 4.8vw, 1.8rem) !important;
    white-space: normal !important;
    line-height: 1.3 !important;
    text-align: center !important;
    margin-bottom: 0.75rem !important;
  }
  .cta-luxury-desc {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    text-align: center !important;
    margin-bottom: 1.75rem !important;
  }
  .cta-luxury-buttons {
    flex-direction: column !important;
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto 1.5rem auto !important;
    gap: 10px !important;
  }
  .cta-luxury-buttons .btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .cta-trust-row {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.75rem !important;
    text-align: center !important;
    padding-top: 1.25rem !important;
  }

  /* Footer Mobile Centering */
  .site-footer {
    text-align: center !important;
    padding-top: 3.5rem !important;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2.25rem !important;
    text-align: center !important;
  }
  .footer-grid > div {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }
  .footer-brand {
    align-items: center !important;
    text-align: center !important;
  }
  .footer-desc {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 440px !important;
  }
  .footer-trust-badges {
    justify-content: center !important;
    flex-wrap: wrap !important;
    margin: 1rem auto 1.25rem auto !important;
  }
  .footer-social-links {
    justify-content: center !important;
    margin: 0 auto !important;
  }
  .footer-heading {
    text-align: center !important;
  }
  .footer-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 0 !important;
  }
  .footer-links li {
    text-align: center !important;
  }
  .footer-contact-list {
    align-items: center !important;
    width: 100% !important;
  }
  .footer-contact-item {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 380px !important;
    margin: 0 auto !important;
    padding: 1rem !important;
  }
  .footer-contact-icon {
    margin: 0 auto 0.5rem auto !important;
  }
  .footer-contact-text {
    align-items: center !important;
    text-align: center !important;
  }
  .footer-bottom {
    flex-direction: column !important;
    gap: 0.75rem !important;
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
  }

  /* Form & Wizard Mobile Centering */
  .form-grid-2 {
    grid-template-columns: 1fr !important;
  }
  .time-slots-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .appointment-wizard-card {
    padding: 2rem 1.25rem !important;
    border-radius: 16px !important;
  }
}

@media (max-width: 480px) {
  .hero-stats-row {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .stats-grid {
    grid-template-columns: 1fr !important;
  }
  .btn {
    width: 100% !important;
  }
}

/* ==========================================================================
   DARK LUXURY THEME
   ========================================================================== */
body.dark-theme {
  --bg-body: #12100e;
  --bg-surface: #1c1917;
  --text-main: #d6d3d1;
  --text-title: #fdfbf7;
  --text-muted: #a8a29e;
  --cream: #1e1b18;
  --cream-deep: #292524;
  --color-border: rgba(255, 255, 255, 0.1);
  --color-card-bg: #1c1917;
  --color-surface: #171513;
  --shadow-card: 0 18px 40px -24px rgba(0, 0, 0, 0.6);
  --shadow-soft: 0 24px 60px -28px rgba(0, 0, 0, 0.7);
}

body.dark-theme .site-header .header-nav-pill {
  background: rgba(28, 25, 23, 0.85);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

body.dark-theme .nav-link {
  color: #e7e5e4;
}

body.dark-theme .service-card-luxury,
body.dark-theme .card-luxury,
body.dark-theme .appointment-wizard-card,
body.dark-theme .testimonial-card,
body.dark-theme .pricing-card-luxury,
body.dark-theme .mobile-nav-card {
  background: #1c1917;
  border-color: rgba(255, 255, 255, 0.08);
  color: #d6d3d1;
}

body.dark-theme .theme-toggle-btn {
  color: #fbbf24;
}

body.dark-theme .form-control {
  background: #24201d;
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

body.dark-theme .specialist-card-chip {
  background: #24201d;
  border-color: rgba(255, 255, 255, 0.1);
  color: #e7e5e4;
}

/* ==========================================================================
   SMART WHATSAPP FLOATING WIDGET
   ========================================================================== */
.smart-wa-widget-wrapper {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
}

.smart-wa-trigger-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  position: relative;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.smart-wa-trigger-btn:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.smart-wa-badge-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  background: #10b981;
  border: 2px solid #ffffff;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.smart-wa-card {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 320px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 0, 0, 0.08);
  animation: wa-slide-up 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: bottom right;
}

body.dark-theme .smart-wa-card {
  background: #1c1917;
  border-color: rgba(255, 255, 255, 0.12);
}

@keyframes wa-slide-up {
  from { opacity: 0; transform: translateY(15px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.smart-wa-header {
  background: #075E54;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.smart-wa-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.smart-wa-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.8;
}
.smart-wa-close:hover { opacity: 1; }

.smart-wa-body {
  padding: 1.25rem 1rem;
}

.smart-wa-quick-btn {
  display: block;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  background: rgba(37, 211, 102, 0.08);
  color: #128C7E;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  border: 1px solid rgba(37, 211, 102, 0.2);
  transition: all 0.2s ease;
}

.smart-wa-quick-btn:hover {
  background: #25D366;
  color: #ffffff;
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .smart-wa-widget-wrapper {
    display: none !important;
  }
}

/* ==========================================================================
   LEFT FIXED PHONE CALL BUTTON
   ========================================================================== */
.smart-call-widget-wrapper {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 9999;
}

.smart-call-trigger-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  background: var(--primary, #c5a880);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(197, 168, 128, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  animation: pulse-call-shadow 3s infinite;
}

.smart-call-trigger-btn:hover {
  transform: scale(1.06) translateY(-2px);
  background: var(--primary-dark, #925861);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(183, 110, 121, 0.55);
}

.smart-call-trigger-btn svg {
  animation: shake-phone 4s infinite ease-in-out;
}

@keyframes shake-phone {
  0%, 85%, 100% { transform: rotate(0deg); }
  87% { transform: rotate(-15deg); }
  90% { transform: rotate(15deg); }
  93% { transform: rotate(-10deg); }
  96% { transform: rotate(10deg); }
}

@keyframes pulse-call-shadow {
  0% { box-shadow: 0 0 0 0 rgba(197, 168, 128, 0.6), 0 10px 25px rgba(0,0,0,0.15); }
  70% { box-shadow: 0 0 0 12px rgba(197, 168, 128, 0), 0 10px 25px rgba(0,0,0,0.15); }
  100% { box-shadow: 0 0 0 0 rgba(197, 168, 128, 0), 0 10px 25px rgba(0,0,0,0.15); }
}

@media (max-width: 768px) {
  .smart-call-widget-wrapper {
    display: none !important;
  }
}

/* ==========================================================================
   TERMO-KLIMA HVAC CUSTOM COMPONENT STYLES
   ========================================================================== */
.brand-logo-custom {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo-icon {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  background: linear-gradient(135deg, #0284c7 0%, #f97316 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.4);
  flex-shrink: 0;
}

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

.brand-text-col .brand-title {
  font-size: 1.68rem;
  font-weight: 900;
  color: var(--text-title);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.brand-text-col .brand-sub {
  font-size: 0.82rem;
  color: var(--color-primary, #0284c7);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f97316;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
  animation: pulse-dot-anim 1.8s infinite;
}

@keyframes pulse-dot-anim {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(249, 115, 22, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

.badge-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 30px;
  background: rgba(2, 132, 199, 0.08);
  color: var(--text-title);
  border: 1px solid rgba(2, 132, 199, 0.2);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-eyebrow-badge {
  background: rgba(2, 132, 199, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(2, 132, 199, 0.2);
  white-space: nowrap !important;
  font-size: 0.76rem !important;
  padding: 5px 12px !important;
  letter-spacing: 0.05em !important;
}

.hero-single-line-title {
  white-space: nowrap !important;
}

/* Brands Ribbon */
.brands-ribbon-section {
  padding: 1.75rem 0;
  background: #ffffff;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.brands-ribbon-title {
  text-align: center;
  margin-bottom: 1rem;
}

.brands-ribbon-title span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.brands-grid-pills {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  overflow-x: auto !important;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.brands-grid-pills::-webkit-scrollbar {
  display: none;
}

.brand-pill {
  padding: 5px 11px !important;
  border-radius: 6px !important;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  transition: all 0.2s ease;
}

.brand-pill:hover {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
  transform: translateY(-2px);
}

/* Zero-Overflow & Zero-Bottom-Gap Global Viewport Rules */
html {
  min-height: 100% !important;
  background-color: var(--ink, #0f172a) !important;
  overflow-x: clip !important;
  max-width: 100vw !important;
  width: 100% !important;
  position: relative;
}

body {
  min-height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
  background-color: var(--bg-body, #f8fafc) !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: clip !important;
  max-width: 100vw !important;
  width: 100% !important;
  position: relative;
}

main {
  flex: 1 0 auto !important;
  width: 100% !important;
}

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

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

/* ==========================================================================
   WHY CHOOSE US COMPONENT STYLES
   ========================================================================== */
.about-summary-section {
  padding: 4.5rem 0;
  overflow: hidden;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  width: 100%;
  box-sizing: border-box;
}

.why-us-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2rem 1.75rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.07);
}

.why-us-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.why-us-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.why-us-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 0.6rem;
  line-height: 1.3;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.why-us-desc {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0;
}

.why-us-cta-strip {
  background: #0f172a;
  border-radius: 20px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  flex-wrap: wrap;
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.why-us-cta-text-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  max-width: 650px;
}

.why-us-cta-flame {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.why-us-cta-heading {
  font-size: 1.15rem;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.why-us-cta-sub {
  font-size: 0.88rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.5;
}

.why-us-cta-btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Before / After Showcase */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  width: 100%;
  box-sizing: border-box;
}

.ba-card {
  background: var(--color-card-bg, #ffffff);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border, #e5e7eb);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  width: 100%;
}

.ba-slider-container {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
}

.ba-meta-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  margin-bottom: 0.5rem;
}

.ba-sub-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ba-badge-pill {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  background: rgba(2, 132, 199, 0.12);
  color: var(--color-primary);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Brands Ribbon Desktop Defaults */
.brands-ribbon-section {
  padding: 1.75rem 0;
  background: #ffffff;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  width: 100%;
}

.brands-ribbon-title {
  text-align: center;
  margin-bottom: 1rem;
}

.brands-ribbon-title span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.brands-grid-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  box-sizing: border-box;
}

.brands-grid-pills::-webkit-scrollbar {
  display: none;
}

.brand-pill {
  padding: 5px 11px;
  border-radius: 6px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.brand-pill:hover {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
  transform: translateY(-2px);
}

.hero-features-chips {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  margin-top: 1.5rem;
}

.hero-features-chips::-webkit-scrollbar {
  display: none;
}

.hero-features-chips .badge-trust-pill {
  flex-shrink: 0;
  white-space: nowrap;
  background: rgba(15, 23, 42, 0.05);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 30px;
}

.footer-trust-badges {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-trust-badges .badge-trust-pill {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
}

.cta-luxury-title {
  font-size: clamp(1.3rem, 2.6vw, 2.2rem);
  white-space: nowrap;
}

/* ==========================================================================
   MOBILE RESPONSIVE OVERRIDES (MAX-WIDTH: 768px)
   ========================================================================== */
@media (max-width: 768px) {
  .section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    overflow: hidden !important;
  }

  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Sticky Mobile Header (Floats with scroll) */
  .site-header {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    padding: 8px 0 4px 0 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
    z-index: 1000 !important;
  }

  .site-header .container {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .header-nav-pill {
    padding: 5px 12px 5px 8px !important;
    border-radius: 50px !important;
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
    gap: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .site-header.scrolled .header-nav-pill {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12) !important;
    border: 1px solid rgba(2, 132, 199, 0.2) !important;
  }

  .brand-logo-custom {
    gap: 8px !important;
  }

  .brand-logo-icon {
    width: 36px !important;
    height: 36px !important;
    font-size: 1rem !important;
    border-radius: 50% !important;
  }

  .brand-text-col .brand-title {
    font-size: 1.12rem !important;
    line-height: 1 !important;
  }

  .brand-text-col .brand-sub {
    font-size: 0.6rem !important;
    margin-top: 1px !important;
  }

  .header-actions {
    gap: 6px !important;
  }

  .header-cta {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: inline-flex !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: #f1f5f9 !important;
    color: #0f172a !important;
    border: 1px solid #e2e8f0 !important;
    padding: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
  }

  .mobile-menu-toggle svg {
    width: 18px !important;
    height: 18px !important;
  }

  /* Compact Mobile Menu Drawer */
  .mobile-nav-drawer {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    padding: 0.4rem 0.65rem !important;
    z-index: 999 !important;
    max-height: calc(100vh - 75px) !important;
    overflow-y: auto !important;
  }

  .mobile-nav-card {
    padding: 1rem !important;
    border-radius: 16px !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    background: #ffffff !important;
  }

  .mobile-links li a {
    padding: 0.55rem 0.25rem !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
  }

  /* Headings & Texts */
  .section-header {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 2rem !important;
  }

  .eyebrow {
    justify-content: center !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: inline-flex !important;
    font-size: 0.72rem !important;
  }

  .hero-eyebrow-badge {
    white-space: normal !important;
    text-align: center !important;
    font-size: clamp(0.62rem, 2.5vw, 0.74rem) !important;
    padding: 4px 10px !important;
    letter-spacing: 0.01em !important;
    max-width: 100% !important;
    margin: 0 auto 0.65rem auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .display-1,
  .page-hero-title,
  .blog-detail-title,
  .page-title {
    text-align: center !important;
    font-size: clamp(1.4rem, 5.5vw, 1.95rem) !important;
    white-space: normal !important;
    line-height: 1.28 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-single-line-title,
  .page-hero-title,
  .page-title,
  .page-header-hero h1,
  .page-header h1 {
    text-align: center !important;
    font-size: clamp(0.88rem, 4.3vw, 1.55rem) !important;
    white-space: nowrap !important;
    line-height: 1.25 !important;
    letter-spacing: -0.01em !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .section-title,
  .display-2 {
    text-align: center !important;
    font-size: clamp(1.25rem, 4.6vw, 1.8rem) !important;
    white-space: normal !important;
    line-height: 1.3 !important;
  }

  .section-subtitle,
  .hero-description {
    text-align: center !important;
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-left: none !important;
    padding-left: 0 !important;
  }

  /* Hero Mobile */
  .hero-section {
    padding: 1.5rem 0 2.5rem 0 !important;
    overflow: hidden !important;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 1.75rem !important;
    text-align: center !important;
  }

  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .hero-cta-group {
    flex-direction: column !important;
    width: 100% !important;
    max-width: 360px !important;
    margin: 1.25rem auto 0 auto !important;
    gap: 10px !important;
  }

  .hero-cta-group .btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .hero-features-chips {
    justify-content: center !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
    gap: 6px !important;
    margin: 1.25rem auto 0 auto !important;
    width: 100% !important;
    padding-bottom: 2px !important;
  }

  .hero-features-chips .badge-trust-pill {
    font-size: 0.74rem !important;
    padding: 5px 9px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }

  .hero-stats-row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.5rem !important;
    max-width: 100% !important;
    margin: 1.5rem auto 0 auto !important;
    width: 100% !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
    padding-top: 1.25rem !important;
  }

  .hero-stats-row .stat-item {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .stat-item-num {
    font-size: 1.35rem !important;
  }

  .stat-item-label {
    font-size: 0.7rem !important;
  }

  .hero-image-wrapper {
    width: 100% !important;
    max-width: 440px !important;
    margin: 1rem auto 0 auto !important;
  }

  .hero-image-frame {
    height: 230px !important;
    aspect-ratio: auto !important;
    border-radius: 18px !important;
  }

  .hero-floating-dispatch-card {
    margin-top: 1rem !important;
    position: static !important;
    max-width: 100% !important;
    border-radius: 16px !important;
    padding: 1rem !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
  }

  /* Brands Ribbon Mobile */
  .brands-grid-pills {
    justify-content: flex-start !important;
    overflow-x: auto !important;
    padding: 6px 1rem !important;
  }

  /* Why Us Cards Mobile */
  .about-summary-section {
    padding: 3rem 0 !important;
  }

  .why-us-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
    margin-bottom: 2.5rem !important;
  }

  .why-us-card {
    text-align: center !important;
    align-items: center !important;
    padding: 1.5rem 1.25rem !important;
  }

  .why-us-icon {
    margin: 0 auto 1rem auto !important;
  }

  .why-us-cta-strip {
    padding: 1.5rem 1.25rem !important;
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
    gap: 1.25rem !important;
  }

  .why-us-cta-text-wrap {
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
  }

  .why-us-cta-flame {
    margin: 0 auto 0.5rem auto !important;
  }

  .why-us-cta-btn-group {
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.75rem !important;
  }

  .why-us-cta-btn-group .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  /* Services, Stats, Before/After, Team, Testimonials, Blog Mobile */
  .services-grid,
  .before-after-grid,
  .team-grid,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }

  .stat-box {
    padding: 1.5rem 1rem !important;
  }

  .service-card,
  .ba-card,
  .testimonial-card,
  .blog-card,
  .team-card {
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .ba-slider-container {
    height: 220px !important;
  }

  .service-card-body,
  .blog-card-body,
  .testimonial-card,
  .team-info {
    text-align: center !important;
    align-items: center !important;
  }

  .service-meta-row {
    justify-content: center !important;
  }

  .service-card-footer {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.85rem !important;
    width: 100% !important;
  }

  .service-card-footer .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  /* Diagnostic Wizard Banner Mobile */
  .skin-quiz-banner-grid {
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
    gap: 1.25rem !important;
  }

  .skin-quiz-banner-grid .btn {
    width: 100% !important;
    max-width: 340px !important;
    justify-content: center !important;
  }

  /* CTA Luxury Card Mobile */
  .section-cta-wrap {
    padding-top: 1rem !important;
    padding-bottom: 3rem !important;
    overflow: hidden !important;
  }

  .cta-luxury-card {
    padding: 2.25rem 1.25rem !important;
    text-align: center !important;
    overflow: hidden !important;
  }

  .cta-luxury-title {
    font-size: clamp(1.2rem, 4.6vw, 1.7rem) !important;
    white-space: normal !important;
    line-height: 1.3 !important;
    text-align: center !important;
    margin-bottom: 0.75rem !important;
  }

  .cta-luxury-desc {
    font-size: 0.92rem !important;
    text-align: center !important;
    margin-bottom: 1.5rem !important;
  }

  .cta-luxury-buttons {
    flex-direction: column !important;
    width: 100% !important;
    max-width: 340px !important;
    margin: 0 auto 1.5rem auto !important;
    gap: 10px !important;
  }

  .cta-luxury-buttons .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  .cta-trust-row {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.65rem !important;
    text-align: center !important;
    padding-top: 1.25rem !important;
  }

  /* Footer Mobile */
  .site-footer {
    text-align: center !important;
    padding-top: 2.25rem !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    overflow: hidden !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 1.75rem !important;
    padding-bottom: 1.5rem !important;
    text-align: center !important;
  }

  .footer-grid > div {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .footer-brand {
    align-items: center !important;
    text-align: center !important;
  }

  .footer-trust-badges {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    margin: 0.75rem auto 1rem auto !important;
  }

  .footer-trust-badges .badge-trust-pill {
    font-size: 0.76rem !important;
    padding: 5px 10px !important;
  }

  .footer-social-links {
    justify-content: center !important;
    margin: 0 auto !important;
  }

  .footer-heading {
    text-align: center !important;
    white-space: normal !important;
    margin-bottom: 0.75rem !important;
  }

  .footer-links {
    align-items: center !important;
    text-align: center !important;
    padding: 0 !important;
  }

  .footer-links li {
    margin-bottom: 0.45rem !important;
  }

  .footer-contact-list {
    align-items: center !important;
    width: 100% !important;
    gap: 0.65rem !important;
  }

  .footer-contact-item {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto !important;
    padding: 0.75rem 1rem !important;
  }

  .footer-contact-icon {
    margin: 0 auto 0.35rem auto !important;
  }

  .footer-contact-text {
    align-items: center !important;
    text-align: center !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 0.5rem !important;
    text-align: center !important;
    align-items: center !important;
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
    margin-bottom: 0 !important;
  }

  .footer-bottom > * {
    margin: 0 !important;
  }
}

/* ==========================================================================
   ABOUT & BLOG DETAIL RESPONSIVE STYLES
   ========================================================================== */
.about-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.about-images-collage {
  width: 100%;
  max-width: 100%;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
  width: 100%;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  width: 100%;
}

.blog-rich-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-text);
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.blog-rich-content img {
  max-width: 100% !important;
  height: auto !important;
  border-radius: 12px;
  margin: 1.5rem 0;
}

.blog-rich-content h2, 
.blog-rich-content h3, 
.blog-rich-content h4 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
  line-height: 1.35;
  word-break: break-word;
}

.blog-rich-content ol, 
.blog-rich-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.blog-rich-content li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .about-split-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .about-images-collage {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto 1.5rem auto !important;
    width: 100% !important;
    max-width: 520px !important;
    text-align: center !important;
  }

  .about-img-main {
    margin: 0 auto !important;
    width: 100% !important;
    text-align: center !important;
  }

  .about-img-main img {
    margin: 0 auto !important;
    display: block !important;
    max-width: 100% !important;
  }

  .about-content-col {
    text-align: center !important;
  }
  
  .about-content-col .section-title {
    text-align: center !important;
  }

  .about-content-col .eyebrow {
    margin: 0 auto 0.5rem auto !important;
  }

  .feature-item {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.75rem !important;
  }

  .blog-author-card {
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
  }

  .blog-meta-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    font-size: clamp(0.55rem, 2.35vw, 0.76rem) !important;
    letter-spacing: -0.02em !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0.75rem auto 0 auto !important;
  }

  .blog-meta-row span {
    white-space: nowrap !important;
    display: inline !important;
  }

  .blog-meta-row span:nth-child(2),
  .blog-meta-row span:nth-child(4) {
    display: inline !important;
  }
}



