/* FM Cleaning Services — styles.css */
/* Clean, light, professional. Two audiences: homeowners + facility managers. */

:root {
  --navy:       #1b3e6f;
  --navy-dark:  #122b4f;
  --navy-light: #2d5a9e;
  --sky:        #e8f0fb;
  --white:      #ffffff;
  --off-white:  #f7f9fc;
  --gray-100:   #f1f5f9;
  --gray-200:   #e2e8f0;
  --gray-500:   #64748b;
  --gray-700:   #334155;
  --text:       #0f172a;
  --text-light: #475569;
  --phone:      #1b3e6f;
  --cta-bg:     #1b3e6f;
  --cta-hover:  #122b4f;
  --green:      #166534;
  --radius:     6px;
  --shadow:     0 2px 12px rgba(0,0,0,0.08);
  --max-w:      1100px;
  --font:       -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── CONTAINER ─────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TOP BAR ────────────────────────────────── */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
  padding: 7px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: rgba(255,255,255,0.9); }
.topbar a:hover { color: #fff; text-decoration: none; }
.topbar-left { display: flex; align-items: center; gap: 20px; }
.topbar-right { display: flex; align-items: center; gap: 14px; }
.topbar-phone {
  font-weight: 700;
  font-size: 14.5px;
  color: #fff !important;
  letter-spacing: 0.01em;
}
.topbar-phone::before { content: "📞 "; font-size: 12px; }

/* ── NAVIGATION ─────────────────────────────── */
nav {
  background: var(--white);
  border-bottom: 2px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  height: 48px;
  width: auto;
}
.nav-logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.nav-logo-text span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--navy); text-decoration: none; }
.nav-links a.active { color: var(--navy); font-weight: 700; }
.nav-call {
  background: var(--navy);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-weight: 700 !important;
  font-size: 14.5px !important;
  transition: background 0.15s;
  white-space: nowrap;
}
.nav-call:hover { background: var(--navy-dark) !important; text-decoration: none !important; }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle svg { display: block; }

/* ── HERO ───────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  color: #fff;
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 680px;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 48px; }
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--navy) !important;
  font-size: 20px;
  font-weight: 800;
  padding: 16px 30px;
  border-radius: var(--radius);
  transition: box-shadow 0.15s, transform 0.1s;
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  letter-spacing: -0.01em;
}
.btn-phone:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.3); transform: translateY(-1px); }
.btn-phone-icon { font-size: 22px; }
.btn-secondary {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: var(--radius);
  transition: background 0.15s;
  text-decoration: none !important;
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.hero-trust-item .check {
  width: 18px;
  height: 18px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

/* ── AUDIENCE SPLIT ─────────────────────────── */
.audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--gray-200);
}
.audience-panel {
  padding: 52px 48px;
}
.audience-panel:first-child {
  border-right: 1px solid var(--gray-200);
  background: var(--white);
}
.audience-panel:last-child {
  background: var(--off-white);
}
.audience-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.audience-panel h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.2;
}
.audience-panel p {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 15.5px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: var(--radius);
  transition: background 0.15s;
  text-decoration: none !important;
}
.btn-primary:hover { background: var(--navy-dark); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy) !important;
  font-size: 15px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: var(--radius);
  transition: all 0.15s;
  text-decoration: none !important;
}
.btn-outline:hover { background: var(--navy); color: #fff !important; }

/* ── SERVICES GRID ──────────────────────────── */
section { padding: 64px 0; }
section.alt { background: var(--off-white); }

.section-header { text-align: center; margin-bottom: 44px; }
.section-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-header p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.15s, transform 0.1s;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
/* ── ICONS ──────────────────────────────────── */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--navy);
}
.service-icon {
  width: 44px;
  height: 44px;
  color: var(--navy);
  margin-bottom: 14px;
}
.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── TRUST BAR ──────────────────────────────── */
.trust-bar {
  background: var(--navy);
  color: #fff;
  padding: 36px 0;
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.trust-number {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}
.trust-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── AREA ───────────────────────────────────── */
.area-counties {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.county-tag {
  background: var(--sky);
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}
.area-note {
  margin-top: 20px;
  font-size: 14.5px;
  color: var(--text-light);
}
.area-note a { color: var(--navy); font-weight: 600; }

/* ── TESTIMONIAL ────────────────────────────── */
.testimonial-block {
  background: var(--sky);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius);
  padding: 28px 32px;
  max-width: 680px;
  margin: 0 auto;
}
.testimonial-text {
  font-size: 19px;
  font-style: italic;
  color: var(--navy-dark);
  line-height: 1.6;
  margin-bottom: 12px;
}
.testimonial-author {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── IICRC CALLOUT ──────────────────────────── */
.iicrc-callout {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  max-width: 720px;
}
.iicrc-icon { width: 48px; height: 48px; color: var(--navy); flex-shrink: 0; }
.iicrc-callout h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.iicrc-callout p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── CTA SECTION ────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: #fff;
  text-align: center;
  padding: 72px 0;
}
.cta-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 14px;
}
.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 18px;
}
.cta-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--navy) !important;
  font-size: 22px;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: var(--radius);
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.1s, box-shadow 0.15s;
}
.cta-phone-link:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(0,0,0,0.35); }
.cta-section-note { font-size: 13.5px; color: rgba(255,255,255,0.6); }

