/* ==========================================================================
   KMB Window Cleaning - Stylesheet
   Brand: Orange/Gold gradient + Navy + Blue accents
   ========================================================================== */

:root {
  --orange: #ff9900;
  --gold: #ffc128;
  --gold-light: #ffcc33;
  --orange-dark: #e07e00;
  --navy: #001b54;
  --navy-deep: #000033;
  --navy-soft: #1a2f6c;
  --blue: #0066ff;
  --blue-light: #1073fc;
  --blue-pale: #e8f1ff;
  --text: #14224a;
  --text-soft: #4a577a;
  --bg: #ffffff;
  --bg-soft: #f7f9fd;
  --bg-pale: #eef3fb;
  --border: #e3e8f3;
  --shadow-sm: 0 2px 8px rgba(20, 34, 74, 0.06);
  --shadow-md: 0 8px 24px rgba(20, 34, 74, 0.08);
  --shadow-lg: 0 20px 48px rgba(20, 34, 74, 0.12);
  --shadow-orange: 0 12px 28px rgba(255, 153, 0, 0.28);
  --gradient-orange: linear-gradient(135deg, #ff9900 0%, #ffc128 100%);
  --gradient-blue: linear-gradient(135deg, #0066ff 0%, #1073fc 100%);
  --gradient-navy: linear-gradient(135deg, #001b54 0%, #1a2f6c 100%);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --container: 1200px;
  --header-h: 88px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--orange); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Prevent grid blowouts: let flex/grid children shrink below intrinsic size */
.hero__grid > *,
.about > *,
.banner-cta > *,
.why-split > *,
.contact-split > *,
.footer__grid > *,
.features > *,
.benefit-grid > *,
.gallery > *,
.testimonials > *,
.form__row > * { min-width: 0; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
h4 { font-size: 1.35rem; }
h5 { font-size: 1.15rem; }
p { margin-bottom: 1rem; }

.highlight {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}

/* Layout helpers */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; position: relative; }
.section--soft { background: var(--bg-soft); }
.section--pale { background: var(--bg-pale); }
.section--navy { background: var(--gradient-navy); color: #fff; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head--left { text-align: left; margin-left: 0; }
.subheading {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 14px;
  position: relative;
  padding-left: 38px;
}
.subheading::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 28px;
  height: 2px;
  background: var(--gradient-orange);
  transform: translateY(-50%);
}
.section-head--left .subheading { padding-left: 38px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--text-soft); font-size: 1.05rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: all .25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gradient-orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn--primary:hover {
  background: var(--gradient-blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 102, 255, 0.32);
}
.btn--outline {
  background: #fff;
  color: var(--navy-deep);
  border: 2px solid var(--blue);
}
.btn--outline:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
}
.btn--ghost:hover {
  background: var(--gradient-orange);
  border-color: transparent;
}
.btn .arrow { display: inline-block; transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Header */
.topbar {
  background: var(--navy-deep);
  color: #fff;
  font-size: 0.92rem;
  font-family: 'Roboto', sans-serif;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 10px 0;
  flex-wrap: wrap;
}
.topbar__left, .topbar__right {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.topbar__item { display: inline-flex; align-items: center; gap: 8px; color: #fff; }
.topbar__item:hover { color: var(--gold); }
.topbar__item svg { width: 16px; height: 16px; flex-shrink: 0; }
.topbar__divider { width: 1px; height: 18px; background: rgba(255,255,255,0.18); }
.topbar__social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .2s ease;
}
.topbar__social a:hover {
  background: var(--gradient-orange);
  transform: translateY(-2px);
}

.header {
  position: sticky; top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
  min-height: var(--header-h);
}
.header__logo img { height: 56px; width: auto; }

.nav__list {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav__list a {
  display: block;
  padding: 12px 18px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  color: var(--navy-deep);
  font-size: 1rem;
  position: relative;
}
.nav__list a:hover,
.nav__list a.is-active {
  color: var(--blue);
}
.nav__list a.is-active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--gradient-orange);
  border-radius: 2px;
}

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

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-soft);
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  width: 22px; height: 2px;
  background: var(--navy-deep);
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  width: 22px; height: 2px;
  background: var(--navy-deep);
  left: 0;
  transition: transform .2s ease;
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after  { top: 7px; }

/* ==== Hero (Home) ==== */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 193, 40, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(0, 102, 255, 0.10) 0%, transparent 50%),
    linear-gradient(180deg, #f3f7ff 0%, #ffffff 100%);
  padding: 80px 0 90px;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 50px;
}
.hero__content h1 { margin-bottom: 22px; }
.hero__content > p {
  font-size: 1.2rem;
  color: var(--text-soft);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__visual::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: var(--gradient-orange);
  opacity: 0.14;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.hero__visual img {
  position: relative;
  z-index: 1;
  max-width: min(460px, 100%);
  height: auto;
}
.hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.45;
  filter: blur(2px);
}
.hero__shape--1 { top: 12%; left: 8%; width: 14px; height: 14px; background: var(--orange); }
.hero__shape--2 { top: 70%; left: 12%; width: 10px; height: 10px; background: var(--blue); }
.hero__shape--3 { top: 18%; right: 10%; width: 18px; height: 18px; background: var(--gold); }
.hero__shape--4 { bottom: 14%; right: 16%; width: 12px; height: 12px; background: var(--blue-light); }

/* ==== Page hero (sub-pages) ==== */
.page-hero {
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 193, 40, 0.16) 0%, transparent 50%),
    var(--gradient-navy);
  color: #fff;
  padding: 100px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.15rem; max-width: 700px; margin: 0 auto; }
