/* ==========================================================================
   MyKleaner Facility Services — Website Stylesheet
   Brand: Teal / White / Dark Navy — per approved homepage mock-up
   Colours sourced from client-approved brand palette:
   Primary Teal #0A9099 | Deep Teal #055C63 | Fresh Aqua #25AAB3
   Warm Gold #D4A647 | Charcoal/Navy #202A33 | Soft Grey #F3F7F8
   ========================================================================== */

:root {
  --teal: #0a9099;
  --teal-dark: #055c63;
  --aqua: #25aab3;
  --gold: #d4a647;
  --navy: #202a33;
  --navy-2: #16202a;
  --grey-soft: #f3f7f8;
  --grey-100: #f6f8f9;
  --grey-200: #e6edee;
  --grey-400: #b9c6c8;
  --text-body: #404f54;
  --white: #ffffff;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 10px rgba(16, 40, 45, 0.08);
  --shadow-md: 0 10px 30px rgba(16, 40, 45, 0.12);
  --container: 1200px;
  --font-head: "Poppins", Arial, Helvetica, sans-serif;
  --font-body: "Inter", "Open Sans", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 0.6em;
  font-weight: 600;
}
p { margin: 0 0 1em; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.bg-soft { background: var(--grey-soft); }
.bg-navy { background: var(--navy); color: #cfd8da; }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }

.eyebrow {
  display: inline-block;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}
.section-heading { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.section-heading h2 { font-size: 32px; }
.section-heading .rule {
  width: 60px; height: 3px; background: var(--teal);
  margin: 14px auto 0; border-radius: 2px;
}
.section-heading p { color: var(--text-body); margin-top: 14px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--teal-dark); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--teal-dark); }
.btn-outline-navy { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--navy-2); }
.btn-gold:hover { background: #c2953a; }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ===================== Top Contact Bar ===================== */
.topbar {
  background: var(--navy-2);
  color: #d7dee0;
  font-size: 13.5px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar a.topbar-link:hover { color: var(--aqua); }
.topbar-left span, .topbar-left a { display: inline-flex; align-items: center; gap: 7px; }
.topbar-right { display: flex; align-items: center; gap: 6px; color: #f0c96b; font-weight: 600; }
.topbar-right .stars { letter-spacing: 1px; }
.icon { width: 15px; height: 15px; flex: none; fill: currentColor; }

/* ===================== Header / Nav ===================== */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}
.logo { display: flex; flex-direction: column; align-items: flex-start; gap: 1px; }
.logo img { height: 34px; width: auto; display: block; }
.logo-tagline { font-family: var(--font-body); font-size: 11px; font-weight: 500; color: #7c9194; letter-spacing: 0.2px; margin-left: 2px; }
.logo-text { font-family: var(--font-head); font-weight: 700; font-size: 24px; color: var(--teal-dark); }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav ul { display: flex; gap: 28px; align-items: center; }
.main-nav a.nav-link {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--navy);
  letter-spacing: 0.3px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a.nav-link:hover,
.main-nav a.nav-link.active { color: var(--teal); border-color: var(--teal); }

.has-dropdown { position: relative; }
.has-dropdown > a.nav-link { display: inline-flex; align-items: center; gap: 5px; }
.dropdown {
  position: absolute;
  top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius);
  min-width: 240px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 50;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translate(-50%, 0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 14.5px;
  color: var(--navy);
  font-weight: 500;
}
.dropdown a:hover { background: var(--grey-soft); color: var(--teal-dark); }
.dropdown a strong { color: var(--gold); font-size: 11px; margin-left: auto; text-transform: uppercase; letter-spacing: .5px;}

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-call {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; color: var(--navy);
}
.header-call .icon { color: var(--teal); width: 18px; height: 18px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 26px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: 0.2s; }

/* ===================== Hero ===================== */
/* ===================== Homepage Hero (modern split / image-bleed) ===================== */
/* Full-bleed image-led hero: one continuous photo spans the whole
   section with a dark gradient scrim on the left for text legibility,
   matching the approved mock-up's image-dominant composition. */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--navy-2);
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% 42%;
  z-index: 0;
}
.hero::before {
  /* dark-to-image gradient scrim */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(6,17,21,0.94) 0%,
    rgba(6,17,21,0.90) 26%,
    rgba(6,17,21,0.62) 44%,
    rgba(6,17,21,0.18) 62%,
    rgba(6,17,21,0.02) 76%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
}
.hero-copy {
  width: 100%;
  max-width: 520px;
  padding: 64px 0;
}
.hero-eyebrow {
  position: relative;
  color: var(--aqua);
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 {
  position: relative;
  color: var(--white);
  font-size: 44px;
  line-height: 1.14;
  margin-bottom: 8px;
  font-weight: 700;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.hero h1 .accent { color: var(--aqua); display: block; }
.hero .sub-heading {
  position: relative;
  font-size: 19px;
  color: #e7edee;
  font-weight: 500;
  margin-bottom: 12px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}
.hero .desc { position: relative; font-size: 15.5px; color: #c6d1d3; max-width: 480px; margin-bottom: 22px; line-height: 1.55; text-shadow: 0 1px 10px rgba(0,0,0,0.4); }
.hero-ctas { position: relative; display: flex; gap: 16px; flex-wrap: wrap; }

/* Page (interior) hero banner */
.page-hero {
  background: linear-gradient(120deg, rgba(22,32,42,0.93), rgba(10,144,153,0.75)), var(--navy-2);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 62px 0 54px;
  text-align: center;
}
.page-hero .eyebrow { color: var(--aqua); }
.page-hero h1 { color: var(--white); font-size: 38px; margin-bottom: 12px; }
.page-hero p { color: #d7e2e3; max-width: 640px; margin: 0 auto; font-size: 16.5px; }
.breadcrumb { margin-top: 16px; font-size: 13.5px; color: #b7c7c9; }
.breadcrumb a:hover { color: var(--aqua); }

/* ===================== Trust Strip ===================== */
.trust-strip { background: var(--navy-2); color: var(--white); padding: 26px 0; }
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 1200px) {
  .trust-strip .container { grid-template-columns: repeat(3, 1fr); }
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item .trust-icon {
  width: 46px; height: 46px; flex: none;
  border-radius: 50%;
  background: rgba(37, 170, 179, 0.16);
  display: flex; align-items: center; justify-content: center;
  color: var(--aqua);
}
.trust-item .trust-icon svg { width: 24px; height: 24px; fill: currentColor; }
.trust-item strong { display: block; font-family: var(--font-head); font-size: 14.5px; color: var(--white); }
.trust-item span { font-size: 12.5px; color: #a9bcbe; }

/* ===================== Services Section ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color .2s ease;
  position: relative;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.service-card .icon-wrap {
  width: 74px; height: 74px; margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--grey-soft);
  display: flex; align-items: center; justify-content: center;
}
.service-card .icon-wrap svg { width: 36px; height: 36px; fill: var(--teal); }
.service-card h3 { font-size: 18px; margin-bottom: 10px; }
.service-card p { font-size: 14.5px; color: var(--text-body); margin-bottom: 16px; min-height: 66px; }
.service-card .learn-more { color: var(--teal); font-weight: 600; font-size: 14px; }
.service-card .learn-more:hover { color: var(--teal-dark); }

.service-card.featured {
  background: linear-gradient(160deg, var(--teal-dark), var(--teal));
  border-color: transparent;
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.service-card.featured h3, .service-card.featured p { color: var(--white); }
.service-card.featured .icon-wrap { background: rgba(255,255,255,0.16); }
.service-card.featured .icon-wrap svg { fill: var(--white); }
.service-card.featured .learn-more { color: var(--white); text-decoration: underline; }
.service-card.featured .badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy-2);
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  padding: 5px 14px; border-radius: 20px; text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

/* Homepage-only: service cards with a photo/placeholder thumbnail.
   Scoped to its own class so the plain icon-only .service-card used on
   other pages is completely unaffected. */
.service-card-photo {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  text-align: left;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.service-card-photo:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.service-card-photo .card-media { position: relative; aspect-ratio: 4 / 3; background: var(--grey-soft); }
.service-card-photo .card-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card-photo .card-icon-badge {
  position: absolute; left: 20px; bottom: -22px; z-index: 3;
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--teal);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
}
.service-card-photo .card-icon-badge svg { width: 24px; height: 24px; fill: var(--white); }
.service-card-photo .card-body { padding: 34px 22px 26px; }
.service-card-photo h3 { font-size: 18px; margin-bottom: 8px; color: var(--navy); }
.service-card-photo p { font-size: 14px; color: var(--text-body); margin-bottom: 14px; }
.service-card-photo .learn-more { color: var(--teal); font-weight: 600; font-size: 14px; }
.service-card-photo .learn-more:hover { color: var(--teal-dark); }

/* ===================== Why Choose / Feature List ===================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.why-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.bg-soft .why-list li { border-bottom: 1px solid var(--grey-200); }
.why-list li:last-child { border-bottom: none; }
.why-list .check {
  width: 24px; height: 24px; flex: none; margin-top: 2px;
  border-radius: 50%; background: var(--teal); color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.why-list .check svg { width: 13px; height: 13px; fill: currentColor; }
.why-list strong { display: block; font-family: var(--font-head); color: var(--white); font-size: 15.5px; }
.bg-soft .why-list strong { color: var(--navy); }
.why-list span.desc { font-size: 14px; color: #aebfc1; }
.bg-soft .why-list span.desc { color: var(--text-body); }

.why-visual { position: relative; max-width: 460px; margin: 0 auto; }
.why-visual .why-photo {
  width: 100%; height: auto;
  display: block;
  filter: drop-shadow(0 20px 28px rgba(0,0,0,0.38));
}
.guarantee-badge {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 140px; height: 140px; border-radius: 50%;
  border: 3px dashed var(--gold);
  background: var(--navy-2);
  color: var(--gold); text-align: center;
  box-shadow: var(--shadow-md);
}
.why-visual .guarantee-badge { position: absolute; top: -26px; left: -26px; margin: 0; }
.guarantee-badge strong { font-size: 22px; font-family: var(--font-head); }
.guarantee-badge span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: #e7d8b3; }

/* ===================== Reviews ===================== */
.review-summary {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  flex-wrap: wrap;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 26px 32px;
  box-shadow: var(--shadow-sm);
  max-width: 620px;
  margin: 0 auto 46px;
}
.review-summary .g-icon { width: 44px; height: 44px; }
.review-score { font-family: var(--font-head); font-size: 30px; font-weight: 700; color: var(--navy); }
.review-stars { color: var(--gold); font-size: 17px; letter-spacing: 2px; }
.review-count { font-size: 14px; color: var(--text-body); }
.review-divider { width: 1px; height: 46px; background: var(--grey-200); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.view-all-reviews { text-align: center; margin-top: 44px; }
.view-all-reviews p { color: var(--text-body); font-size: 15px; margin-bottom: 16px; }
.review-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.review-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; font-size: 15px;}
.review-card p.quote {
  font-size: 14.5px; color: var(--text-body); font-style: italic; margin-bottom: 10px;
  display: -webkit-box; -webkit-line-clamp: 6; line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden;
}
.review-card .review-read-more {
  display: inline-block; font-size: 12.5px; font-weight: 600; color: var(--teal);
  margin-bottom: 16px;
}
.review-card .review-read-more:hover { color: var(--teal-dark); }
.review-card .author { display: flex; align-items: center; gap: 10px; }
.review-card .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grey-soft); color: #93a5a7;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
}
.review-card .avatar svg { width: 20px; height: 20px; fill: currentColor; }
.review-card .author strong { display: block; font-size: 14px; color: var(--navy); }
.review-card .author span { font-size: 12.5px; color: #8ea0a3; }
.review-card.placeholder { border-style: dashed; border-color: var(--grey-400); background: var(--grey-100); }
.review-card.placeholder p.quote { color: #8ea0a3; }
.review-card.review-pending p.quote { color: #8ea0a3; }
.review-card.review-pending .author strong { color: #7c9194; }
.review-card.verified-tag {
  display: inline-block; margin-top: 10px; font-size: 11px; font-weight: 700;
  color: var(--teal-dark); background: #e2f4f4; padding: 3px 10px; border-radius: 20px;
  letter-spacing: 0.3px;
}

/* ===================== Image placeholder frames ===================== */
.img-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.ratio-4-3 { aspect-ratio: 4/3; }
.ratio-3-2 { aspect-ratio: 3/2; }
.ratio-1-1 { aspect-ratio: 1/1; }
.ratio-16-9 { aspect-ratio: 16/9; }

.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.before-after figure { margin: 0; }
.before-after figcaption {
  text-align: center; margin-top: 8px; font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase; color: var(--teal-dark);
}

/* ===================== Content / Two-column ===================== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.two-col.reverse .col-media { order: 2; }
.icon-list li { display: flex; gap: 12px; padding: 9px 0; align-items: flex-start; }
.icon-list .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--teal);
  margin-top: 8px; flex: none;
}
.faq-item { border-bottom: 1px solid var(--grey-200); padding: 18px 0; }
.faq-item h4 { font-size: 16.5px; margin-bottom: 8px; color: var(--navy); }
.faq-item p { font-size: 14.5px; margin-bottom: 0; }

.cta-band {
  background: linear-gradient(120deg, var(--teal-dark), var(--teal));
  color: var(--white);
  text-align: center;
  padding: 56px 0;
}
.cta-band h2 { color: var(--white); font-size: 28px; }
.cta-band p { color: #dcf1f1; max-width: 560px; margin: 0 auto 26px; }
.cta-band .hero-ctas { justify-content: center; }

.service-area-list {
  display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center;
  font-size: 14.5px; color: var(--text-body);
}
.service-area-list strong { color: var(--navy); }

/* ===================== Forms ===================== */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px;
  border: 1px solid var(--grey-200);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
label { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--navy); }
label .req { color: #d64545; }
input[type=text], input[type=email], input[type=tel], input[type=date], select, textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--grey-200);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
textarea { resize: vertical; min-height: 120px; font-family: var(--font-body); }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10,144,153,0.15);
}
input.invalid, select.invalid, textarea.invalid { border-color: #d64545; }
.field-hint { font-size: 12.5px; color: #7c8b8e; }
.field-error { font-size: 12.5px; color: #d64545; display: none; }
.field-error.show { display: block; }

.radio-group, .checkbox-group { display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 12px 14px; border: 1.5px solid var(--grey-200); border-radius: 8px; }
.checkbox-group.invalid-group { border-color: #d64545; }
.radio-option, .checkbox-inline {
  display: flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--text-body);
}
.consent-row { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--text-body); }
.consent-row input { width: 18px; height: 18px; margin-top: 2px; flex: none; }
.consent-row a { color: var(--teal-dark); text-decoration: underline; }

.honeypot-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

.form-note {
  font-size: 13px; color: #7c8b8e; background: var(--grey-soft);
  border-radius: 8px; padding: 12px 16px; margin-bottom: 20px;
  border-left: 3px solid var(--teal);
}
.form-alert {
  display: none; padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; font-size: 14.5px;
}
.form-alert.show { display: block; }
.form-alert.error { background: #fdeaea; color: #a12727; border: 1px solid #f2c3c3; }

/* ===================== Contact ===================== */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 46px; }
.contact-info-card {
  background: var(--navy-2); color: var(--white);
  border-radius: var(--radius-lg); padding: 36px;
}
.contact-info-card h3 { color: var(--white); }
.contact-line { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-line .icon-wrap {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: rgba(37,170,179,0.18); color: var(--aqua);
  display: flex; align-items: center; justify-content: center;
}
.contact-line .icon-wrap svg { width: 20px; height: 20px; fill: currentColor; }
.contact-line strong { display: block; color: var(--white); font-family: var(--font-head); font-size: 14.5px; }
.contact-line a, .contact-line span.value { color: #bcd0d2; font-size: 14.5px; }
.contact-line a:hover { color: var(--aqua); }

/* ===================== Thank You ===================== */
.thankyou-box {
  max-width: 640px; margin: 0 auto; text-align: center;
}
.thankyou-icon {
  width: 88px; height: 88px; border-radius: 50%;
  background: #e2f4f4; color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 26px;
}
.thankyou-icon svg { width: 42px; height: 42px; fill: currentColor; }
.thankyou-note {
  text-align: left; background: var(--grey-soft); border-radius: var(--radius);
  padding: 18px 22px; margin: 26px 0; font-size: 14.5px; border-left: 4px solid var(--gold);
}

/* ===================== Footer ===================== */
.site-footer { background: var(--navy-2); color: #b8c6c8; padding-top: 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col h4 {
  color: var(--white); font-size: 15px; letter-spacing: 0.4px;
  margin-bottom: 18px; text-transform: uppercase;
}
.footer-col p { font-size: 14px; color: #9db0b2; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a { font-size: 14px; color: #b8c6c8; }
.footer-col ul a:hover { color: var(--aqua); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { height: 36px; }
.footer-logo span { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--white); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; color: var(--white);
}
.footer-social a:hover { background: var(--teal); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; font-size: 13px; color: #83989b; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a.credit { color: #a9bcbe; font-weight: 600; }
.footer-bottom a.credit:hover { color: var(--aqua); }
.footer-legal a { color: #8ea0a3; margin-left: 18px; }
.footer-legal a:first-child { margin-left: 0; }
.footer-legal a:hover { color: var(--aqua); }

/* ===================== Sticky Mobile Call Bar ===================== */
.mobile-call-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--navy-2);
  box-shadow: 0 -4px 18px rgba(0,0,0,0.2);
}
.mobile-call-bar .container { display: flex; gap: 10px; padding: 10px 16px; }
.mobile-call-bar .btn { flex: 1; }

/* ===================== Responsive ===================== */
@media (max-width: 1024px) {
  .hero { min-height: 580px; }
  .hero::before {
    background: linear-gradient(180deg, rgba(6,17,21,0.90) 0%, rgba(6,17,21,0.82) 55%, rgba(6,17,21,0.58) 100%);
  }
  .hero-bg { object-position: 65% 38%; }
  .hero-copy {
    width: 100%; max-width: 560px;
    padding: 44px 0 40px;
  }
  .hero h1 { font-size: 36px; }
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse .col-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .main-nav { position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 86vw);
    background: var(--white); flex-direction: column; align-items: stretch;
    padding: 90px 26px 26px; box-shadow: -8px 0 30px rgba(0,0,0,0.15);
    transform: translateX(100%); transition: transform 0.25s ease; gap: 0; overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav a.nav-link { padding: 13px 4px; border-bottom: 1px solid var(--grey-200); }
  .has-dropdown .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    display: none; padding-left: 10px; min-width: 0;
  }
  .has-dropdown.open .dropdown { display: block; }
  .header-call { display: none; }
  .nav-toggle { display: flex; }
  .nav-overlay {
    display: none; position: fixed; inset: 0; background: rgba(10,20,25,0.5); z-index: 90;
  }
  .nav-overlay.show { display: block; }
  body.nav-locked { overflow: hidden; }
  .mobile-call-bar { display: block; }
  body { padding-bottom: 62px; }
}

@media (max-width: 768px) {
  section { padding: 52px 0; }
  .hero { min-height: 560px; }
  .hero::before {
    background: linear-gradient(180deg, rgba(6,17,21,0.80) 0%, rgba(6,17,21,0.74) 50%, rgba(6,17,21,0.52) 100%);
  }
  .hero-bg { object-position: 68% 35%; }
  .hero h1 { font-size: 31px; }
  .hero .sub-heading { font-size: 18px; }
  .hero-copy { padding: 36px 0 30px; max-width: none; }
  .page-hero h1 { font-size: 28px; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .service-card { padding: 24px 16px; }
  .service-card p { min-height: 0; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal a { margin: 0 9px; }
  .topbar .container { justify-content: center; text-align: center; }
  .topbar-left { justify-content: center; }
  .before-after { grid-template-columns: 1fr; }
  .review-summary { flex-direction: column; text-align: center; }
  .review-divider { display: none; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn, .cta-band .btn { width: 100%; justify-content: center; }
  .hero-ctas, .cta-band .hero-ctas { flex-direction: column; }
  .guarantee-badge { width: 108px; height: 108px; }
  .why-visual { max-width: 300px; }
  .why-visual .guarantee-badge { top: -16px; left: -16px; }
  .why-visual .guarantee-badge strong { font-size: 18px; }
  .why-visual .guarantee-badge span { font-size: 9.5px; }
}
