/* ============================================================
   EASY CHOICE REMOVALS - SHARED STYLESHEET
   Used across all pages. Do not duplicate into individual files.
   ============================================================ */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --yellow: #F5C000;
    --yellow-hover: #D9AB00;
    --dark: #304ca7;
    --grey-bg: #f4f4f4;
    --grey-light: #eeeeee;
    --grey-mid: #888888;
    --border: #e0e0e0;
    --white: #ffffff;
    --text: #333333;
    --radius: 4px;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Poppins', sans-serif; color: var(--text); background: var(--grey-bg); font-size: 15px; line-height: 1.6; }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

  /* UTILS */
  .container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
  .btn { display: inline-block; padding: 12px 28px; border-radius: var(--radius); font-weight: 600; font-size: 14px; cursor: pointer; transition: background 0.2s, transform 0.1s; border: none; font-family: 'Poppins', sans-serif; }
  .btn-yellow { background: var(--yellow); color: var(--dark); }
  .btn-yellow:hover { background: var(--yellow-hover); }
  .btn-outline { background: transparent; color: var(--dark); border: 2px solid var(--dark); }
  .btn-outline:hover { background: var(--dark); color: var(--white); }
  .section { padding: 64px 0; }
  .section-title { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
  .section-sub { color: var(--grey-mid); margin-bottom: 36px; max-width: 640px; }
  .text-center { text-align: center; }
  .text-center .section-sub { margin-left: auto; margin-right: auto; }

  /* TOPBAR */
  .topbar { background: var(--dark); color: var(--white); font-size: 13px; padding: 8px 0; }
  .topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
  .topbar a { color: var(--yellow); }

  /* NAV */
  .nav { background: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; gap: 16px; }
  .nav-logo img { height: 52px; width: auto; display: block; }
  .nav-links { display: flex; gap: 4px; align-items: center; list-style: none; }
  .nav-links > li { position: relative; }
  .nav-links a { padding: 8px 12px; font-size: 14px; font-weight: 500; border-radius: var(--radius); transition: background 0.15s; display: block; white-space: nowrap; }
  .nav-links a:hover { background: var(--grey-bg); }
  .nav-links .nav-cta { background: var(--yellow); color: var(--dark); font-weight: 600; margin-left: 8px; }
  .nav-links .nav-cta:hover { background: var(--yellow-hover); }

  /* DROPDOWN */
  .has-dropdown { position: relative; }
  .has-dropdown > a::after { content: ' \25BE'; font-size: 10px; }
  .dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); min-width: 230px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); z-index: 200; }
  .has-dropdown:hover .dropdown-menu { display: block; }
  .dropdown-menu a { display: block; padding: 10px 16px; font-size: 14px; font-weight: 500; border-radius: 0; border-bottom: 1px solid var(--grey-light); }
  .dropdown-menu a:last-child { border-bottom: none; }
  .dropdown-menu a:hover { background: var(--grey-bg); color: var(--dark); }

  /* HAMBURGER */
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; display: block; }
  .mobile-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); box-shadow: 0 8px 24px rgba(0,0,0,0.12); padding: 16px 20px 24px; z-index: 999; max-height: 85vh; overflow-y: auto; }
  .mobile-menu.open { display: block; }
  .mobile-menu a { display: block; padding: 10px 0; font-size: 15px; font-weight: 500; border-bottom: 1px solid var(--grey-light); }
  .mobile-menu .mobile-section-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--grey-mid); padding: 12px 0 4px; border-bottom: none; }
  .mobile-menu .mobile-sub a { padding: 8px 0 8px 16px; font-size: 14px; color: var(--grey-mid); }
  .mobile-menu .nav-cta { background: var(--yellow); color: var(--dark); border-radius: var(--radius); padding: 12px 20px; text-align: center; border: none; margin-top: 8px; }

  /* HERO */
  .hero { background: linear-gradient(135deg, #304ca7 0%, #1f3580 100%); color: var(--white); padding: 80px 0; position: relative; overflow: hidden; }
  .hero::before { content: ''; position: absolute; inset: 0; background: url('images/hero-family-fleet.jpg') center/cover no-repeat; opacity: 0.25; }
  .hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  .hero-tag { display: inline-block; background: var(--yellow); color: var(--dark); font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 2px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; }
  .hero h1 { font-size: 40px; font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
  .hero p { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 28px; max-width: 440px; }
  .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
  .hero-trust { display: flex; gap: 20px; margin-top: 32px; flex-wrap: wrap; }
  .trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.8); }
  .trust-item svg { flex-shrink: 0; }
  .hero-card { background: var(--white); border-radius: 8px; padding: 28px; color: var(--dark); text-align: center; box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
  .hero-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
  .hero-card p { font-size: 13px; color: var(--grey-mid); margin-bottom: 20px; }
  .stars { color: var(--yellow); font-size: 20px; margin-bottom: 8px; }
  .rating-big { font-size: 48px; font-weight: 800; color: var(--dark); line-height: 1; }
  .rating-sub { font-size: 13px; color: var(--grey-mid); }
  .phone-big { font-size: 22px; font-weight: 700; color: var(--dark); margin: 16px 0 8px; }

  /* TRUST STRIP */
  .trust-strip { background: var(--yellow); padding: 20px 0; }
  .trust-strip-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
  .trust-badge { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--dark); }
  .trust-badge-icon { width: 36px; height: 36px; background: var(--dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--yellow); font-size: 16px; flex-shrink: 0; }

  /* SERVICES */
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .service-card { background: var(--white); border-radius: var(--radius); padding: 28px 24px; border: 1px solid var(--border); transition: box-shadow 0.2s, transform 0.2s; }
  .service-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); transform: translateY(-2px); }
  .service-icon { width: 48px; height: 48px; background: var(--yellow); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 22px; }
  .service-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
  .service-card p { font-size: 14px; color: var(--grey-mid); line-height: 1.6; }
  .service-card a.learn-more { display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 600; color: var(--dark); border-bottom: 2px solid var(--yellow); padding-bottom: 1px; cursor: pointer; }

  /* WHY US */
  .why-us { background: var(--dark); color: var(--white); }
  .why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  .why-us-content p { color: rgba(255,255,255,0.8); margin-bottom: 24px; }
  .why-pillars { display: flex; flex-direction: column; gap: 20px; }
  .pillar { display: flex; gap: 16px; }
  .pillar-icon { width: 44px; height: 44px; background: var(--yellow); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 20px; }
  .pillar h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
  .pillar p { font-size: 13px; color: rgba(255,255,255,0.7); }
  .stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-box { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 24px; text-align: center; }
  .stat-num { font-size: 36px; font-weight: 800; color: var(--yellow); line-height: 1; }
  .stat-label { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 4px; }

  /* TIPS */
  .tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .tip-card { background: var(--white); border-radius: var(--radius); padding: 24px; border-left: 4px solid var(--yellow); }
  .tip-num { font-size: 32px; font-weight: 800; color: var(--yellow); line-height: 1; margin-bottom: 8px; }
  .tip-card h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
  .tip-card p { font-size: 13px; color: var(--grey-mid); }

  /* FAQ */
  .faq-list { max-width: 800px; margin: 0 auto; }
  .faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: 8px; border: 1px solid var(--border); overflow: hidden; }
  .faq-q { padding: 18px 20px; font-weight: 600; font-size: 15px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; color: var(--dark); user-select: none; }
  .faq-q::after { content: '+'; font-size: 22px; font-weight: 400; color: var(--yellow); flex-shrink: 0; transition: transform 0.2s; }
  .faq-item.open .faq-q::after { transform: rotate(45deg); }
  .faq-a { display: none; padding: 0 20px 18px; font-size: 14px; color: var(--grey-mid); line-height: 1.7; }
  .faq-item.open .faq-a { display: block; }

  /* CTA BAND */
  .cta-band { background: var(--yellow); padding: 48px 0; }
  .cta-band-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
  .cta-band h2 { font-size: 26px; font-weight: 800; color: var(--dark); }
  .cta-band p { color: rgba(0,0,0,0.65); margin-top: 4px; }
  .cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

  /* FOOTER */
  .footer { background: var(--dark); color: rgba(255,255,255,0.8); padding: 48px 0 24px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
  .footer-brand p { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 12px; line-height: 1.7; }
  .footer-logo { display: inline-block; background: var(--white); border-radius: var(--radius); padding: 8px 14px; margin-bottom: 16px; }
  .footer-logo img { height: 40px; width: auto; display: block; }
  .footer-col h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
  .footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.6); padding: 3px 0; transition: color 0.15s; cursor: pointer; }
  .footer-col a:hover { color: var(--yellow); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px; color: rgba(255,255,255,0.4); }

  /* PAGES */
  .page { display: none; }
  .page.active { display: block; }

  /* QUOTE PAGE */
  .quote-page { background: var(--grey-bg); min-height: 60vh; padding: 48px 0; }
  .quote-tabs { display: flex; background: var(--grey-light); border-radius: 4px 4px 0 0; overflow: hidden; max-width: 800px; margin: 0 auto 0; }
  .quote-tab { flex: 1; padding: 16px; text-align: center; font-weight: 600; font-size: 15px; cursor: pointer; color: var(--grey-mid); transition: all 0.2s; border-bottom: 3px solid transparent; }
  .quote-tab.active { background: var(--white); color: var(--dark); border-bottom-color: var(--yellow); }
  .quote-form-wrap { background: var(--white); border-radius: 0 0 4px 4px; box-shadow: 0 2px 16px rgba(0,0,0,0.08); max-width: 800px; margin: 0 auto; padding: 32px; }
  .form-step { display: none; }
  .form-step.active { display: block; }
  .step-title { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
  .step-desc { font-size: 13px; color: var(--grey-mid); margin-bottom: 24px; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .form-row.triple { grid-template-columns: 2fr 1fr 1fr; }
  .form-group { display: flex; flex-direction: column; gap: 4px; margin-bottom: 0; }
  .form-group label { font-size: 13px; font-weight: 500; color: var(--dark); }
  .form-group input, .form-group select, .form-group textarea { padding: 10px 12px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px; font-family: 'Poppins', sans-serif; color: var(--text); transition: border-color 0.15s; width: 100%; }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--yellow); }
  .form-group textarea { min-height: 100px; resize: vertical; }
  .required-note { font-size: 12px; color: var(--grey-mid); margin-bottom: 16px; }
  .step-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); }
  .btn-back { background: var(--grey-light); color: var(--dark); font-size: 14px; padding: 10px 24px; }
  .btn-back:hover { background: #ddd; }
  .btn-next, .btn-submit { background: var(--yellow); color: var(--dark); font-size: 14px; padding: 10px 28px; }
  .btn-next:hover, .btn-submit:hover { background: var(--yellow-hover); }
  .step-indicator { font-size: 12px; color: var(--grey-mid); }

  /* ROOM SELECTOR */
  .room-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .room-check { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: all 0.15s; }
  .room-check:hover { border-color: var(--yellow); background: rgba(245,192,0,0.05); }
  .room-check input { width: 16px; height: 16px; accent-color: var(--yellow); cursor: pointer; }
  .room-check span { font-size: 14px; font-weight: 500; }

  /* INVENTORY ITEMS */
  .items-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .item-row { display: flex; flex-direction: column; gap: 4px; }
  .item-row label { font-size: 13px; color: var(--text); }
  .item-row input { padding: 8px 12px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px; font-family: 'Poppins', sans-serif; width: 100%; text-align: center; }
  .item-row input:focus { outline: none; border-color: var(--yellow); }
  .m3-note { font-size: 11px; color: var(--grey-mid); }

  /* VOLUME SUMMARY */
  .volume-bar { background: rgba(245,192,0,0.12); border: 1px solid var(--yellow); border-radius: var(--radius); padding: 12px 16px; margin-bottom: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
  .vol-label { font-size: 13px; color: var(--dark); font-weight: 500; }
  .vol-value { font-size: 15px; font-weight: 700; color: var(--dark); }
  .vol-est { font-size: 13px; color: var(--grey-mid); }

  /* SUCCESS */
  .success-screen { text-align: center; padding: 40px 20px; }
  .success-icon { width: 72px; height: 72px; background: #22c55e; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 32px; color: white; }
  .success-screen h2 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
  .success-screen p { color: var(--grey-mid); font-size: 15px; }

  /* INNER PAGE HERO */
  .inner-hero { background: var(--dark); color: var(--white); padding: 48px 0; position: relative; overflow: hidden; }
  .inner-hero.has-bg::before { content: ''; position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.2; }
  .inner-hero .container { position: relative; z-index: 1; }
  .inner-hero h1 { font-size: 32px; font-weight: 800; margin-bottom: 8px; }
  .inner-hero p { color: rgba(255,255,255,0.75); max-width: 560px; }
  .badge-strip { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
  .badge-item { background: rgba(245,192,0,0.15); border: 1px solid var(--yellow); color: var(--yellow); font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 40px; }
  .content-section { background: var(--white); padding: 40px; border-radius: var(--radius); margin-bottom: 24px; }
  .content-section h2 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
  .content-section p { color: var(--grey-mid); line-height: 1.8; margin-bottom: 12px; }
  .content-section p:last-child { margin-bottom: 0; }
  .dot-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 12px 0 20px; }
  .dot-list li { padding-left: 20px; position: relative; font-size: 14px; color: var(--grey-mid); }
  .dot-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; }
  .service-faq { background: var(--grey-bg); padding: 48px 0; }

  /* ABOUT PAGE */
  .team-photo { border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; }
  .team-photo img { width: 100%; height: 320px; object-fit: cover; }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 32px; }
  .about-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .about-photo-grid img { border-radius: var(--radius); width: 100%; height: 200px; object-fit: cover; }

  /* CONTACT PAGE */
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-info-box { background: var(--white); border-radius: var(--radius); padding: 32px; }
  .contact-info-box h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
  .contact-detail { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
  .contact-icon { width: 40px; height: 40px; background: var(--yellow); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
  .contact-detail p { font-size: 14px; color: var(--grey-mid); }
  .contact-detail strong { color: var(--dark); display: block; }
  .contact-form-box { background: var(--white); border-radius: var(--radius); padding: 32px; }
  .contact-photo { border-radius: var(--radius); overflow: hidden; margin-top: 24px; }
  .contact-photo img { width: 100%; height: 240px; object-fit: cover; }

  /* BLOG PAGE */
  .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .blog-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; cursor: pointer; }
  .blog-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); transform: translateY(-2px); }
  .blog-card-body { padding: 20px; }
  .blog-card-date { font-size: 12px; color: var(--grey-mid); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
  .blog-card h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.4; }
  .blog-card p { font-size: 13px; color: var(--grey-mid); line-height: 1.6; margin-bottom: 12px; }
  .blog-card-link { font-size: 13px; font-weight: 600; color: var(--dark); border-bottom: 2px solid var(--yellow); padding-bottom: 1px; }
  .blog-cat-tag { display: inline-block; background: rgba(245,192,0,0.15); color: #8a6d00; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 2px; margin-bottom: 10px; }

  /* BLOG ARTICLE */
  .article-layout { display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: start; }
  .article-body h2 { font-size: 20px; font-weight: 700; color: var(--dark); margin: 28px 0 12px; }
  .article-body h2:first-child { margin-top: 0; }
  .article-body p { font-size: 15px; color: var(--grey-mid); line-height: 1.8; margin-bottom: 14px; }
  .article-body ul { margin: 0 0 16px 0; padding-left: 0; list-style: none; }
  .article-body ul li { padding-left: 20px; position: relative; font-size: 14px; color: var(--grey-mid); line-height: 1.7; margin-bottom: 6px; }
  .article-body ul li::before { content: ''; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; background: var(--yellow); border-radius: 50%; }
  .article-sidebar { position: sticky; top: 90px; }
  .sidebar-box { background: var(--white); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; border: 1px solid var(--border); }
  .sidebar-box h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
  .sidebar-box p { font-size: 13px; color: var(--grey-mid); margin-bottom: 12px; }
  .article-meta { display: flex; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
  .article-meta span { font-size: 13px; color: var(--grey-mid); }
  .article-meta strong { color: var(--dark); }

  /* BACKLOADING PAGE HERO IMAGE */
  .inner-hero.backloading-bg::before { background-image: url('images/truck-loaded.jpg'); }
  .inner-hero.local-bg::before { background-image: url('images/truck-suburban.jpg'); }
  .inner-hero.interstate-bg::before { background-image: url('images/interstate-highway.jpg'); }
  .inner-hero.furniture-bg::before { background-image: url('images/furniture-team.jpg'); }
  .inner-hero.office-bg::before { background-image: url('images/truck-apartment.jpg'); }
  .inner-hero.packing-bg::before { background-image: url('images/checklist-signing.jpg'); }
  .inner-hero.transit-bg::before { background-image: url('images/carpet-carry.jpg'); }
  .inner-hero.about-bg::before { background-image: url('images/depot-exterior.jpg'); }
  .inner-hero.contact-bg::before { background-image: url('images/depot-signage.jpg'); }
  .inner-hero.quote-bg::before { background-image: url('images/truck-loaded.jpg'); }

  /* ROUTE PILLS */
  .routes-grid { display: flex; flex-wrap: wrap; gap: 10px; }
  .route-pill { background: var(--white); border: 1px solid var(--border); border-radius: 40px; padding: 8px 18px; font-size: 13px; font-weight: 500; color: var(--dark); cursor: pointer; transition: all 0.15s; }
  .route-pill:hover { background: var(--yellow); border-color: var(--yellow); }

  /* AFRA BADGE */
  .afra-badge { display: flex; align-items: center; gap: 12px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 20px; max-width: 360px; }
  .afra-badge img { width: 60px; height: auto; flex-shrink: 0; }
  .afra-badge p { font-size: 13px; color: var(--grey-mid); line-height: 1.5; }
  .afra-badge strong { color: var(--dark); display: block; font-size: 14px; margin-bottom: 2px; }

  /* TESTIMONIALS */
  .testimonials-section { background: var(--yellow); padding: 56px 0; }
  .testimonials-header { text-align: center; margin-bottom: 32px; }
  .testimonials-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(0,0,0,0.45); margin-bottom: 12px; }
  .testimonials-title { font-size: 34px; font-weight: 800; color: var(--dark); margin-bottom: 20px; line-height: 1.15; }
  .testimonials-rating-bar { display: inline-flex; align-items: center; gap: 12px; background: var(--white); border-radius: 40px; padding: 10px 22px; flex-wrap: wrap; justify-content: center; }
  .testimonials-score { font-size: 22px; font-weight: 800; color: var(--dark); }
  .testimonials-stars { color: #F5A623; font-size: 18px; }
  .testimonials-count { font-size: 14px; color: var(--grey-mid); }
  .testimonials-write-btn { background: var(--dark); color: var(--white); font-size: 13px; font-weight: 600; padding: 8px 18px; border-radius: 40px; white-space: nowrap; transition: background 0.2s; }
  .testimonials-write-btn:hover { background: #333; }
  .testimonials-viewport { overflow: hidden; }
  .testimonials-track { display: flex; transition: transform 0.45s cubic-bezier(0.4,0,0.2,1); align-items: stretch; }
  .testimonial-card { background: var(--white); border-radius: 10px; padding: 24px; flex: 0 0 calc((100% - 32px) / 3); box-shadow: 0 2px 16px rgba(0,0,0,0.08); margin-right: 16px; display: flex; flex-direction: column; }
  .testimonial-card:last-child { margin-right: 0; }
  .testimonial-author { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
  .testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: white; flex-shrink: 0; }
  .testimonial-author-info { flex: 1; min-width: 0; }
  .testimonial-name { font-size: 14px; font-weight: 700; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .testimonial-verified { color: #4285F4; font-size: 11px; }
  .testimonial-date { font-size: 12px; color: var(--grey-mid); margin-top: 1px; }
  .testimonial-g { width: 28px; height: 28px; border-radius: 50%; background: #4285F4; color: white; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .testimonial-stars { color: #F5A623; font-size: 16px; margin-bottom: 10px; }
  .testimonial-text { font-size: 13px; color: var(--grey-mid); line-height: 1.65; flex: 1; }
  .testimonials-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
  .testimonials-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(0,0,0,0.2); cursor: pointer; transition: background 0.2s; border: none; padding: 0; }
  .testimonials-dot.active { background: var(--dark); }
  @media (max-width: 900px) {
    .testimonial-card { flex: 0 0 calc((100% - 16px) / 2); }
    .testimonials-title { font-size: 26px; }
  }
  @media (max-width: 560px) {
    .testimonial-card { flex: 0 0 90%; }
    .testimonials-title { font-size: 22px; }
  }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
  }
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-card { display: none; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .why-us-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .tips-grid { grid-template-columns: 1fr 1fr; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .testimonial-card { min-width: calc(50% - 8px); }
    .testimonials-title { font-size: 26px; }
  }
  @media (max-width: 640px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero h1 { font-size: 28px; }
    .services-grid { grid-template-columns: 1fr; }
    .tips-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .form-row.triple { grid-template-columns: 1fr; }
    .items-grid { grid-template-columns: 1fr 1fr; }
    .room-grid { grid-template-columns: 1fr; }
    .trust-strip-inner { justify-content: center; }
    .cta-band-inner { flex-direction: column; text-align: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .about-photo-grid { grid-template-columns: 1fr; }
    .testimonial-card { min-width: 85%; }
    .testimonials-title { font-size: 22px; }
  }

  /* Footer trading hours */
  .footer-hours {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
  }

  /* Footer services dropdown */
  .footer-details {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-details summary {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    padding: 8px 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
  }
  .footer-details summary::-webkit-details-marker { display: none; }
  .footer-details summary::after {
    content: "+";
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
  }
  .footer-details[open] summary::after { content: "-"; }
  .footer-details-links { padding: 4px 0 10px; }
  .footer-details-links a { font-size: 12px; padding: 2px 0; display: block; color: rgba(255,255,255,0.6); }
  .footer-details-links a:hover { color: var(--yellow); }
  .footer-col a { display: block; padding: 3px 0; }
  /* Footer trading hours */
  .footer-hours {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
  }

