  /* ===== RESET & BASE ===== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --navy:    #0d2a4e;
    --blue:    #1a5fa8;
    --blue2:   #2176c7;
    --sky:     #e6f1fb;
    --skymd:   #b5d4f4;
    --grey1:   #f5f6f8;
    --grey2:   #e2e5ea;
    --grey3:   #9aa3b0;
    --grey4:   #4a5568;
    --white:   #ffffff;
    --text:    #1a2333;
    --text2:   #4a5568;
    --radius:  10px;
    --shadow:  0 4px 24px rgba(13,42,78,0.10);
    --shadow2: 0 2px 8px rgba(13,42,78,0.08);
    --transition: 0.22s ease;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Segoe UI', Arial, sans-serif; color: var(--text); background: var(--white); line-height: 1.65; }
  img { max-width: 100%; display: block; }
  a { color: var(--blue2); text-decoration: none; }
  a:hover { text-decoration: underline; }

  /* ===== UTILITY ===== */
  .container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
  .btn {
    display: inline-block; padding: 14px 32px; border-radius: 8px; font-size: 1rem;
    font-weight: 700; cursor: pointer; transition: background var(--transition), transform var(--transition);
    border: none; text-align: center;
  }
  .btn-primary { background: var(--blue2); color: var(--white); }
  .btn-primary:hover { background: var(--navy); transform: translateY(-1px); text-decoration: none; color: var(--white); }
  .btn-outline { background: transparent; color: var(--blue2); border: 2px solid var(--blue2); }
  .btn-outline:hover { background: var(--blue2); color: var(--white); text-decoration: none; }
  .btn-white { background: var(--white); color: var(--navy); }
  .btn-white:hover { background: var(--sky); text-decoration: none; }
  .section-label {
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--blue2); margin-bottom: 10px;
  }
  .section-title { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
  .section-sub  { font-size: 1.05rem; color: var(--text2); max-width: 600px; }

  /* ===== NAV ===== */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: 20px 0;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
    background: transparent;
  }
  .site-header.is-scrolled {
    background: var(--navy);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  }
  .nav-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-logo {
    display: flex; align-items: center;
    height: 60px; text-decoration: none;
  }
  .nav-logo-img {
    height: 100%; width: auto; display: block;
  }
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 910;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
  }
  .nav-toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: nowrap;
  }
  .nav-links {
    display: flex;
    gap: 14px;
    list-style: none;
    flex-wrap: nowrap;
  }
  .nav-links a {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: opacity 0.2s;
    white-space: nowrap;
  }
  .nav-links a:hover { opacity: 0.7; text-decoration: none; }
  .nav-links .nav-link-highlight { color: var(--skymd); }
  .nav-links .nav-tel { color: var(--skymd); font-weight: 700; font-size: 0.875rem; text-transform: none; }
  .nav-cta {
    padding: 12px 24px;
    background: var(--blue2);
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
  }
  .nav-cta:hover { background: var(--navy); text-decoration: none; color: var(--white); }

  /* ===== HERO ===== */
  .hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1a4a8a 60%, #1e6fc5 100%);
    color: var(--white); padding: 160px 0 70px; position: relative; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .hero-inner { display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: center; position: relative; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.12); border-radius: 50px; padding: 6px 16px;
    font-size: 0.85rem; font-weight: 600; margin-bottom: 22px; border: 1px solid rgba(255,255,255,0.2);
  }
  .hero-badge::before { content: '✓'; color: var(--skymd); font-weight: 900; }
  .hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
  .hero h1 span { color: var(--skymd); }
  .hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 34px; max-width: 520px; }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
  .hero-trust { display: flex; gap: 24px; margin-top: 40px; flex-wrap: wrap; }
  .trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: rgba(255,255,255,0.75); }
  .trust-icon { font-size: 1.1rem; }

  /* QUICK BOOKING CARD */
  .book-card {
    background: var(--white); border-radius: 16px; padding: 32px 28px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.22); color: var(--text);
  }
  .book-card h3 { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
  .book-card p { font-size: 0.88rem; color: var(--text2); margin-bottom: 22px; }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--grey4); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.06em; }
  .form-group input, .form-group select {
    width: 100%; padding: 11px 14px; border: 1.5px solid var(--grey2); border-radius: 8px;
    font-size: 0.97rem; color: var(--text); background: var(--white);
    transition: border-color var(--transition);
  }
  .form-group input:focus, .form-group select:focus { outline: none; border-color: var(--blue2); }
  .book-card .btn { width: 100%; font-size: 1.05rem; padding: 15px; margin-top: 6px; }
  .book-note { font-size: 0.8rem; color: var(--grey3); text-align: center; margin-top: 12px; }

  /* HERO CARD CALENDAR */
  .hcal-wrap { margin-bottom: 16px; }
  .hcal-label { font-size: 0.82rem; font-weight: 700; color: var(--grey4); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; display: block; }
  .hcal-box { border: 1.5px solid var(--grey2); border-radius: 10px; padding: 12px; background: var(--white); }
  .hcal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
  .hcal-month-label { font-size: 0.95rem; font-weight: 800; color: var(--navy); }
  .hcal-nav { background: var(--grey1); border: 1.5px solid var(--grey2); border-radius: 6px; width: 30px; height: 30px; cursor: pointer; font-size: 1.1rem; line-height: 1; display: inline-flex; align-items: center; justify-content: center; }
  .hcal-nav:hover { background: var(--sky); }
  .hcal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
  .hcal-dn { text-align: center; font-size: 0.68rem; font-weight: 700; color: var(--grey3); padding: 4px 0; text-transform: uppercase; }
  .hcal-d { height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 6px; font-size: 0.82rem; cursor: pointer; border: 1.5px solid transparent; color: var(--text); }
  .hcal-d:hover { background: var(--sky); border-color: var(--skymd); }
  .hcal-d.sel { background: var(--blue2); color: var(--white); border-color: var(--blue2); font-weight: 700; }
  .hcal-d.rng { background: var(--sky); border-color: transparent; color: var(--text); }
  .hcal-d.today { border-color: var(--blue2); font-weight: 700; color: var(--blue2); }
  .hcal-d.today.sel { color: var(--white); }
  .hcal-d.dis { color: var(--grey2); cursor: default; pointer-events: none; }
  .hcal-d.empty { cursor: default; pointer-events: none; }
  .hcal-result { margin-top: 8px; padding: 8px 12px; background: var(--sky); border-radius: 7px; font-size: 0.82rem; color: var(--navy); font-weight: 600; display: none; border-left: 3px solid var(--blue2); }
  .hcal-result.show { display: block; }

  /* ===== STATS BAR ===== */
  .stats-bar { background: var(--sky); border-bottom: 1px solid var(--skymd); padding: 28px 0; }
  .stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .stat-item { text-align: center; }
  .stat-num { font-size: 2rem; font-weight: 900; color: var(--navy); line-height: 1; }
  .stat-label { font-size: 0.85rem; color: var(--text2); margin-top: 4px; }

  /* ===== HOW IT WORKS ===== */
  .how { padding: 90px 0; }
  .how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 52px; }
  .how-step {
    background: var(--white); border-radius: var(--radius); padding: 32px 28px;
    border: 1.5px solid var(--grey2); text-align: center; position: relative;
    transition: box-shadow var(--transition), transform var(--transition);
  }
  .how-step:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
  .step-num {
    width: 52px; height: 52px; border-radius: 50%; background: var(--blue2); color: var(--white);
    font-size: 1.3rem; font-weight: 900; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
  }
  .step-icon { font-size: 2rem; margin-bottom: 12px; }
  .how-step h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
  .how-step p { font-size: 0.95rem; color: var(--text2); }
  .step-connector {
    position: absolute; top: 52px; right: -18px; width: 36px; height: 2px;
    background: var(--skymd); z-index: 1;
  }
  .how-step:last-child .step-connector { display: none; }

  /* ===== DUMPSTER PRODUCT ===== */
  .product { padding: 90px 0; background: var(--grey1); }
  .product-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .product-img-wrap {
    background: linear-gradient(135deg, var(--navy), var(--blue2));
    border-radius: 16px; aspect-ratio: 4/3;
    display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
  }
  /* SVG dumpster illustration */
  .dumpster-svg { width: 85%; max-width: 360px; }
  .product-features { list-style: none; margin: 28px 0 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .product-features li {
    display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: var(--text2);
  }
  .feature-check { color: var(--blue2); font-size: 1rem; font-weight: 900; flex-shrink: 0; margin-top: 2px; }
  .spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 20px 0; }
  .spec-box {
    background: var(--sky); border: 1px solid var(--skymd); border-radius: 8px;
    padding: 14px 12px; text-align: center;
  }
  .spec-val { font-size: 1.15rem; font-weight: 800; color: var(--navy); }
  .spec-key { font-size: 0.78rem; color: var(--text2); margin-top: 3px; }

  /* ===== USES ===== */
  .uses { padding: 90px 0; }
  .uses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
  .use-card {
    border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--grey2);
    transition: box-shadow var(--transition), transform var(--transition);
    background: var(--white);
  }
  .use-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
  .use-header {
    padding: 28px 24px 20px; background: linear-gradient(135deg, var(--navy), var(--blue2));
    color: var(--white);
  }
  .use-icon { font-size: 2.2rem; margin-bottom: 10px; }
  .use-header h3 { font-size: 1.05rem; font-weight: 800; }
  .use-body { padding: 20px 24px 24px; }
  .use-body p { font-size: 0.93rem; color: var(--text2); }

  /* ===== PRICING ===== */
  .pricing { padding: 90px 0; background: var(--grey1); }
  .pricing-card {
    max-width: 640px; margin: 48px auto 0; background: var(--white);
    border-radius: 18px; box-shadow: var(--shadow); overflow: hidden; border: 2px solid var(--blue2);
  }
  .pricing-header { background: var(--navy); color: var(--white); padding: 36px 40px 28px; text-align: center; }
  .pricing-header h3 { font-size: 1.6rem; font-weight: 900; margin-bottom: 8px; }
  .pricing-header p { opacity: 0.8; font-size: 0.95rem; }
  .price-display { margin: 20px 0 4px; }
  .price-from { font-size: 1.1rem; font-weight: 700; opacity: 0.7; }
  .price-num { font-size: 3.25rem; font-weight: 900; color: var(--skymd); line-height: 1; }
  .price-period { font-size: 0.9rem; opacity: 0.7; }
  .pricing-body { padding: 36px 40px; }
  .pricing-includes { list-style: none; margin-bottom: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .pricing-includes li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: var(--text); }
  .pricing-includes li::before { content: '✓'; color: var(--blue2); font-weight: 900; }
  .pricing-note { font-size: 0.85rem; color: var(--grey3); text-align: center; margin-top: 16px; }
  .pricing-deal { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); padding: 16px 20px; margin-top: 20px; text-align: center; }
  .pricing-deal-label { font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; color: var(--white); margin-bottom: 4px; }
  .pricing-deal-text { font-size: 1rem; color: rgba(255,255,255,0.85); }
  .pricing-body .btn { width: 100%; font-size: 1.05rem; padding: 16px; }

  /* ===== TESTIMONIALS ===== */
  .testimonials { padding: 90px 0; }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
  .testi-card {
    background: var(--white); border: 1.5px solid var(--grey2); border-radius: var(--radius);
    padding: 28px; transition: box-shadow var(--transition);
  }
  .testi-card:hover { box-shadow: var(--shadow2); }
  .stars { color: #f59e0b; font-size: 1.05rem; margin-bottom: 14px; letter-spacing: 2px; }
  .testi-text { font-size: 0.97rem; color: var(--text2); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-avatar {
    width: 42px; height: 42px; border-radius: 50%; background: var(--blue2); color: var(--white);
    display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.95rem; flex-shrink: 0;
  }
  .testi-name { font-weight: 700; font-size: 0.95rem; }
  .testi-loc { font-size: 0.82rem; color: var(--grey3); }

  /* ===== SERVICE AREA ===== */
  .service-area { padding: 90px 0; background: var(--sky); }
  .area-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
  .area-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }
  .area-tag {
    background: var(--white); border: 1.5px solid var(--skymd); border-radius: 8px;
    padding: 10px 14px; font-size: 0.93rem; color: var(--navy); font-weight: 600;
    display: flex; align-items: center; gap: 8px;
  }
  .area-tag::before { content: '📍'; font-size: 0.85rem; }
  .map-placeholder {
    background: linear-gradient(135deg, var(--navy), var(--blue2));
    border-radius: 16px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; color: var(--white); text-align: center; padding: 32px;
  }
  .map-placeholder h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
  .map-placeholder p { opacity: 0.75; font-size: 0.9rem; }

  /* ===== FAQ ===== */
  .faq { padding: 90px 0; }
  .faq-list { max-width: 760px; margin: 52px auto 0; }
  .faq-item {
    border-bottom: 1.5px solid var(--grey2); overflow: hidden;
  }
  .faq-q {
    width: 100%; text-align: left; background: none; border: none; cursor: pointer;
    padding: 22px 8px; font-size: 1.02rem; font-weight: 700; color: var(--navy);
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    transition: color var(--transition);
  }
  .faq-q:hover { color: var(--blue2); }
  .faq-icon { font-size: 1.4rem; color: var(--blue2); font-weight: 300; flex-shrink: 0; transition: transform var(--transition); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
  .faq-a.open { max-height: 400px; }
  .faq-a-inner { padding: 0 8px 22px; font-size: 0.97rem; color: var(--text2); line-height: 1.75; }
  .faq-icon.open { transform: rotate(45deg); }

  /* ===== CTA BANNER ===== */
  .cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue2) 100%);
    color: var(--white); padding: 80px 0; text-align: center;
  }
  .cta-banner h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; margin-bottom: 16px; }
  .cta-banner p { font-size: 1.1rem; opacity: 0.85; margin-bottom: 36px; }
  .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .cta-tel { font-size: 1.2rem; font-weight: 900; display: flex; align-items: center; gap: 8px; color: var(--skymd); }

  /* ===== FOOTER ===== */
  footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 60px 0 28px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
  .footer-brand h3 { font-size: 1.35rem; font-weight: 900; color: var(--white); margin-bottom: 12px; }
  .footer-brand h3 span { color: var(--skymd); }
  .footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
  .footer-col h4 { font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--skymd); margin-bottom: 16px; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: color var(--transition); }
  .footer-col a:hover { color: var(--skymd); text-decoration: none; }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; font-size: 0.85rem; }
  .footer-bottom-links { display: flex; gap: 20px; }
  .footer-bottom a { color: rgba(255,255,255,0.5); }
  .footer-bottom a:hover { color: var(--white); text-decoration: none; }

  /* ===== MODAL ===== */
  .modal-overlay {
    display: none; position: fixed; inset: 0; background: rgba(10,20,40,0.6);
    z-index: 9999; align-items: center; justify-content: center; padding: 20px;
    backdrop-filter: blur(3px);
  }
  .modal-overlay.open { display: flex; }
  .modal {
    background: var(--white); border-radius: 18px; width: 100%; max-width: 680px;
    max-height: 92vh; overflow-y: auto; box-shadow: 0 24px 64px rgba(0,0,0,0.3);
    animation: modalIn 0.28s ease;
  }
  @keyframes modalIn { from { opacity: 0; transform: scale(0.94) translateY(16px); } to { opacity: 1; transform: scale(1) translateY(0); } }
  .modal-header {
    background: var(--navy); color: var(--white); padding: 28px 32px 24px;
    border-radius: 18px 18px 0 0; display: flex; justify-content: space-between; align-items: flex-start;
  }
  .modal-header h2 { font-size: 1.4rem; font-weight: 900; }
  .modal-header p { opacity: 0.75; font-size: 0.9rem; margin-top: 4px; }
  .modal-close {
    background: rgba(255,255,255,0.15); border: none; color: var(--white); border-radius: 50%;
    width: 36px; height: 36px; font-size: 1.2rem; cursor: pointer; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; transition: background var(--transition);
  }
  .modal-close:hover { background: rgba(255,255,255,0.28); }
  .modal-body { padding: 32px; }

  /* CALENDAR */
  .calendar-wrap { margin-bottom: 28px; }
  .cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
  .cal-month { font-size: 1.1rem; font-weight: 800; color: var(--navy); }
  .cal-nav { background: var(--grey1); border: 1.5px solid var(--grey2); border-radius: 8px; width: 36px; height: 36px; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
  .cal-nav:hover { background: var(--sky); }
  .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
  .cal-day-name { text-align: center; font-size: 0.75rem; font-weight: 700; color: var(--grey3); padding: 6px 0; text-transform: uppercase; }
  .cal-day {
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    border-radius: 8px; font-size: 0.9rem; cursor: pointer; transition: background var(--transition), color var(--transition);
    border: 1.5px solid transparent; color: var(--text);
  }
  .cal-day:hover:not(.disabled):not(.empty) { background: var(--sky); border-color: var(--skymd); }
  .cal-day.selected { background: var(--blue2); color: var(--white); border-color: var(--blue2); }
  .cal-day.today { border-color: var(--blue2); font-weight: 700; color: var(--blue2); }
  .cal-day.today.selected { color: var(--white); }
  .cal-day.disabled { color: var(--grey2); cursor: default; }
  .cal-day.empty { cursor: default; }
  .cal-selected-date {
    margin-top: 12px; padding: 12px 16px; background: var(--sky); border-radius: 8px;
    font-size: 0.92rem; color: var(--navy); font-weight: 600; display: none;
  }
  .cal-selected-date.show { display: block; }

  /* RESERVATION FORM */
  .res-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .res-form .form-group.full { grid-column: 1 / -1; }
  .modal-body .btn { width: 100%; font-size: 1.05rem; padding: 15px; margin-top: 8px; }
  .modal-success { display: none; text-align: center; padding: 20px 0; }
  .modal-success.show { display: block; }
  .success-icon { font-size: 4rem; margin-bottom: 16px; }
  .modal-success h3 { font-size: 1.4rem; font-weight: 900; color: var(--navy); margin-bottom: 10px; }
  .modal-success p { color: var(--text2); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1000px) {
    .hero-inner { grid-template-columns: 1fr; }
    .book-card { max-width: 480px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
      position: fixed;
      inset: 0;
      background: var(--navy);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 32px;
      transform: translateX(100%);
      transition: transform 0.3s ease;
      z-index: 905;
    }
    .nav-menu.is-open { transform: translateX(0); }
    .nav-links {
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }
    .nav-links a { font-size: 1.25rem; }
    .how-grid, .uses-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .product-inner, .area-inner { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .pricing-includes { grid-template-columns: 1fr; }
    .res-form { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .product-features { grid-template-columns: 1fr; }
    .area-list { grid-template-columns: 1fr; }
  }
  @media (max-width: 480px) {
    .hero { padding: 120px 0 52px; }
    .hero-actions { flex-direction: column; }
    .cta-actions { flex-direction: column; align-items: center; }
  }

  /* ===== EXTRACTED INLINE STYLES ===== */

  /* HERO */
  .btn-hero, .btn-hero-outline { font-size: 1.05rem; padding: 15px 36px; }
  .btn-hero-outline { color: var(--skymd); border-color: var(--skymd); }
  .book-card-divider { height: 4px; width: 48px; background: var(--blue2); border-radius: 2px; margin: 8px 0 18px; }
  .form-row-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-group--no-mb { margin-bottom: 0; }
  .form-group--mt { margin-top: 16px; }
  .form-group--mb-14 { margin-bottom: 14px; }
  .sr-only-honeypot { position: absolute; left: -9999px; }
  .form-msg { display: none; padding: 12px 16px; border-radius: 8px; font-size: 0.92rem; font-weight: 600; margin-top: 12px; }
  .link-blue { color: var(--blue2); }

  /* DUMPSTER INFOGRAPHIC */
  .infographic-wrap { background: #f0f4f9; border-radius: 16px; padding: 20px 16px 16px; border: 1.5px solid var(--skymd); }
  .infographic-titlebar { background: var(--navy); border-radius: 10px 10px 0 0; padding: 14px 20px; display: flex; align-items: center; gap: 14px; margin-bottom: 0; }
  .infographic-logo { height: 52px; width: auto; border-radius: 6px; background: var(--grey2); padding: 4px 8px; }
  .infographic-subtitle { color: var(--skymd); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
  .infographic-location { color: var(--white); font-size: 0.88rem; font-weight: 600; opacity: 0.8; }
  .infographic-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1.5px solid var(--skymd); border-top: none; border-radius: 0 0 10px 10px; overflow: hidden; }
  .infographic-panel-left, .infographic-panel-right { background: var(--white); padding: 14px 12px 10px; }
  .infographic-panel-left { border-right: 1px solid var(--skymd); }
  .infographic-panel-title { font-size: 0.75rem; font-weight: 800; color: var(--blue); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; text-align: center; }
  .infographic-img-wrap { position: relative; border-radius: 8px; overflow: hidden; background: #e8eef5; }
  .infographic-svg { width: 100%; display: block; }
  .infographic-photo { width: 100%; object-fit: cover; max-height: 160px; }
  .dim-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 10px; }
  .dim-badge { background: var(--navy); border-radius: 6px; padding: 7px 4px; text-align: center; }
  .dim-badge-val { color: #4ade80; font-size: 0.95rem; font-weight: 900; line-height: 1; }
  .dim-badge-key { color: var(--skymd); font-size: 0.65rem; font-weight: 700; margin-top: 2px; letter-spacing: 0.06em; }
  .infographic-note { margin-top: 8px; background: var(--sky); border-radius: 6px; padding: 7px 10px; text-align: center; }
  .infographic-note-text { font-size: 0.8rem; font-weight: 800; color: var(--navy); }
  .infographic-footnote { text-align: center; margin-top: 8px; font-size: 0.75rem; color: var(--grey3); }
  .allowed-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
  .allowed-header { border-radius: 6px 6px 0 0; padding: 7px 12px; text-align: center; }
  .allowed-header--accept { background: #16a34a; }
  .allowed-header--reject { background: #dc2626; }
  .allowed-header-text { color: var(--white); font-size: 0.8rem; font-weight: 900; letter-spacing: 0.05em; }
  .allowed-list { border-top: none; border-radius: 0 0 6px 6px; overflow: hidden; }
  .allowed-list--accept { border: 1.5px solid #bbf7d0; border-top: none; }
  .allowed-list--reject { border: 1.5px solid #fecaca; border-top: none; }
  .allowed-item { padding: 5px 10px; font-size: 0.8rem; color: var(--text); background: var(--white); }
  .allowed-item--accept { border-bottom: 1px solid #d1fae5; }
  .allowed-item--reject { border-bottom: 1px solid #fee2e2; }

  /* PRICING */
  .text-center { text-align: center; }
  .section-sub--center { margin: 0 auto; }

  /* SERVICE AREA / CTA */
  .btn-sm { font-size: 0.95rem; }

  /* FOOTER */
  .footer-logo-img { height: 80px; width: auto; display: block; margin-bottom: 12px; }
  .footer-phone { margin-top: 16px; }
  .footer-tel-link { color: var(--skymd); font-weight: 700; }
  .footer-email { margin-top: 6px; }
  .footer-email-link { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
  .footer-hours { margin-top: 20px; font-size: 0.85rem; line-height: 1.6; }

  /* MODAL */
  .modal--wide { max-width: 760px; }
  .step-indicator { display: flex; gap: 8px; margin-bottom: 24px; align-items: center; }
  .step-pill { background: var(--grey2); color: var(--grey3); border-radius: 20px; padding: 4px 14px; font-size: 0.8rem; font-weight: 700; }
  .step-pill--active { background: var(--blue2); color: var(--white); }
  .step-pill--done { background: #28a745; color: var(--white); }
  .step-connector-line { flex: 1; height: 2px; background: var(--grey2); }
  .step-heading { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
  .res-form--mt { margin-top: 20px; }
  .btn-full-mt { width: 100%; margin-top: 8px; }
  .book-note--mt { margin-top: 14px; }
  .d-none { display: none; }

  /* CONTRACT */
  .contract-scroll-box { background: var(--grey1); border: 1.5px solid var(--grey2); border-radius: 10px; padding: 24px 22px; max-height: 400px; overflow-y: auto; font-size: 0.88rem; line-height: 1.75; color: var(--text); }
  .contract-title { font-size: 1rem; font-weight: 900; color: var(--navy); text-align: center; margin-bottom: 4px; }
  .contract-subtitle { font-size: 0.95rem; font-weight: 800; color: var(--navy); text-align: center; margin-bottom: 18px; }
  .contract-section-heading { font-weight: 800; color: var(--navy); margin-bottom: 6px; }
  .contract-mb-14 { margin-bottom: 14px; }
  .contract-mb-8 { margin-bottom: 8px; }
  .contract-mb-4 { margin-bottom: 4px; }
  .contract-list { margin: 0 0 10px 20px; }
  .contract-list--tight { margin: 0 0 8px 20px; }
  .contract-scroll-notice { font-size: 0.8rem; color: var(--blue2); text-align: center; margin: 10px 0 0; font-weight: 600; }
  .step-actions { display: flex; gap: 12px; margin-top: 16px; }
  .step-actions--no-mt { margin-top: 0; }
  .btn-back { flex: 0 0 auto; padding: 12px 20px; }
  .btn-flex-grow { flex: 1; }

  /* SIGNATURE */
  .sig-heading { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
  .sig-subheading { font-size: 0.88rem; color: var(--text2); margin-bottom: 18px; }
  .rental-summary { background: var(--sky); border: 1.5px solid var(--skymd); border-radius: 10px; padding: 16px 18px; margin-bottom: 20px; font-size: 0.85rem; color: var(--navy); }
  .fw-700 { font-weight: 700; }
  .sig-input { font-family: 'Segoe UI', Arial, sans-serif; font-size: 1.05rem; letter-spacing: 0.03em; }
  .sig-disclaimer { font-size: 0.76rem; color: var(--grey3); margin-top: 5px; }
  .agree-box { display: flex; align-items: flex-start; gap: 12px; background: var(--grey1); border-radius: 8px; padding: 14px 16px; margin-bottom: 20px; }
  .agree-checkbox { margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; cursor: pointer; }
  .agree-label { font-size: 0.88rem; color: var(--text); cursor: pointer; line-height: 1.6; }
  .success-note { font-size: 0.9rem; color: var(--grey3); }
  .btn-auto { width: auto; padding: 12px 32px; }

  /* FORM MESSAGES (JS-applied) */
  .form-msg--error { display: block; background: #fef2f2; color: #dc2626; border: 1.5px solid #fca5a5; }
  .form-msg--success { display: block; background: #f0fdf4; color: #16a34a; border: 1.5px solid #86efac; }
