/* ─────────────────────────────────────────────────────────────────────────────
   Pro Shine Elite LLC — Multi-Service Website
   Theme: White + Deep Blue + Silver
───────────────────────────────────────────────────────────────────────────── */

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

:root {
  --white:         #FFFFFF;
  --light:         #F4F6FB;
  --light-2:       #EBF0F8;
  --primary:       #1B3A6B;
  --primary-dark:  #122850;
  --primary-light: #2452A0;
  --accent:        #8899AA;
  --accent-light:  #B8C5D4;
  --text:          #1A1A2E;
  --text-muted:    #5A6478;
  --border:        #DDE3ED;
  --radius:        12px;
  --shadow-sm:     0 1px 8px rgba(27, 58, 107, 0.07);
  --shadow:        0 4px 24px rgba(27, 58, 107, 0.10);
  --shadow-hover:  0 10px 40px rgba(27, 58, 107, 0.18);
  --transition:    0.2s ease;
  --max-w:         1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-light); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 58, 107, 0.30);
}

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

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

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 15px 34px; font-size: 0.95rem; }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Layout ────────────────────────────────────────────────────────────────── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--primary);
  text-align: center;
  margin-bottom: 12px;
}
.section-title.light { color: var(--white); }

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 52px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.section-sub.light { color: rgba(255,255,255,0.75); margin-bottom: 52px; }

/* ── Nav ───────────────────────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 24, 55, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 2px 24px rgba(0,0,0,0.32);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.nav-logo-img {
  height: 36px;
  width: 36px;
  object-fit: contain;
  border-radius: 50%;
}

.nav-banner-img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.logo-pse {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--primary);
  letter-spacing: 0.04em;
}

.logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--accent);
  max-width: 90px;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: flex-end;
}

.nav-links > li > a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.01em;
  padding: 7px 11px;
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--white); background: rgba(255,255,255,0.10); }

/* Dropdown */
.nav-dropdown { position: relative; }

.dropdown-arrow {
  font-size: 0.55rem;
  vertical-align: middle;
  margin-left: 3px;
  display: inline-block;
  transition: transform var(--transition);
}

.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 215px;
  background: var(--primary-dark);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  padding: 6px;
  z-index: 200;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu { display: block; }

.dropdown-menu li a {
  display: block;
  padding: 9px 13px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.78);
  border-radius: 6px;
  transition: all var(--transition);
}
.dropdown-menu li a:hover { background: rgba(255,255,255,0.10); color: var(--white); }

.nav-cta {
  background: var(--white) !important;
  color: var(--primary) !important;
  padding: 8px 17px !important;
  border-radius: 7px !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  margin-left: 6px;
}
.nav-cta:hover {
  background: var(--light) !important;
  color: var(--primary-dark) !important;
  transform: none !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: rgba(255,255,255,0.82);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

/* ── Homepage Hero ─────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(150deg, rgba(12,28,60,0.82) 0%, rgba(27,58,107,0.76) 55%, rgba(36,82,160,0.72) 100%),
    url('hero-kitchen.png') center / cover no-repeat;
  padding: 130px 24px 80px;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(255,255,255,0.06) 0%, transparent 48%),
    radial-gradient(ellipse at 85% 20%, rgba(255,255,255,0.04) 0%, transparent 42%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 50%;
  margin: 0 auto 24px;
  border: 3px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.hero-banner-img {
  max-width: 480px;
  width: 85%;
  height: auto;
  object-fit: contain;
  margin: 0 auto 28px;
  display: block;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.88);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,0.2);
}

#hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(255,255,255,0.80);
  margin-bottom: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-divisions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.division-pill {
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.82);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ── Page Hero (inner pages) ─────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(150deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 130px 24px 68px;
  text-align: center;
}

.page-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}

.page-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.88);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.2);
}

.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 24px;
}

.page-hero .btn { margin-top: 4px; }

/* ── Trust Bar ─────────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--primary-dark);
  border-bottom: 3px solid rgba(255,255,255,0.06);
}

.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 13px 24px;
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.trust-inner span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Homepage Intro ────────────────────────────────────────────────────────── */
#intro { background: var(--white); }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.intro-text p {
  color: var(--text-muted);
  font-size: 0.97rem;
  margin-bottom: 14px;
  line-height: 1.8;
}

