/* ==========================================================================
   TRUE CARE CLEANING SERVICE - DESIGN SYSTEM & STYLING
   Aesthetic: Clean, Natural, Glossy iOS (Frosted Glass & Organic Drifts)
   ========================================================================== */

/* Fonts loaded via <link> in header.php (non-blocking) */

:root {
  /* --- Brand Color Palette (Extracted from Logo) --- */
  --color-green-primary: hsl(146, 75%, 42%);
  --color-green-light: hsl(146, 75%, 95%);
  --color-green-glow: hsla(146, 75%, 42%, 0.15);
  
  --color-blue-primary: hsl(200, 85%, 40%);
  --color-blue-light: hsl(200, 85%, 96%);
  --color-blue-glow: hsla(200, 85%, 40%, 0.15);
  
  --color-yellow-accent: hsl(45, 95%, 48%);
  
  /* --- Glossy Base Palette --- */
  --bg-app: hsl(210, 20%, 98%);
  --text-dark: hsl(210, 30%, 12%);
  --text-muted: hsl(210, 15%, 45%);
  
  /* iOS Glassmorphic Parameters */
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-bg-dark: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-border-thin: rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.04);
  --glass-shadow-hover: 0 16px 48px 0 rgba(31, 38, 135, 0.08);
  --glass-inner-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.45);
  
  /* iOS Border Radius */
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  /* Transitions — snappier defaults for perceived speed */
  --transition-spring: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.18s ease;
  --glass-blur: blur(20px) saturate(190%);
  --glass-blur-light: blur(12px) saturate(160%);
}

/* --- Base & Reset Styles --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

@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;
  }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-app);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Subtle dotted backdrop (replaces animated gradient blobs) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-color: var(--bg-app);
  background-image: radial-gradient(rgba(0, 0, 0, 0.055) 1px, transparent 1px);
  background-size: 26px 26px;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.02);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  border: 2px solid var(--bg-app);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/* --- Layout Grid System --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-bottom {
  margin-bottom: 56px;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 40px 0;
  }

  .section-bottom {
    margin-bottom: 40px;
  }
}

/* --- Glassmorphic Styles & Glossy Utilities --- */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.glass-panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.15) 30%,
    rgba(255, 255, 255, 0) 60%
  );
  transform: rotate(-30deg);
  pointer-events: none;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur-light);
  -webkit-backdrop-filter: var(--glass-blur-light);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), var(--glass-inner-shadow);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition-spring);
}

@media (hover: hover) {
  .glass-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--glass-shadow-hover), var(--glass-inner-shadow);
    border-color: rgba(255, 255, 255, 0.65);
  }
}

/* --- Glossy Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-spring);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-green-primary) 0%, var(--color-blue-primary) 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(23, 162, 102, 0.3), 0 0 0 2px rgba(255, 255, 255, 0.5);
  filter: brightness(1.05);
}

.btn-secondary {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--text-dark);
}

.btn-secondary:hover {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.btn-outline {
  background: transparent;
  color: var(--color-blue-primary);
  border: 2px solid var(--color-blue-primary);
}

.btn-outline:hover {
  background: rgba(0, 102, 178, 0.05);
  border-color: var(--color-green-primary);
  color: var(--color-green-primary);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

.title-gradient {
  background: linear-gradient(135deg, var(--color-green-primary) 0%, var(--color-blue-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 12px auto 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-blue-primary);
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* --- Header / Navigation Bar --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  z-index: 1000;
  transition: var(--transition-spring);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
  height: 78px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-spring);
  /* Transparent PNG — sits on page gradient without a white box */
  filter: drop-shadow(0 2px 10px rgba(31, 38, 135, 0.06));
}

.site-header.scrolled .logo-img {
  height: 58px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  gap: 0;
}

.logo-text-main {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
}

.logo-text-main span {
  color: var(--color-green-primary);
}

.logo-text-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  gap: 8px;
  list-style: none;
}

@keyframes nav-link-wiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-2.5deg);
  }
  40% {
    transform: rotate(2.5deg);
  }
  60% {
    transform: rotate(-1.5deg);
  }
  80% {
    transform: rotate(1.5deg);
  }
}

.nav-item a {
  display: block;
  padding: 10px 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 50px;
  transition: color 0.25s ease;
  position: relative;
}

