/* ==========================================================================
   LUNARTE - EDITORIAL AUTOMOTIVE DESIGN SYSTEM (NATURAL & HUMAN)
   Color Principal: #A3380E (Terracota / Naranja Seguridad)
   ========================================================================== */

:root {
  /* Color Palette - Clean & Warm Monochrome */
  --bg-main: #F7F7F4;
  --bg-surface: #FCFCFA;
  --bg-subtle: #EFEFEA;
  --bg-dark: #141416;

  --border-light: #DEDED8;
  --border-subtle: rgba(0, 0, 0, 0.08);
  --border-accent: rgba(163, 56, 14, 0.25);

  --accent-primary: #A3380E;
  --accent-hover: #BF4312;
  --accent-soft: #FDF3EF;
  --accent-text: #8A2B08;

  --text-main: #1A1A1C;
  --text-muted: #57575E;
  --text-subtle: #84848D;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --radius-card: 12px;
  --radius-sm: 8px;
  --radius-btn: 8px;
  --radius-pill: 9999px;
  --shadow-subtle: 0 8px 24px rgba(43, 31, 24, 0.035);
  --shadow-hover: 0 18px 42px rgba(43, 31, 24, 0.09);

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

:focus-visible {
  outline: 3px solid var(--accent-primary);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1200;
  padding: 10px 14px;
  background: var(--text-main);
  color: #FFFFFF;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

body {
  min-height: 100dvh;
}

h1, h2, h3 {
  text-wrap: balance;
}

p, li {
  text-wrap: pretty;
}

body.menu-open {
  overflow: hidden;
}

.footer-hours {
  color: #A0A0AA;
}

.text-accent {
  color: var(--accent-primary);
}

.calc-estimate-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-primary);
}

.calc-details-text {
  font-weight: 700;
  color: var(--text-main);
  font-size: 1rem;
}

.calc-result-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.breadcrumb-current {
  color: var(--text-main);
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   HEADER & NAVIGATION - BULLETPROOF & RESPONSIVE
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(252, 252, 250, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: none;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 18px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

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

.brand-accent-badge {
  color: var(--accent-text);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 0;
  border-radius: 0;
  letter-spacing: 0;
}

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

.nav-menu > li > a,
.nav-menu > li > .dropdown-trigger {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  cursor: pointer;
}

.nav-menu > li > a:hover,
.nav-menu > li > .dropdown-trigger:hover,
.nav-menu > li > a.active,
.nav-menu > li > .dropdown-trigger.active {
  color: var(--accent-primary);
}

/* HEADER DROPDOWN STABILITY BRIDGE */
.nav-dropdown {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: -8px;
}

.dropdown-trigger svg {
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-trigger svg {
  transform: rotate(180deg);
  color: var(--accent-primary);
}

.nav-dropdown.dropdown-open .dropdown-trigger svg {
  transform: rotate(180deg);
  color: var(--accent-primary);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  width: 320px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 8px;
  box-shadow: 0 20px 44px rgba(43, 31, 24, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1100;
}

/* ZONES DROPDOWN - ELEGANT 2-COLUMN GRID */
.dropdown-menu-zones {
  width: 360px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 12px;
}

/* Invisible bridge so mouse hover doesn't break when moving cursor down */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.dropdown-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 11px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.dropdown-item:hover {
  background: var(--accent-soft);
}

.dropdown-item-title {
  font-weight: 700;
  font-size: 0.925rem;
  color: var(--text-main);
  margin-bottom: 2px;
}

.dropdown-item:hover .dropdown-item-title {
  color: var(--accent-primary);
}

.dropdown-item-desc {
  font-size: 0.775rem;
  color: var(--text-muted);
  font-weight: 400;
}

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

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.925rem;
  padding: 10px 16px;
  border-radius: var(--radius-btn);
  background: transparent;
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.header-phone:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

/* MOBILE TOGGLE BUTTON */
.mobile-toggle {
  display: none;
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-btn);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.mobile-toggle:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

/* Button UI Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(163, 56, 14, 0.25);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 20px rgba(163, 56, 14, 0.35);
  transform: translateY(-1px);
}

.btn:active,
.mobile-toggle:active,
.calc-option:active,
.zone-card:active {
  transform: translateY(1px) scale(0.98);
}

.btn-whatsapp {
  background: var(--accent-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(163, 56, 14, 0.25);
}

.btn-whatsapp:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 20px rgba(163, 56, 14, 0.35);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-main);
  border-color: var(--border-light);
}

.btn-secondary:hover {
  background: var(--bg-subtle);
  border-color: #CCCCCC;
}

/* Breadcrumb Navigation */
.breadcrumb-bar {
  padding: 16px 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.breadcrumb-list a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.breadcrumb-list a:hover {
  color: var(--accent-primary);
}

.breadcrumb-separator {
  color: var(--text-subtle);
}

/* Section Header styling */
.section-header {
  text-align: left;
  max-width: 760px;
  margin: 0 0 56px;
}

.section-header .tag-label {
  display: none;
}

.comparison-section .section-header,
.comparison-section .section-lead,
.comparison-item-header {
  max-width: 900px;
}

.comparison-section .section-header,
.calc-section .section-header,
.faq-section .section-header {
  margin-right: auto;
  margin-left: auto;
}

.calc-section .section-header {
  max-width: 820px;
  margin-left: auto;
  text-align: center;
}

.faq-section .section-header {
  max-width: 780px;
  margin-left: auto;
  text-align: center;
}

.tag-label {
  display: inline-block;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--accent-primary);
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-bottom: 14px;
}

.section-h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 64ch;
}

/* Card Style - Clean Editorial */
.card-clean {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: none;
  transition: var(--transition-smooth);
}

.card-clean:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(163, 56, 14, 0.24);
  transform: translateY(-2px);
}

/* HERO SECTION */
.hero-section {
  padding: 72px 0 88px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(44px, 5vw, 68px);
  align-items: center;
}

.hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.045em;
  color: var(--text-main);
  margin-bottom: 20px;
}

.hero-text {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.65;
  max-width: 62ch;
}

.hero-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent-soft);
  border: 1px solid var(--border-accent);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 32px;
}

