/* ========================================
   RD Cleaning House — Sales Funnel Styles
   Mobile-first responsive design
   ======================================== */

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

:root {
  --color-primary: #00B4D8;
  --color-primary-dark: #0096B7;
  --color-primary-light: #33c4e1;
  --color-secondary: #7EC845;
  --color-secondary-dark: #6AB238;
  --color-bg-light: #F0FAFB;
  --color-bg-alt: #F8F9FA;
  --color-text: #1A1A2E;
  --color-text-muted: #555555;
  --color-white: #FFFFFF;
  --color-footer-bg: #0a2e3a;
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.07);
  --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-header: 0 2px 12px rgba(0, 0, 0, 0.06);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --container-width: 1200px;
  --header-height: 72px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 60px; /* space for sticky bar */
  overflow-x: hidden;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--color-primary-dark);
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

/* --- Container --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius-xs);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  line-height: 1.4;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 180, 216, 0.35);
}

.btn--secondary {
  background: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
}

.btn--secondary:hover {
  background: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(126, 200, 69, 0.35);
}

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

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

.btn--lg {
  padding: 16px 36px;
  font-size: 17px;
}

.btn--full {
  width: 100%;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-header h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

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

.section-header--left p {
  margin: 0;
}

.section-cta {
  text-align: center;
  margin-top: 32px;
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  transition: box-shadow 0.3s;
  height: var(--header-height);
}

.header.scrolled {
  box-shadow: var(--shadow-header);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo img {
  width: 44px;
  height: auto;
  border-radius: 4px;
}

.header__brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--color-text);
  display: none;
}

.header__nav {
  display: none;
  gap: 32px;
}

.header__nav.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--color-white);
  padding: 20px;
  box-shadow: var(--shadow-card);
  gap: 0;
  z-index: 999;
}

.header__nav.active .header__link {
  padding: 14px 20px;
  border-bottom: 1px solid #eee;
}

.header__link {
  font-weight: 500;
  font-size: 15px;
  color: var(--color-text);
  transition: color 0.2s;
}

.header__link:hover {
  color: var(--color-primary);
}

/* Rating in mobile nav dropdown */
.header__nav-rating {
  display: none;
}

.header__nav.active .header__nav-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid #eee;
  background: var(--color-bg-light);
}

.header__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
  background: var(--color-white);
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}

.header__rating-stars {
  color: #f5a623;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1px;
}

.header__rating-text {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-muted);
}

.header__rating-text strong {
  font-weight: 700;
  color: var(--color-text);
  font-family: 'Poppins', sans-serif;
}

.header__phone {
  display: none;
  font-size: 14px;
  padding: 10px 20px;
  white-space: nowrap;
}

.header__phone svg {
  flex-shrink: 0;
}

/* Mobile: show "Call Now" label, hide number */
.header__phone-label {
  display: inline;
}
.header__phone-number {
  display: none;
}

.header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s;
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  background: linear-gradient(135deg, var(--color-bg-light) 0%, #e6f7fa 50%, var(--color-bg-light) 100%);
  padding: 40px 0 48px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 200, 69, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.hero__title {
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero__title strong {
  color: var(--color-primary);
}

.hero__subtitle {
  font-size: 17px;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__image {
  position: relative;
}

.hero__image img {
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  width: 100%;
  object-fit: cover;
}

.hero__image::before {
  content: '';
  position: absolute;
  inset: 12px -12px -12px 12px;
  border-radius: var(--radius);
  border: 2px solid var(--color-primary);
  opacity: 0.2;
  z-index: -1;
  display: none;
}

/* ========================================
   TRUST BAR — Modern
   ======================================== */
.trust-bar {
  padding: 20px 0;
  background: var(--color-footer-bg);
  color: var(--color-white);
}

.trust-bar__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

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

.trust-bar__stars {
  color: #f5a623;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 2px;
}

.trust-bar__score {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-white);
}

.trust-bar__score strong {
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
}

.trust-bar__count {
  color: rgba(255, 255, 255, 0.6);
}

.trust-bar__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.trust-bar__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 30px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

.trust-bar__badge svg {
  flex-shrink: 0;
  color: var(--color-primary-light);
  width: 16px;
  height: 16px;
}

.trust-bar__logo-img {
  height: 16px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* --- Section Connector --- */
.section-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  position: relative;
}

.section-connector::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), rgba(0, 180, 216, 0.2));
  transform: translateX(-50%);
}