.nav-item a::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-green-primary), var(--color-blue-primary));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (hover: hover) {
  .nav-item a:hover {
    color: var(--color-green-primary);
    animation: nav-link-wiggle 0.45s ease-in-out;
  }

  .nav-item a:hover::after {
    transform: scaleX(1);
  }
}

.nav-item a:focus-visible {
  outline: 2px solid rgba(0, 102, 178, 0.35);
  outline-offset: 3px;
  color: var(--color-green-primary);
}

.nav-item a:focus-visible::after {
  transform: scaleX(1);
}

.nav-item.is-current a {
  color: var(--text-dark);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  margin: 6px 0;
  border-radius: 2px;
  transition: var(--transition-spring);
}

/* Mobile Slide Out Panel */
.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100%;
  background: var(--glass-bg-dark);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-left: 1px solid var(--glass-border);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
  z-index: 999;
  padding: 100px 32px 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-spring);
}

.mobile-nav-panel.open {
  right: 0;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.mobile-nav-menu a {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  transition: color 0.25s ease;
  position: relative;
}

.mobile-nav-menu a::after {
  content: '';
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 8px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-green-primary), var(--color-blue-primary));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (hover: hover) {
  .mobile-nav-menu a:hover {
    color: var(--color-green-primary);
  }

  .mobile-nav-menu a:hover::after {
    transform: scaleX(1);
  }
}

.mobile-nav-menu a:focus-visible {
  outline: 2px solid rgba(0, 102, 178, 0.35);
  outline-offset: 2px;
  color: var(--color-green-primary);
}

.mobile-nav-menu a:focus-visible::after {
  transform: scaleX(1);
}

.mobile-nav-menu .is-current a {
  color: var(--text-dark);
}

.mobile-nav-footer {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-footer-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--color-blue-primary);
}

.mobile-nav-footer-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.mobile-nav-footer-phone {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 12px;
}

.mobile-nav-footer-phone a {
  color: inherit;
  text-decoration: none;
}

/* --- Hero Section (Home Page) --- */
.hero-section {
  padding-top: 140px;
  padding-bottom: 72px;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.3rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 40px auto;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-visual {
  margin-top: 40px;
}

.hero-showcase-card {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 480px;
  position: relative;
}

.hero-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  color: #fff;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-overlay-text h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

/* --- Features Grid (Home Page) --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  color: var(--color-yellow-accent);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-avatar--a {
  background: linear-gradient(135deg, var(--color-green-primary) 0%, var(--color-blue-primary) 100%);
}

.testimonial-avatar--b {
  background: linear-gradient(135deg, var(--color-blue-primary) 0%, var(--color-green-primary) 100%);
}

.testimonial-avatar--c {
  background: linear-gradient(135deg, var(--color-green-primary) 0%, var(--color-yellow-accent) 100%);
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.feature-card {
  text-align: center;
}

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-green-light) 0%, var(--color-blue-light) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-blue-primary);
  border: 1px solid var(--glass-border);
}

.feature-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

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

/* --- Segmented Controls (Services Page) --- */
.services-tabs-section {
  margin-bottom: 0;
}

.services-tabs-section .tabs-container {
  margin-bottom: 0;
}

.services-panels-section {
  margin-bottom: 56px;
  padding-top: 24px;
}

.services-tabs-section:has(#airbnbIntro.is-visible) + .services-panels-section {
  padding-top: 16px;
}

.services-panels-section .panels-container {
  padding-top: 0;
}

.tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.segmented-control {
  display: flex;
  background: rgba(0, 0, 0, 0.04);
  padding: 4px;
  border-radius: 14px;
  position: relative;
  width: 100%;
  max-width: 480px;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.segmented-control--three {
  max-width: 560px;
}

.segmented-control--three .tab-btn {
  padding: 12px 16px;
  font-size: 0.92rem;
}

.tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 24px;
  color: var(--text-muted);
  cursor: pointer;
  z-index: 1;
  border-radius: 10px;
  transition: var(--transition-fast);
}

.tab-btn.active {
  color: var(--color-blue-primary);
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Panel Switcher Animations */
.panels-container {
  position: relative;
  min-height: 0;
}

.service-panel {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  width: 100%;
}

.service-panel.active {
  display: grid;
  opacity: 1;
  transform: translateY(0);
}

.airbnb-panel-intro {
  display: none;
  margin-top: 28px;
  padding: 28px 32px;
  text-align: center;
}

.airbnb-panel-intro.is-visible {
  display: block;
}

.airbnb-intro-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff5a5f;
  margin-bottom: 12px;
}

.airbnb-intro-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

.airbnb-intro-text {
  max-width: 640px;
  margin: 0 auto 24px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.airbnb-intro-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.airbnb-intro-pills li {
  padding: 8px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-blue-primary);
  background: var(--color-blue-light);
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-item-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-header-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-green-light) 0%, var(--color-blue-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green-primary);
  border: 1px solid var(--glass-border);
}