.hero-price-badge span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-price-badge strong {
  font-size: 1.15rem;
  color: var(--accent-primary);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  box-shadow: var(--shadow-subtle);
}

.trust-pill svg {
  color: var(--accent-primary);
  flex-shrink: 0;
}

.hero-media {
  position: relative;
}

.hero-img-box {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 24px 50px rgba(43, 31, 24, 0.1);
}

.hero-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-floating-info {
  position: absolute;
  bottom: -24px;
  left: 24px;
  z-index: 10;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  padding: 16px 20px;
  border-radius: var(--radius-card);
  box-shadow: 0 16px 34px rgba(43, 31, 24, 0.11);
  display: flex;
  align-items: center;
  gap: 14px;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.info-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}
.info-text p {
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* HIGHLIGHTS BAR */
.highlights-bar {
  padding: 40px 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
}

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

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-right: 18px;
  border-right: 1px solid var(--border-light);
}

.highlight-item:last-child {
  border-right: 0;
}

.hl-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  flex-shrink: 0;
}

.hl-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.hl-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* SERVICES SECTION */
.services-section {
  padding: 112px 0 124px;
}

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

.service-card-top {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--border-light);
}

.service-card-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth), filter 0.6s var(--transition-smooth);
}

.service-card:hover .service-card-top img {
  transform: scale(1.025);
  filter: contrast(1.03);
}

.service-price-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent-primary);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.975rem;
  margin-bottom: 20px;
}

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

.service-card .checklist {
  flex-grow: 1;
}

.urban-services-block {
  margin: 36px 0;
  padding: clamp(24px, 3vw, 36px);
  background: var(--bg-subtle);
  border: 0;
  border-top: 3px solid var(--accent-primary);
  border-radius: var(--radius-card);
}

.urban-services-block > h2:first-child {
  margin-top: 0;
}

.urban-service-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.urban-service-item {
  padding: 22px;
  background: var(--bg-surface);
  border: 0;
  border-radius: var(--radius-btn);
}

.urban-service-item h3 {
  margin-bottom: 10px;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.urban-service-item p {
  margin-bottom: 16px;
  font-size: 0.94rem;
}

.urban-service-link {
  color: var(--accent-primary);
  font-size: 0.88rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.925rem;
  color: var(--text-main);
}

.checklist svg {
  color: var(--accent-primary);
  flex-shrink: 0;
}

/* SERVICE DETAIL PAGE STYLES */
.service-detail-section {
  padding: 80px 0 112px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(48px, 7vw, 88px);
}

.service-content-body h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 48px 0 16px;
  letter-spacing: -0.025em;
}