.intro-text .btn { margin-top: 10px; }

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

.stat-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--border);
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ── Services Grid ─────────────────────────────────────────────────────────── */
#services { background: var(--light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

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

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--light-2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  margin-bottom: 18px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.service-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  color: var(--primary-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-card > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.79rem;
  color: var(--primary);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: auto;
  transition: all var(--transition);
}
.card-cta:hover { color: var(--primary-light); gap: 10px; }

/* ── Blue Strip ────────────────────────────────────────────────────────────── */
.blue-strip {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.blue-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.blue-strip-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 12px;
}

.blue-strip-text p {
  color: rgba(255,255,255,0.75);
  font-size: 0.97rem;
  line-height: 1.75;
  max-width: 580px;
}

.blue-strip-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── Why Us ────────────────────────────────────────────────────────────────── */
#why-us { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.why-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: all var(--transition);
}

.why-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.why-icon { font-size: 2rem; margin-bottom: 14px; display: block; }

.why-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.why-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ── CTA Strip ─────────────────────────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.cta-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-strip-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 8px;
}

.cta-strip-text p { color: rgba(255,255,255,0.72); font-size: 0.97rem; }

.cta-strip-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ── Content sections ──────────────────────────────────────────────────────── */
.content-section { background: var(--white); }
.content-section-alt { background: var(--light); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.two-col-wide { grid-template-columns: 1.5fr 1fr; }
.two-col-reverse > :first-child { order: 2; }
.two-col-reverse > :last-child { order: 1; }

.content-h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.2;
}

.content-h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

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

/* ── Check / Warn lists ────────────────────────────────────────────────────── */
.check-list, .warn-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.check-list li, .warn-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.check-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 800;
  flex-shrink: 0;
  background: var(--light-2);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  margin-top: 1px;
}

.warn-list li::before {
  content: '✕';
  color: #B83025;
  font-weight: 800;
  flex-shrink: 0;
  background: #FEEEEC;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  margin-top: 1px;
}

/* ── Callout box ────────────────────────────────────────────────────────────── */
.callout {
  background: var(--light-2);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.72;
  font-style: italic;
}

/* ── Coupon banner ──────────────────────────────────────────────────────────── */
.coupon-banner {
  max-width: 800px;
  margin: 0 auto 36px auto;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: 2px dashed var(--accent-light);
  border-radius: 12px;
  padding: 0;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(27, 58, 107, 0.18);
}

.coupon-stripe {
  background: var(--accent-light);
  color: var(--primary-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  padding: 8px 22px;
  text-align: center;
  text-transform: uppercase;
}

.coupon-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 36px;
  gap: 32px;
  flex-wrap: wrap;
}

.coupon-left {
  flex: 1 1 240px;
  min-width: 240px;
}

.coupon-discount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.coupon-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.35;
  opacity: 0.95;
}

.coupon-right {
  flex: 0 1 260px;
  min-width: 220px;
  text-align: center;
  border-left: 2px dashed rgba(255,255,255,0.22);
  padding-left: 28px;
}

.coupon-right::before {
  /* If you want a "perforated" feel between sides */
}

.coupon-code-label {
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 8px;
}

.coupon-code {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.55rem;
  background: #fff;
  color: var(--primary-dark);
  padding: 10px 18px;
  border-radius: 6px;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.coupon-cta .btn {
  background: #fff;
  color: var(--primary-dark);
  font-weight: 700;
  padding: 10px 22px;
  font-size: 0.92rem;
}

.coupon-cta .btn:hover {
  background: var(--accent-light);
  color: var(--primary-dark);
}

.coupon-terms {
  background: rgba(0,0,0,0.18);
  color: rgba(255,255,255,0.78);
  font-size: 0.72rem;
  padding: 10px 24px;
  text-align: center;
  line-height: 1.55;
}

@media (max-width: 640px) {
  .coupon-body {
    flex-direction: column;
    padding: 22px 22px;
    gap: 22px;
  }
  .coupon-right {
    border-left: none;
    border-top: 2px dashed rgba(255,255,255,0.22);
    padding-left: 0;
    padding-top: 22px;
  }
  .coupon-discount { font-size: 2.2rem; }
}

/* ── Hero coupon strip (small banner in homepage hero) ──────────────────────── */
.hero-coupon-strip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.96);
  color: var(--primary-dark);
  padding: 10px 22px;
  border-radius: 999px;
  margin-top: 24px;
  font-size: 0.92rem;
  font-weight: 500;
  box-shadow: 0 6px 18px rgba(0,0,0,0.20);
  flex-wrap: wrap;
  justify-content: center;
  max-width: 560px;
}

