 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:      #0d2046;
      --navy-dark: #094382;
      --red:       #EE363F;
      --red-dark:  #b82020;
      --red-btn:   #e63030;
      --gray:      #6b7280;
      --light-bg:  #f4f7fb;
      --border:    #e2e8f0;
      --white:     #ffffff;
      --text:      #1e2433;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', Arial, sans-serif;
      color: var(--text);
      line-height: 1.65;
      background: #fff;
      font-size: 17px;
    }

    img { max-width: 100%; display: block; }
    a   { color: inherit; text-decoration: none; }

    .container {
      max-width: 1260px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ─── HEADER ─────────────────────────────── */
    header {
      background: var(--white);
      position: sticky;
      top: 0;
      z-index: 200;
      box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 9px 0px;
      max-width: 1260px;
      margin: 0 auto;
      gap: 16px;
      flex-wrap: wrap;
    }
    .logos {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .logo-cord {
      padding: 2px 10px;
      width: 270px;
      
    }
    .logo-sep {
      width: 1px;
      height: 36px;
      background: rgba(255,255,255,.3);
    }
    .logo-nav {
      padding: 2px 10px;
      width: 270px;
    }
    .logo-nav strong { display: block; font-size: 13px; color: #fff; }

    .header-phone {
      background: var(--red-btn);
      color: #fff;
      font-weight: 700;
      font-size: 15px;
      padding: 10px 22px;
      border-radius: 4px;
      transition: background .2s;
      white-space: nowrap;
    }
    .header-phone:hover { background: var(--red-dark); }

    /* ─── HERO ────────────────────────────────── */
    .hero {
      background: #fff;
      padding: 80px 24px 80px;
    }
    .hero-inner {
      max-width: 1260px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 620px 620px;
      gap: 20px;
      align-items: center;
    }


    .hero-content h1 {
      font-size: clamp(30px, 4vw, 46px);
      font-weight: 900;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 24px;
    }
    .hero-bullets {
      list-style: none;
      margin-bottom: 28px;
    }
    .hero-bullets li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 10px;
      font-size: 16.5px;
      color: #333;
    }

    .trust-badges {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }
    .badge-item {
      display: flex;
      align-items: center;
      gap: 16px;
      
    }
    .badge-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
    }


    .hero-img-wrap {
      position: relative;
    }
    .hero-img-wrap img {
      width: 100%;
      border-radius: 10px;
      object-fit: cover;
      height: 415px;
    }

    /* ─── QUOTE FORM ─────────────────────────── */
    .quote-form-section {
      background: var(--red-btn);
      padding: 38px 45px 45px;
      width: 1260px;
      margin: 0 auto;  
      border-radius: 15px;
    }
    .quote-form-section h2 {
      text-align: center;
      color: #fff;
      font-size: 26px;
      font-weight: 800;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: .5px;
    }
    .form-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      align-items: end;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    .form-group label {
      font-size: 12px;
      font-weight: 600;
      color: rgba(255,255,255,.9);
      text-transform: uppercase;
      letter-spacing: .4px;
    }
    .form-group label .req { color: var(--white); }
    .form-group input,
    .form-group select {
      border: none;
      border-radius: 4px;
      padding: 10px 12px;
      font-size: 14px;
      font-family: inherit;
      color: var(--text);
      background: #fff;
      width: 100%;
      outline: none;
    }
    .form-group input:focus,
    .form-group select:focus {
      box-shadow: 0 0 0 2px var(--navy-dark);
    }
    .form-row-2 {
      max-width: 1200px;
      margin: 10px auto 0;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      align-items: end;
    }
    .form-row-btn {
      max-width: 1200px;
      margin: 14px auto 0;
      text-align: center;
    }
    .btn-quote {
      background: var(--navy);
      color: #fff;
      border: none;
      padding: 12px 48px;
      border-radius: 4px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      white-space: nowrap;
      transition: background .2s;
      font-family: inherit;
    }
    .btn-quote:hover { background: var(--navy-dark); }

    /* ─── SECTION COMMONS ─────────────────────── */
    .section { padding: 64px 24px; }
    .section-alt { background: var(--light-bg); }

    .section-label {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--red-btn);
      margin-bottom: 10px;
    }
    .section-title {
      font-size: clamp(26px, 3.2vw, 38px);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.25;
      margin-bottom: 16px;
    }
    .section-title-center {
      text-align: center;
      margin-bottom: 40px;
    }
    .section-body {
      color: #444;
      font-size: 17px;
      line-height: 1.75;
    }
    .section-body p + p { margin-top: 14px; }

    /* ─── TWO-COL LAYOUT ─────────────────────── */
    .two-col {
      max-width: 1260px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
    }
    .two-col.reverse { direction: rtl; }
    .two-col.reverse > * { direction: ltr; }
    .col-img img {
      width: 100%;
      border-radius: 10px;
      height: auto;
    }

    /* ─── PROFESSIONAL MOVERS ──────────────────── */
    .pro-movers {
      max-width: 1260px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 590px 614px;
      gap: 56px;
      align-items: start;
    }
    .pro-movers .col-img img {
      height: auto;
    }

    /* ─── SERVICES GRID ──────────────────────── */
    .services-center { text-align: center; }
    .services-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }
    .service-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 28px 16px 22px;
      text-align: center;
      transition: box-shadow .2s, transform .2s;
      cursor: default;
    }
    .service-card:hover {
      box-shadow: 0 8px 24px rgba(0,0,0,.1);
      transform: translateY(-3px);
    }
    .service-icon {
      font-size: 36px;
      margin-bottom: 12px;
      display: block;
    }
    .service-card h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.3;
    }
    .service-card img{
      width: 50px;
      height: 80px;
      margin: auto;
      padding-bottom: 15px;

    }

    /* ─── LOCAL MOVING ───────────────────────── */
    .residential-sub {
      margin-top: 36px;
      padding-top: 28px;
      border-top: 1px solid var(--border);
    }
    .residential-sub h3 {
      font-size: 22px;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 12px;
    }

    .two-col .col-img img{
        height: auto;

    }


    /* ------------------- */

    /* __________________*/
    

    /* ─── REASONS LIST ───────────────────────── */
    .reasons-list {
      list-style: none;
      margin: 20px 0;
    }
    .reasons-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 8px 0;
      font-size: 16.5px;
      color: #333;
      border-bottom: 1px solid var(--border);
    }
    

    /* ─── WHY CHOOSE ────────────────────────── */
    .top-reasons {
      list-style: none;
      margin: 20px 0 24px;
    }
    .top-reasons li {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 0;
      font-size: 17px;
      font-weight: 600;
      color: var(--navy);
      border-bottom: 1px solid var(--border);
    }
  

    /* ─── GARY SINISE ────────────────────────── */
    .sinise-section {
      background: var(--navy);
      padding: 56px 24px;
      color: #fff;
    }
    .sinise-inner {
      max-width: 1260px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 280px;
      gap: 48px;
      align-items: center;
    }
    .sinise-inner h2 {
      font-size: clamp(26px, 2.8vw, 34px);
      font-weight: 800;
      margin-bottom: 16px;
      color: #fff;
    }
    .sinise-inner p {
      color: rgba(255,255,255,.85);
      font-size: 17px;
      line-height: 1.75;
    }
    .sinise-flag {
      width: 100%;
      border-radius: 8px;
      overflow: hidden;
    }
    .sinise-flag-placeholder {
      background: linear-gradient(135deg, #b22234 33%, #fff 33%, #fff 66%, #3c3b6e 66%);
      height: 180px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 48px;
    }

    /* ─── TESTIMONIALS ───────────────────────── */
    .testimonials-section {
      background: #1a1a2e;
      padding: 64px 24px;
    }
    .testimonials-section h2 {
      text-align: center;
      color: #fff;
      font-size: clamp(26px, 2.8vw, 34px);
      font-weight: 800;
      margin-bottom: 40px;
    }
    .testimonials-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .testimonial-card {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 10px;
      padding: 28px 24px;
      position: relative;
    }
    .testimonial-card::before {
      content: "\201C";
      font-size: 64px;
      color: var(--red-btn);
      line-height: .8;
      display: block;
      margin-bottom: 12px;
      font-family: Georgia, serif;
    }
    .testimonial-card p {
      color: rgba(255,255,255,.85);
      font-size: 16px;
      line-height: 1.75;
      margin-bottom: 20px;
    }
    .testimonial-author {
      font-size: 13px;
      font-weight: 700;
      color: var(--red-btn);
    }

    /* ─── FOOTER ─────────────────────────────── */
    footer {
      background: var(--white);
      padding: 32px 24px;
    }
    .footer-inner {
      max-width: 1260px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      text-align: center;
    }
    .footer-logo { font-size: 24px; font-weight: 900; color: #fff; letter-spacing: 1px; }
    .footer-logo span { color: var(--red-btn); }
    .footer-copy { font-size: 13px; color: rgba(82, 82, 82, 0.5); }

    .footer-ctas {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: #fff;
      padding: 15px;
      display: flex;
      justify-content: center;
      gap: 15px;
      z-index: 1000;
    }
    .footer-btn {
      padding: 10px 22px;
      border-radius: 4px;
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      transition: opacity .2s;
    }
    .footer-btn:hover { opacity: .88; }
    .footer-btn-red   { background: var(--red-btn);   color: #fff; }
    .footer-btn-navy  { background: #163266;           color: #fff; }

    /* ─── DIVIDER ─────────────────────────────── */
    .divider {
      border: none;
      border-top: 1px solid var(--border);
      margin: 28px 0;
    }

    /* ─── RESPONSIVE ──────────────────────────── */
    @media (max-width: 960px) {
      .form-grid     { grid-template-columns: repeat(2, 1fr); }
      .form-row-2    { grid-template-columns: repeat(2, 1fr); }
      .services-grid { grid-template-columns: repeat(3, 1fr); }
      .hero-inner    { grid-template-columns: 1fr; }
      .hero-img-wrap { display: none; }
      .two-col       { grid-template-columns: 1fr; gap: 32px; }
      .two-col.reverse { direction: ltr; }
      .pro-movers    { grid-template-columns: 1fr; }
      .sinise-inner  { grid-template-columns: 1fr; }
      .sinise-flag-placeholder { max-width: 280px; }
      .testimonials-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 600px) {
      .form-grid  { grid-template-columns: 1fr 1fr; }
      .form-row-2 { grid-template-columns: 1fr 1fr; }
      .btn-quote  { width: 100%; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .header-inner  { flex-direction: column; align-items: flex-start; }
    }