.service-content-body p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.specs-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: none;
  border-top: 3px solid var(--accent-primary);
  position: sticky;
  top: 100px;
}

.specs-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--bg-subtle);
  font-size: 0.925rem;
}

.spec-item label {
  color: var(--text-muted);
  font-weight: 500;
}

.spec-item span {
  color: var(--text-main);
  font-weight: 700;
}

/* ZONES SECTION */
.zones-section {
  padding: 104px 0 116px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.zone-card {
  min-height: 60px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-btn);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25;
  transition: var(--transition-fast);
}

.zone-card:hover {
  background: var(--bg-surface);
  border-color: #CFCFC9;
  color: var(--text-main);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 26, 28, 0.06);
}

.zone-card svg,
.zone-card > [aria-hidden="true"] {
  display: none;
}

.zone-card::after {
  content: '→';
  color: var(--text-main);
  flex: 0 0 auto;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  transition: var(--transition-fast);
}

.zone-card:hover::after {
  color: var(--text-main);
  transform: translateX(3px);
}

.neighborhood-section {
  background: var(--bg-main);
}

.neighborhood-hero {
  padding: 56px 0 72px;
}

.neighborhood-context-grid,
.neighborhood-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 28px 0 40px;
}

.neighborhood-context-grid .card-clean,
.neighborhood-services .card-clean {
  padding: 24px;
}

.neighborhood-context-grid h3,
.neighborhood-services h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  line-height: 1.3;
  margin: 8px 0 10px;
}

.context-label {
  color: var(--accent-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
}

.neighborhood-services a {
  color: var(--accent-primary);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.neighborhood-booking {
  width: 100%;
  margin-top: 24px;
}

.neighborhood-related {
  background: var(--bg-main);
}

@media (max-width: 720px) {
  .neighborhood-context-grid,
  .neighborhood-services {
    grid-template-columns: 1fr;
  }
}

.zone-info-box {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.city-landing .zone-info-box {
  margin-left: 0;
  margin-right: 0;
}

.local-profile-section {
  padding: 88px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.local-profile-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}

.local-profile-points {
  border-top: 1px solid var(--border-light);
}

.local-profile-points article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
}

.local-profile-points article > span {
  color: var(--accent-primary);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
}

.local-profile-points h3 {
  margin-bottom: 6px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.local-profile-points p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

/* REQUIREMENTS SECTION */
.req-section {
  padding: 104px 0 116px;
}

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

.req-card {
  text-align: left;
  border-top: 3px solid var(--accent-primary);
}

.req-icon-frame {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.req-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
}

.req-card p {
  font-size: 0.925rem;
  color: var(--text-muted);
}

/* BEFORE / AFTER SLIDER SECTION */
.comparison-section {
  padding: 104px 0 116px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

.comparison-section .section-header {
  text-align: center;
}

.before-after-slider {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.comparison-item {
  margin-bottom: 68px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-item-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto 16px;
}

.comparison-item-header h3 {
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

.comparison-state-labels {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.85rem;
  white-space: nowrap;
}

.comparison-state-labels span:first-child {
  color: var(--accent-primary);
  font-weight: 700;
}

.comparison-state-labels span:last-child {
  color: var(--text-main);
  font-weight: 600;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.label-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}

.label-after {
  background: var(--accent-primary);
  color: #FFFFFF;
}

.label-before {
  background: var(--bg-subtle);
  color: var(--text-muted);
  border: 1px solid var(--border-light);
}

.slider-media-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-hover);
  background: #111115;
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
}

.slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent-primary);
  z-index: 3;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 10px rgba(163, 56, 14, 0.6);
}

.slider-knob {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.slider-range-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 5;
  cursor: ew-resize;
  margin: 0;
  pointer-events: none;
}

/* CALCULATOR & BOOKING SECTION */
.calc-section {
  padding: 104px 0 116px;
}

.calc-box {
  max-width: 820px;
  margin: 0 auto;
}

.calc-group-label {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--text-main);
  margin-bottom: 12px;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.calc-option {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-body);
}

.calc-option:hover {
  border-color: #BBBBBB;
}

.calc-option.active {
  background: var(--accent-soft);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  font-weight: 700;
}

.calc-option h5 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.calc-option p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.calc-result-bar {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.result-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-primary);
}

