:root {
  --blue: #1769e0;
  --blue-dark: #0f4aa8;
  --accent: #ff8a00;
  --accent-dark: #e67a00;
  --ink: #1a2233;
  --muted: #5b6577;
  --bg-alt: #f4f7fc;
  --dark: #0f1b33;
  --border: #e3e8f0;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(20, 40, 80, 0.10);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: #fff;
}

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 20px; }

a { color: inherit; text-decoration: none; }

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 600;
  border-radius: 999px;
  padding: 12px 26px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  font-size: 15px;
}
.btn:hover { transform: translateY(-2px); }
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(255,138,0,.35); }
.btn--accent:hover { background: var(--accent-dark); }
.btn--outline { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn--outline:hover { background: var(--blue); color: #fff; }
.btn--ghost { border-color: #fff; color: #fff; background: transparent; }
.btn--ghost:hover { background: #fff; color: var(--blue); }
.btn--lg { padding: 15px 36px; font-size: 17px; }
.btn--block { width: 100%; text-align: center; border-radius: 10px; padding: 14px; }

/* Topbar */
.topbar { background: var(--blue-dark); color: #dceaff; font-size: 13.5px; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; height: 40px; }
.topbar__phones { display: flex; gap: 22px; }
.topbar__phones a:hover { color: #fff; }

/* Header */
.header { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 50; }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 8px; font-size: 22px; font-weight: 700; color: var(--ink); }
.logo__mark { font-size: 26px; }
.logo__text strong { color: var(--blue); }
.logo--light, .logo--light .logo__text { color: #fff; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav__link { font-weight: 500; color: var(--ink); font-size: 15px; }
.nav__link:hover { color: var(--blue); }
.nav__dropdown { position: relative; }
.nav__menu {
  position: absolute; top: 130%; left: 0; background: #fff;
  border: 1px solid var(--border); border-radius: 10px; box-shadow: var(--shadow);
  min-width: 180px; padding: 8px 0; display: none;
}
.nav__dropdown:hover .nav__menu { display: block; }
.nav__menu a { display: block; padding: 9px 18px; font-size: 14.5px; }
.nav__menu a:hover { background: var(--bg-alt); color: var(--blue); }
.nav__cta { margin-left: 6px; }
.nav__toggle { display: none; font-size: 26px; background: none; border: none; cursor: pointer; }

/* Hero */
.hero { background: linear-gradient(135deg, #1769e0 0%, #0f4aa8 100%); color: #fff; padding: 60px 0 70px; }
.hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.hero__title { font-size: 42px; line-height: 1.15; font-weight: 800; letter-spacing: -.5px; }
.hero__subtitle { margin: 20px 0 30px; font-size: 18px; color: #dbe7fb; max-width: 520px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Quote card */
.quote-card { background: #fff; color: var(--ink); border-radius: 16px; padding: 28px; box-shadow: var(--shadow); }
.quote-card__title { font-size: 22px; margin-bottom: 6px; }
.quote-card__sub { margin: 0 0 18px; font-size: 14px; color: var(--muted); }
.quote-card__note { margin-top: 14px; font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.quote-card__note a { color: var(--blue); font-weight: 600; }
.field { display: block; margin-bottom: 16px; }
.field__label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; color: var(--muted); }
.field input {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border);
  border-radius: 10px; font-size: 15px; font-family: inherit;
}
.field input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(23,105,224,.15); }
.field-checks { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field-checks--row { flex-direction: row; flex-wrap: wrap; gap: 8px 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.quote-card textarea { min-height: 70px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.check { font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 8px; }

/* Sections */
.section { padding: 70px 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--dark); color: #fff; }
.section__title { text-align: center; font-size: 32px; font-weight: 700; margin-bottom: 44px; }
.section__title--light { color: #fff; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { text-align: center; padding: 30px 22px; border: 1px solid var(--border); border-radius: var(--radius); transition: box-shadow .2s, transform .2s; }
.step:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.step__icon { font-size: 42px; margin-bottom: 12px; }
.step__title { font-size: 20px; margin-bottom: 8px; color: var(--blue); }
.step p { color: var(--muted); }

/* Service */
.service__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.service__card { background: var(--bg-alt); padding: 38px; border-radius: var(--radius); }
.service__card h2 { font-size: 24px; margin-bottom: 14px; }
.service__card p { color: var(--muted); margin-bottom: 22px; }

/* Why */
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why__item { text-align: center; }
.why__icon { font-size: 40px; margin-bottom: 14px; }
.why__item h3 { font-size: 20px; margin-bottom: 10px; }
.why__item p { color: #b9c4da; }

/* Locations */
.locations__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.location {
  background: var(--bg-alt); border: 1px solid var(--border); padding: 12px 28px;
  border-radius: 999px; font-weight: 600; color: var(--blue); transition: all .2s;
}
.location:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* CTA strip */
.cta-strip { background: var(--accent); color: #fff; padding: 50px 0; }
.cta-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-strip h2 { font-size: 28px; }
.cta-strip .btn--accent { background: #fff; color: var(--accent-dark); box-shadow: none; }
.cta-strip .btn--accent:hover { background: #fff5e8; }

/* Footer */
.footer { background: var(--dark); color: #c2cce0; padding-top: 56px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr; gap: 36px; padding-bottom: 40px; }
.footer__col h4 { color: #fff; font-size: 16px; margin-bottom: 16px; }
.footer__col a { display: block; margin-bottom: 10px; font-size: 14.5px; }
.footer__col a:hover { color: #fff; }
.footer__about { font-size: 14.5px; margin-top: 14px; max-width: 300px; }
.footer__address { margin-top: 14px; font-size: 14.5px; line-height: 1.7; }
.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; font-weight: 700; margin: 0;
}
.footer__social a:hover { background: var(--blue); color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; font-size: 13.5px; }
.footer__bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer__legal a { margin-left: 20px; }
.footer__legal a:hover { color: #fff; }

/* Responsive */
@media (max-width: 900px) {
  .hero__inner, .service__grid, .footer__inner { grid-template-columns: 1fr; }
  .steps, .why__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 32px; }
  .nav {
    position: absolute; top: 116px; left: 0; right: 0; background: #fff;
    flex-direction: column; align-items: flex-start; gap: 0; padding: 10px 20px;
    box-shadow: var(--shadow); display: none;
  }
  .nav--open { display: flex; }
  .nav__link, .nav__cta { padding: 12px 0; width: 100%; }
  .nav__toggle { display: block; }
  /* Touch devices have no hover — show the Guides submenu inline so its pages stay reachable */
  .nav__dropdown { position: static; width: 100%; }
  .nav__menu {
    position: static; display: block; box-shadow: none; border: none;
    min-width: 0; padding: 0 0 6px 16px; border-left: 2px solid var(--border); margin-bottom: 6px;
  }
  .nav__menu a { padding: 8px 0; }
  .topbar__inner { font-size: 12px; }
  .topbar__phones { gap: 12px; }
}

/* ===== Inner pages ===== */
.nav__link--active { color: var(--blue); font-weight: 600; }

.page-hero { background: linear-gradient(135deg, #1769e0 0%, #0f4aa8 100%); color: #fff; padding: 56px 0; text-align: center; }
.page-hero h1 { font-size: 38px; font-weight: 800; letter-spacing: -.5px; }
.page-hero p { margin-top: 14px; font-size: 18px; color: #dbe7fb; max-width: 640px; margin-left: auto; margin-right: auto; }

.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 26px; margin: 34px 0 12px; }
.prose h3 { font-size: 20px; margin: 24px 0 8px; color: var(--blue); }
.prose p { color: var(--muted); margin-bottom: 14px; }
.prose ul { color: var(--muted); margin: 0 0 16px 22px; }
.prose li { margin-bottom: 8px; }

/* Feature grid (B2B) */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature { background: var(--bg-alt); padding: 28px; border-radius: var(--radius); }
.feature__icon { font-size: 36px; margin-bottom: 12px; }
.feature h3 { font-size: 19px; margin-bottom: 8px; }
.feature p { color: var(--muted); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-info__item h4 { font-size: 16px; margin-bottom: 4px; }
.contact-info__item p, .contact-info__item a { color: var(--muted); }
.contact-info__item a:hover { color: var(--blue); }
textarea { font-family: inherit; width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; font-size: 15px; resize: vertical; min-height: 120px; }
textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(23,105,224,.15); }

/* Pricing table */
.price-table { width: 100%; border-collapse: collapse; margin: 10px 0 24px; box-shadow: var(--shadow); border-radius: var(--radius); overflow: hidden; }
.price-table th, .price-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.price-table th { background: var(--blue); color: #fff; font-weight: 600; }
.price-table tr:nth-child(even) td { background: var(--bg-alt); }

/* Size guide cards */
.size-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.size-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; text-align: center; transition: box-shadow .2s, transform .2s; }
.size-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.size-card__icon { font-size: 44px; margin-bottom: 10px; }
.size-card h3 { font-size: 20px; color: var(--blue); margin-bottom: 8px; }
.size-card p { color: var(--muted); font-size: 14.5px; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; }
.faq__item summary { padding: 18px 22px; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-size: 22px; color: var(--blue); }
.faq__item[open] summary::after { content: '\2212'; }
.faq__item p { padding: 0 22px 20px; color: var(--muted); margin: 0; }

@media (max-width: 900px) {
  .feature-grid, .size-grid, .contact-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 30px; }
}

/* Rating banner (real Google rating) */
.rating-banner { background: #fff; max-width: 560px; margin: 0 auto; text-align: center; padding: 38px 28px; border-radius: var(--radius); box-shadow: var(--shadow); }
.rating-banner__score { font-size: 56px; font-weight: 800; color: var(--ink); line-height: 1; }
.rating-banner__stars { color: #ffb400; font-size: 28px; letter-spacing: 4px; margin: 8px 0 14px; }
.rating-banner__text { color: var(--muted); margin-bottom: 22px; }

/* Locations intro + embedded map */
.locations__intro { text-align: center; color: var(--muted); max-width: 660px; margin: -28px auto 28px; }
.locations__note { text-align: center; color: var(--muted); margin-top: 22px; }
.locations__note a { color: var(--blue); font-weight: 600; }
.map-embed { margin-top: 34px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* Form submission status message */
.form-status { margin-top: 12px; font-size: 14px; font-weight: 600; line-height: 1.5; }

/* Tablet (e.g. iPad portrait): two-column grids instead of a single stacked column */
@media (min-width: 620px) and (max-width: 900px) {
  .steps, .feature-grid, .size-grid, .why__grid { grid-template-columns: repeat(2, 1fr); }
  .service__grid, .contact-grid { grid-template-columns: 1fr 1fr; }
}
