/* Booking Form Styles */

body {
    background: #f9f9f9;
    font-family: 'Arial', sans-serif;
    color: #333;
  }
  
  
  .payment-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    font-weight: 500;
  }
  .payment-step:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #c5a95d;
    z-index: 0;
  }
  .payment-step > div {
    background-color: #fff;
    z-index: 1;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    border: 2px solid #c5a95d;
    color: #c5a95d;
    font-size: 0.9rem;
    font-weight: 600;
  }
  .payment-summary {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1.5rem;
    font-size: 0.95rem;
  }
  .payment-summary .total {
    font-weight: bold;
    font-size: 1.1rem;
  }
  .form-section-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #222;
  }
  .form-check-label {
    font-weight: 500;
  }
  .btn-gold {
    background-color: #c5a95d;
    border: none;
    color: #fff;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border-radius: 5px;
  }
  .btn-gold:hover {
    background-color: #b0934f;
  }
  .bank-details {
    display: none;
    background-color: #f9f9f9;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-top: 1rem;
    font-size: 0.9rem;
  }
  @media (max-width: 768px) {
    .payment-step {
      flex-direction: column;
      gap: 0.5rem;
    }
    .payment-step:before {
      display: none;
    }
    .form-section-title {
      text-align: center;
    }
    .btn-gold {
      width: 100%;
    }
  }
  
  .desktop-landing-form {
    padding: 40px 20px;
  }
  
  .transferFormContainer {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
  }
  
  .trip-tabs {
    margin-bottom: 20px;
  }
  
  .nav-tabs .nav-link {
    font-weight: 600;
    color: #555;
    background: #f5f5f5;
    border-radius: 50px;
    margin-right: 8px;
    padding: 8px 20px;
    border: 1px solid #ccc;
    transition: 0.3s;
  }
  
  .nav-tabs .nav-link:hover {
    background: #ddd;
  }
  
  .nav-tabs .nav-link.active {
    background: linear-gradient(90deg, #b88a1a 0%, #a6842e 100%);
    color: #fff;
    border: none;
  }
  
  .trip-type-buttons {
    text-align: left;
    margin-bottom: 40px;
  }
  
  .trip-type-btn {
    padding: 10px 20px;
    margin: 5px;
    font-weight: 600;
    background: #e0e0e0;
    border: 2px solid #ccc;
    border-radius: 30px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .trip-type-btn:hover {
    background: #d1d1d1;
  }
  
  .trip-type-btn.active {
    background: linear-gradient(90deg, #b88a1a 0%, #a6842e 100%);
    color: #fff;
    border: none;
  }
  
  .input-group {
    margin-bottom: 20px;
    position: relative;
  }
  
  .input-group input,
  .input-group select,
  .input-group textarea {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: #f7f7f7;
    transition: 0.3s;
  }
  
  .input-group input:focus,
  .input-group select:focus,
  .input-group textarea:focus {
    background: #fff;
    border-color: #b88a1a;
    box-shadow: 0 0 8px rgba(184, 138, 26, 0.4);
  }
  
  .input-group .form-label {
    position: absolute;
    top: -10px;
    left: 14px;
    background: #fff;
    padding: 0 5px;
    font-size: 13px;
    color: #555;
  }
  
  #passengers-box {
    position: relative;
    cursor: pointer;
  }
  
  .field-popup {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.05);
    border-radius: 8px;
    padding: 10px;
    margin-top: 8px;
    z-index: 1000;
  }
  
  .field {
    margin-bottom: 10px;
  }
  
  .number-control {
    display: flex;
    align-items: center;
  }
  
  .number-control input {
    width: 60px;
    text-align: center;
    margin: 0 5px;
  }
  
  .number-control .btn {
    background: #b88a1a;
    color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding: 0;
    border: none;
  }
  
  .field-popup label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
  }
  
  .submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    background: linear-gradient(90deg, #b88a1a 0%, #a6842e 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 20px;
  }
  
  .submit-btn:hover {
    background: linear-gradient(90deg, #a6842e 0%, #b88a1a 100%);
    transform: translateY(-2px);
  }
  
  .policy-info {
    font-size: 13px;
    color: #555;
    margin-top: 20px;
    text-align: center;
  }
  
  .policy-info a {
    color: #007bff;
    text-decoration: none;
  }
  
  .policy-info a:hover {
    text-decoration: underline;
  }
  
  .extra-service-btn {
    display: block;
    margin-bottom: 10px;
    background: #f5f5f5;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 14px;
    border: 1px solid #ccc;
    transition: 0.3s;
    cursor: pointer;
  }
  
  .extra-service-btn:hover {
    background: #ffebd6;
  }
  
  .extra-service-btn input {
    margin-right: 8px;
  }
  
  
  .trip-tabs-inline {
    display: flex;
    justify-content: left;
    gap: 6px;
    margin-bottom: 20px;
    flex-wrap: wrap; /* Mobile responsive */
  }
  
  .trip-tabs-inline .nav-link {
    padding: 10px 25px;
    background: #f7f7f7;
    border: 2px solid #ccc;
    border-radius: 50px;
    color: #555;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .trip-tabs-inline .nav-link:hover {
    background: #e1e1e1;
  }
  
  .trip-tabs-inline .nav-link.active {
    background: linear-gradient(90deg, #b88a1a 0%, #a6842e 100%);
    border: none;
    color: white;
  }
  
  .codex-form{
  
    background-color: #ccc;
    padding: 20px;
  }
  
  
  /* packing css */
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    font-size: 14px;
  }
  .map-container img {
    width: 100%;
    border-radius: 8px;
  }
  .info-bar {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-weight: 500;
    font-size: 15px;
  }
  .offer-notice {
    background: #d4edda;
    color: #155724;
    font-weight: 600;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    margin-top: 15px;
    font-size: 16px;
  }
  .packages-grid {
    margin-top: 30px;
  }
  .package-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: left;
    padding: 20px;
    transition: box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .package-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    
  }
  .package-image {
  
    margin-bottom: 10px;
  }
  .package-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
  }
  .package-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
  }
  .on-time-badge {
    background-color: #e67e22;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    margin-bottom: 10px;
    display: inline-block;
  }
  .price {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
  }
  .select-btn {
    background-color: #ff6600;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: background-color 0.3s;
  }
  .select-btn:hover {
    background-color: #e65c00;
  }
  
  .package-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
    height: 100%;
    transition: all 0.3s ease-in-out;
  }
  .package-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  .package-card .card-title {
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
  }
  .package-card .card-desc {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.8rem;
  }
  .package-card .features {
    display: flex;
    gap: 1rem;
    justify-content: left;
    align-items: left;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
  }
  .package-card .features i {
    color: #000;
  }
  .package-card .badge-dark {
    background-color: #000;
    color: #fff;
    font-size: 0.7rem;
    padding: 0.3em 0.6em;
    border-radius: 4px;
    margin-bottom: 0.7rem;
  }
  .package-card img {
    max-height: 110px;
    object-fit: contain;
    margin-bottom: 0.8rem;
    width: 100%;
  }
  .package-card .promo {
    color: #198754;
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
  }
  .package-card .price-old {
    font-size: 0.85rem;
    color: #888;
    text-decoration: line-through;
    margin-right: 0.4rem;
  }
  .package-card .price-new {
    font-size: 1.2rem;
    font-weight: bold;
  }
  .package-card .select-btn {
    background-color: #ff6600;
    color: white;
    font-weight: 600;
    width: 100%;
    border: none;
    padding: 0.5rem;
    border-radius: 5px;
    transition: 0.3s;
  }
  .package-card .select-btn:hover {
    background-color: #e65c00;
  }
  .map-container {
    height: 400px;
    width: 100%;
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
  }
  .info-bar {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    font-size: 0.95rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }
  
  
  
  @media (max-width: 768px) {
    .package-card {
      padding: 1rem;
    }
    .package-card .features {
      font-size: 0.85rem;
      gap: 0.7rem;
    }
    .package-card img {
      max-height: 90px;
    }
    .package-card .card-title {
      font-size: 1rem;
    }
    .package-card .price-new {
      font-size: 1rem;
    }
    .info-bar {
      flex-direction: column;
      gap: 0.5rem;
      text-align: center;
    }
  }
  
  
  
  .payment-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    font-weight: 500;
  }
  .payment-step:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #c5a95d;
    z-index: 0;
  }
  .payment-step > div {
    background-color: #fff;
    z-index: 1;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    border: 2px solid #c5a95d;
    color: #c5a95d;
    font-size: 0.9rem;
    font-weight: 600;
  }
  .payment-summary {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1.5rem;
    font-size: 0.95rem;
  }
  .payment-summary .total {
    font-weight: bold;
    font-size: 1.1rem;
  }
  .form-section-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #222;
  }
  .form-check-label {
    font-weight: 500;
  }
  .btn-gold {
    background-color: #c5a95d;
    border: none;
    color: #fff;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border-radius: 5px;
  }
  .btn-gold:hover {
    background-color: #b0934f;
  }
  
  
  .payment-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    font-weight: 500;
  }
  .payment-step:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #c5a95d;
    z-index: 0;
  }
  .payment-step > div {
    background-color: #fff;
    z-index: 1;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    border: 2px solid #c5a95d;
    color: #c5a95d;
    font-size: 0.9rem;
    font-weight: 600;
  }
  .payment-summary {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1.5rem;
    font-size: 0.95rem;
  }
  .payment-summary .total {
    font-weight: bold;
    font-size: 1.1rem;
  }
  .form-section-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #222;
  }
  .form-check-label {
    font-weight: 500;
  }
  .btn-gold {
    background-color: #c5a95d;
    border: none;
    color: #fff;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border-radius: 5px;
  }
  .btn-gold:hover {
    background-color: #b0934f;
  }
  .bank-details {
    display: none;
    background-color: #f9f9f9;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-top: 1rem;
    font-size: 0.9rem;
  }
  @media (max-width: 768px) {
    .payment-step {
      flex-direction: column;
      gap: 0.5rem;
    }
    .payment-step:before {
      display: none;
    }
    .form-section-title {
      text-align: center;
    }
    .btn-gold {
      width: 100%;
    }
  }
  
  
  .discount-tag {
    font-size: 0.85rem;
    z-index: 10;
  }
  .discount-ribbon {
    position: absolute;
    top: 10px;
    right: -20px;
    background: #dc3545;
    color: #fff;
    transform: rotate(45deg);
    width: 80px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 20;
  } 
  
  
  .payment-step {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem;
      position: relative;
      font-weight: 500;
    }
    .payment-step:before {
      content: "";
      position: absolute;
      top: 50%;
      left: 10%;
      right: 10%;
      height: 2px;
      background-color: #c5a95d;
      z-index: 0;
    }
    .payment-step > div {
      background-color: #fff;
      z-index: 1;
      padding: 0.3rem 1rem;
      border-radius: 50px;
      border: 2px solid #c5a95d;
      color: #c5a95d;
      font-size: 0.9rem;
      font-weight: 600;
    }
    .payment-summary {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 1.5rem;
      font-size: 0.95rem;
    }
    .payment-summary .total {
      font-weight: bold;
      font-size: 1.1rem;
    }
    .form-section-title {
      font-weight: 600;
      font-size: 1.1rem;
      margin-bottom: 1rem;
      color: #222;
    }
    .form-check-label {
      font-weight: 500;
    }
    .btn-gold {
      background-color: #c5a95d;
      border: none;
      color: #fff;
      padding: 0.6rem 1.5rem;
      font-weight: 600;
      border-radius: 5px;
    }
    .btn-gold:hover {
      background-color: #b0934f;
    }
    .bank-details {
      display: none;
      background-color: #f9f9f9;
      padding: 1rem;
      border: 1px solid #ddd;
      border-radius: 6px;
      margin-top: 1rem;
      font-size: 0.9rem;
    }
    @media (max-width: 768px) {
      .payment-step {
        flex-direction: column;
        gap: 0.5rem;
      }
      .payment-step:before {
        display: none;
      }
      .form-section-title {
        text-align: center;
      }
      .btn-gold {
        width: 100%;
      }
    }