/* CONTACT PAGE */
.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 104px;
  background:
    linear-gradient(90deg, rgba(229, 229, 224, 0.45) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(229, 229, 224, 0.45) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--bg-main);
}

.contact-hero::before {
  content: '';
  position: absolute;
  width: 460px;
  height: 460px;
  right: -180px;
  top: -220px;
  border: 70px solid var(--accent-soft);
  border-radius: 50%;
  pointer-events: none;
}

.contact-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.contact-intro {
  padding-top: 20px;
}

.contact-intro .hero-h1 {
  max-width: 10ch;
}

.contact-intro .hero-text {
  max-width: 54ch;
}

.contact-direct-list {
  border-top: 1px solid var(--border-light);
  margin-top: 40px;
}

.contact-direct-item {
  min-height: 76px;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 16px;
  color: var(--text-main);
  text-decoration: none;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.contact-direct-item:hover {
  color: var(--accent-primary);
  padding-left: 6px;
}

.contact-direct-icon {
  color: var(--accent-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.contact-direct-item small,
.contact-direct-item strong {
  display: block;
}

.contact-direct-item small {
  color: var(--text-subtle);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
}

.contact-direct-item strong {
  margin-top: 2px;
  overflow-wrap: anywhere;
}

.contact-requirements {
  margin-top: 32px;
  padding: 18px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
}

.contact-requirements strong {
  font-family: var(--font-heading);
  display: block;
  color: var(--text-main);
  font-size: 0.95rem;
}

.contact-requirements p {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-form-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 20px 48px rgba(46, 30, 24, 0.06);
}

.contact-form-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border-light);
}

.contact-form-heading span {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
}

.contact-form-heading strong {
  color: var(--accent-primary);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px;
}

.form-field {
  min-width: 0;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-main);
  font-size: 0.82rem;
  font-weight: 700;
}

.form-field label span {
  color: var(--accent-primary);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--text-main);
  background: var(--bg-main);
  border: 1px solid #D6D6D0;
  border-radius: var(--radius-btn);
  font: inherit;
  transition: var(--transition-fast);
}

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

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #74747C;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: #B8B8B2;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(163, 56, 14, 0.16);
  background: var(--bg-surface);
}

.form-field [aria-invalid="true"] {
  border-color: #A61B1B;
  background: #FFF8F7;
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 5px;
  color: #8F1515;
  font-size: 0.75rem;
  line-height: 1.4;
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
  cursor: pointer;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--accent-primary);
  flex: 0 0 auto;
}

.consent-error {
  margin-left: 28px;
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: var(--radius-btn);
  font-size: 0.85rem;
}

.form-status.error {
  display: block;
  color: #7F1717;
  background: #FFF0EE;
  border: 1px solid #ECC8C3;
}

.form-status.success {
  display: block;
  color: #245B36;
  background: #EFF8F1;
  border: 1px solid #C9E3D0;
}

.contact-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 18px;
}

.form-helper {
  margin-top: 10px;
  color: var(--text-subtle);
  font-size: 0.75rem;
  text-align: center;
}

.contact-process {
  padding: 88px 0 104px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
}

.contact-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.contact-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 32px 28px;
  border-right: 1px solid var(--border-light);
}

.contact-steps li:last-child {
  border-right: none;
}

.contact-steps > li > span {
  color: var(--accent-primary);
  font-family: var(--font-heading);
  font-weight: 800;
}

.contact-steps h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.contact-steps p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* INDEPENDENT CITY LANDINGS */
.landing-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.landing-nav a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
}

.landing-nav a:hover {
  color: var(--accent-primary);
}

.city-landing .hl-icon,
.city-landing .req-icon-frame {
  color: var(--accent-primary);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
}

.check-mark {
  color: var(--accent-primary);
  font-weight: 800;
}

.city-context-section {
  padding: 104px 0 116px;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.city-context-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(52px, 8vw, 112px);
  align-items: center;
}