.section-connector svg {
  position: relative;
  z-index: 1;
  background: var(--color-bg-light);
  border-radius: 50%;
  padding: 4px;
  width: 32px;
  height: 32px;
  animation: bounce-arrow 2s ease-in-out infinite;
}

@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ========================================
   SERVICES (inside how-it-works)
   ======================================== */
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-primary);
  background: rgba(0, 180, 216, 0.08);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.services__featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

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

/* --- Modern Service Card with Image Overlay --- */
.svc-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  height: 300px;
  text-decoration: none;
  color: inherit;
  display: block;
}

.svc-card--featured {
  height: 360px;
}

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

.svc-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.6);
}

.svc-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
  color: var(--color-white);
  transition: background 0.4s;
}

.svc-card:hover .svc-card__overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.45) 60%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.svc-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background 0.3s, transform 0.3s;
}

.svc-card:hover .svc-card__icon {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.svc-card__overlay h3 {
  font-size: 22px;
  color: var(--color-white);
  margin-bottom: 6px;
  font-weight: 700;
}

.svc-card--featured .svc-card__overlay h3 {
  font-size: 26px;
}

.svc-card__overlay p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
}

.svc-card:hover .svc-card__overlay p {
  max-height: 80px;
  opacity: 1;
  margin-bottom: 12px;
}

.svc-card--featured .svc-card__overlay p {
  max-height: none;
  opacity: 1;
  margin-bottom: 12px;
  font-size: 15px;
}

.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-white);
  font-weight: 600;
  font-size: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s 0.1s, transform 0.3s 0.1s, color 0.2s;
}

.svc-card:hover .svc-card__link {
  opacity: 1;
  transform: translateY(0);
}

.svc-card__link:hover {
  color: var(--color-primary-light);
}

.svc-card--featured .svc-card__link {
  opacity: 1;
  transform: translateY(0);
}

/* (Before & After section removed) */

/* ========================================
   WHY CHOOSE US — Redesigned
   ======================================== */
.why-us {
  padding: 64px 0;
  background: var(--color-bg-alt);
}

.why-us__hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

.why-us__badge-wrap {
  position: relative;
}

.why-us__photo {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.why-us__guarantee {
  position: absolute;
  top: -20px;
  right: 20px;
  z-index: 2;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  box-shadow: 0 8px 32px rgba(0, 180, 216, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-badge 3s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.why-us__guarantee-inner {
  text-align: center;
  color: var(--color-white);
}

.why-us__guarantee-inner svg {
  margin-bottom: 4px;
  width: 28px;
  height: 28px;
}

.why-us__guarantee-text {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-us__content h2 {
  font-size: 28px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.why-us__lead {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.why-us__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.why-us__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-us__feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.1) 0%, rgba(126, 200, 69, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
  transition: all 0.3s;
}

.why-us__feature:hover .why-us__feature-icon {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.1);
}

.why-us__feature strong {
  display: block;
  font-size: 16px;
  margin-bottom: 2px;
}

.why-us__feature p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0;
}

/* Stats row */
.why-us__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.why-us__stat {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s;
}

.why-us__stat:hover {
  transform: translateY(-4px);
}

.why-us__stat-num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.why-us__stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========================================
   HOW IT WORKS + SERVICES — Combined Section
   ======================================== */
.how-it-works {
  padding: 64px 0;
  background: var(--color-bg-light);
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.step {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  background-color: var(--color-footer-bg);
  transition: transform 0.4s;
}

.step:hover {
  transform: translateY(-6px);
}

.step__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 28px;
  min-height: 320px;
  background: linear-gradient(
    135deg,
    rgba(10, 46, 58, 0.88) 0%,
    rgba(0, 150, 183, 0.75) 100%
  );
  color: var(--color-white);
}

.step__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--color-white);
  transition: background 0.3s, transform 0.3s;
}

.step:hover .step__icon-wrap {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.1);
}

.step__number-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 180, 216, 0.4);
  z-index: 3;
}

.step h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--color-white);
}

.step p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-width: 260px;
  margin: 0 auto;
}

/* ========================================
   LIFESTYLE BANNER
   ======================================== */
.lifestyle-banner {
  padding: 64px 0;
  background: var(--color-footer-bg);
  color: var(--color-white);
  overflow: hidden;
}

