/* KitchenGuard — Global Stylesheet */
/* Brand: Navy #1B2E4B · Orange #F47C20 · Steel #8BAAC4 · Off-White #F4F6F8 */

:root {
  --navy:   #1B2E4B;
  --orange: #F47C20;
  --steel:  #8BAAC4;
  --white:  #FFFFFF;
  --off-white: #F4F6F8;
  --gray:   #6B7A8D;
  --light-gray: #D8DDE5;
  --done-green: #4A8C5C;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ── Coming Soon Banner ─────────────────────────────────────────── */
.banner-coming-soon {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  z-index: 100;
}
.banner-coming-soon strong { font-weight: 700; }
.banner-coming-soon a { color: var(--white); text-decoration: underline; }

/* ── Navigation ─────────────────────────────────────────────────── */
.site-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
}
.nav-logo svg { flex-shrink: 0; }
.nav-logo span { color: var(--white); }
.nav-logo .tagline {
  font-size: 11px;
  font-weight: 400;
  color: var(--steel);
  display: block;
  margin-top: -2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--steel);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: #d96a14 !important; text-decoration: none !important; }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 4px;
}

/* ── Page Hero ──────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 80px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--orange);
}
.hero-inner { max-width: 780px; margin: 0 auto; position: relative; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(244,124,32,0.18);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 em { color: var(--orange); font-style: normal; }
.hero p {
  font-size: 18px;
  color: var(--steel);
  max-width: 580px;
  margin: 0 auto 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .1s;
  text-decoration: none;
}
.btn-primary:hover { background: #d96a14; transform: translateY(-1px); text-decoration: none; }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(139,170,196,0.4);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color .2s, background .2s;
  text-decoration: none;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,.06); text-decoration: none; }

/* ── Trust Bar ──────────────────────────────────────────────────── */
.trust-bar {
  background: var(--off-white);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  padding: 16px 24px;
}
.trust-bar-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.trust-item svg { color: var(--orange); flex-shrink: 0; }

/* ── Section Base ───────────────────────────────────────────────── */
.section { padding: 72px 24px; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); color: var(--white); }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 17px;
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 48px;
}
.section-dark .section-title { color: var(--white); }
.section-dark .section-sub { color: var(--steel); }