.city-context-grid > div > p {
  max-width: 64ch;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.city-context-panel {
  padding: 32px;
  background: var(--bg-surface);
  border-top: 3px solid var(--accent-primary);
  border-radius: var(--radius-card);
}

.city-context-panel span,
.city-context-panel strong,
.city-context-panel p {
  display: block;
}

.city-context-panel span {
  margin-bottom: 8px;
  color: var(--accent-primary);
  font-size: 0.82rem;
  font-weight: 700;
}

.city-context-panel strong {
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.3;
}

.city-context-panel p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.city-cta-section {
  padding: 72px 0;
  color: #F5F5F1;
  background: var(--bg-dark);
}

.city-cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.city-cta-grid h2 {
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.04em;
}

.city-cta-grid p {
  color: #AFAFB6;
}

.landing-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: end;
}

.landing-footer > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.landing-footer a {
  color: #AFAFB6;
  font-size: 0.9rem;
  text-decoration: none;
}

.landing-footer > p {
  color: #777780;
  font-size: 0.82rem;
}

/* FAQ ACCORDION SECTION */
.faq-section {
  padding: 104px 0 116px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
}

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

.faq-row {
  border-bottom: 1px solid var(--border-light);
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
}

.faq-trigger[aria-expanded="true"] .faq-plus {
  transform: rotate(45deg);
}

.faq-plus {
  font-size: 1.4rem;
  color: var(--accent-primary);
  transition: var(--transition-fast);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, padding 0.3s ease;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0;
}

.faq-row.open .faq-content {
  max-height: 600px;
  opacity: 1;
  padding-bottom: 22px;
}

/* FOOTER */
.site-footer {
  background: var(--bg-dark);
  color: #E2E2E6;
  padding: 64px 0 32px;
  border-top: 1px solid #28282C;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.footer-desc {
  color: #A0A0AA;
  font-size: 0.9rem;
  max-width: 380px;
  line-height: 1.6;
}

.footer-h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-ul a {
  color: #A0A0AA;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-ul a:hover {
  color: #FFFFFF;
}

.footer-bottom-line {
  border-top: 1px solid #28282C;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #6C6C75;
}

.footer-seo-links {
  margin-top: 10px;
  font-size: 0.8rem;
  color: #6C6C75;
}

.footer-seo-links a {
  color: #9A9AA3;
  text-decoration: none;
}

.footer-seo-links a:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   MEDIA QUERIES - FULLY RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 18px;
  }
.nav-menu > li > a,
.nav-menu > li > .dropdown-trigger {
    font-size: 0.875rem;
  }
}

.dropdown-trigger:focus-visible {
  outline-offset: 5px;
}