.hero-coupon-badge {
  background: var(--primary);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 5px 12px;
  border-radius: 6px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.hero-coupon-text {
  color: var(--primary-dark);
}

.hero-coupon-text strong {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1.5px;
  padding: 2px 8px;
  background: var(--accent-light);
  border-radius: 4px;
  font-weight: 700;
}

.hero-coupon-link {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
}

.hero-coupon-link:hover {
  color: var(--primary-dark);
}

@media (max-width: 600px) {
  .hero-coupon-strip {
    font-size: 0.82rem;
    padding: 12px 18px;
    gap: 10px;
  }
}

/* ── Feature cards ──────────────────────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.feature-icon { font-size: 1.5rem; margin-bottom: 12px; display: block; }

.feature-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 7px;
}

.feature-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; }

/* ── Pricing card ───────────────────────────────────────────────────────────── */
.pricing-card-block {
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 560px;
  margin: 0 auto;
}

.pricing-card-block .price-tag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.pricing-card-block .price-range {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.pricing-card-block h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 10px;
}

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

/* ── Forms ──────────────────────────────────────────────────────────────────── */
.form-section { background: var(--light); }

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 48px;
  align-items: start;
}

.form-description h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--primary);
  margin-bottom: 12px;
}

.form-description p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.78;
  margin-bottom: 14px;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-card .form-intro {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 24px;
  line-height: 1.65;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 7px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  padding: 11px 13px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 58, 107, 0.08);
}

.form-group select option { background: var(--white); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 90px; }

.form-submit-wrap { margin-top: 6px; }

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ── Contact page ───────────────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

.contact-info-stack { display: flex; flex-direction: column; gap: 20px; }

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-info-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }

.contact-info-item strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 3px;
}

.contact-info-item a,
.contact-info-item span {
  color: var(--text-muted);
  font-size: 0.95rem;
  display: block;
}
.contact-info-item a:hover { color: var(--primary); }

.info-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}

.info-box strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
}

.info-box span {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 3px 0;
}

.info-box a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.info-box a:last-child { border-bottom: none; }
.info-box a:hover { color: var(--primary); }

/* ── About page ─────────────────────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
}

.value-card .v-icon { font-size: 1.7rem; margin-bottom: 10px; display: block; }

.value-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.value-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

.divisions-list { display: flex; flex-direction: column; gap: 14px; }

.division-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.division-row:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.div-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }

.division-row h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.division-row p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.division-row a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.74rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-block;
  margin-top: 6px;
}

/* ── FAQ ─────────────────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item[open] { border-color: var(--primary-light); }

.faq-q {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  color: var(--primary);
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-item[open] .faq-q { color: var(--primary); }

.faq-a {
  padding: 0 22px 18px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.72;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ── Footer ────────────────────────────────────────────────────────────────── */