.page-hero .breadcrumb {
  display: inline-flex;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
}
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.5); }

/* ==== Feature cards (3-up) ==== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 4px; width: 100%;
  background: var(--gradient-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--gradient-orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: var(--shadow-orange);
}
.feature-card__icon svg { width: 32px; height: 32px; }
.feature-card h3 { margin-bottom: 10px; font-size: 1.3rem; }
.feature-card p { color: var(--text-soft); margin: 0; }

/* ==== About section ==== */
.about {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.about__visual { position: relative; }
.about__visual img {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: var(--shadow-md);
}
.about__badge {
  position: absolute;
  bottom: 24px; right: -12px;
  background: var(--gradient-orange);
  color: #fff;
  border-radius: var(--radius);
  padding: 22px 26px;
  text-align: center;
  box-shadow: var(--shadow-orange);
  min-width: 170px;
}
.about__badge .num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.about__badge .label { font-size: 0.95rem; font-weight: 600; }

.about__content .subheading { padding-left: 38px; }
.about__content h2 { margin-bottom: 20px; }
.about__content > p { color: var(--text-soft); margin-bottom: 24px; }

/* Service cards (Residential / Commercial on home) */
.service-list { display: grid; gap: 18px; margin: 24px 0 30px; }
.service-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .25s ease;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.service-card__icon {
  flex-shrink: 0;
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--blue-pale);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.service-card:hover .service-card__icon {
  background: var(--gradient-orange);
  color: #fff;
}
.service-card__icon svg { width: 24px; height: 24px; }
.service-card h4 {
  font-size: 1.1rem;
  color: var(--navy-deep);
  margin-bottom: 4px;
}
.service-card p { font-size: 0.95rem; color: var(--text-soft); margin: 0; }

/* ==== Map section ==== */
.map-section { text-align: center; }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 36px auto 28px;
  max-width: 1000px;
}
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; }
.areas-served {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--navy-deep);
  margin-top: 10px;
}
.areas-served span:not(:last-child)::after {
  content: '|';
  color: var(--orange);
  margin-left: 14px;
  opacity: 0.6;
}

/* ==== Project gallery ==== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,27,84,0.65) 100%);
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery__item:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover::after { opacity: 1; }
.gallery__caption {
  position: absolute;
  left: 18px; bottom: 18px;
  z-index: 2;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all .3s ease;
}
.gallery__item:hover .gallery__caption { opacity: 1; transform: translateY(0); }

/* ==== Testimonials ==== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.testimonial {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 12px; right: 28px;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}
.testimonial__stars { color: var(--orange); margin-bottom: 14px; letter-spacing: 2px; font-size: 1.05rem; }
.testimonial__text {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.testimonial__person {
  display: flex; gap: 14px; align-items: center;
}
.testimonial__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  overflow: hidden;
}
.testimonial__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial__name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--navy-deep);
  font-size: 1.05rem;
}
.testimonial__role { font-size: 0.9rem; color: var(--text-soft); }

/* ==== Contact split (Contact info + Form) ==== */
.contact-split {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: 50px;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 50px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-info h3 { margin-bottom: 12px; }
.contact-info > p { color: var(--text-soft); margin-bottom: 28px; }
.contact-list { display: grid; gap: 18px; }
.contact-item {
  display: flex; gap: 16px;
  align-items: center;
  padding: 18px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  transition: all .25s ease;
  min-width: 0;
}
.contact-item > div { min-width: 0; flex: 1; }
.contact-item:hover {
  background: #fff;
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.contact-item__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gradient-orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item__icon svg { width: 22px; height: 22px; }
.contact-item__label {
  font-size: 0.85rem;
  color: var(--text-soft);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-item__value {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--navy-deep);
  font-size: 1.05rem;
  display: block;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.contact-item a.contact-item__value:hover { color: var(--orange); }

/* Footer contact also needs to wrap long email */
.footer__contact-list a, .footer__contact-list li { overflow-wrap: anywhere; word-break: break-word; }

/* ==== Form ==== */
.form h3 { margin-bottom: 12px; }
.form > p { color: var(--text-soft); margin-bottom: 22px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__field { margin-bottom: 14px; }
.form__field input,
.form__field textarea,
.form__field select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-soft);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  transition: all .2s ease;
}
.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.12);
}
.form__field textarea { resize: vertical; min-height: 130px; }
.form button[type=submit] { margin-top: 6px; }
.form__note { font-size: 0.85rem; color: var(--text-soft); margin-top: 8px; }