.lifestyle-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.lifestyle-banner__text h2 {
  font-size: 32px;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.lifestyle-banner__text p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}

.lifestyle-banner__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat__number {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary-light);
  line-height: 1;
}

.stat__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.lifestyle-banner__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.lifestyle-banner__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  padding: 64px 0;
  background: var(--color-bg-light);
}

.testimonials__rating {
  font-size: 18px !important;
  font-weight: 600;
  color: var(--color-text) !important;
}

.testimonials__rating .stars {
  color: #f5a623;
  font-size: 22px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.testimonial-card .stars {
  color: #f5a623;
  font-size: 18px;
  margin-bottom: 12px;
}

.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.testimonial-card__author strong {
  font-size: 15px;
}

.testimonial-card__author span {
  font-size: 13px;
  color: var(--color-text-muted);
  background: var(--color-bg-alt);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ========================================
   OFFER BAND
   ======================================== */
.offer-band {
  padding: 56px 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, #0090b0 100%);
  color: var(--color-white);
  text-align: center;
}

.offer-band__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  backdrop-filter: blur(4px);
}

.offer-band h2 {
  font-size: 32px;
  color: var(--color-white);
  margin-bottom: 12px;
}

.offer-band p {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 28px;
}

/* ========================================
   CONTACT / FORM — Call-Centric Layout
   ======================================== */
.contact {
  padding: 64px 0;
  background: var(--color-bg-light);
}

.contact__layout {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
}

/* Call panel (left / top on mobile) */
.contact__call-panel {
  background: linear-gradient(135deg, var(--color-footer-bg) 0%, #0a4050 50%, var(--color-primary-dark) 100%);
  padding: 48px 32px;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.contact__call-panel::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -30%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.contact__call-inner {
  position: relative;
  z-index: 1;
}

.contact__call-panel h2 {
  font-size: 28px;
  color: var(--color-white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.contact__call-panel > .contact__call-inner > p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
}

.contact__call-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 20px 24px;
  color: var(--color-white);
  text-decoration: none;
  transition: all 0.3s;
  margin-bottom: 28px;
}

.contact__call-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  color: var(--color-white);
}

.contact__call-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: pulse-phone 2s ease-in-out infinite;
}

@keyframes pulse-phone {
  0%, 100% { box-shadow: 0 0 0 0 rgba(126, 200, 69, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(126, 200, 69, 0); }
}

.contact__call-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact__call-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.contact__call-tap {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.contact__call-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.contact__call-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.contact__call-detail svg {
  color: var(--color-primary-light);
  flex-shrink: 0;
}

.contact__call-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.contact__call-social:hover {
  color: var(--color-white);
}

.contact__call-social svg {
  color: rgba(255, 255, 255, 0.5);
}

/* Form side (right / bottom on mobile) */
.contact__form-side {
  background: var(--color-white);
  padding: 36px 28px;
}

.contact__form-header {
  margin-bottom: 24px;
}

.contact__form-header h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.contact__form-header p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.form-row--2,
.form-row--3 {
  grid-template-columns: 1fr;
}

/* Floating label form groups */
.form-group {
  position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  border: 1.5px solid #e0e6ea;
  border-radius: 10px;
  background: var(--color-bg-alt);
  color: var(--color-text);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
}

/* Floating label */
.form-group label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color: var(--color-text-muted);
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
  padding: 0 4px;
  font-weight: 500;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
  top: 0;
  transform: translateY(-50%);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-white);
  letter-spacing: 0.5px;
}

.form-group textarea {
  resize: vertical;
  min-height: 60px;
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 4px;
}

.form-note svg {
  flex-shrink: 0;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success svg {
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 28px;
  color: var(--color-secondary-dark);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 17px;
  color: var(--color-text-muted);
}

/* ========================================
   AIRBNB CTA
   ======================================== */
.airbnb-cta {
  padding: 64px 0;
  background: var(--color-white);
  overflow: hidden;
}

.airbnb-cta__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.airbnb-cta__image-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.airbnb-cta__image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.airbnb-cta__image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.airbnb-cta__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px;
  background: transparent;
  border: none;
  border-radius: 0;
  margin-top: -24px;
  position: relative;
  z-index: 2;
}

.airbnb-cta__logos-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.airbnb-cta__logo-bubble {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 14px;
  padding: 12px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.airbnb-cta__logo-bubble:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}

.airbnb-cta__logo {
  height: 26px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}


.airbnb-cta__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary-dark);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.airbnb-cta__badge svg {
  color: #f5a623;
  fill: #f5a623;
  stroke: #f5a623;
}

