/*
  Fantasy Lawn Care - Stylesheet
  https://fantasylawncare.com

  Designed & Developed by Derrick Adams
  Email : me@derrickadams.tech
  © 2026 Derrick Adams. All rights reserved.

  Unauthorized reproduction or distribution of this
  code, in whole or in part, is strictly prohibited.
*/

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

  :root {
    --green-dark:   #1a4d2e;
    --green-mid:    #2d6a4f;
    --green-bright: #3a7d44;
    --green-light:  #e8f5e1;
    --gold:         #c8a84b;
    --white:        #ffffff;
    --off-white:    #f5f5f0;
    --text-dark:    #1a1a1a;
    --text-mid:     #444;
    --text-muted:   #777;
    --radius:       10px;
    --shadow:       0 4px 24px rgba(0,0,0,0.10);
  }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
  }

  /* ── ANNOUNCEMENT BAR ── */
  .announce-bar {
    background: linear-gradient(90deg, #b8922e, #d4a843, #b8922e);
    color: #1a1a1a;
    text-align: center;
    padding: 11px 48px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    letter-spacing: 0.01em;
  }
  .announce-bar svg { flex-shrink: 0; }
  .announce-close {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    color: rgba(0,0,0,0.45);
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
    transition: color 0.15s;
  }
  .announce-close:hover { color: #000; }

  /* ── NAV ── */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
  }
  .logo-top {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--green-dark);
    letter-spacing: 0.04em;
  }
  .logo-top span { color: var(--gold); }
  .logo-bottom {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 1px;
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-mid);
    transition: color 0.2s;
    position: relative;
  }
  .nav-links a.active,
  .nav-links a:hover { color: var(--green-dark); }
  .nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 2px;
    background: var(--green-bright);
    border-radius: 2px;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .btn-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border: 1.5px solid var(--green-dark);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--green-dark);
    text-decoration: none;
    transition: all 0.2s;
  }
  .btn-phone:hover { background: var(--green-light); }

  .btn-estimate-nav {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    background: var(--green-dark);
    color: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
  }
  .btn-estimate-nav:hover { background: var(--green-mid); }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 40px;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(105deg, rgba(10,30,15,0.72) 0%, rgba(10,30,15,0.38) 55%, rgba(10,30,15,0.10) 100%),
      url('images/hero-background.jpg') center/cover no-repeat;
    z-index: 0;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 48px 44px;
    gap: 40px;
  }

  .hero-left { max-width: 520px; }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 22px;
  }
  .hero-badge svg { opacity: 0.85; }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    line-height: 1.1;
    color: #fff;
    font-weight: 800;
    margin-bottom: 16px;
  }
  .hero-title em {
    font-style: italic;
    color: #fff;
  }

  .hero-sub {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255,255,255,0.82);
    margin-bottom: 34px;
    max-width: 420px;
  }

  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    background: var(--green-bright);
    color: #fff;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    border: none;
    cursor: pointer;
  }
  .btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); }

  .btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.65);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
  }
  .btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

  .btn-pay {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    background: #009cde;
    color: #fff;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    border: none;
    cursor: pointer;
  }
  .btn-pay:hover { background: #0085c0; transform: translateY(-1px); }

  /* ── ESTIMATE CARD ── */
  .estimate-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 30px 28px;
    width: 360px;
    flex-shrink: 0;
    box-shadow: 0 8px 48px rgba(0,0,0,0.22);
  }

  .estimate-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
  }

  .estimate-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .form-group { margin-bottom: 12px; }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e0e0d8;
    border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    resize: none;
    appearance: none;
    -webkit-appearance: none;
  }
  .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23777' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
  }
  .form-group textarea { height: 80px; }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--green-bright); }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: #aaa; }

  .btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--green-dark);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px;
    letter-spacing: 0.01em;
  }
  .btn-submit:hover { background: var(--green-mid); }

  .form-privacy {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    margin-top: 10px;
    font-size: 12px;
    color: var(--text-muted);
  }

  /* ── TRUST BADGES ── */
  .trust-bar {
    background: transparent;
    padding: 0 48px;
    position: relative;
    z-index: 10;
    margin-top: -36px;
    margin-bottom: 0;
  }

  .trust-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.10);
    overflow: hidden;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 26px;
    border-right: 1px solid rgba(0,0,0,0.07);
  }
  .trust-item:last-child { border-right: none; }

  .trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green-dark);
  }

  .trust-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
  }
  .trust-item p { font-size: 12.5px; color: var(--text-muted); }

  /* ── SERVICES ── */
  .services {
    background: var(--off-white);
    padding: 0;
  }


  .services-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-bright);
    margin-bottom: 14px;
  }

  .services-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 16px;
  }


  .btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--green-dark);
    color: #fff;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
  }
  .btn-view-all:hover { background: var(--green-mid); }

  /* ── ALL SERVICES LIST ── */
  .all-services-wrap {
    background: var(--off-white);
    padding: 72px 48px 56px;
  }
  .all-services-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .all-services-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
  }
  .svc-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .svc-category {
    background: var(--off-white);
    border-radius: 14px;
    padding: 24px 22px;
    border: 1px solid #e8e8e0;
  }
  .svc-cat-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--green-light);
  }
  .svc-cat-header svg { color: var(--green-bright); flex-shrink: 0; }
  .svc-list-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .svc-list-items li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14.5px;
    color: var(--text-mid);
    font-weight: 500;
  }
  .svc-list-items li::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green-bright);
    flex-shrink: 0;
  }

  .svc-category-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 16px;
    border-radius: 10px;
    overflow: hidden;
  }
  .svc-category-photos img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
    transition: transform 0.3s ease;
  }
  .svc-category-photos img:hover { transform: scale(1.04); }

  /* ── SERVICE AREA MAP ── */
  .svc-map-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
    align-items: center;
    padding: 0 48px 72px;
  }
  .svc-map-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 10px;
  }
  .svc-map-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-mid);
    margin-bottom: 20px;
  }
  .area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
  }
  .area-tag {
    padding: 5px 12px;
    background: var(--green-light);
    border: 1.5px solid #c2dfc8;
    border-radius: 99px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--green-dark);
  }
  .svc-map-right {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border: 3px solid #fff;
    height: 380px;
  }
  .map-container {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .svc-map-right iframe {
    width: 100%; height: 100%;
    border: none; display: block;
  }
  .map-overlay-card {
    position: absolute;
    top: 12px; left: 12px; right: 44px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    font-family: 'DM Sans', sans-serif;
    z-index: 10;
  }
  .map-overlay-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 10px 12px;
    gap: 8px;
  }
  .map-overlay-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .map-overlay-text strong {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
  }
  .map-overlay-text span {
    font-size: 11.5px;
    color: #555;
    line-height: 1.45;
  }
  .map-overlay-close {
    background: none;
    border: none;
    font-size: 18px;
    color: #777;
    cursor: pointer;
    flex-shrink: 0;
    line-height: 1;
    padding: 0;
    margin-top: -2px;
  }
  .map-overlay-close:hover { color: #333; }







  .service-card-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.01em;
  }

  /* ── REVIEWS ── */
  .reviews {
    background: #0e2117;
    padding: 72px 48px;
  }
  .reviews-head {
    text-align: center;
    margin-bottom: 52px;
  }
  .reviews-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 14px;
  }
  .reviews-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 18px;
  }
  .reviews-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 8px;
  }
  .reviews-stars span { color: #f5c542; font-size: 22px; }
  .reviews-avg {
    font-size: 14px;
    color: rgba(255,255,255,0.42);
  }
  .reviews-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .review-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 16px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: background 0.2s;
  }
  .review-card:hover { background: rgba(255,255,255,0.10); }
  .rc-stars { display: flex; gap: 3px; margin-bottom: 14px; }
  .rc-stars span { color: #f5c542; font-size: 15px; }
  .rc-text {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255,255,255,0.85);
    flex: 1;
    margin-bottom: 22px;
  }
  .rc-author { display: flex; align-items: center; gap: 12px; }
  .rc-avatar {
    width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, #2d6b3e, #0e2117);
    border: 1.5px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; color: #fff;
    letter-spacing: 0.03em;
  }
  .rc-name { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.9); }
  .rc-loc  { font-size: 12px; color: rgba(255,255,255,0.38); margin-top: 2px; }
  .reviews-source {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
  }
  .reviews-source a {
    color: rgba(255,255,255,0.48);
    text-decoration: underline;
    transition: color 0.18s;
  }
  .reviews-source a:hover { color: rgba(255,255,255,0.75); }

  /* ── FOOTER ── */
  .footer-separator {
    height: 6px;
    width: 100%;
    background: linear-gradient(90deg, #071510, #2d6a4f, #3a7d44, #2d6a4f, #071510);
  }

  footer {
    background: #071510;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
  }

  .footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 48px;
    padding: 52px 48px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-brand-desc {
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(255,255,255,0.48);
    margin: 14px 0 20px;
    max-width: 270px;
  }

  .footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.03em;
  }
  .footer-logo-text span { color: var(--gold); }
  .footer-logo-sub {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2px;
  }




  .footer-owner {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
  }
  .footer-owner img {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 2px solid rgba(255,255,255,0.15);
    flex-shrink: 0;
  }
  .footer-owner strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
  }
  .footer-owner span {
    font-size: 11.5px;
    color: rgba(255,255,255,0.38);
  }

  .footer-social { display: flex; gap: 9px; margin-top: 4px; }
  .footer-social a {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.55);
    transition: background 0.18s, color 0.18s;
  }
  .footer-social a:hover { background: rgba(255,255,255,0.14); color: #fff; }

  .footer-col h4 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
    margin-bottom: 18px;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul a {
    font-size: 13.5px;
    color: rgba(255,255,255,0.62);
    transition: color 0.18s;
  }
  .footer-col ul a:hover { color: #fff; }

  .footer-contact-item {
    display: flex; align-items: flex-start; gap: 11px;
    margin-bottom: 13px; font-size: 13.5px;
    color: rgba(255,255,255,0.62);
    line-height: 1.5;
  }
  .footer-contact-item svg {
    flex-shrink: 0; margin-top: 2px;
    color: #3a8a50;
  }
  .footer-contact-item a {
    color: rgba(255,255,255,0.62);
    transition: color 0.18s;
  }
  .footer-contact-item a:hover { color: #fff; }

  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    font-size: 12px;
    color: rgba(255,255,255,0.28);
    gap: 16px;
    flex-wrap: wrap;
  }
  .footer-bottom a { color: rgba(255,255,255,0.36); transition: color 0.18s; }
  .footer-bottom a:hover { color: rgba(255,255,255,0.65); }
  .footer-bottom span { color: var(--gold); opacity: 0.8; }

  /* ── LIGHTBOX ── */
  .lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
  }
  .lightbox.open { display: flex; }
  .lightbox img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: 10px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
    object-fit: contain;
    animation: lbIn 0.22s ease;
    transition: opacity 0.12s ease;
  }
  @keyframes lbIn {
    from { opacity: 0; transform: scale(0.94); }
    to   { opacity: 1; transform: scale(1); }
  }
  .lightbox-close {
    position: absolute;
    top: 20px; right: 24px;
    color: rgba(255,255,255,0.7);
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.15s;
    background: none; border: none;
  }
  .lightbox-close:hover { color: #fff; }
  .lb-prev, .lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.13);
    border: none;
    color: #fff;
    font-size: 52px;
    line-height: 1;
    width: 56px; height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.18s;
    z-index: 10;
    padding: 0;
    user-select: none;
  }
  .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.26); }
  .lb-prev { left: 20px; }
  .lb-next { right: 20px; }
  .lightbox-caption {
    position: absolute;
    bottom: 24px;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    text-align: center;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-badge  { animation: fadeUp 0.5s ease both; animation-delay: 0.1s; }
  .hero-title  { animation: fadeUp 0.5s ease both; animation-delay: 0.2s; }
  .hero-sub    { animation: fadeUp 0.5s ease both; animation-delay: 0.3s; }
  .hero-ctas   { animation: fadeUp 0.5s ease both; animation-delay: 0.4s; }
  .estimate-card { animation: fadeUp 0.6s ease both; animation-delay: 0.35s; }

  /* ── HAMBURGER & MOBILE MENU ── */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px; height: 36px;
    background: none; border: none;
    cursor: pointer; padding: 4px;
  }
  .hamburger span {
    display: block; height: 2px;
    background: var(--green-dark);
    border-radius: 2px;
    transition: all 0.25s ease;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 8px 20px 16px;
    position: sticky;
    top: 57px;
    z-index: 99;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    padding: 13px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    text-decoration: none;
    transition: color 0.18s;
  }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu a:hover { color: var(--green-dark); }
  .mobile-menu-call {
    display: flex !important;
    align-items: center;
    gap: 8px;
    color: var(--green-dark) !important;
    font-weight: 700 !important;
    margin-top: 4px;
  }

  @media (max-width: 767px) {
    .hamburger { display: flex; }
  }

  /* ── RESPONSIVE ── */

  /* Tablet: 768px – 1024px */
  @media (max-width: 1024px) {
    nav { padding: 16px 28px; }
    .hero-content { padding: 56px 28px 100px; gap: 28px; }
    .hero-grid { grid-template-columns: 1fr 1fr; min-height: auto; }
    h1 { font-size: 2.8rem; }
    .trust-bar { padding: 0 28px; }
    .all-services-wrap { padding: 56px 28px 44px; }
    .services-inner { gap: 32px; }
    .svc-map-wrap { padding: 0 28px 56px; gap: 32px; }
    .reviews { padding: 64px 28px; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-main { grid-template-columns: 1fr 1fr; padding: 48px 28px 36px; gap: 32px; }
    .footer-bottom { padding: 18px 28px; }
  }

  /* Mobile: up to 767px */
  @media (max-width: 767px) {

    /* NAV */
    nav {
      padding: 14px 20px;
      flex-wrap: wrap;
      gap: 0;
      position: sticky;
    }
    .logo { flex: 1; }
    .nav-links { display: none; }
    .nav-actions { gap: 8px; }
    .btn-phone { display: none; }
    .btn-estimate-nav { padding: 9px 16px; font-size: 13px; }

    /* HERO */
    .hero-content {
      padding: 36px 20px 90px;
      flex-direction: column;
    }
    .hero-grid {
      grid-template-columns: 1fr;
      gap: 28px;
      min-height: auto;
    }
    h1 { font-size: 2.2rem; line-height: 1.05; }
    .hero-sub { font-size: 15px; }
    .hero-ctas { flex-direction: column; gap: 10px; }
    .btn-primary, .btn-outline-white, .btn-pay {
      width: 100%;
      justify-content: center;
      padding: 14px 20px;
    }
    .estimate-card {
      width: 100%;
      padding: 24px 20px;
    }
    .estimate-card h3 { font-size: 20px; }

    /* TRUST BAR */
    .trust-bar { padding: 0 16px; margin-top: -28px; }
    .trust-inner {
      grid-template-columns: repeat(2, 1fr);
      border-radius: 14px;
    }
    .trust-item { padding: 16px 14px; gap: 10px; }
    .trust-item:nth-child(2) { border-right: none; }
    .trust-item:nth-child(3) { border-top: 1px solid rgba(0,0,0,0.07); }
    .trust-item:nth-child(4) { border-top: 1px solid rgba(0,0,0,0.07); border-right: none; }
    .trust-icon { width: 36px; height: 36px; }
    .trust-item h4 { font-size: 12.5px; }
    .trust-item p { font-size: 11px; }

    /* SERVICES */
    .all-services-wrap { padding: 48px 20px; }
    .services-inner {
      grid-template-columns: 1fr;
      gap: 28px;
    }
    .services-title { font-size: 26px; }
    .service-cards { grid-template-columns: 1fr; gap: 12px; }
    .service-card { aspect-ratio: 16/9; }

    /* SERVICE AREA MAP */
    .svc-map-wrap {
      grid-template-columns: 1fr;
      padding: 0 20px 48px;
      gap: 24px;
    }
    .svc-map-title { font-size: 22px; }
    .svc-map-right { height: 280px; }

    /* REVIEWS */
    .reviews { padding: 56px 20px; }
    .reviews-title { font-size: 1.8rem; }
    .reviews-grid { grid-template-columns: 1fr; gap: 12px; }

    /* FOOTER */
    .footer-main {
      grid-template-columns: 1fr;
      padding: 40px 20px 28px;
      gap: 32px;
    }
    .footer-brand-desc { max-width: 100%; }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      padding: 16px 20px;
      gap: 8px;
    }
    .footer-separator { height: 5px; }

    /* GENERAL */
    .btn-view-all { width: 100%; justify-content: center; }
    .svc-map-wrap { margin-top: 0; }
    .map-overlay-card { right: 12px; }
    .cta-banner { display: none; }
    .all-services-wrap { padding: 48px 20px; }
    .svc-category-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .all-services-title { font-size: 24px; }
  }

  /* Small mobile: up to 400px */
  @media (max-width: 400px) {
    h1 { font-size: 1.9rem; }
    .hero-title { font-size: 1.9rem; }
    .trust-inner { grid-template-columns: 1fr; }
    .trust-item { border-right: none !important; border-top: 1px solid rgba(0,0,0,0.07); }
    .trust-item:first-child { border-top: none; }
  }
  /* ── WEATHER (inline in service area) ── */
  .wx-inline {
    margin-top: 28px;
  }
  .wx-inline-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-bottom: 12px;
  }
  .weather-loading {
    color: #777;
    font-size: 13px;
    padding: 12px 0;
  }
  .weather-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 7px;
  }
  .wx-card {
    background: #fff;
    border: 1px solid #dde8d8;
    border-radius: 10px;
    padding: 10px 6px;
    text-align: center;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  }
  .wx-card:hover { background: #f0f7ed; box-shadow: 0 3px 10px rgba(0,0,0,0.1); }
  .wx-day {
    font-weight: 700;
    font-size: 11px;
    color: var(--green-dark);
    text-transform: uppercase;
    letter-spacing: 0.8px;
  }
  .wx-date {
    font-size: 10px;
    color: #888;
    margin: 2px 0 7px;
  }
  .wx-icon { font-size: 22px; margin-bottom: 6px; }
  .wx-label {
    font-size: 10px;
    color: #666;
    margin-bottom: 7px;
    min-height: 24px;
    line-height: 1.3;
  }
  .wx-temps { display: flex; justify-content: center; gap: 6px; }
  .wx-hi { font-weight: 700; color: #1a3d20; font-size: 13px; }
  .wx-lo { color: #999; font-size: 12px; }
  .wx-rain { font-size: 10px; color: #3a85a8; display: block; margin-top: 4px; }

  @media (max-width: 767px) {
    .weather-grid {
      grid-template-columns: repeat(4, 1fr);
    }
    .weather-grid .wx-card:nth-child(n+5) {
      display: none;
    }
  }