/* ==== Process / step list ==== */
.process { display: grid; gap: 22px; margin-top: 24px; }
.process-step {
  display: flex; gap: 18px;
  align-items: flex-start;
  padding: 22px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all .25s ease;
}
.process-step:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.process-step__num {
  flex-shrink: 0;
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--gradient-orange);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.process-step h4 { margin-bottom: 4px; font-size: 1.1rem; }
.process-step p { font-size: 0.95rem; color: var(--text-soft); margin: 0; }

/* ==== Banner with image + CTA (Residential/Commercial) ==== */
.banner-cta {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
}
.banner-cta__visual { position: relative; }
.banner-cta__visual img {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: var(--shadow-md);
}
.banner-cta__experience {
  position: absolute;
  top: 24px; left: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border-top: 4px solid var(--orange);
}
.banner-cta__experience .num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
  line-height: 1;
}
.banner-cta__experience .label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-deep);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
  display: block;
}
.banner-cta__content h2 { margin-bottom: 20px; }
.banner-cta__content > p { color: var(--text-soft); margin-bottom: 26px; }

/* ==== Benefit grid (3 cards with images) ==== */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.benefit-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all .3s ease;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.benefit-card__visual {
  aspect-ratio: 16 / 10;
  background: var(--bg-pale);
  position: relative;
  overflow: hidden;
}
.benefit-card__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.benefit-card:hover .benefit-card__visual img { transform: scale(1.05); }
.benefit-card__visual--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eaf3ff 0%, #fff5e1 100%);
}
.benefit-card__visual--icon svg { width: 80px; height: 80px; color: var(--orange); }
.benefit-card__body { padding: 26px 28px; }
.benefit-card h4 { margin-bottom: 8px; font-size: 1.15rem; }
.benefit-card p { color: var(--text-soft); margin: 0; font-size: 0.95rem; }

/* ==== History / single CTA carousel item ==== */
.story-card {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 50px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--border);
  border-top: 5px solid var(--orange);
}
.story-card h3 { margin-bottom: 18px; }
.story-card p { color: var(--text-soft); font-size: 1.08rem; margin-bottom: 28px; }

/* ==== Why-choose split (about page) ==== */
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}
.why-split h3 { margin-bottom: 16px; }
.why-split p { color: var(--text-soft); margin: 0; }

/* ==== Footer ==== */
.footer {
  background: var(--navy-deep);
  color: #fff;
  padding: 80px 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-orange);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 56px;
}
.footer h4 {
  color: #fff;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 32px; height: 2px;
  background: var(--gradient-orange);
}
.footer p, .footer li, .footer a {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
}
.footer__brand p { margin-bottom: 18px; }
.footer__brand img { height: 60px; margin-bottom: 18px; filter: brightness(1.1); }
.footer__contact-list { display: grid; gap: 10px; }
.footer__contact-list li {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer__contact-list svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.footer__contact-list a:hover { color: var(--gold); }

.footer__links { display: grid; gap: 10px; }
.footer__links a:hover { color: var(--gold); }

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .25s ease;
}
.footer__social a:hover {
  background: var(--gradient-orange);
  transform: translateY(-3px);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.footer__bottom a { color: var(--gold); }
.footer__bottom a:hover { color: #fff; }

/* ==== Mobile ==== */
@media (max-width: 1024px) {
  .hero__grid, .about, .banner-cta, .why-split, .contact-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .features, .benefit-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-split { padding: 36px; }
  .hero__visual::before { width: 280px; height: 280px; }
  .about__badge { right: auto; left: 24px; bottom: -16px; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .topbar__inner { justify-content: center; gap: 12px; font-size: 0.85rem; }
  .topbar__left, .topbar__right { gap: 12px; }
  .topbar__divider { display: none; }
  .hero { padding: 60px 0 70px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; width: 100%; }
  .hero__visual::before { width: 240px; height: 240px; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 16px; flex-direction: column; box-shadow: var(--shadow-md); }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list a { padding: 14px 18px; border-bottom: 1px solid var(--border); }
  .nav__list a.is-active::after { display: none; }
  .menu-toggle { display: inline-flex; }
  .header__cta { display: none; }
  .features, .benefit-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .form__row { grid-template-columns: 1fr; }
  .contact-split { padding: 28px; gap: 32px; }
  .story-card, .hero { padding: 40px 0; }
  .story-card { padding: 36px 28px; }
  .page-hero { padding: 70px 0 60px; }
  .map-wrap iframe { height: 320px; }
}

/* Print-friendly */
@media print {
  .topbar, .header, .footer, .menu-toggle { display: none; }
  body { color: #000; background: #fff; }
}
