
  .boat-dashboard{
    background: rgb(126 153 153 / 49%);
  }
    
 

  .booking-header {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: url('../image/boat_wallpaper.webp');
  background-size: cover;
  background-position: center 50%;
  background-repeat: no-repeat;
  color: white;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  }
  

/* Optional: Add overlay for better text readability */
.booking-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
  pointer-events: none;
}

.booking-header > * {
  position: relative;
  z-index: 1;
}

  .booking-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
  }

  .booking-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
  }

  .booking-header h1 span {
    color: #ffd966;
  }

  .booking-sub {
    font-size: 0.9rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
  }

  .city-selector {
    background: white;
    border-radius: 0 0 30px 30px;
    padding: 1.2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
  }

  .city-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0d5a7a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .city-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .city-btn {
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    border: 2px solid #dceef5;
    background: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .city-btn.active {
    background: linear-gradient(135deg, #0d5a7a, #0a3e5c);
    color: white;
    border-color: #0d5a7a;
  }

  .city-btn:hover:not(.active) {
    background: #e8f4f8;
    border-color: #0d5a7a;
  }

  .vehicle-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
  }

  .tab-btn {
    background: white;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 60px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a5c7a;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Inter', sans-serif;
  }

  .tab-btn.active {
    background: #0d5a7a;
    color: white;
    box-shadow: 0 8px 20px rgba(13,90,122,0.3);
  }

  .tab-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background: #e0e8f0;
  }

  .vehicles-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.8rem;
    margin-bottom: 2rem;
  }

  .vehicle-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    cursor: pointer;
    border: 2px solid transparent;
    width: 340px;
  }

  .vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(13,90,122,0.15);
  }

  .vehicle-card.selected {
    border-color: #0d5a7a;
    background: linear-gradient(135deg, #ffffff, #f0f9ff);
  }

  .vehicle-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
  }

  .vehicle-icon-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.6);
    padding: 0.5rem;
    border-radius: 50%;
    color: white;
  }

  .vehicle-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1rem 1.2rem 0.3rem;
    color: #1a2c3e;
  }

  .vehicle-capacity {
    padding: 0 1.2rem;
    font-size: 0.8rem;
    color: #0d5a7a;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .vehicle-prices {
    padding: 0.8rem 1.2rem;
  }

  .price-item {
    font-size: 0.75rem;
    padding: 0.3rem 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #e0e8f0;
  }

  .price-item:last-child {
    border-bottom: none;
  }

  .price-label {
    color: #5a6e7c;
  }

  .price-value {
    font-weight: 600;
    color: #e67e22;
  }

  .select-btn {
    display: block;
    width: calc(100% - 2.4rem);
    margin: 0.5rem 1.2rem 1.2rem;
    padding: 0.7rem;
    background: #f0f9ff;
    border: 1.5px solid #0d5a7a;
    border-radius: 40px;
    font-weight: 600;
    color: #0d5a7a;
    cursor: pointer;
    transition: all 0.25s;
    font-family: 'Inter', sans-serif;
  }

  .select-btn:hover {
    background: #0d5a7a;
    color: white;
  }

  .booking-form-section {
    background: white;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-top: 1rem;
  }

  .form-header {
    background: linear-gradient(135deg, #0a3e5c, #0d5a7a);
    padding: 1.2rem 2rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .form-header i {
    font-size: 1.6rem;
  }

  .form-header h2 {
    font-size: 1.3rem;
    font-weight: 600;
  }

  .selected-vehicle-display {
    background: #eef7fc;
    padding: 0.8rem 2rem;
    border-left: 4px solid #0d5a7a;
    margin: 1.2rem 2rem 0;
    border-radius: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    padding: 1.8rem;
  }

  .input-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .input-group.full-width {
    grid-column: 1 / -1;
  }

  .input-group label {
    font-weight: 600;
    font-size: 0.8rem;
    color: #1a5c7a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .required:after {
    content: " *";
    color: #e74c3c;
  }

  input, select, textarea {
    padding: 0.7rem 1rem;
    border: 1.5px solid #e0e8f0;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: all 0.2s;
    background: #fefefe;
  }

  input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #0d5a7a;
  }

  .summary-card {
    background: linear-gradient(135deg, #fef9e6, #fff6e0);
    padding: 0.8rem 2rem;
    margin: 0 2rem 1.2rem;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .submit-btn {
    display: block;
    width: calc(100% - 4rem);
    margin: 0 2rem 1.5rem;
    padding: 0.9rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
  }

  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
  }

  .modal-content {
    background: white;
    max-width: 400px;
    width: 90%;
    padding: 2rem;
    border-radius: 28px;
    text-align: center;
  }

  .modal-content i {
    font-size: 3.5rem;
    color: #25D366;
    margin-bottom: 1rem;
  }

  .modal-content button {
    background: #0d5a7a;
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 40px;
    cursor: pointer;
    margin-top: 1rem;
  }

  .simple-footer {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid #e0e8f0;
    color: #6c7e8f;
    font-size: 0.75rem;
  }
   /* floating whatsapp button */
.whatsapp-float-cab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  border-radius: 50px;
  padding: 10px 18px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 99;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.whatsapp-float-cab:hover {
  background: #128C7E;
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

  @media (max-width: 768px) {
    .booking-header h1 { font-size: 1.6rem; }
    .vehicle-card { width: 100%; max-width: 350px; }
    .form-grid { padding: 1.2rem; }
    .summary-card { margin: 0 1.2rem 1rem; flex-direction: column; text-align: center; }
    .submit-btn { width: calc(100% - 2.4rem); margin: 0 1.2rem 1.2rem; }
    .selected-vehicle-display { margin: 1rem 1.2rem 0; }
  }