@media (max-width: 920px) {
  body {
    padding-top: 72px;
  }

  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
  }

  .mobile-toggle {
    display: flex;
  }

  .header-actions .header-phone span {
    display: none;
  }

  .header-actions .header-phone {
    padding: 10px;
    border-radius: 50%;
  }

  .header-actions .btn-whatsapp span {
    display: none;
  }

  .header-actions .btn-whatsapp {
    padding: 10px;
    border-radius: 50%;
  }

  /* Mobile Slide-out Navigation Drawer */
  .nav-menu {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100dvh - 76px);
    background: #FFFFFF;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 28px;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    overflow-x: hidden;
    max-width: 100vw;
    z-index: 999;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-menu > li {
    width: 100%;
  }

  .nav-menu > li > a,
  .nav-menu > li > .dropdown-trigger {
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-dropdown {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    width: 100%;
    padding: 8px 0 8px 16px;
    background: var(--bg-subtle);
    border-radius: 8px;
    margin-top: 8px;
    grid-template-columns: 1fr;
    max-height: 720px;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease, margin 0.3s ease, padding 0.3s ease;
  }

  .nav-dropdown:not(.dropdown-open) .dropdown-menu {
    max-height: 0;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    visibility: hidden;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown-item {
    padding: 8px 10px;
  }

  .landing-nav {
    display: none;
  }

  .landing-header .header-actions .header-phone {
    display: none;
  }

  .landing-header .header-actions .btn-whatsapp {
    padding: 10px 16px;
    border-radius: var(--radius-btn);
  }

  .landing-header .header-actions .btn-whatsapp span {
    display: inline;
  }
}

@media (max-width: 992px) {
  .hero-grid,
  .services-grid,
  .additional-services-grid,
  .urban-service-items,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .req-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .contact-hero-grid {
    grid-template-columns: 1fr;
  }

  .contact-intro .hero-h1 {
    max-width: 14ch;
  }

  .city-context-grid {
    grid-template-columns: 1fr;
  }

  .local-profile-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .btn {
    max-width: 100%;
    min-width: 0;
    white-space: normal;
    text-align: center;
  }

  .btn span {
    overflow-wrap: anywhere;
  }

  body {
    padding-top: 68px;
  }

  .nav-container {
    height: 68px;
  }

  .brand-logo {
    font-size: 1.2rem;
  }

  .brand-accent-badge {
    font-size: 0.65rem;
    padding: 2px 6px;
  }

  .nav-menu {
    top: 68px;
    height: calc(100dvh - 68px);
  }

  .calc-result-bar {
    align-items: stretch;
    padding: 20px;
  }

  .calc-result-bar > div {
    min-width: 0;
    width: 100%;
  }

  .calc-result-bar > div:last-child {
    flex-direction: column;
    align-items: stretch !important;
    gap: 14px !important;
  }

  .calc-result-bar .result-price {
    font-size: 1.7rem;
    line-height: 1.15;
  }

  .calc-result-bar .btn {
    width: 100%;
    min-width: 0;
    padding-right: 16px;
    padding-left: 16px;
    white-space: normal;
    text-align: center;
  }

  .additional-service-card {
    grid-template-columns: 1fr;
  }

  .additional-service-cta {
    grid-column: 1;
    width: 100%;
  }

  .contact-hero {
    padding: 48px 0 72px;
  }

  .contact-form-panel {
    margin: 0 -8px;
    padding: 24px 18px;
  }

  .contact-form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .contact-form-grid,
  .contact-steps {
    grid-template-columns: 1fr;
  }

  .contact-steps li {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding: 24px 8px;
  }

  .contact-steps li:last-child {
    border-bottom: none;
  }

  .comparison-item-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .comparison-state-labels {
    white-space: normal;
  }

  .city-cta-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .landing-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

/* VEHICLES & EQUIPMENT SECTION */
.vehicles-section {
  padding: 88px 0;
  background: var(--bg-main);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.vehicle-type-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 3px solid var(--accent-primary);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vehicle-type-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.vtype-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.vtype-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--accent-primary);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  background: var(--bg-subtle);
  padding: 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.vtype-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
}

.vehicle-type-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.vtype-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-primary);
  background: transparent;
  padding: 0;
  border-radius: 0;
  text-transform: none;
  letter-spacing: 0;
}

@media (max-width: 576px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .zone-info-box {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   BESPOKE AUTOMOTIVE CRAFT UPGRADES (HIGH-END & AUTHENTIC)
   ========================================================================== */

/* Hero Floating Badges */
.hero-media-wrapper {
  position: relative;
}

.hero-badge-pill {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(20, 20, 22, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  transition: transform 0.3s ease;
}

.hero-badge-top-left {
  top: -18px;
  left: -18px;
}

.hero-badge-bottom-right {
  bottom: -18px;
  right: -18px;
}

.hero-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hero-badge-text strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text-main);
  line-height: 1.2;
}

.hero-badge-text small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Process Timeline Strip - Full Width */
.process-strip-container {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border-light);
  width: 100%;
}

.process-strip-label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-primary);
  margin-bottom: 18px;
}

.process-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 16px 20px;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-subtle);
}

.process-step:hover {
  border-color: var(--accent-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-primary);
  background: var(--accent-soft);
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.process-step-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.3;
}

.process-step-info small {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.process-arrow {
  color: var(--text-subtle);
  font-size: 1.2rem;
  font-weight: 600;
}

/* Editorial Services Showcase */
.services-showcase-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.service-card-heroic {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-subtle);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.service-card-heroic:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(43, 31, 24, 0.09);
  border-color: var(--accent-primary);
}

.service-card-heroic-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.service-card-heroic-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-heroic:hover .service-card-heroic-img img {
  transform: scale(1.04);
}

.service-card-heroic-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-secondary {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-subtle);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card-secondary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(43, 31, 24, 0.09);
  border-color: var(--accent-primary);
}

.service-card-secondary-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-card-secondary-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-secondary:hover .service-card-secondary-img img {
  transform: scale(1.04);
}

.service-card-secondary-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.complementary-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.service-card-compact-row {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 24px;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  transition: var(--transition-fast);
}

.service-card-compact-row:hover {
  border-color: var(--accent-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-subtle);
}

.service-card-compact-img {
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  min-height: 110px;
}

.service-card-compact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spec-tags-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 24px;
}

.spec-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-primary);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 6px;
}