.service-icon-box svg {
  width: 22px;
  height: 22px;
}

.service-list {
  list-style: none;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}

.service-list li svg {
  width: 18px;
  height: 18px;
  color: var(--color-green-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

/* --- Pricing Page --- */
.pricing-page-section {
  padding-bottom: 56px;
}

.pricing-page-section .tabs-container {
  margin-bottom: 0;
}

.pricing-tab-lead {
  text-align: center;
  max-width: 520px;
  margin: 20px auto 36px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.pricing-panels-container {
  position: relative;
  min-height: 0;
}

.pricing-panel {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.pricing-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

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

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  height: 100%;
}

.pricing-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
}

.pricing-card-tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 4px;
}

.pricing-card-price {
  margin: 22px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-amount {
  font-size: 2.4rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

.pricing-amount--blue {
  color: var(--color-blue-primary);
}

.pricing-amount--green {
  color: var(--color-green-primary);
}

.pricing-amount--airbnb {
  color: #ff5a5f;
}

.pricing-unit {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-left: 4px;
}

.pricing-features {
  font-size: 0.85rem;
  gap: 8px;
  flex: 1;
}

.pricing-cta {
  width: 100%;
  padding: 12px;
  margin-top: 20px;
}

.pricing-card.popular {
  border: 2px solid var(--color-green-primary);
  box-shadow: 0 12px 40px rgba(23, 162, 102, 0.1);
}

.pricing-card--airbnb.popular {
  border-color: #ff5a5f;
  box-shadow: 0 12px 40px rgba(255, 90, 95, 0.12);
}

.pricing-card--airbnb.popular .popular-tag {
  background: #ff5a5f;
}

.pricing-card.popular:hover {
  transform: translateY(-6px);
}

.popular-tag {
  background: var(--color-green-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-panel-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 28px;
  line-height: 1.6;
}

.pricing-panel-note a {
  color: var(--color-blue-primary);
  font-weight: 600;
  text-decoration: none;
}

.pricing-panel-note a:hover {
  text-decoration: underline;
}

.pricing-addons {
  margin-top: 28px;
  padding: 24px 28px;
}

.pricing-addons-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}

.pricing-addons-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

.pricing-addons-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-addons-list strong {
  color: var(--text-dark);
  font-family: 'Outfit', sans-serif;
  white-space: nowrap;
}

.pricing-bottom-cta {
  margin-top: 48px;
  padding: 40px;
  text-align: center;
}

.pricing-bottom-cta h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.pricing-bottom-cta p {
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* --- About Page --- */
.about-hero {
  margin: 0 auto 48px;
  max-width: 1100px;
  padding: 48px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.about-welcome {
  max-width: 820px;
  margin: 0 auto;
}

.about-tagline {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.about-hero h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.about-lead {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: 16px;
}

.about-hero p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-stat {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.about-stat-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-blue-primary);
  line-height: 1.1;
}

.about-stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.about-values-section {
  padding-top: 0;
}

.about-story-card {
  padding: 40px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about-team-section {
  padding-top: 0;
}

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

.about-team-grid--single {
  grid-template-columns: 1fr;
  max-width: 420px;
  margin: 0 auto;
}

.about-team-card {
  padding: 28px;
  text-align: center;
}

.about-team-avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-green-primary), var(--color-blue-primary));
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-team-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.about-team-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-green-primary);
  margin-bottom: 12px;
}

.about-team-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-credentials {
  padding: 40px;
}

.about-credentials-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.about-credentials-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.about-credentials-list li strong {
  color: var(--text-dark);
  margin-right: 8px;
}

/* --- Photos Page & Before/After Slider --- */
.photos-hero {
  text-align: center;
  margin-bottom: 40px;
}

/* Before/After photo gallery (photos.php) */
.ba-gallery {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.ba-pair {
  padding: 32px;
  content-visibility: auto;
  contain-intrinsic-size: auto 420px;
}

.ba-pair-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  text-align: center;
}

.ba-pair-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ba-shot {
  margin: 0;
  position: relative;
}

.ba-shot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  background: #fff;
}

.ba-shot-label {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 50px;
  color: #fff;
}

.ba-shot-label--before {
  background: hsla(210, 30%, 12%, 0.75);
}

.ba-shot-label--after {
  background: var(--color-green-primary);
}

.ba-shot figcaption {
  margin-top: 10px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
}

.ba-disclaimer {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Slider Container */
.slider-wrapper {
  max-width: 900px;
  margin: 0 auto 80px auto;
}

.before-after-container {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--glass-border);
  user-select: none;
}

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

.image-before {
  z-index: 1;
}

.image-after {
  z-index: 2;
  /* Mask/Clip applied dynamically by JS */
  clip-path: inset(0 0 0 50%);
}

/* Slider Labels */
.slider-label {
  position: absolute;
  bottom: 24px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.label-before {
  left: 24px;
}

.label-after {
  right: 24px;
}

/* Slider Handle Bar & Circle Trigger */
.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #fff;
  z-index: 20;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 21;
  cursor: ew-resize;
}

.slider-button::before, .slider-button::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
}

