/* ─── QUEEN CITY PLUMBING — HOMEPAGE-SPECIFIC STYLES ─── */

    /* ─── TOKENS — pulled from the van ─── */
    :root {
      --orange:       #E8510A;   /* van body — bold warm orange */
      --orange-dark:  #C94208;   /* hover / depth */
      --orange-glow:  #FF6B2B;   /* lighter accent */
      --navy:         #1A2A6C;   /* van swoosh / logo circle */
      --navy-deep:    #0F1A45;   /* darkest navy for backgrounds */
      --navy-mid:     #223080;   /* mid navy */
      --white:        #FFFFFF;
      --off-white:    #F7F4F0;
      --text:         #1C2030;
      --gray:         #6B7280;
      --gray-lt:      #E8E8EC;
      --border:       #D0D0DA;

      --display: 'Barlow Condensed', sans-serif;
      --body:    'Inter', sans-serif;
      --max: 1120px;
    }
    body { font-family: var(--body); color: var(--text); background: var(--white); line-height: 1.6; }
    .nav-cta {
      background: var(--orange) !important;
      color: var(--white) !important;
      padding: 10px 22px !important;
      border-radius: 3px;
      font-weight: 600 !important;
      transition: background 0.15s !important;
    }
    /* ─── HERO ─── */
    .hero {
      background: var(--navy-deep);
      position: relative;
      overflow: hidden;
      padding: 0 24px;
    }
    /* Diagonal orange slash — the van's swoosh energy */
    .hero::after {
      content: '';
      position: absolute;
      bottom: 0; right: 0;
      width: 45%;
      height: 100%;
      background: linear-gradient(135deg, transparent 30%, rgba(232,81,10,0.12) 100%);
      pointer-events: none;
    }
    /* Subtle grid texture */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
      background-size: 40px 40px;
      pointer-events: none;
    }
    .hero-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 48px 0 72px;
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }
    .hero-left {}
    .hero-brand {
      font-family: var(--display);
      font-weight: 800;
      font-size: clamp(16px, 2vw, 19px);
      letter-spacing: 0.04em;
      color: rgba(255,255,255,0.7);
      margin-bottom: 14px;
    }
    .hero-brand span { color: var(--orange-glow); }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(232,81,10,0.15);
      border: 1px solid rgba(232,81,10,0.35);
      color: var(--orange-glow);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 2px;
      margin-bottom: 24px;
    }
    h1 {
      font-family: var(--display);
      font-weight: 800;
      font-size: clamp(44px, 6vw, 72px);
      line-height: 1.0;
      color: var(--white);
      margin-bottom: 6px;
    }
    .h1-sub {
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(20px, 3vw, 30px);
      color: var(--orange-glow);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 24px;
      font-style: italic;
    }
    .hero-tagline {
      font-size: 17px;
      color: rgba(255,255,255,0.65);
      margin-bottom: 36px;
      line-height: 1.7;
      max-width: 420px;
    }
    .hero-tagline strong { color: var(--white); }
    .btn-orange {
      background: var(--orange);
      color: var(--white);
      padding: 15px 28px;
      font-weight: 700;
      font-size: 16px;
      border-radius: 3px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: background 0.15s;
    }
    .btn-ghost {
      border: 2px solid rgba(255,255,255,0.2);
      color: var(--white);
      padding: 15px 28px;
      font-weight: 600;
      font-size: 16px;
      border-radius: 3px;
      text-decoration: none;
      display: inline-block;
      transition: border-color 0.15s;
    }
    /* Hero right — van card */
    .hero-right {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .van-showcase {
      background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 4px;
      padding: 28px;
      text-align: center;
    }
    /* Stylized van silhouette using CSS/SVG */
    .van-art {
      width: 100%;
      max-width: 340px;
      margin: 0 auto 20px;
      display: block;
    }
    .van-caption {
      font-family: var(--display);
      font-size: 13px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
    }
    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
    .stat-pill {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 3px;
      padding: 16px 12px;
      text-align: center;
    }
    .stat-num {
      font-family: var(--display);
      font-weight: 800;
      font-size: 30px;
      color: var(--white);
      line-height: 1;
    }
    .stat-num sup { font-size: 16px; color: var(--orange); }
    .stat-label {
      font-size: 11px;
      color: rgba(255,255,255,0.4);
      margin-top: 4px;
      letter-spacing: 0.05em;
    }
    .trust-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 14px 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.04em;
      padding: 6px 20px;
      border-right: 1px solid rgba(255,255,255,0.25);
    }
    .trust-item svg { opacity: 0.9; }
    /* ─── SECTIONS ─── */
    section { padding: 80px 24px; }
    /* Section eyebrow */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
    }
    h2 {
      font-family: var(--display);
      font-weight: 800;
      font-size: clamp(30px, 4.5vw, 46px);
      line-height: 1.05;
      color: var(--navy-deep);
      margin-bottom: 12px;
    }
    h3 {
      font-family: var(--display);
      font-weight: 700;
      font-size: 21px;
      color: var(--navy-deep);
      margin-bottom: 8px;
    }
    /* ─── SERVICES ─── */
    .services { background: var(--white); }
    .services-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: end;
      margin-bottom: 48px;
    }
    .services-header p { font-size: 17px; }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
    }
    .service-icon {
      width: 48px; height: 48px;
      background: var(--navy-deep);
      border-radius: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }
    .service-card h3 { font-size: 19px; margin-bottom: 10px; }
    .service-card p { font-size: 14px; line-height: 1.7; }
    /* ─── WHY US ─── */
    .why { background: var(--navy-deep); }
    .why-layout {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 80px;
      align-items: start;
    }
    .why h2 { color: var(--white); margin-bottom: 20px; }
    .why .eyebrow::before { background: var(--orange); }
    .why-left p { color: rgba(255,255,255,0.55); font-size: 16px; line-height: 1.8; margin-bottom: 32px; }
    .why-cta-block {
      background: var(--orange);
      border-radius: 4px;
      padding: 28px;
    }
    .why-cta-block p {
      color: rgba(255,255,255,0.85);
      font-size: 15px;
      margin-bottom: 18px;
    }
    .why-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }
    .why-feature {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .why-feature-header {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .why-feature h3 {
      font-size: 17px;
      color: var(--white);
      margin-bottom: 0;
    }
    .why-feature p { color: rgba(255,255,255,0.45); font-size: 14px; line-height: 1.7; }
    /* ─── AREAS ─── */
    .areas { background: var(--off-white); }
    .areas-intro { max-width: 560px; margin-bottom: 44px; }
    .counties-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 28px;
    }
    .county-block {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 24px;
    }
    .county-state {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 6px;
    }
    .county-name {
      font-family: var(--display);
      font-weight: 800;
      font-size: 20px;
      color: var(--navy-deep);
      margin-bottom: 14px;
    }
    .county-cities {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    .city-tag {
      background: var(--off-white);
      border: 1px solid var(--border);
      color: var(--gray);
      font-size: 12px;
      font-weight: 500;
      padding: 4px 10px;
      border-radius: 20px;
    }
    /* ─── REVIEWS ─── */
    .reviews { background: var(--white); }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px;
      margin-top: 44px;
    }
    .review-card {
      border: 1.5px solid var(--gray-lt);
      border-radius: 4px;
      padding: 28px;
    }
    .review-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 16px;
    }
    .stars { color: var(--orange); font-size: 15px; letter-spacing: 2px; }
    .google-badge {
      font-size: 11px;
      font-weight: 600;
      color: var(--gray);
      background: var(--off-white);
      padding: 3px 8px;
      border-radius: 10px;
    }
    .review-text {
      color: var(--text);
      font-size: 15px;
      line-height: 1.75;
      margin-bottom: 20px;
      font-style: italic;
    }
    .review-divider {
      height: 1px;
      background: var(--gray-lt);
      margin-bottom: 16px;
    }
    .review-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .review-avatar {
      width: 38px; height: 38px;
      background: var(--navy-deep);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--display);
      font-weight: 700;
      font-size: 15px;
      color: var(--white);
      flex-shrink: 0;
    }
    .review-name { font-weight: 600; font-size: 14px; color: var(--text); }
    .review-loc { font-size: 12px; color: var(--gray); }
    /* ─── FAQ ─── */
    .faq { background: var(--navy-deep); }
    .faq h2 { color: var(--white); }
    .faq-layout {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 64px;
      align-items: start;
    }
    .faq-left p { color: rgba(255,255,255,0.5); font-size: 16px; line-height: 1.8; margin-top: 16px; }
    .faq-left .eyebrow::before { background: var(--orange); }
    .faq-cta-block {
      margin-top: 32px;
    }
    .faq-phone {
      font-family: var(--display);
      font-weight: 800;
      font-size: 28px;
      color: var(--orange-glow);
      text-decoration: none;
      display: block;
      margin-bottom: 6px;
    }
    .faq-phone:hover { color: var(--orange); }
    .faq-hours { font-size: 13px; color: rgba(255,255,255,0.35); }
    .faq-list {}
    .faq-q {
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      padding: 22px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      font-family: var(--display);
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
    }
    .faq-a { display: none; padding: 0 0 22px; }
    .faq-a p { font-size: 15px; color: rgba(255,255,255,0.5); }
    /* ─── CTA BAND ─── */
    .cta-band {
      background: var(--orange);
      padding: 72px 24px;
    }
    .cta-number {
      font-family: var(--display);
      font-weight: 800;
      font-size: 40px;
      color: var(--white);
      text-decoration: none;
      display: block;
      letter-spacing: 0.02em;
      line-height: 1;
      margin-bottom: 8px;
    }
    .cta-number:hover { opacity: 0.9; }
    .btn-dark {
      background: var(--navy-deep);
      color: var(--white);
      padding: 13px 28px;
      font-weight: 700;
      font-size: 15px;
      border-radius: 3px;
      text-decoration: none;
      display: inline-block;
      transition: background 0.15s;
    }
    /* ─── FOOTER ─── */
    footer {
      background: var(--navy-deep);
      border-top: 3px solid var(--orange);
      padding: 56px 24px 32px;
      color: rgba(255,255,255,0.4);
    }
    .footer-logo-text {
      font-family: var(--display);
      font-weight: 800;
      font-size: 22px;
      color: var(--white);
      letter-spacing: 0.04em;
      margin-bottom: 6px;
    }
    .footer-tagline {
      font-size: 12px;
      letter-spacing: 0.06em;
      color: rgba(255,255,255,0.35);
      margin-bottom: 16px;
      text-transform: uppercase;
    }
    .footer-desc { font-size: 14px; line-height: 1.7; max-width: 280px; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.07);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 13px;
    }
    .license-info {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      padding: 6px 14px;
      border-radius: 2px;
      font-size: 12px;
    }
    /* ─── MOBILE ─── */
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 56px 0; }
      .van-showcase { display: none; }
      .services-header { grid-template-columns: 1fr; }
      .why-layout { grid-template-columns: 1fr; gap: 40px; }
      .why-features { grid-template-columns: 1fr; }
      .counties-row { grid-template-columns: 1fr; }
      .faq-layout { grid-template-columns: 1fr; gap: 40px; }
      .cta-inner { grid-template-columns: 1fr; }
      .cta-right { text-align: left; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
      .trust-item { border-right: none; padding: 4px 12px; }
    }
    @media (max-width: 600px) {
      .nav-links { display: none; }
      .footer-top { grid-template-columns: 1fr; }
    }