.airbnb-cta__text h2 {
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.airbnb-cta__text > p {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.airbnb-cta__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
}

.airbnb-cta__list li svg {
  flex-shrink: 0;
}

/* ========================================
   STICKY BOTTOM BAR
   ======================================== */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--color-white);
  border-top: 1px solid #e8eef1;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-bar.visible {
  transform: translateY(0);
}

.sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-bar__text {
  display: none;
}

.sticky-bar__text strong {
  display: block;
  font-size: 15px;
  color: var(--color-text);
}

.sticky-bar__text span {
  font-size: 13px;
  color: var(--color-text-muted);
}

.sticky-bar__actions {
  display: flex;
  gap: 10px;
  width: 100%;
}

.sticky-bar__btn {
  flex: 1;
  padding: 12px 16px;
  font-size: 14px;
  white-space: nowrap;
}

/* Mobile: show "Tap to Call" label, hide number */
.sticky-bar__call-label {
  display: inline;
}
.sticky-bar__call-number {
  display: none;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--color-footer-bg);
  color: rgba(255, 255, 255, 0.8);
  padding: 48px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
}

.footer__logo {
  width: 80px;
  height: auto;
  border-radius: 4px;
  margin-bottom: 12px;
}

.footer__tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-white);
  font-style: italic;
  margin-bottom: 8px;
}

.footer__col h4 {
  color: var(--color-white);
  font-size: 16px;
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--color-white);
}

.footer__col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer__phone {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary-light) !important;
  margin-bottom: 8px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
}