/* ── Service Cards ──────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--light-gray);
  border-radius: 12px;
  padding: 28px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card:hover {
  border-color: var(--orange);
  box-shadow: 0 6px 24px rgba(244,124,32,0.12);
  transform: translateY(-2px);
  text-decoration: none;
}
.service-icon {
  width: 48px; height: 48px;
  background: rgba(244,124,32,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--orange);
}
.service-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.55; margin-bottom: 14px; }
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-right: 6px;
}
.badge-pm { background: rgba(27,46,75,0.1); color: var(--navy); }
.badge-repair { background: rgba(244,124,32,0.12); color: var(--orange); }

/* ── PM Pricing ─────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.pricing-card {
  border: 2px solid var(--light-gray);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  background: var(--white);
  transition: box-shadow .2s;
}
.pricing-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.pricing-card.featured {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(244,124,32,0.15);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-tier { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.pricing-card.featured .pricing-tier { color: var(--orange); }

.pricing-table { width: 100%; border-collapse: collapse; margin-top: 40px; font-size: 15px; }
.pricing-table th {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
}
.pricing-table th:not(:first-child) { text-align: center; }
.pricing-table td { padding: 12px 16px; border-bottom: 1px solid var(--light-gray); }
.pricing-table td:not(:first-child) { text-align: center; font-weight: 600; color: var(--navy); }
.pricing-table tr:hover td { background: var(--off-white); }
.pricing-table .featured-col { background: rgba(244,124,32,0.06); }
.pricing-table th.featured-col { background: var(--orange); }

/* ── PM Calculator ──────────────────────────────────────────────── */
.calculator {
  background: var(--navy);
  border-radius: 16px;
  padding: 40px;
  margin-top: 48px;
}
.calculator h3 { color: var(--white); font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.calculator p { color: var(--steel); margin-bottom: 28px; font-size: 15px; }
.calc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.calc-item label { color: var(--steel); font-size: 13px; font-weight: 600; display: block; margin-bottom: 6px; }
.calc-item input[type="number"] {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid rgba(139,170,196,0.3);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 16px;
  outline: none;
  transition: border-color .2s;
}
.calc-item input[type="number"]:focus { border-color: var(--orange); }
.calc-result {
  background: rgba(244,124,32,0.15);
  border: 1.5px solid var(--orange);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.calc-result-label { color: var(--steel); font-size: 14px; }
.calc-result-value { color: var(--orange); font-size: 28px; font-weight: 800; }
.calc-tier-select {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.tier-btn {
  padding: 8px 18px;
  border-radius: 6px;
  border: 1.5px solid rgba(139,170,196,0.3);
  background: transparent;
  color: var(--steel);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.tier-btn.active { border-color: var(--orange); background: var(--orange); color: var(--white); }

/* ── Why KitchenGuard ───────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.why-item { display: flex; gap: 16px; }
.why-icon {
  width: 44px; height: 44px;
  background: rgba(244,124,32,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.why-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.why-item p { font-size: 14px; color: var(--gray); line-height: 1.5; }

/* ── Service Area ───────────────────────────────────────────────── */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.area-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(139,170,196,0.2);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.area-card:hover { background: rgba(244,124,32,0.12); border-color: var(--orange); text-decoration: none; }
.area-card-name { color: var(--white); font-size: 16px; font-weight: 700; display: block; margin-top: 10px; }
.area-card-sub { color: var(--steel); font-size: 13px; display: block; margin-top: 4px; }

/* ── FAQ ────────────────────────────────────────────────────────── */
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--light-gray); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question svg { flex-shrink: 0; color: var(--orange); transition: transform .2s; }
.faq-question.open svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { padding: 0 0 20px; color: var(--gray); font-size: 15px; line-height: 1.65; }

/* ── CTA Section ────────────────────────────────────────────────── */
.cta-section {
  background: var(--orange);
  padding: 72px 24px;
  text-align: center;
}
.cta-section h2 { color: var(--white); font-size: clamp(24px,4vw,36px); font-weight: 800; margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 18px; max-width: 520px; margin: 0 auto 32px; }
.btn-white {
  background: var(--white);
  color: var(--orange);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background .2s, transform .1s;
}
.btn-white:hover { background: var(--off-white); transform: translateY(-1px); text-decoration: none; }

/* ── Contact Form ───────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; align-items: start; }
.contact-info h3 { font-size: 20px; font-weight: 700; margin-bottom: 20px; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-detail-icon { color: var(--orange); margin-top: 2px; flex-shrink: 0; }
.contact-detail-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gray); }
.contact-detail-value { font-size: 15px; font-weight: 600; color: var(--navy); margin-top: 2px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--light-gray);
  border-radius: 8px;
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  outline: none;
  font-family: var(--font);
  transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── Footer ─────────────────────────────────────────────────────── */
.site-footer { background: var(--navy); padding: 56px 24px 0; }
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(139,170,196,0.15);
}
.footer-brand p { color: var(--steel); font-size: 14px; line-height: 1.6; margin: 14px 0 0; }
.footer-col h4 { color: var(--white); font-size: 13px; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col li a { color: var(--steel); font-size: 14px; text-decoration: none; transition: color .2s; }
.footer-col li a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { color: var(--steel); font-size: 13px; }
.footer-creds { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-cred { display: flex; align-items: center; gap: 6px; color: var(--steel); font-size: 12px; font-weight: 600; }
.footer-cred svg { color: var(--orange); }

/* ── Page Hero (inner pages) ─────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 52px 24px 48px;
  border-bottom: 4px solid var(--orange);
}
.page-hero-inner { max-width: 1160px; margin: 0 auto; }
.page-hero h1 { color: var(--white); font-size: clamp(24px,4vw,38px); font-weight: 800; margin-bottom: 10px; }
.page-hero p { color: var(--steel); font-size: 17px; max-width: 560px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--steel); margin-bottom: 16px; }
.breadcrumb a { color: var(--steel); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb-sep { color: rgba(139,170,196,0.4); }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--navy);
    padding: 16px 24px 24px;
    gap: 14px;
    z-index: 98;
    border-top: 1px solid rgba(139,170,196,0.15);
  }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .calculator { padding: 24px; }
  .hero-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 16px; }
}