/* Dark Atelier Comparison Section */
.comparison-section.dark-atelier {
  background: #111215;
  color: #FFFFFF;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.comparison-section.dark-atelier::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 400px;
  background: radial-gradient(circle, rgba(163, 56, 14, 0.2) 0%, rgba(17, 18, 21, 0) 70%);
  pointer-events: none;
}

.comparison-section.dark-atelier .section-h2 {
  color: #FFFFFF;
}

.comparison-section.dark-atelier .section-lead {
  color: #A0A0AA;
}

.comparison-section.dark-atelier .tag-label {
  background: rgba(163, 56, 14, 0.2);
  color: #FF8F6B;
  border: 1px solid rgba(163, 56, 14, 0.4);
}

.comparison-section.dark-atelier .comparison-item {
  background: rgba(24, 25, 30, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.comparison-section.dark-atelier .comparison-item h3 {
  color: #FFFFFF;
}

.comparison-section.dark-atelier .comparison-state-labels span {
  background: rgba(0, 0, 0, 0.65);
  color: #E2E2E8;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.comparison-section.dark-atelier .slider-knob {
  background: #FFFFFF;
  color: #111215;
  box-shadow: 0 0 24px rgba(163, 56, 14, 0.7);
}

/* Trust Pillars Section */
.trust-pillars-section {
  padding: 48px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.trust-pillar-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.trust-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.trust-pillar-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.trust-pillar-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Enhanced Zones Grid */
.zones-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.zone-card-enhanced {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 16px 18px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-fast);
}

.zone-card-enhanced:hover {
  border-color: var(--accent-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-subtle);
}

.zone-card-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
}

.zone-card-route-pill {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-primary);
  background: var(--accent-soft);
  padding: 3px 8px;
  border-radius: 6px;
}

/* Floating Live Specialist WhatsApp Widget */
.specialist-float-badge {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  padding: 6px 18px 6px 8px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.specialist-float-badge:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 42px rgba(163, 56, 14, 0.25);
}

.specialist-avatar-dot {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-primary);
  color: #FFFFFF;
  display: grid;
  place-items: center;
}

.specialist-live-dot {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  background: #22C55E;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  animation: pulseLive 2s infinite;
}

@keyframes pulseLive {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.specialist-float-text small {
  display: block;
  font-size: 0.68rem;
  color: #16A34A;
  font-weight: 700;
  line-height: 1.1;
}

.specialist-float-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-main);
}

@media (max-width: 992px) {
  .services-showcase-grid,
  .complementary-services-grid,
  .trust-pillars-grid {
    grid-template-columns: 1fr;
  }
  .process-strip {
    grid-template-columns: 1fr;
  }
  .process-arrow {
    display: none;
  }
  .hero-badge-top-left,
  .hero-badge-bottom-right {
    position: static;
    margin-top: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Floating B2B Badge for Companies / Workshops */
.floating-b2b-badge {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 998;
  background: #18181B;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  padding: 8px 18px 8px 10px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.floating-b2b-badge:hover {
  transform: translateY(-3px) scale(1.02);
  background: #0F0F12;
  border-color: var(--accent-primary);
  box-shadow: 0 20px 42px rgba(163, 56, 14, 0.35);
}

.b2b-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-primary);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.b2b-badge-text small {
  display: block;
  font-size: 0.68rem;
  color: #D4D4D8;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.b2b-badge-text strong {
  display: block;
  font-size: 0.86rem;
  color: #FFFFFF;
  font-weight: 700;
}

@media (max-width: 768px) {
  .floating-b2b-badge {
    bottom: 14px;
    left: 16px;
    padding: 6px 14px 6px 8px;
    gap: 8px;
  }
  .b2b-badge-icon {
    width: 30px;
    height: 30px;
  }
  .b2b-badge-text strong {
    font-size: 0.78rem;
  }
}

@media (max-width: 520px) {
  .floating-b2b-badge {
    bottom: 14px;
    left: 14px;
    padding: 6px 12px 6px 8px;
  }
  .b2b-badge-text small {
    display: none;
  }
  .b2b-badge-text strong {
    font-size: 0.76rem;
  }
}

/* B2B Page Specialized Grid Styles */
.b2b-sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.b2b-sector-card {
  padding: 32px 28px;
  border-radius: var(--radius-card);
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.b2b-sector-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-hover);
}