.footer__bottom p {
  font-size: 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

/* (old mobile CTA removed — replaced by sticky bar) */

/* ========================================
   RESPONSIVE — TABLET (768px+)
   ======================================== */
@media (min-width: 768px) {
  .sticky-bar__text {
    display: block;
  }

  .sticky-bar__actions {
    width: auto;
  }

  .sticky-bar__btn {
    flex: none;
    padding: 12px 24px;
  }

  /* Desktop: show phone number, hide tap labels */
  .header__phone-label,
  .sticky-bar__call-label {
    display: none;
  }
  .header__phone-number,
  .sticky-bar__call-number {
    display: inline;
  }

  .header__brand {
    display: inline;
  }

  .header__hamburger {
    display: none;
  }

  .header__nav {
    display: flex;
    gap: 20px;
  }

  .header__rating {
    display: flex;
    margin-left: 0;
    margin-right: 0;
  }

  .header__rating-stars {
    font-size: 16px;
  }

  .header__rating-text {
    font-size: 13px;
  }

  /* Phone hidden at tablet — sticky bar covers it */

  .header__nav-rating {
    display: none;
  }

  .hero {
    padding: 56px 0 64px;
  }

  .hero__inner {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }

  .hero__text {
    flex: 1;
    min-width: 0;
  }

  .hero__image {
    flex: 0 0 44%;
    min-width: 0;
  }

  .hero__title {
    font-size: 34px;
  }

  .hero__ctas {
    flex-direction: row;
  }

  .hero__ctas .btn--lg {
    padding: 14px 24px;
    font-size: 15px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .trust-bar__inner {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }

  .trust-bar__badges {
    gap: 10px;
  }

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

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

  .svc-card--featured {
    height: 360px;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Why Us: stack on tablet, side-by-side at 1024+ */
  .why-us__hero {
    flex-direction: column;
    align-items: stretch;
  }

  .why-us__photo {
    height: 400px;
  }

  .why-us__features {
    grid-template-columns: 1fr 1fr;
  }

  .why-us__stats {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Lifestyle banner: stack on tablet */
  .lifestyle-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .lifestyle-banner__text p {
    margin-left: auto;
    margin-right: auto;
  }

  .lifestyle-banner__stats {
    justify-content: center;
  }

  .lifestyle-banner__image img {
    height: 340px;
  }

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

  /* Contact: stack on tablet */
  .contact__layout {
    flex-direction: column;
  }

  .contact__call-panel {
    padding: 40px 32px;
  }

  .contact__form-side {
    padding: 36px 32px;
  }

  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }

  .form-row--3 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

/* ========================================
   RESPONSIVE — SMALL LAPTOP (900px+)
   ======================================== */
@media (min-width: 900px) {
  .header__nav {
    gap: 28px;
  }

  .hero {
    padding: 64px 0 72px;
  }

  .hero__inner {
    gap: 40px;
  }

  .hero__title {
    font-size: 38px;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .svc-card--featured {
    height: 400px;
  }

  /* Airbnb CTA: side-by-side at 900+ */
  .airbnb-cta__inner {
    flex-direction: row;
  }

  .airbnb-cta__image-wrap {
    flex: 0 0 340px;
  }

  .airbnb-cta__image img {
    height: 360px;
  }

  .airbnb-cta__logo {
    height: 28px;
  }

  .airbnb-cta__logo-bubble {
    padding: 12px 20px;
    border-radius: 14px;
  }

  .airbnb-cta__text {
    flex: 1;
  }

  /* Lifestyle banner: side-by-side at 900+ */
  .lifestyle-banner__inner {
    flex-direction: row;
    text-align: left;
  }

  .lifestyle-banner__text {
    flex: 1;
  }

  .lifestyle-banner__text p {
    margin-left: 0;
    margin-right: 0;
  }

  .lifestyle-banner__stats {
    justify-content: flex-start;
  }

  .lifestyle-banner__image {
    flex: 0 0 320px;
  }

  .lifestyle-banner__image img {
    height: 360px;
  }

  /* Contact: side-by-side at 900+ */
  .contact__layout {
    flex-direction: row;
  }

  .contact__call-panel {
    flex: 0 0 360px;
    padding: 48px 32px;
  }

  .contact__form-side {
    flex: 1;
    padding: 40px 32px;
  }

  /* Why Us: side-by-side at 900+ */
  .why-us__hero {
    flex-direction: row;
    align-items: flex-start;
  }

  .why-us__badge-wrap {
    flex: 0 0 320px;
  }

  .why-us__content {
    flex: 1;
  }
}

/* ========================================
   RESPONSIVE — DESKTOP (1024px+)
   ======================================== */
@media (min-width: 1024px) {
  .header__nav {
    gap: 32px;
  }

  .header__phone {
    display: inline-flex;
    padding: 10px 20px;
    font-size: 14px;
  }

  .hero {
    padding: 72px 0 80px;
  }

  .hero__title {
    font-size: 48px;
  }

  .hero__inner {
    gap: 60px;
  }

  .hero__image {
    flex: 0 0 46%;
  }

  .hero__ctas .btn--lg {
    padding: 16px 36px;
    font-size: 17px;
  }

  .hero__image::before {
    display: block;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .svc-card--featured {
    height: 440px;
  }

  .svc-card--featured .svc-card__overlay h3 {
    font-size: 30px;
  }

  .why-us {
    padding: 80px 0;
  }

  .why-us__badge-wrap {
    flex: 0 0 400px;
  }

  .why-us__photo {
    height: 500px;
  }

  .why-us__content h2 {
    font-size: 36px;
  }

  .why-us__guarantee {
    width: 130px;
    height: 130px;
    top: -24px;
    right: 24px;
  }

  .why-us__guarantee-inner svg {
    width: 36px;
    height: 36px;
  }

  .why-us__guarantee-text {
    font-size: 13px;
  }

  .how-it-works {
    padding: 80px 0;
  }

  .lifestyle-banner {
    padding: 80px 0;
  }

  .lifestyle-banner__text h2 {
    font-size: 40px;
  }

  .lifestyle-banner__image {
    flex: 0 0 440px;
  }

  .lifestyle-banner__image img {
    height: 420px;
  }

  .stat__number {
    font-size: 44px;
  }

  .airbnb-cta {
    padding: 100px 0;
  }

  .airbnb-cta__image-wrap {
    flex: 0 0 480px;
  }

  .airbnb-cta__image img {
    height: 380px;
  }

  .airbnb-cta__logo {
    height: 34px;
  }

  .airbnb-cta__logo-bubble {
    padding: 16px 28px;
  }

  .airbnb-cta__text h2 {
    font-size: 40px;
  }

  .testimonials {
    padding: 80px 0;
  }

  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact {
    padding: 80px 0;
  }

  .contact__call-panel {
    flex: 0 0 420px;
    padding: 56px 40px;
  }

  .contact__form-side {
    padding: 44px 40px;
  }

  .contact__call-number {
    font-size: 32px;
  }

  .contact__call-panel h2 {
    font-size: 32px;
  }

  .offer-band h2 {
    font-size: 40px;
  }
}

/* ========================================
   RESPONSIVE — WIDE DESKTOP (1200px+)
   ======================================== */
@media (min-width: 1200px) {
  .why-us__badge-wrap {
    flex: 0 0 440px;
  }

  .contact__call-panel {
    flex: 0 0 460px;
  }

  .airbnb-cta__image img {
    height: 420px;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   ABOUT PAGE
   ======================================== */

/* Active nav link */
.header__link--active {
  color: var(--color-primary);
  font-weight: 600;
}

/* About Hero — reuses .hero layout */
.about-hero {
  padding: calc(var(--header-height) + 40px) 0 60px;
  background: var(--color-bg-light);
}

.about-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.about-hero__inner .hero__image img {
  border-radius: var(--radius);
  max-width: 320px;
  margin: 0 auto;
}

/* About Story */
.about-story {
  padding: 80px 0;
}

.about-story__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.about-story__image-col {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

.about-story__photo {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-story__badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 180, 216, 0.3);
}

.about-story__badge-num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about-story__badge-text {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  margin-top: 4px;
  display: block;
}

.about-story__content p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

.about-story__content h2 {
  margin-bottom: 20px;
}

/* Mission / Vision / Values */
.about-mvv {
  padding: 80px 0;
  background: var(--color-bg-light);
}

.about-mvv__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

.about-mvv__card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-mvv__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.about-mvv__icon {
  margin-bottom: 16px;
  width: 56px;
  height: 56px;
  background: var(--color-bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-mvv__card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--color-text);
}

.about-mvv__card p {
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 15px;
}

/* About Services */
.about-services {
  padding: 80px 0;
}

.about-services__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.about-services__content h2 {
  margin-bottom: 16px;
}

.about-services__content > p {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.about-services__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-services__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
}

.about-services__list li svg {
  flex-shrink: 0;
}

.about-services__image img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Service Area */
.about-area {
  padding: 60px 0 80px;
  background: var(--color-bg-light);
}

.about-area__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.about-area__city {
  background: var(--color-white);
  border: 1.5px solid #e0e6ea;
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  transition: all 0.25s ease;
}

.about-area__city:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(0, 180, 216, 0.05);
}

/* ========================================
   ABOUT PAGE — RESPONSIVE
   ======================================== */
@media (min-width: 768px) {
  .about-hero__inner {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .about-story__layout {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .about-mvv__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-services__layout {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

@media (min-width: 1024px) {
  .about-hero {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
  }

  .about-hero__inner .hero__image img {
    max-width: 400px;
  }

  .about-story {
    padding: 100px 0;
  }

  .about-story__image-col {
    max-width: 100%;
  }

  .about-mvv {
    padding: 100px 0;
  }

  .about-mvv__card {
    padding: 40px 32px;
  }

  .about-services {
    padding: 100px 0;
  }
}

/* ========================================
   SMALL MOBILE FIX (480px and below)
   ======================================== */
@media (max-width: 480px) {
  /* Hide decorative pseudo-elements that cause overflow */
  .hero::before,
  .hero::after,
  .contact__call-panel::before {
    display: none;
  }

  /* Scale down section headings */
  .section-header h2 {
    font-size: 24px;
  }

  .hero__title {
    font-size: 26px;
  }

  .lifestyle-banner__text h2,
  .offer-band h2 {
    font-size: 24px;
  }

  /* Increase hamburger touch target */
  .header__hamburger {
    padding: 12px;
  }

  /* Fix about page image sizing */
  .about-hero__inner .hero__image img {
    max-width: 240px;
  }

  .about-story__image-col {
    max-width: 100%;
  }

  /* Ensure no horizontal overflow */
  .about-area__cities {
    gap: 8px;
  }

  .about-area__city {
    padding: 8px 16px;
    font-size: 14px;
  }

  /* Tighter spacing */
  .about-mvv__card {
    padding: 24px 20px;
  }

  .why-us__stats {
    gap: 16px;
  }
}
