/* --- 1. CORE & FONTS --- */
    /* Preload critical font asynchronously */

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    html {
      overflow-x: hidden;
      max-width: 100%;
    }

    body {
      background-color: #ffffff;
      color: #333;
      line-height: 1.6;
      overflow-x: hidden;
      max-width: 100%;
      width: 100%;
    }

    main {
      overflow-x: hidden;
      max-width: 100%;
    }

    :root {
      --primary: #4a0072;
      --accent: #ffd54f;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .text-yellow {
      color: #ffd54f;
    }

    .section-pad {
      padding: 50px 0;
    }

    .text-center {
      text-align: center;
    }

    /* --- TOP TICKER --- */
    .top-ticker {
      background: #111;
      color: #ffd54f;
      font-size: 13px;
      padding: 10px 0;
      text-align: center;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    /* Header + nav: slp-critical.css (single source of truth site-wide) */

    /* --- HERO SECTION --- */
    .hero {
      position: relative;
      padding: 50px 0 60px 0;
      color: white;
      overflow: hidden;
      min-height: 32rem;
    }

    .hero-wrapper {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      justify-content: space-between;
      gap: 40px;
      max-width: 100%;
    }

    .hero-text {
      flex: 1;
      min-width: 0;
      max-width: 100%;
      padding: 20px 20px 0;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        105deg,
        rgba(74, 0, 114, 0.78) 0%,
        rgba(74, 0, 114, 0.62) 45%,
        rgba(106, 0, 153, 0.45) 100%
      );
      z-index: 1;
    }

    .hero-text .hero-h1 {
      font-size: 42px;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .hero-usp {
      font-size: 15px;
      color: rgba(255,255,255,0.95);
      line-height: 1.5;
      margin-bottom: 12px;
      max-width: 540px;
    }

    .hero-usp-mobile {
      display: none;
    }

    .hero-trust-bar {
      font-size: 14px;
      color: var(--accent);
      font-weight: 600;
      margin-top: 12px;
    }

    /* Homepage H1: visible title (slp-deferred.css + slp-critical.css set type/color) */
    .hero-seo-title {
      text-transform: none;
      letter-spacing: 0.2px;
    }

    /* Legacy hero-h1 (unused on index; kept for reference clones) */
    .hero-h1 {
      font-size: clamp(1.35rem, 5.2vw, 2rem);
      font-weight: 800;
      line-height: 1.2;
      color: #fff;
      margin: 0 0 14px;
      max-width: 100%;
      overflow-wrap: anywhere;
      word-wrap: break-word;
      hyphens: auto;
    }
    .hero-tagchips {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }
    .hero-tagchip {
      background: #ffd54f;
      color: #4a0072;
      font-size: 13px;
      font-weight: 800;
      padding: 6px 16px;
      border-radius: 6px;
      letter-spacing: 0.2px;
    }

    /* --- Trust markers grid: 3 on row 1, 2 on row 2 --- */
    .hero-trust-grid {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 16px;
      max-width: 480px;
    }
    .hero-trust-grid__row {
      display: flex;
      gap: 8px;
    }
    .hero-tm {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2px;
      background: linear-gradient(
        160deg,
        rgba(122, 31, 162, 0.82) 0%,
        rgba(74, 0, 114, 0.9) 100%
      );
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 213, 79, 0.55);
      border-radius: 10px;
      padding: 8px 10px;
      flex: 1;
      min-width: 0;
      text-align: center;
      box-shadow: 0 4px 14px rgba(74, 0, 114, 0.35);
    }
    .hero-tm strong {
      color: #ffd54f;
      font-size: 15px;
      font-weight: 800;
      line-height: 1.1;
      display: block;
      text-shadow: 0 1px 3px rgba(45, 10, 78, 0.5);
    }
    .hero-tm span {
      color: #ffffff;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      line-height: 1.2;
      text-shadow: 0 1px 2px rgba(45, 10, 78, 0.45);
    }

    /* --- Official partner pills one-liner --- */
    .hero-partners-line {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 18px;
      max-width: 480px;
      padding: 0;
    }
    .hero-partners-line__label {
      font-size: 11px;
      font-weight: 700;
      color: #ffffff;
      text-transform: uppercase;
      letter-spacing: 0.4px;
      white-space: nowrap;
      text-shadow:
        0 1px 3px rgba(74, 0, 114, 0.9),
        0 0 12px rgba(74, 0, 114, 0.65);
    }
    .hero-partner-pill {
      font-size: 11px;
      font-weight: 800;
      color: #4a0072;
      background: #ffd54f;
      border-radius: 4px;
      padding: 3px 9px;
      white-space: nowrap;
      letter-spacing: 0.3px;
    }

    /* --- CTAs --- */
    .hero-btns--primary { margin-bottom: 0; }

    .btn-hero-wa {
      background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
      color: #fff;
      padding: 13px 24px;
      border-radius: 50px;
      font-weight: 800;
      font-size: 15px;
      border: none;
      cursor: pointer;
      box-shadow: 0 5px 20px rgba(18, 140, 126, 0.38);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: transform 0.2s;
      text-decoration: none;
    }
    .btn-hero-wa:hover { transform: translateY(-3px); color: #fff; }

    /* "Check rates instantly" — solid white button, hover lifts */
    .btn-hero-rates {
      background: #ffffff;
      border: 2px solid #ffffff;
      color: #4a0072;
      font-weight: 800;
      font-size: 15px;
      padding: 13px 20px;
      border-radius: 50px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 4px 16px rgba(255,255,255,0.25);
    }
    .btn-hero-rates:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 22px rgba(255,255,255,0.35);
      color: #4a0072;
    }

    .hero-btns {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }

    .btn-main {
      background: #ffd54f;
      color: #4a0072;
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 800;
      text-decoration: none;
      font-size: 16px;
      box-shadow: 0 5px 20px rgba(255, 213, 79, 0.4);
      transition: transform 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: none;
      cursor: pointer;
    }

    .btn-sec {
      background: transparent;
      border: 2px solid #fff;
      color: #fff;
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 700;
      text-decoration: none;
      font-size: 16px;
      transition: 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-main:hover,
    .btn-sec:hover {
      transform: translateY(-3px);
    }

    .btn-sec:hover {
      background: #fff;
      color: #4a0072;
    }

    /* ============================================================
       HOME HERO — BOOK PICKUP CARD
       ============================================================ */
    .hero-form {
      flex: 0 0 400px;
      max-width: 100%;
      z-index: 10;
      padding: 8px 0 8px 8px;
      align-self: center;
    }

    .pickup-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32), 0 2px 8px rgba(74, 0, 114, 0.12);
      overflow: hidden;
      max-width: 400px;
      margin-left: auto;
      color: #222;
    }

    /* --- Pickup card: branded header --- */
    .pickup-card__head {
      background: linear-gradient(135deg, #3a0068 0%, #6a0099 100%);
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      border-bottom: 3px solid #ffd54f;
    }
    .pickup-card__logo {
      width: 44px;
      height: 44px;
      background: #fff;
      border-radius: 8px;
      padding: 3px;
      flex-shrink: 0;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }
    .pickup-card__brand {
      color: #fff;
      font-weight: 900;
      font-size: 16px;
      line-height: 1.2;
      letter-spacing: 0.2px;
    }

    /* --- Pickup card: purple body --- */
    .pickup-card__body {
      padding: 18px 18px 18px;
      background: #4a0072;
    }
    .pickup-card__title {
      font-size: 1.25rem;
      font-weight: 800;
      color: #ffd54f;
      margin: 0 0 12px;
      line-height: 1.2;
    }

    /* Trust chips row — centred */
    .pickup-card__chips {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 12px;
    }
    .pickup-card__chip {
      background: #ffd54f;
      color: #4a0072;
      font-size: 12px;
      font-weight: 800;
      padding: 5px 12px;
      border-radius: 6px;
      white-space: nowrap;
    }

    /* Yellow divider between chips and form */
    .pickup-card__divider {
      height: 2px;
      background: #ffd54f;
      border-radius: 2px;
      margin-bottom: 14px;
      opacity: 0.55;
    }

    /* Form fields on purple background */
    .pickup-field {
      margin-bottom: 10px;
    }
    .pickup-field label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 5px;
      text-transform: uppercase;
      letter-spacing: 0.4px;
    }
    .pickup-req {
      color: #ffd54f;
      font-size: 12px;
    }
    .pickup-select-wrap { position: relative; }
    .pickup-select-wrap::after {
      content: '';
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      width: 10px;
      height: 6px;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%234a0072' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-size: contain;
    }
    .pickup-field select,
    .pickup-field input[type="tel"] {
      width: 100%;
      padding: 11px 34px 11px 12px;
      border-radius: 9px;
      border: 1.5px solid rgba(255,255,255,0.2);
      font-size: 14px;
      font-family: inherit;
      font-weight: 500;
      color: #2a0050;
      background: #fdf6e3;
      appearance: none;
      -webkit-appearance: none;
      transition: border-color 0.15s ease, box-shadow 0.15s ease;
    }
    .pickup-field input[type="tel"] { padding-right: 12px; }
    .pickup-field select:focus,
    .pickup-field input:focus {
      outline: none;
      border-color: #ffd54f;
      box-shadow: 0 0 0 3px rgba(255, 213, 79, 0.3);
    }
    .pickup-row2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    /* Two CTA buttons side by side */
    .pickup-cta-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 12px;
    }
    .btn-pickup-rates {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      text-decoration: none;
      padding: 13px 10px;
      border-radius: 50px;
      font-family: inherit;
      font-weight: 800;
      font-size: 13px;
      color: #4a0072;
      background: #ffd54f;
      box-shadow: 0 4px 14px rgba(255, 213, 79, 0.35);
      transition: transform 0.2s ease;
      white-space: nowrap;
    }
    .btn-pickup-rates:hover { transform: translateY(-2px); color: #4a0072; }
    .btn-pickup-submit {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 13px 10px;
      border-radius: 50px;
      border: 0;
      cursor: pointer;
      font-family: inherit;
      font-weight: 800;
      font-size: 13px;
      color: #fff;
      background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
      box-shadow: 0 4px 14px rgba(18, 140, 126, 0.4);
      transition: transform 0.2s ease;
      white-space: nowrap;
    }
    .btn-pickup-submit:hover { transform: translateY(-2px); }

    /* --- AT A GLANCE BAR --- */
    .glance-bar {
      background: #fdf5e6;
      border-bottom: 1px solid #ffe0b2;
      padding: 20px 0;
    }

    .glance-grid {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 20px;
    }

    .glance-item {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .glance-icon {
      width: 45px;
      height: 45px;
      background: #4a0072;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
    }

    .glance-text h4,
    .glance-heading {
      font-size: 15px;
      font-weight: 800;
      color: #333;
      margin: 0;
    }

    .glance-text p {
      font-size: 12px;
      color: #666;
      margin: 0;
    }

    /* --- PARTNERS STRIP --- */
    .partners-strip {
      background: #fff;
      padding: 30px 0;
      border-bottom: 1px solid #eee;
      text-align: center;
    }

    .partners-title {
      font-size: 13px;
      color: #555;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 700;
      margin-bottom: 30px;
    }

    .partners-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 30px;
      align-items: center;
      justify-items: center;
      max-width: 900px;
      margin: 0 auto;
    }

    .partner-logo-box {
      width: 100%;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.3s;
      background: #fff;
      border-radius: 8px;
      padding: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }

    .partner-logo-box:hover {
      transform: scale(1.05);
    }

    .partner-logo-box img {
      max-width: 140px;
      max-height: 50px;
      object-fit: contain;
    }

    /* --- EXPERT PACKING SECTION --- */
    .packing-section {
      background: #fff;
      content-visibility: auto;
      contain-intrinsic-size: auto 500px;
    }

    .pack-wrapper {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 50px;
    }

    .pack-img-box {
      flex: 1;
      min-width: 300px;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
      border: 8px solid #fff;
      background: #eee;
      height: 400px;
    }

    .pack-img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .pack-content {
      flex: 1;
      min-width: 300px;
    }

    .pack-content h2 {
      font-size: 32px;
      color: #4a0072;
      font-weight: 800;
      margin-bottom: 15px;
    }

    .pack-content p {
      color: #555;
      margin-bottom: 25px;
      font-size: 16px;
    }

    .pack-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .pack-list li {
      list-style: none;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
      color: #333;
    }

    .pack-list li span {
      color: #25D366;
      font-size: 20px;
    }

    /* --- SERVICES --- */
    .services-section {
      background: #f8f9fa;
      content-visibility: auto;
      contain-intrinsic-size: auto 600px;
    }

    .sec-head h2 {
      font-size: 32px;
      color: #4a0072;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .sec-head p {
      color: #666;
      margin-bottom: 40px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 25px;
    }

    .srv-box {
      background: #fff;
      border-radius: 12px;
      padding: 30px 20px;
      text-align: center;
      transition: 0.3s;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .srv-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(74, 0, 114, 0.1);
    }

    .srv-icon {
      font-size: 40px;
      margin-bottom: 15px;
      display: block;
    }

    .srv-head {
      font-weight: 700;
      font-size: 18px;
      margin-bottom: 10px;
      color: #333;
    }

    .srv-sub {
      font-size: 13px;
      color: #555;
      line-height: 1.6;
    }

    /* --- COUNTRIES GRID --- */
    .countries-section {
      background: #fff;
      padding-bottom: 100px;
      content-visibility: auto;
      contain-intrinsic-size: auto 1200px;
    }

    .c-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 20px;
    }

    .c-card {
      height: 200px;
      border-radius: 12px;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s;
      background: linear-gradient(135deg, #4a0072 0%, #9821c8 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }

    .c-card:hover {
      transform: translateY(-5px);
    }

    .c-content {
      color: white;
      z-index: 2;
      text-align: center;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    }

    .c-flag {
      font-size: 60px;
      display: block;
      margin-bottom: 10px;
      text-shadow: none;
      /* Added font family so flags show on Windows Laptops */
      font-family: "Segoe UI Emoji", "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Symbol", sans-serif;
    }

    .c-name {
      font-size: 18px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .c-sub {
      font-size: 11px;
      color: #ffd54f;
      font-weight: 600;
      margin-top: 5px;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    }

    /* MORE CARD */
    .c-card-more {
      background: #4a0072;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
    }

    .c-more-text h3 {
      font-size: 32px;
      font-weight: 800;
      color: #ffd54f;
      margin: 0;
      line-height: 1;
    }

    .c-more-text p {
      font-size: 14px;
      margin: 5px 0 0 0;
    }

    /* --- TESTIMONIALS --- */
    .review-section {
      background: #f4f7f6;
      text-align: center;
      content-visibility: auto;
      contain-intrinsic-size: auto 400px;
    }

    .review-container {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      height: 200px;
    }

    .review-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      opacity: 0;
      transition: 0.5s;
      transform: scale(0.95);
    }

    .review-slide.active {
      opacity: 1;
      transform: scale(1);
    }

    .r-quote {
      font-size: 18px;
      font-style: italic;
      color: #555;
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .r-name {
      font-weight: 700;
      color: #4a0072;
    }

    .r-loc {
      font-size: 12px;
      color: #666;
    }

    .review-cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .review-card {
      background: #fff;
      border-radius: 12px;
      padding: 24px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      border: 1px solid #eee;
    }

    .r-stars {
      font-size: 20px;
      margin-bottom: 12px;
      color: #ffd54f;
    }

    .r-telugu {
      font-size: 12px;
      color: #666;
      font-style: italic;
      margin: 12px 0;
      line-height: 1.5;
    }

    .review-buttons {
      margin-top: 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

    .btn-google-reviews {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #ffd54f;
      color: #4a0072;
      font-weight: 800;
      padding: 14px 32px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 16px;
      box-shadow: 0 4px 15px rgba(255,213,79,0.4);
      transition: transform 0.2s;
    }

    .btn-google-reviews:hover {
      transform: translateY(-2px);
    }

    .btn-write-review {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      color: #4a0072;
      border: 2px solid #4a0072;
      font-weight: 600;
      padding: 10px 24px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 14px;
      transition: 0.2s;
    }

    .btn-write-review:hover {
      background: rgba(74,0,114,0.1);
    }

    .review-rating-line {
      margin-top: 24px;
    }

    .review-rating-line a {
      color: #4a0072;
      font-weight: 700;
      text-decoration: none;
    }

    .review-rating-line a:hover {
      text-decoration: underline;
    }

    /* FAQ on dark gradient — must beat slp-deferred.css (.faq-item / summary / .faq-a) when deferred loads last */
    .faq-section {
      background: linear-gradient(135deg, #3e0061 0%, #4a0072 100%);
      color: #fff;
    }

    .faq-section .sec-head h2 {
      color: #ffffff;
    }

    .faq-section .sec-head p {
      color: rgba(255, 255, 255, 0.92);
    }

    .faq-section .faq-title {
      color: #ffffff;
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .faq-section .faq-subtitle {
      color: rgba(255, 255, 255, 0.9);
      font-size: 16px;
      margin-bottom: 30px;
    }

    .faq-section .faq-list {
      max-width: 900px;
      margin: 0 auto;
    }

    .faq-section .faq-item {
      background: rgba(255, 255, 255, 0.1);
      margin-bottom: 15px;
      border-radius: 12px;
      padding: 0;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-left: 4px solid #ffd54f;
      cursor: pointer;
      overflow: hidden;
    }

    .faq-section .faq-item[open] {
      border-color: rgba(255, 255, 255, 0.28);
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
    }

    .faq-section .faq-item summary.faq-q,
    .faq-section .faq-item > summary {
      font-weight: 700;
      color: #ffd54f;
      font-size: 16px;
      cursor: pointer;
      user-select: none;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding: 18px 20px;
    }

    .faq-section .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-section .faq-item summary::after {
      content: "+";
      font-size: 22px;
      font-weight: 600;
      color: #ffd54f;
      line-height: 1;
      flex-shrink: 0;
    }

    .faq-section .faq-item[open] summary::after {
      content: "−";
    }

    .faq-section .faq-a {
      font-size: 15px;
      color: #ffffff;
      opacity: 0.96;
      padding: 0 20px 18px;
      line-height: 1.75;
    }

    .faq-section .faq-a a {
      color: #ffd54f;
      text-decoration: underline;
    }

    /* --- FOOTER --- */
    footer {
      background: #111;
      color: #fff;
      padding: 60px 0 20px 0;
      font-size: 14px;
    }

    .f-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }

    .f-head {
      color: #ffd54f;
      font-weight: 700;
      margin-bottom: 20px;
      font-size: 16px;
      text-transform: uppercase;
    }

    .f-links a {
      display: block;
      color: #aaa;
      text-decoration: none;
      margin-bottom: 10px;
      transition: 0.2s;
    }

    .f-links a:hover {
      color: #fff;
      padding-left: 5px;
    }

    .copy {
      text-align: center;
      border-top: 1px solid #333;
      padding-top: 20px;
      color: #aaa;
      font-size: 12px;
    }

    /* --- FLOATING WHATSAPP --- */
    .float-wa {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 60px;
      height: 60px;
      background: #075E54;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
      z-index: 9999;
      transition: transform 0.3s;
      cursor: pointer;
    }

    .float-wa:hover {
      transform: scale(1.1);
    }

    /* Note: SVG is removed in body, replaced with img */

    /* --- WIDGET CSS --- */
    .slp-widget {
      background: #ffffff;
      width: 100%;
      border-radius: 16px;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
      overflow: hidden;
      position: relative;
      color: #333;
    }

    .slp-header {
      background: linear-gradient(135deg, #4a0072 0%, #6a0099 100%);
      color: white;
      padding: 18px 20px;
      text-align: center;
    }

    .widget-logo {
      height: 56px;
      width: auto;
      background: white;
      padding: 8px;
      border-radius: 8px;
      border: 2px solid #ffd54f;
      margin-bottom: 10px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .widget-brand {
      font-size: 18px;
      font-weight: 800;
      margin: 0 0 10px 0;
      color: white;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .widget-promise {
      font-size: 13px;
      line-height: 1.5;
      opacity: 0.95;
      margin: 0 0 12px 0;
    }

    .widget-trust {
      font-size: 12px;
      margin: 0;
      color: #ffd54f;
    }

    .slp-header h2 {
      font-size: 18px;
      font-weight: 700;
      margin: 0;
    }

    .benefits-box {
      background: rgba(0, 0, 0, 0.2);
      border-radius: 8px;
      padding: 8px;
      margin-top: 8px;
    }

    .benefits-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .benefits-list li {
      font-size: 11px;
      font-weight: 600;
      color: #fff;
    }

    .benefits-list li span {
      color: #ffd54f;
      margin-right: 3px;
    }

    .slp-body {
      padding: 24px 28px;
      background: #fff;
    }

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

    .form-group label {
      font-size: 11px;
      color: #444;
      font-weight: 700;
      text-transform: uppercase;
      display: block;
      margin-bottom: 4px;
    }

    .form-group input {
      width: 100%;
      padding: 12px;
      border: 1px solid #ddd;
      background: #f9f9f9;
      border-radius: 6px;
      font-size: 13px;
      color: #333;
    }

    .form-group input:focus {
      outline: none;
      border-color: #9821c8;
      background: #fff;
    }

    .row {
      display: flex;
      gap: 10px;
    }

    .col {
      flex: 1;
    }

    .err {
      color: #d32f2f;
      font-size: 10px;
      font-weight: 600;
      display: none;
      margin-top: 2px;
    }

    .loader-spinner {
      border: 3px solid rgba(74, 0, 114, 0.2);
      border-radius: 50%;
      border-top: 3px solid #4a0072;
      width: 18px;
      height: 18px;
      animation: spin 1s linear infinite;
      display: inline-block;
      margin-right: 8px;
    }

    @keyframes spin {
      0% {
        transform: rotate(0deg);
      }

      100% {
        transform: rotate(360deg);
      }
    }

    .btn-submit {
      width: 100%;
      background: linear-gradient(135deg, #ffd54f 0%, #ffc107 100%);
      color: #4a0072;
      border: none;
      padding: 12px;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 800;
      text-transform: uppercase;
      cursor: pointer;
      margin-top: 5px;
      box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .country-dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      border: 1px solid #9821c8;
      max-height: 150px;
      overflow-y: auto;
      z-index: 100;
      display: none;
    }

    .country-dropdown.show {
      display: block;
    }

    .country-option {
      padding: 8px;
      font-size: 12px;
      cursor: pointer;
      border-bottom: 1px solid #eee;
    }

    .country-option:hover {
      background: #f0f0f0;
    }

    .success-view {
      display: none;
      padding: 20px;
      text-align: center;
    }

    .wa-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      background: #075E54;
      color: white;
      text-decoration: none;
      padding: 12px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 14px;
      margin-top: 15px;
    }

    .icon-parcel {
      display: inline-block;
      width: 22px;
      height: 20px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234a0072'%3E%3Cpath d='M20 8h-3V4H7v4H4c-1.1 0-2 .9-2 2v10h20V10c0-1.1-.9-2-2-2zm-2 0v2h-2v2h2v2h2v-2h2v-2h-2V8h-2zM9 6h6v2H9V6z'/%3E%3C/svg%3E") no-repeat center;
      background-size: contain;
      vertical-align: middle;
      margin-right: 8px;
    }

    .quick-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 14px 16px;
      font-size: 15px;
      font-weight: 800;
      border-radius: 8px;
      text-decoration: none;
      margin-bottom: 12px;
      transition: transform 0.2s;
    }

    .quick-btn:last-child {
      margin-bottom: 0;
    }

    .quick-btn:hover {
      transform: translateY(-2px);
    }

    .quick-btn-gold {
      background: #ffd54f;
      color: #4a0072;
      box-shadow: 0 4px 10px rgba(255, 213, 79, 0.4);
    }

    .quick-btn-green {
      background: #0d8050;
      color: #fff;
      box-shadow: 0 4px 12px rgba(13, 128, 80, 0.4);
    }

    @media (max-width: 900px) {
      .hero {
        background: linear-gradient(180deg, #1a0033 0%, #2d0a4e 50%, #1a0033 100%);
      }

      .hero-overlay {
        background: linear-gradient(
          180deg,
          rgba(74, 0, 114, 0.82) 0%,
          rgba(106, 0, 153, 0.72) 55%,
          rgba(74, 0, 114, 0.65) 100%
        );
      }

      .hero-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 28px;
      }

      .hero-text {
        text-align: center;
        padding: 0 12px;
        min-width: 0;
        width: 100%;
        max-width: 26rem;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .hero-seo-title {
        font-size: clamp(1.15rem, 4.8vw, 1.65rem);
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        padding: 0 4px;
      }

      .hero-value-chips,
      .hero-trust-stickers {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
      }

      .hero-partners-line {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
      }

      .hero-btns {
        justify-content: center;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
      }

      .btn-hero-wa,
      .btn-hero-rates {
        justify-content: center;
      }

      .hero-form {
        width: 100%;
        max-width: 100%;
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
      }

      .hero-form .pickup-card {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
      }

      .hero-form {
        padding: 0 4px;
        box-sizing: border-box;
      }

      .pickup-row2 {
        grid-template-columns: 1fr 1fr;
      }

      .pack-wrapper {
        flex-direction: column-reverse;
      }

      .pack-img-box {
        height: 300px;
      }

      .partners-grid {
        grid-template-columns: repeat(2, 1fr);
      }

    }
  

:focus-visible {
    outline: 3px solid #ffd54f;
    outline-offset: 3px;
    border-radius: 4px;
}
