/* Philips Auto & Tires — Campaign styles
   Brand: blue #0f75bb, red #c11c2d, black #101010, Montserrat + Roboto */

:root {
  --blue: #0f75bb;
  --blue-dark: #0c5f99;
  --red: #c11c2d;
  --red-dark: #a3162479;
  --black: #101010;
  --ink: #1a1a1a;
  --muted: #7a7a7a;
  --line: #e4e4e4;
  --bg: #ffffff;
  --bg-soft: #f7f7f7;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .12);
  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Roboto', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
h1, h2, h3, h4, .h { font-family: var(--font-head); font-weight: 800; line-height: 1.15; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
a { color: var(--blue); text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1140px, 92%); margin-inline: auto; }

/* ---------- Top bar ---------- */
.topbar {
  background: #000;
  color: #cfcfcf;
  font-size: .82rem;
  padding: 7px 0;
}
.topbar .container { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; justify-content: space-between; }
.topbar span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Header ---------- */
.site-header {
  background: var(--black);
  position: sticky; top: 0; z-index: 50;
  border-bottom: 3px solid var(--blue);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 16px; }
.site-header .logo img { height: 46px; width: auto; }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; white-space: nowrap; }
.header-phone small { display: block; color: var(--blue); font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  padding: 13px 26px; border-radius: 6px; border: 0; cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); box-shadow: 0 8px 20px rgba(193,28,45,.35); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); box-shadow: 0 8px 20px rgba(15,117,187,.35); }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; background: var(--black); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,16,16,.82), rgba(16,16,16,.92)),
              url('../img/hero.jpg') center/cover no-repeat;
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; padding: 60px 0; }
.hero-copy .eyebrow {
  display: inline-block; background: var(--red); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 4px; margin-bottom: 18px;
}
.hero-copy h1 { font-size: clamp(1.9rem, 4vw, 3rem); }
.hero-copy p.lead { font-size: 1.12rem; color: #d8d8d8; max-width: 52ch; }
.hero-points { list-style: none; padding: 0; margin: 22px 0 26px; display: grid; gap: 10px; }
.hero-points li { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.hero-points li::before { content: "✓"; color: #fff; background: var(--blue); width: 22px; height: 22px; border-radius: 50%; display: inline-grid; place-items: center; font-size: .8rem; flex: none; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Form card ---------- */
.lead-card {
  background: #fff; color: var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}
.lead-card__head { background: var(--blue); color: #fff; padding: 18px 24px; }
.lead-card__head h3 { margin: 0; font-size: 1.25rem; }
.lead-card__head p { margin: 4px 0 0; font-size: .85rem; opacity: .9; }
.lead-card form { padding: 22px 24px 26px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 5px; color: #444; }
.field .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: 6px;
  font: inherit; font-size: .95rem; background: #fff; color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(15,117,187,.15);
}
.field textarea { resize: vertical; min-height: 72px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: .74rem; color: var(--muted); margin: 10px 0 0; text-align: center; }
.honey { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-error { background: #fdecec; color: #a31624; border: 1px solid #f5c2c7; padding: 10px 14px; border-radius: 6px; font-size: .88rem; margin-bottom: 14px; }

/* Service quick-select chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.chip {
  font-size: .8rem; padding: 7px 12px; border: 1px solid var(--line); border-radius: 30px;
  background: #fff; cursor: pointer; font-family: var(--font-head); font-weight: 600; color: #444;
  transition: all .15s ease; user-select: none;
}
.chip:hover { border-color: var(--blue); color: var(--blue); }
.chip.active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ---------- Trust strip ---------- */
.trust { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 34px 0; text-align: center; }
.trust .stat .num { font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--blue); }
.trust .stat .lbl { font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }

/* ---------- Services ---------- */
.section { padding: 64px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-head .kicker { color: var(--blue); font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.service-item {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 20px;
  background: #fff; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue); }
.service-item .ic { width: 46px; height: 46px; border-radius: 10px; background: rgba(15,117,187,.1); color: var(--blue); display: grid; place-items: center; font-size: 1.3rem; margin-bottom: 12px; }
.service-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.service-item p { font-size: .88rem; color: var(--muted); margin: 0; }

/* ---------- Offer band ---------- */
.offer { background: var(--blue); color: #fff; text-align: center; }
.offer .container { padding: 46px 0; }
.offer h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.offer p { font-size: 1.05rem; opacity: .95; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: #b9b9b9; padding: 40px 0 24px; }
.site-footer .container { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; }
.site-footer img { height: 42px; margin-bottom: 12px; }
.site-footer h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; }
.site-footer a { color: #b9b9b9; }
.site-footer a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid #262626; margin-top: 26px; padding-top: 16px; font-size: .8rem; color: #7c7c7c; text-align: center; }

/* ---------- Sticky mobile call bar ---------- */
.mobile-call {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--red); color: #fff; text-align: center; padding: 14px; font-family: var(--font-head); font-weight: 700;
}

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff; font-family: var(--font-head); font-weight: 700;
  padding: 12px 18px 12px 14px; border-radius: 50px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  transition: transform .15s ease, box-shadow .2s ease;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37, 211, 102, .55); color: #fff; }
.wa-float svg { width: 26px; height: 26px; flex: none; }
.wa-float .wa-label { font-size: .95rem; white-space: nowrap; }
/* subtle attention pulse */
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50px;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); animation: wa-pulse 2.2s infinite;
}
@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

@media (max-width: 640px) {
  /* Sit above the sticky call bar and collapse to a round icon */
  .wa-float { bottom: 68px; right: 16px; padding: 13px; }
  .wa-float .wa-label { display: none; }
}

/* ---------- Thank-you ---------- */
.thanks { text-align: center; padding: 90px 0; }
.thanks .check { width: 84px; height: 84px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-size: 2.6rem; margin: 0 auto 22px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 30px; padding: 40px 0; }
  .site-footer .container { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .trust .container { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .topbar { display: none; }
  .header-phone { font-size: .95rem; }
  body { padding-bottom: 54px; }
  .mobile-call { display: block; }
}