.b2b-sector-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-primary);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.b2b-partner-perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.b2b-perk-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.b2b-perk-item strong {
  color: var(--text-main);
  font-size: 1.05rem;
}

.b2b-perk-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   REVIEWS SECTION
   ========================================================================== */

.reviews-section {
  padding: 4.5rem 0 3rem;
  background: var(--bg-main);
  overflow: hidden;
}

.reviews-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto 2.5rem;
}

.reviews-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.reviews-stars-big {
  display: flex;
  gap: 4px;
}

.reviews-summary-text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.reviews-google-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-main);
  font-weight: 600;
  text-decoration: none;
}

.reviews-google-link:hover {
  text-decoration: underline;
}

.reviews-track-wrapper {
  margin-top: 2.5rem;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.reviews-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: reviews-scroll 50s linear infinite;
}

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

@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    animation: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .review-card {
    scroll-snap-align: start;
  }
}

.review-card {
  flex-shrink: 0;
  width: 340px;
  background: #FAF9F6;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 1.5rem;
  scroll-snap-align: start;
  transition: box-shadow 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--text-main);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-heading);
}

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

.review-date {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
}

.review-text {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 600px) {
  .review-card {
    width: 290px;
    padding: 1.25rem;
  }
  .reviews-section {
    padding: 3rem 0 2rem;
  }
}

/* ==========================================================================
   WORK GALLERY - Infinite Scroll Carousel
   ========================================================================== */

.work-gallery {
  padding: 4.5rem 0 3rem;
  background: var(--bg-card);
  overflow: hidden;
}

.work-gallery .section-header {
  text-align: center;
  margin: 0 auto 2.5rem;
  max-width: 100%;
}

.work-gallery .section-h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.gallery-track-wrapper {
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.gallery-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: gallery-scroll 80s linear infinite;
}

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

.gallery-slide {
  flex-shrink: 0;
  width: 320px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-slide:hover img {
  transform: scale(1.04);
}

@keyframes gallery-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Gallery Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: zoom-out;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
  transform: scale(0.92);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-lightbox.is-open img {
  transform: scale(1);
}

.gallery-lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.6rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.gallery-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.gallery-lightbox-alt {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  text-align: center;
  max-width: 80vw;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}

/* Floating Contact Popup */
.floating-contact-trigger {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1001;
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 4px solid #f6ddd1;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent-hover) 0%, var(--accent-primary) 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(163, 56, 14, 0.38);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.floating-contact-trigger:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 34px rgba(163, 56, 14, 0.48);
  filter: saturate(1.05);
}

.floating-contact-trigger svg {
  display: block;
}

.contact-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: rgba(12, 12, 14, 0.62);
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.contact-popup-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.contact-popup {
  width: min(430px, 100%);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.35);
  display: block;
  position: relative;
}

.contact-popup-side {
  background: linear-gradient(180deg, #b0481b 0%, #8f350f 100%);
  color: #fff6f1;
  padding: 30px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.contact-popup-side-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-popup-side-kicker {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 246, 241, 0.76);
}

.contact-popup-side h4 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.contact-popup-side-text {
  color: rgba(255, 246, 241, 0.9);
  font-size: 0.9rem;
  line-height: 1.55;
}

.contact-popup-side-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-popup-direct {
  color: #fff9f6;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.contact-popup-direct:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateX(2px);
}

.contact-popup-direct-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
  line-height: 1;
  flex: 0 0 auto;
}

.contact-popup-side-note {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 14px;
}

.contact-popup-side-note strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff9f6;
}

.contact-popup-side-note p {
  margin-top: 4px;
  color: rgba(255, 246, 241, 0.84);
  font-size: 0.82rem;
  line-height: 1.5;
}

.contact-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.contact-popup-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.contact-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

@media (prefers-reduced-motion: reduce) {
  .gallery-track {
    animation: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .gallery-slide {
    scroll-snap-align: start;
  }
}

@media (max-width: 600px) {
  .gallery-slide {
    width: 260px;
  }
  .gallery-slide img {
    height: 180px;
  }
  .work-gallery {
    padding: 3rem 0 2rem;
  }

  .floating-contact-trigger {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
  }

  .contact-popup {
    width: min(430px, 100%);
  }

  .contact-popup-side {
    padding: 24px 18px;
  }

  .contact-popup-side h4 {
    font-size: 1.5rem;
  }
}