footer {
  background: var(--primary-dark);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 24px 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand { display: flex; flex-direction: column; gap: 14px; }

.footer-brand-img {
  max-width: 260px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-brand .nav-logo { pointer-events: none; }
.footer-brand .logo-pse { color: rgba(255,255,255,0.92); }
.footer-brand .logo-name { color: rgba(255,255,255,0.5); }

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 1.72;
  max-width: 270px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.62);
  font-size: 0.87rem;
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: rgba(255,255,255,0.92); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy { color: rgba(255,255,255,0.35); font-size: 0.78rem; }

.footer-legal a {
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  margin-left: 20px;
}
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .two-col, .two-col-wide { grid-template-columns: 1fr; }
  .two-col-reverse > :first-child { order: 0; }
  .two-col-reverse > :last-child { order: 0; }
  .intro-grid { grid-template-columns: 1fr; }
  .blue-strip-inner { grid-template-columns: 1fr; }
  .blue-strip-actions { flex-direction: column; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-actions { justify-content: center; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .hamburger { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: rgba(10, 24, 55, 0.99);
    flex-direction: column;
    padding: 12px 16px;
    gap: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 32px rgba(0,0,0,0.35);
    align-items: stretch;
  }

  .nav-links.open { display: flex; }
  .nav-links > li > a { font-size: 0.88rem; padding: 11px 12px; }
  .nav-cta {
    margin-left: 0 !important;
    text-align: center;
    margin-top: 6px;
    background: var(--white) !important;
    color: var(--primary) !important;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(255,255,255,0.06);
    padding: 4px 6px;
    margin-top: 4px;
  }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 310px; justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
  .section-inner { padding: 56px 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal a { margin-left: 8px; }
}

@media (max-width: 480px) {
  .trust-inner { flex-direction: column; gap: 9px; text-align: center; }
  .why-grid { grid-template-columns: 1fr; }
  .intro-stats { grid-template-columns: 1fr 1fr; }
  .hero-divisions { display: none; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Site Images ───────────────────────────────────────────────────────────── */
.section-photo {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}

.photo-strip {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.photo-strip img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.photo-strip img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.photo-strip .photo-wide {
  grid-column: span 2;
  height: 240px;
}

@media (max-width: 768px) {
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip .photo-wide { grid-column: span 1; }
  .photo-strip img, .photo-strip .photo-wide { height: 200px; }
}

/* ── SVG icons (replaces emoji in service/feature cards) ─────────────────────── */
.service-icon svg,
.contact-icon-svg svg {
  width: 26px;
  height: 26px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card .feature-icon-svg { font-size: 0; margin-bottom: 12px; display: block; }
.feature-card .feature-icon-svg svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Green / Eco badge ─────────────────────────────────────────────────────── */
.green-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #A5D6A7;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 13px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* ── Green section block ───────────────────────────────────────────────────── */
.green-section {
  background: #F1F8F2;
  border: 1px solid #C8E6C9;
  border-radius: var(--radius);
  padding: 36px;
  margin-bottom: 24px;
}

/* ── Before/After section ──────────────────────────────────────────────────── */
.before-after-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 72px;
  text-align: center;
}

.before-after-eyebrow {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.before-after-wrap h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary);
  margin-bottom: 8px;
}

.before-after-wrap .ba-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.before-after-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  display: block;
}

.before-after-caption {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 12px;
  font-style: italic;
}

/* ── Why-Us photo row ──────────────────────────────────────────────────────── */
.why-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 60px;
}

.why-photo-row img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.why-photo-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-photo-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary);
  line-height: 1.15;
}

.why-photo-text p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.82;
}

@media (max-width: 768px) {
  .why-photo-row { grid-template-columns: 1fr; gap: 28px; }
  .why-photo-row img { height: 260px; }
}

/* ── Page-hero variants with photo backgrounds ──────────────────────────────── */
.page-hero.about-hero {
  background:
    linear-gradient(150deg, rgba(12,28,60,0.88) 0%, rgba(27,58,107,0.82) 100%),
    url('cleaner-in-action.png') center / cover no-repeat;
}

.page-hero.cleaning-hero {
  background:
    linear-gradient(150deg, rgba(12,28,60,0.86) 0%, rgba(27,58,107,0.80) 100%),
    url('hero-kitchen.png') center / cover no-repeat;
}

.page-hero.contact-hero {
  background:
    linear-gradient(150deg, rgba(12,28,60,0.88) 0%, rgba(27,58,107,0.82) 100%),
    url('cleaning-supplies.png') center / cover no-repeat;
}


/* ── Map embed (about page) ────────────────────────────────────────────────── */
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 36px;
}

.map-embed iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* ── Feature card link variant ─────────────────────────────────────────────── */
.feature-card.is-link {
  display: flex;
  flex-direction: column;
}

.feature-card.is-link .card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.79rem;
  color: var(--primary);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: auto;
  transition: all var(--transition);
}

.feature-card.is-link .card-cta:hover { color: var(--primary-light); gap: 10px; }
