:root {
    --red: #d72638;
    --navy: #163a72;
    --gold: #f2b705;
    --cream: #faf7f2;
    --dark: #111827;
    --white: #ffffff;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Lora', serif; background: linear-gradient(180deg, #f8fbff 0%, var(--cream) 260px); color: var(--dark); }

  /* NAV */
  nav {
    background: linear-gradient(90deg, #10305e 0%, var(--navy) 60%, #0d2448 100%);
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 6px 24px rgba(0,0,0,0.28);
    border-bottom: 3px solid var(--red);
  }
  .nav-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 2rem; gap: 1rem;
  }
  .nav-logo img { height: 62px; padding: 6px 0; }
  .nav-links { display: flex; gap: 0; list-style: none; }
  .nav-links a {
    display: block; padding: 1.1rem 1.2rem;
    color: #cdd5e8; text-decoration: none;
    font-family: 'Oswald', sans-serif; font-size: 0.88rem; letter-spacing: 0.08em;
    text-transform: uppercase; transition: color 0.2s, background 0.2s;
  }
  .nav-links a:hover { color: var(--gold); background: rgba(255,255,255,0.05); }
  .nav-phone {
    font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 700;
    color: #ffffff; letter-spacing: 0.04em; white-space: nowrap;
    background: rgba(215,38,56,0.95);
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.16);
  }

  /* HERO */
  .hero {
    background: radial-gradient(circle at top, rgba(255,255,255,0.08), transparent 32%), linear-gradient(135deg, #173d78 0%, #0d2550 55%, #08162d 100%);
    color: white; text-align: center; padding: 5rem 2rem 4rem;
    position: relative; overflow: hidden;
    border-bottom: 4px solid rgba(242,183,5,0.75);
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
      45deg, transparent, transparent 40px,
      rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 80px
    );
  }
  .hero-badge {
    display: inline-block;
    background: var(--red); color: white;
    font-family: 'Oswald', sans-serif; font-size: 0.75rem; letter-spacing: 0.15em;
    text-transform: uppercase; padding: 0.3rem 1rem;
    margin-bottom: 1.2rem; border-radius: 2px;
  }
  .hero h1 {
    font-family: 'Oswald', sans-serif; font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 700; line-height: 1.1; margin-bottom: 1rem;
    text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  }
  .hero h1 span { color: var(--gold); }
  .hero p {
    font-size: 1.1rem; color: #d8e3f5; max-width: 560px;
    margin: 0 auto 2.4rem; line-height: 1.7;
  }
  .hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .btn {
    display: inline-block; padding: 0.85rem 2rem;
    font-family: 'Oswald', sans-serif; font-size: 1rem; letter-spacing: 0.07em;
    text-transform: uppercase; text-decoration: none; border-radius: 3px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer; border: none;
  }
  .btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
  .btn-primary { background: linear-gradient(180deg, #e83b4c, var(--red)); color: white; box-shadow: 0 10px 22px rgba(215,38,56,0.28); }
  .btn-outline { background: transparent; color: #ffffff; border: 2px solid rgba(242,183,5,0.95); }
  .btn-outline:hover { background: var(--gold); color: var(--navy); }

  /* TICKER */
  .ticker {
    background: var(--red); color: white;
    padding: 0.55rem 0; overflow: hidden;
    font-family: 'Oswald', sans-serif; font-size: 0.85rem; letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .ticker-inner { display: flex; gap: 4rem; animation: ticker 22s linear infinite; white-space: nowrap; }
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* SECTIONS */
  section { padding: 5rem 2rem; }
  .container { max-width: 1100px; margin: 0 auto; }
  .section-label {
    font-family: 'Oswald', sans-serif; font-size: 0.78rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--red); margin-bottom: 0.6rem;
  }
  h2 {
    font-family: 'Oswald', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700; color: var(--navy); margin-bottom: 1.2rem;
  }

  /* SERVICES */
  #services { background: #ffffff; border-top: 1px solid rgba(0,0,0,0.04); }
  .services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem; margin-top: 2.5rem;
  }
  .service-card {
    background: linear-gradient(180deg, #fff 0%, #fff8f8 100%); border-radius: 14px; padding: 2rem 1.5rem;
    border-top: 4px solid var(--red); text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 10px 25px rgba(16,48,94,0.08);
  }
  .service-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0,0,0,0.12); }
  .service-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }
  .service-card h3 {
    font-family: 'Oswald', sans-serif; font-size: 1.1rem; color: var(--navy);
    margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em;
  }
  .service-card p { font-size: 0.88rem; color: #555; line-height: 1.6; }

  /* ABOUT */
  #about { background: linear-gradient(180deg, #fffaf5 0%, var(--cream) 100%); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .about-img-wrap {
    position: relative;
  }
  .about-img-wrap::before {
    content: '';
    position: absolute; top: 16px; left: 16px;
    width: 100%; height: 100%;
    border: 3px solid var(--gold); border-radius: 4px; z-index: 0;
  }
  .about-img-wrap img {
    width: 100%; border-radius: 4px; position: relative; z-index: 1;
    display: block; object-fit: cover;
  }
  .dog-badge {
    position: absolute; bottom: -18px; right: -18px; z-index: 2;
    background: var(--navy); color: white;
    font-family: 'Oswald', sans-serif; font-size: 0.8rem;
    padding: 0.6rem 1rem; border-radius: 3px; letter-spacing: 0.05em;
    text-transform: uppercase; border-left: 4px solid var(--gold);
  }
  .about-text p { font-size: 1rem; line-height: 1.85; color: #3a3a3a; margin-bottom: 1rem; }
  .about-text p em { color: var(--red); font-style: italic; }

  /* TRUCK */
  #truck { background: linear-gradient(135deg, #0f2d56 0%, var(--navy) 60%, #0b1f40 100%); color: white; text-align: center; }
  #truck h2 { color: var(--gold); }
  #truck .section-label { color: #7b8fc0; }
  #truck p { color: #a8b8d8; max-width: 620px; margin: 0 auto 2rem; font-size: 1rem; line-height: 1.8; }
  .truck-img-wrap {
    max-width: 700px; margin: 0 auto; position: relative;
  }
  .truck-img-wrap img {
    width: 100%; border-radius: 16px;
    border: 4px solid rgba(242,183,5,0.95);
    box-shadow: 0 18px 60px rgba(0,0,0,0.28);
  }
  .truck-ribbon {
    position: absolute; top: 16px; left: -8px;
    background: var(--red); color: white;
    font-family: 'Oswald', sans-serif; font-size: 0.85rem;
    padding: 0.4rem 1.2rem; text-transform: uppercase; letter-spacing: 0.1em;
    border-radius: 2px; box-shadow: 0 3px 10px rgba(0,0,0,0.4);
  }

  /* TESTIMONIALS */
  #testimonials { background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%); }
  .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
  .testimonial {
    background: linear-gradient(180deg, #fff 0%, #fff8f8 100%); padding: 2rem; border-radius: 14px;
    border-left: 4px solid var(--gold); position: relative;
    box-shadow: 0 10px 25px rgba(16,48,94,0.08);
  }
  .testimonial::before {
    content: '\201C'; font-size: 5rem; color: var(--gold); opacity: 0.2;
    position: absolute; top: -10px; left: 10px; font-family: serif; line-height: 1;
  }
  .testimonial p { font-style: italic; line-height: 1.7; margin-bottom: 1rem; font-size: 0.95rem; }
  .testimonial cite { font-family: 'Oswald', sans-serif; font-size: 0.85rem; color: var(--navy); letter-spacing: 0.05em; text-transform: uppercase; }
  .stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.5rem; }

  /* CONTACT */
  #contact { background: linear-gradient(180deg, var(--cream) 0%, #eef4ff 100%); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
  .contact-info h3 {
    font-family: 'Oswald', sans-serif; font-size: 1.3rem; color: var(--navy);
    text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1.5rem;
  }
  .contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.2rem; }
  .contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
  .contact-item strong {
    display: block; font-family: 'Oswald', sans-serif; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 0.08em; color: var(--red); margin-bottom: 0.15rem;
  }
  .contact-item span { font-size: 0.95rem; color: #333; }
  .contact-form h3 {
    font-family: 'Oswald', sans-serif; font-size: 1.3rem; color: var(--navy);
    text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1.5rem;
  }
  .form-group { margin-bottom: 1rem; }
  .form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 0.8rem 1rem;
    border: 1.5px solid #d0d0d0; border-radius: 4px;
    font-family: 'Lora', serif; font-size: 0.95rem;
    background: white; transition: border-color 0.2s;
    outline: none;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--navy);
  }
  .form-group textarea { height: 120px; resize: vertical; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* FOOTER */
  footer {
    background: linear-gradient(180deg, #0b1220 0%, var(--dark) 100%); color: #8a9bb8;
    padding: 2.5rem 2rem; text-align: center;
    font-size: 0.88rem; line-height: 1.8;
    border-top: 4px solid var(--red);
  }
  footer strong { color: var(--gold); font-family: 'Oswald', sans-serif; }
  footer a { color: #6a7fa8; text-decoration: none; }
  footer a:hover { color: var(--gold); }

  /* DIVIDER */
  .divider {
    display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem;
  }
  .divider::before, .divider::after {
    content: ''; flex: 1; height: 2px; background: var(--gold); opacity: 0.3;
  }
  .divider-icon { font-size: 1.2rem; }

  /* Emergency banner */
  .emergency {
    background: var(--red); color: white; text-align: center;
    padding: 0.8rem; font-family: 'Oswald', sans-serif; font-size: 1rem; letter-spacing: 0.05em;
  }
  .emergency a { color: var(--gold); text-decoration: none; font-weight: 700; }

  @media (max-width: 768px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .about-img-wrap::before { display: none; }
  }


@media (max-width: 960px) {
  .nav-inner { flex-wrap: wrap; justify-content: center; padding: 0.75rem 1rem; }
  .nav-phone { order: 3; }
  .nav-links { flex-wrap: wrap; justify-content: center; }
}