.slider-button::before {
  border-width: 6px 8px 6px 0;
  border-color: transparent var(--color-blue-primary) transparent transparent;
  margin-right: 4px;
}

.slider-button::after {
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent var(--color-blue-primary);
  margin-left: 4px;
}

/* Gallery Filter Grid */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 10px 20px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--text-muted);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--color-green-primary) 0%, var(--color-blue-primary) 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(23, 162, 102, 0.15);
}

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

.gallery-item {
  position: relative;
  height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  border: 1px solid var(--glass-border);
  transition: var(--transition-spring);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--glass-shadow-hover);
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  color: #fff;
  opacity: 0;
  transition: var(--transition-fast);
}

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

.gallery-overlay h4 {
  color: #fff;
  font-size: 1.1rem;
}

.gallery-overlay p {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* --- Contact Page --- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-green-light) 0%, var(--color-blue-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue-primary);
  border: 1px solid var(--glass-border);
  flex-shrink: 0;
}

.info-card-icon svg {
  width: 24px;
  height: 24px;
}

.info-card-details h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.info-card-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.info-card-details a {
  color: var(--color-blue-primary);
  text-decoration: none;
  font-weight: 500;
}

.info-card-details a:hover {
  text-decoration: underline;
}

/* Contact Form Input Floating Labels */
.form-wrapper {
  padding: 40px;
}

.form-title {
  margin-bottom: 24px;
}

.form-group {
  position: relative;
  margin-bottom: 24px;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  outline: none;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition-fast);
  color: var(--text-dark);
}

.form-input:focus {
  background: #fff;
  border-color: var(--color-green-primary);
  box-shadow: 0 4px 15px rgba(23, 162, 102, 0.08);
}

.form-label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.95rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition-fast);
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: 0;
  background: #fff;
  padding: 2px 8px;
  font-size: 0.75rem;
  color: var(--color-green-primary);
  transform: translateY(-50%) scale(0.9);
  left: 15px;
  border-radius: 4px;
  border: 1px solid rgba(23, 162, 102, 0.15);
  font-weight: 600;
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

textarea.form-input ~ .form-label {
  top: 24px;
}

textarea.form-input:focus ~ .form-label,
textarea.form-input:not(:placeholder-shown) ~ .form-label {
  top: 0;
}

.form-success-alert {
  display: none;
  padding: 16px;
  background: rgba(23, 162, 102, 0.08);
  border: 1px solid rgba(23, 162, 102, 0.25);
  border-radius: var(--radius-sm);
  color: var(--color-green-primary);
  margin-bottom: 24px;
  font-weight: 500;
  align-items: center;
  gap: 10px;
}

.form-success-alert.active {
  display: flex;
  animation: fadeIn 0.4s ease-out;
}

.form-error-alert {
  display: none;
  padding: 14px 16px;
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.18);
  color: #991b1b;
  font-size: 0.92rem;
  font-weight: 500;
}

.form-error-alert.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

