

  .hs-container-cta {
    display: none !important;
  }

  .hs-footer-section {
    padding-top: 80px !important;
  }

  .hero-banner {
    background: #1d2050;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .hero-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
  }

  .hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
  }

  .hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
  }

  .stat-item {
    text-align: center;
  }

  .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    display: block;
  }

  .stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-top: 5px;
  }

  .contact-method:hover {
    /* background: rgba(255,255,255,0.1); */
    border-color: var(--accent-light);
    transform: translateX(8px);
  }

  .social-links {
    display: flex;
    gap: 12px;
    margin-top: 40px;
    justify-content: center;
  }

  .social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .social-icon:hover {
    background: var(--gradient-orange);
    border-color: var(--primary);
    transform: translateY(-3px);
  }

  .form-area::before {
          content: "";
          position: absolute;
          inset: 0;
          background-image: url(blue.png);
          background-size: 80px;
          background-position: top 20px right 20px;
          background-repeat: no-repeat;
          pointer-events: none;
          z-index: 0;
        }

  .form-toggle {
    display: inline-flex;
    background: var(--light-bg);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 6px;
    margin-bottom: 40px;
  }

  .toggle-btn {
    padding: 12px 28px;
    background: transparent;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
  }

  .toggle-btn.active {
    background: var(--gradient-purple);
    color: #fff;
    /* box-shadow: 0 4px 12px rgba(194, 32, 52, 0.3); */
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
  }

  .form-field {
    display: flex;
    flex-direction: column;
  }

  .form-field.full {
    grid-column: span 2;
    margin-bottom: 20px;
  }

  .form-field label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 14px;
  }

  .form-field label .required {
    color: var(--primary);
    margin-left: 3px;
  }

  .input-field {
    padding: 16px 18px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fff;
  }

  .input-field:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(194, 32, 52, 0.1);
  }

  textarea.input-field {
    min-height: 140px;
    resize: vertical;
  }

  .alt-content {
    display: none;
    text-align: center;
    padding: 60px 40px;
  }

  .alt-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
  }

  .big-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-purple);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
    margin: 0 auto 30px;
  }

  .alt-title {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 16px;
  }

  .alt-text {
    color: #64748b;
    font-size: 16px;
    margin-bottom: 30px;
  }

  .alt-link {
    display: inline-block;
    padding: 16px 40px;
    background: var(--gradient-purple);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .alt-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px -5px rgba(194, 32, 52, 0.4);
  }

  .success-message {
    display: none;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
  }

  .success-message.show {
    display: block;
    animation: slideDown 0.4s ease;
  }

  @media (max-width: 768px) {
    .hero-banner {
      padding: 80px 5% 60px;
    }

    .hero-title {
      font-size: 42px;
    }

    .stats-row {
      gap: 40px;
    }

    .form-grid {
      grid-template-columns: 1fr;
    }

    .form-field.full {
      grid-column: span 1;
    }
  }

  .page-header-container {
    --bs-gutter-x: 1.5rem;
    width: 100%;
    padding: 0 25px;
    margin-right: auto;
    margin-left: auto;
  }

  @media (min-width: 576px) {
    .page-header-container { max-width: 540px; }
  }

  @media (min-width: 768px) {
    .page-header-container { max-width: 720px; }
  }

  @media (min-width: 992px) {
    .page-header-container { max-width: 960px; }
  }

  @media (min-width: 1200px) {
    .page-header-container { max-width: 1140px; }
  }

  @media (min-width: 1400px) {
    .page-header-container { max-width: 1320px; }
  }

  .page-header-info {
    padding: 20px 0 60px;
    max-width: 800px;
  }

  .page-header-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: lightgreen;
      background: rgba(255, 255, 255, 0.05);
      padding: 0.6rem 1.2rem;
      border-radius: 99px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      margin-bottom: 24px;
      backdrop-filter: blur(5px);
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards;
  }

  .page-header-title {
    
    -webkit-font-smoothing: antialiased;
    color: #fff;
      font-size: 45px;
      line-height: 1.1;
      font-weight: 700;
      margin-bottom: 20px;
    text-transform: capitalize;
    font-weight: 700;
    letter-spacing: -1px;
    opacity: 0;
      animation: fadeInUp 0.8s ease 0.2s forwards;
  }

  .page-header-title-accent {
    color: #7FC2DC;
    display: inline-block;
    position: relative;
    z-index: 1;
  }

  .page-header-description {
      max-width: 90%;
      font-size: 18px;
      line-height: 1.6;
      color: #fff;
      margin-bottom: 30px;
      opacity: 0;
      animation: fadeInUp 0.8s ease 0.4s forwards;
  }

  @media (max-width: 767px) {
  
    .page-header-info {
      padding-top: 0;
    }
  
    .page-header-title {
      font-size: 32px;
      line-height: 42px;
    }
  
    .page-header-title br,
    .page-header-description br {
      display: none;
    }
  }

  @media (max-width: 992px) {        
          .page-header-title { font-size: 42px; }
      }

  @media (max-width: 576px) {
          .page-header-title { font-size: 28px; line-height: 1.3 }
          .page-header-description { font-size: 15px;}
          .page-header-label, .about-subtitle{ font-size: 11px; letter-spacing: 0.5px;}
      }

  .form-row:nth-child(1) { animation: fadeInUp 0.4s ease 0.5s both; }

  @media (max-width: 1500px) {
        .hero-truck-img {
          /* right: -190px; */
        }
    }

  @media (max-width: 1300px) {
        .kt-container {
            grid-template-columns: 1fr 440px;
            gap: 80px;
        }
    }

  @media (max-width: 1024px) {
        .kt-container {
            grid-template-columns: 1fr;
            gap: 60px;
            /* padding: 120px 30px 60px; */
        }

        .booking-card {
            max-width: 540px;
            margin: 0 auto;
        }

        .faq-label {
            justify-content: center;
        }
    }

  @media (max-width: 640px) {

      .accordion-icon-wrapper{
        display: none;
      }

      .accordion-content {
        padding: 0 20px 20px;
      }

        .kt-container {
            padding: 100px 30px 40px;
            gap: 40px;
        }

        .booking-header {
            padding: 28px 24px 0;
        }

        .booking-title {
            font-size: 20px;
        }
    }

  .spinner {
      animation: spin 0.8s linear infinite;
  }

  .faq-label::after {
        content: '';
        flex: 1;
        height: 1px;
        background: rgba(255, 255, 255, 0.08);
    }

  .accordion-item:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.12);
        transform: translateX(4px);
    }

  .accordion-icon-wrapper i {
        font-size: 12px;
        color: lightgreen;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

  .accordion-item.active .accordion-icon-wrapper i {
        transform: rotate(360deg);
    }

  .form-label-optional {
        color: #94A3B8;
        font-weight: 400;
    }

  .form-input::placeholder,
    .form-textarea::placeholder {
        color: #94A3B8;
        font-weight: 400;
    }

  .form-input:hover,
    .form-select:hover,
    .form-textarea:hover {
        border-color: #CBD5E1;
        background: #FFFFFF;
    }

  .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
        border-color: #1D8CF8;
        background: #FFFFFF;
        box-shadow: 0 0 0 4px rgba(29, 140, 248, 0.1);
    }

  .input-wrapper:focus-within .input-icon {
        color: #1D8CF8;
    }

  .select-wrapper::after {
      content: "";
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      width: 14px;
      height: 14px;
      pointer-events: none;
      opacity: 1;
  
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
  
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  }

  .submit-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

  .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(25, 73, 92, 0.35);
    }

  .submit-btn:hover::before {
        left: 100%;
    }

  .submit-btn:hover .submit-btn-icon {
        transform: translateX(4px);
    }

  .submit-btn:active {
        transform: translateY(0);
    }

  .accordion-item:nth-child(2) {
        animation: fadeInUp 0.5s ease 0.9s both;
    }

  .accordion-item:nth-child(3) {
        animation: fadeInUp 0.5s ease 1.05s both;
    }

  .accordion-item:nth-child(4) {
        animation: fadeInUp 0.5s ease 1.2s both;
    }

  @media (max-width: 1024px) {

        .faq-label::after {
            max-width: 100px;
        }
    }