/* ── FOOTER ─────────────────────────────────── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 28px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand-name {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.footer-brand-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
footer h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}
footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
footer ul a { color: rgba(255,255,255,0.7); transition: color 0.15s; }
footer ul a:hover { color: #fff; text-decoration: none; }
.footer-contact-item { margin-bottom: 8px; }
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: #fff; }
.footer-phone-big {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a { color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-social a:hover { color: #fff; }

/* ── PAGE HERO (inner pages) ────────────────── */
.page-hero {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-200);
  padding: 52px 0 44px;
}
.page-hero .section-label { text-align: left; }
.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.15;
}
.page-hero p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 620px;
  margin-bottom: 24px;
}
.breadcrumb {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--navy); }

/* ── SERVICE DETAIL ─────────────────────────── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}
.service-detail:nth-child(even) { direction: rtl; }
.service-detail:nth-child(even) > * { direction: ltr; }
.service-detail-content h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.service-detail-content p {
  color: var(--text-light);
  margin-bottom: 14px;
  font-size: 15.5px;
}
.service-detail-visual {
  background: var(--sky);
  border-radius: var(--radius);
  padding: 48px 24px;
  text-align: center;
}
.service-detail-visual .icon {
  width: 88px;
  height: 88px;
}

/* ── FAQ ────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 22px 0;
}
.faq-item:first-child { border-top: 1px solid var(--gray-200); }
.faq-q {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.faq-a {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── ABOUT PEOPLE ───────────────────────────── */
.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.person-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.person-avatar {
  font-size: 48px;
  margin-bottom: 16px;
}
.person-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.person-title { font-size: 13.5px; color: var(--navy); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.person-card p { font-size: 15px; color: var(--text-light); line-height: 1.65; }

/* ── CONTACT PAGE ───────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-block { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-item h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-item p, .contact-item a { font-size: 15.5px; color: var(--text-light); }
.contact-item a { color: var(--navy); }
.contact-item .phone-big { font-size: 26px; font-weight: 800; color: var(--navy); display: block; margin-bottom: 4px; }
.contact-audience-box {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-audience-box h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.contact-audience-box p { font-size: 15px; color: var(--text-light); margin-bottom: 18px; line-height: 1.6; }

/* ── UTILITIES ──────────────────────────────── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.text-center { text-align: center; }
.text-muted { color: var(--text-light); }

/* ── MOBILE FLOATING CALL ───────────────────── */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: var(--navy);
  z-index: 200;
  padding: 12px 20px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
}
.mobile-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff !important;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none !important;
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 860px) {
  .audience-split { grid-template-columns: 1fr; }
  .audience-panel:first-child { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .topbar .container { justify-content: center; }
  .topbar-right { display: none; }
  .audience-panel { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-call-bar { display: block; }
  body { padding-bottom: 60px; }
  .iicrc-callout { flex-direction: column; }
  .hero { padding: 52px 0 48px; }
}