.form-package-banner {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(23, 162, 102, 0.08);
  border: 1px solid rgba(23, 162, 102, 0.16);
  color: var(--text-dark);
  font-size: 0.92rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Custom Vector Map Placeholder */
.map-placeholder-container {
  height: 280px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #eef7f2 0%, #edf4f8 100%);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-svg-bg {
  position: absolute;
  width: 120%;
  height: 120%;
  opacity: 0.25;
  color: var(--color-green-primary);
}

.map-overlay-card {
  z-index: 2;
  padding: 20px 24px;
  max-width: 280px;
  text-align: center;
}

/* --- Footer --- */
.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: 64px 0 32px 0;
  margin-top: 56px;
  position: relative;
}

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

.footer-logo-col p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 16px;
  max-width: 320px;
}

.footer-col h3 {
  font-size: 1.15rem;
  margin-bottom: 24px;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-green-primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: var(--color-blue-primary);
}

/* --- Legal pages (Privacy, Terms) --- */
.legal-document {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 56px;
}

.legal-document h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 36px 0 12px;
}

.legal-document h2:first-of-type {
  margin-top: 0;
}

.legal-document p,
.legal-document li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.legal-document ul {
  margin: 0 0 16px 1.25rem;
}

.legal-document li {
  margin-bottom: 8px;
}

.legal-document a {
  color: var(--color-blue-primary);
  text-decoration: none;
  font-weight: 500;
}

.legal-document a:hover {
  text-decoration: underline;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .legal-document {
    padding: 32px 24px;
  }
}

/* --- Global Section Title Blocks --- */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-hero-top {
  padding-top: 120px;
}

.trust-bar {
  background: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  padding: 32px 0;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  align-items: center;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  flex: 1 1 220px;
  max-width: 320px;
}

/* --- Homepage responsive grids (replace inline layouts) --- */
.home-about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.home-split-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.home-about-panel {
  padding: 48px;
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-shadow);
}

.home-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* --- Mobile nav overlay --- */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mobile-nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

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

/* --- Performance: lighter effects on touch / small screens --- */
@media (max-width: 768px), (hover: none) {
  :root {
    --glass-blur: none;
    --glass-blur-light: none;
    --transition-spring: all 0.22s ease;
  }

  .glass-panel,
  .glass-card,
  .site-header.scrolled,
  .mobile-nav-panel,
  .site-footer,
  .btn-secondary {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(255, 255, 255, 0.94);
  }

  .glass-panel::after {
    display: none;
  }

  .section-header {
    margin-bottom: 28px;
  }

  .section-header h1 {
    font-size: 2rem !important;
  }

  .page-hero-top {
    padding-top: 110px !important;
    padding-bottom: 16px !important;
  }

  .home-about-panel {
    padding: 28px 20px;
  }

  .hero-section {
    padding-top: 110px;
    padding-bottom: 48px;
  }

  .hero-showcase-overlay {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
  }

}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .home-about-grid,
  .home-split-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .service-panel.active {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .pricing-addons-list {
    grid-template-columns: 1fr;
  }
  .about-hero-grid,
  .about-story-grid,
  .about-team-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.popular {
    transform: none;
  }
  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .hero-title {
    font-size: 2.1rem;
    letter-spacing: -0.5px;
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .hero-showcase-card {
    height: 260px;
  }
  .site-header {
    height: 72px;
  }
  .site-header.scrolled {
    height: 68px;
  }
  .logo-link {
    min-width: 0;
    flex: 1 1 auto;
    max-width: calc(100% - 48px);
    gap: 8px;
  }
  .logo-text {
    min-width: 0;
  }
  .logo-text-main {
    font-size: 1.05rem;
    line-height: 1.15;
    white-space: nowrap;
  }
  .logo-text-sub {
    font-size: 0.7rem;
    line-height: 1.2;
    margin-top: 1px;
    white-space: nowrap;
  }
  .logo-img {
    height: 44px;
    flex-shrink: 0;
  }
  .site-header.scrolled .logo-img {
    height: 40px;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .nav-menu {
    display: none;
  }
  .mobile-nav-panel {
    width: min(100%, 300px);
    padding: 88px 20px 32px;
  }
  .mobile-nav-menu a {
    font-size: 1.1rem;
    padding: 14px 16px;
  }
  .before-after-container {
    height: 380px;
  }
  .ba-pair-images {
    grid-template-columns: 1fr;
  }
  .ba-pair {
    padding: 24px 20px;
  }
  .airbnb-panel-intro {
    padding: 28px 20px;
  }
  .airbnb-intro-title {
    font-size: 1.45rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
