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

    :root {
      --red: #d50000;
      --red-hover: #b00000;
      --dark: #242424;
      --white: #ffffff;
      --light-bg: #f7f7f7;
      --border: #e0e0e0;
      --text-muted: #666;
      --font: 'Segoe UI', Arial, sans-serif;
    }

    body { font-family: var(--font); color: var(--dark); background: var(--white); line-height: 1.65; font-size: 16px; }

    a { color: var(--red); text-decoration: none; }
    a:hover { text-decoration: underline; }
    a:hover, a:focus{
        color: currentColor;
    }

.asr-moving-page{
    width: 100%;
}
.site-content > .ast-container{
    width: 100%;
    display: block;
}
    /* NAV */
    .nav {
      background: var(--dark);
      padding: 16px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo { color: var(--white); font-size: 22px; font-weight: 700; letter-spacing: 0.5px; }
    .nav-logo span { color: var(--red); }
    .nav-cta {
      background: var(--red);
      color: var(--white);
      padding: 10px 24px;
      border-radius: 4px;
      font-weight: 600;
      font-size: 14px;
    }
    .nav-cta:hover { text-decoration: none; background: var(--red-hover); }

.elementor-72 .elementor-element.elementor-element-38fff73 .elementor-button{
    font-size: 14px;
}
.sticky-cta .cta-button,
.sticky-cta .cta-button:hover,
.sticky-cta .cta-button:active{
    width: auto;
    margin: 0;
}

    /* HERO */
    .hero {
      background: var(--dark);
      color: var(--white);
      padding: 72px 40px 64px;
    }
    .hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: center; }
    .hero-eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
    .hero h1 { font-size: 46px; font-weight: 700; line-height: 1.15; margin-bottom: 20px;color:#FFF; }
    .hero-sub { font-size: 18px; color: #fff; margin-bottom: 32px; max-width: 520px; }
    .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn-red {
      background: var(--red);
      color: var(--white);
      padding: 14px 30px;
      border-radius: 4px;
      font-weight: 700;
      font-size: 16px;
      display: inline-block;
    }
    .btn-red:hover { background: var(--red-hover); text-decoration: none; }
    .btn-outline {
      border: 2px solid #fff;
      color: var(--white);
      padding: 14px 30px;
      border-radius: 4px;
      font-weight: 600;
      font-size: 16px;
      display: inline-block;
    }
    .btn-outline:hover { border-color: #888; text-decoration: none; }

    /* QUOTE CARD */
    .quote-card {
      background: var(--white);
      border-radius: 8px;
      padding: 32px 28px;
      color: var(--dark);
      box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    }
    .quote-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; color: var(--dark); }
    .quote-card label { font-size: 13px; font-weight: 600; color: var(--text-muted); display: block; margin-bottom: 6px; margin-top: 14px; }
    .quote-card input, .quote-card select {
      width: 100%;
      padding: 10px 14px;
      border: 1px solid var(--border);
      border-radius: 4px;
      font-size: 14px;
      color: var(--dark);
      background: #fafafa;
    }
    .quote-card input:focus, .quote-card select:focus { outline: 2px solid var(--red); border-color: transparent; }
    .quote-btn {
      display: block;
      width: 100%;
      margin-top: 20px;
      padding: 13px;
      background: var(--red);
      color: var(--white);
      border: none;
      border-radius: 4px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
    }
    .quote-btn:hover { background: var(--red-hover); }

    .quote-card .sub {
      font-size: 13px;
      color: var(--text-muted);
      margin: -8px 0 16px;
      line-height: 1.5;
    }
    .quote-card .form-row { margin-top: 12px; }
    .quote-card .form-row label { margin-top: 0; }
    .quote-card .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .quote-card .asr-quote-form input.error,
    .quote-card .asr-quote-form select.error,
    .quote-card .asr-gmp-autocomplete.error {
      border-color: var(--red);
      outline: 1px solid var(--red);
    }
    .quote-card .error-message {
      color: var(--red);
      font-size: 12px;
      margin: 4px 0 0;
    }
    .quote-card .btn-form {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      margin-top: 16px;
    }
    .quote-card .btn-form:disabled {
      opacity: 0.7;
      cursor: not-allowed;
    }

.form-container button{
    font-size: 14px;
}
.orbtn{
    color: #000;
}

    /* STATS BAR */
    .stats-bar { background: var(--red); padding: 28px 40px; }
    .stats-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
    .stat-item { color: var(--white); }
    .stat-num { font-size: 32px; font-weight: 700; display: block; }
    .stat-label { font-size: 13px; opacity: 0.88; margin-top: 4px; }

    /* SECTION DEFAULTS */
    .section { padding: 72px 40px; }
    .section-inner { max-width: 1100px; margin: 0 auto; }
    .section-light { background: var(--light-bg); }
    .section-dark { background: var(--dark); color: var(--white); }

    .section-tag { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--red); margin-bottom: 12px; }
    .section h2 { font-size: 34px; font-weight: 700; margin-bottom: 16px; line-height: 1.2; }
    .section-dark h2 { color: var(--white); }
    .section p { color: var(--text-muted); font-size: 16px; max-width: 720px; }
    .section-dark p { color: #bbb; }

    /* INTRO / ROUTE */
    .route-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 40px; }
    .route-grid p { max-width: 100%; margin-bottom: 18px; }
    .route-box {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 28px;
    }
    .route-box h3 { font-size: 17px; font-weight: 700; margin-bottom: 16px; color: var(--dark); }
    .route-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
    .route-row:last-child { border-bottom: none; }
    .route-row span:first-child { color: var(--text-muted); }
    .route-row span:last-child { font-weight: 600; color: var(--dark); }

    /* COST TABLE */
    .cost-table-wrap { margin-top: 36px; overflow-x: auto; }
    table { width: 100%; border-collapse: collapse; font-size: 15px; }
    thead th { background: var(--dark); color: var(--white); padding: 14px 18px; text-align: left; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; }
    tbody tr:nth-child(even) { background: var(--light-bg); }
    tbody td { padding: 13px 18px; border-bottom: 1px solid var(--border); color: var(--dark); }
    tbody td:first-child { font-weight: 600; }
    .note { font-size: 13px; color: var(--text-muted); margin-top: 14px; }

    /* SERVICES GRID */
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
    .service-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 28px 24px;
      transition: box-shadow 0.2s;
    }
    .service-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.09); }
    .service-icon { font-size: 28px; margin-bottom: 14px; }
    .service-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
    .service-card p { font-size: 14px; color: var(--text-muted); max-width: 100%; }

    /* NEIGHBOURHOODS */
    .nbhd-intro { font-size: 16px; color: var(--text-muted); max-width: 660px; margin-top: 12px; }
    .nbhd-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; }
    .nbhd-card {
      background: var(--dark);
      border-radius: 8px;
      padding: 28px 20px;
      color: var(--white);
    }
    .nbhd-card h3 { color: #fff;font-size: 16px; font-weight: 700; margin-bottom: 8px; }
    .nbhd-card .nbhd-tag { font-size: 12px; color: #aaa; margin-bottom: 12px; display: block; }
    .nbhd-card p { font-size: 13px; color: #ccc; line-height: 1.55; }

    /* FEATURES */
    .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
    .feature-card { text-align: center; padding: 32px 24px; }
    .feature-icon { font-size: 36px; margin-bottom: 16px; }
    .feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--white); }
    .feature-card p { font-size: 14px; color: #aaa; max-width: 100%; }

    /* TESTIMONIALS */
    .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
    .testimonial-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 28px 24px;
    }
    .stars { color: #f5a623; font-size: 16px; margin-bottom: 12px; }
    .testimonial-card p { font-size: 14px; color: var(--dark); font-style: italic; max-width: 100%; margin-bottom: 16px; }
    .reviewer { font-size: 13px; font-weight: 700; color: var(--dark); }
    .reviewer-loc { font-size: 12px; color: var(--text-muted); }

    /* FAQ */
    .faq-list {
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      max-width: 900px;
    }
    .faq-item {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }
    .faq-item:hover,
    .faq-item:active{
      border-color: #d0d0d0;
      background: transparent;
    }
    .faq-item button:hover,
    .faq-item button:active,
    .faq-item button:focus{
      background: transparent;
    }
    .faq-item.open {
      border-color: rgba(213, 0, 0, 0.4);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    }
    .faq-q,
    .asr-moving-page .faq-q {
      width: 100%;
      margin: 0;
      background: transparent;
      border: none;
      text-align: left;
      padding: 18px 22px;
      font-size: 16px;
      font-weight: 600;
      font-family: inherit;
      line-height: 1.45;
      color: var(--dark);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      -webkit-appearance: none;
      appearance: none;
      box-shadow: none;
    }
    .faq-q:hover,
    .faq-item.open .faq-q {
      color: var(--red);
    }
    .faq-q:focus-visible {
      outline: 2px solid var(--red);
      outline-offset: -2px;
    }
    .faq-icon {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(213, 0, 0, 0.08);
      color: var(--red);
      transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
    }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      padding: 0 22px;
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.75;
      max-width: 100%;
      transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.35s ease;
    }
    .faq-item.open .faq-a {
      max-height: 400px;
      opacity: 1;
      padding: 0 22px 20px;
      border-top: 1px solid var(--border);
      margin-top: 0;
      padding-top: 16px;
    }
    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      background: var(--red);
      color: var(--white);
    }
    .faq-item.open .faq-icon .asr-icon {
      color: var(--white);
      stroke: var(--white);
    }

    /* CTA BANNER */
    .cta-banner { background: var(--red); padding: 64px 40px; text-align: center; }
    .cta-banner h2 { font-size: 32px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
    .cta-banner p { font-size: 17px; color: rgba(255,255,255,0.88); margin-bottom: 32px; }
    .cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .btn-white {
      background: var(--white);
      color: var(--red);
      padding: 14px 32px;
      border-radius: 4px;
      font-weight: 700;
      font-size: 15px;
    }
    .btn-white:hover { text-decoration: none; background: #f0f0f0; }
    .btn-outline-white {
      border: 2px solid rgba(255,255,255,0.6);
      color: var(--white);
      padding: 14px 32px;
      border-radius: 4px;
      font-weight: 600;
      font-size: 15px;
    }
    .btn-outline-white:hover { border-color: var(--white); text-decoration: none; }


    /* RESPONSIVE */
    @media (max-width: 960px) {
      .hero-inner { grid-template-columns: 1fr; }
      .quote-card { display: none; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .route-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .nbhd-grid { grid-template-columns: repeat(2, 1fr); }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .testimonials-grid { grid-template-columns: 1fr; }

      .hero h1 { font-size: 34px; }
    }
    @media (max-width: 600px) {
      .nav { padding: 16px 20px; }
      .hero, .section, .cta-banner { padding-left: 20px; padding-right: 20px; }
      .stats-bar { padding: 28px 20px; }
      .services-grid { grid-template-columns: 1fr; }
      .nbhd-grid { grid-template-columns: 1fr 1fr; }
      .features-grid { grid-template-columns: 1fr; }
      .quote-card .form-grid { grid-template-columns: 1fr; }
    }
  
    /* Icons & imagery */
    .asr-icon { display: block; color: var(--red); }
    .service-icon .asr-icon { width: 32px; height: 32px; }
    .feature-icon .asr-icon { width: 40px; height: 40px; margin: 0 auto; color: var(--red); }
    .section-dark .feature-icon .asr-icon { color: var(--red); }
    .faq-icon .asr-icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
    }
    .stars { display: flex; gap: 2px; align-items: center; }
    .asr-icon-star { fill: #f5a623; stroke: #f5a623; width: 16px; height: 16px; }

    .hero {
      position: relative;
      background: url('https://asrmoving.ca/wp-content/uploads/2026/05/Calgary-to-Edmonton-moving-company.webp') center/cover no-repeat;
      /*background: linear-gradient(135deg, rgba(36,36,36,0.93) 0%, rgba(36,36,36,0.82) 55%, rgba(36,36,36,0.75) 100%),*/
      /*  url('https://asrmoving.ca/wp-content/uploads/2026/05/Calgary-to-Edmonton-moving-company.webp') center/cover no-repeat;*/
    }
    .hero:after{
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
            top: 0;
    left: 0;
        background: rgba(0,0,0,.5);
    }
    .hero-inner{
        position: relative;
        z-index: 9;
    }
    .route-visual {
      margin-top: 40px;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--border);
      line-height: 0;
    }
    .route-visual img {
      width: 100%;
      height: 320px;
      object-fit: cover;
      display: block;
    }
    .route-visual figcaption {
      padding: 12px 16px;
      font-size: 13px;
      color: var(--text-muted);
      background: var(--white);
      line-height: 1.5;
    }
