/* ===== Premium Tariff Tables ===== */
.tariff-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Header */
.tariff-table thead.tariff-header th {
  background: var(--primary, #ffd400);
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 14px;
  border: none;
  letter-spacing: 0.5px;
  text-align: center;
}

/* Sub-header (column names) */
.tariff-table thead tr th {
  background: #111;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px;
  text-align: center;
}

/* Body rows */
.tariff-table tbody tr {
  transition: background 0.3s ease, transform 0.2s ease;
}

.tariff-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.tariff-table tbody tr:hover {
  background: #fff9db;
  transform: scale(1.01);
}

/* Cells */
.tariff-table td {
  padding: 14px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  color: #222;
  border-top: 1px solid #eee;
}

/* Vehicle highlight rows */
.tariff-table .vehicle-type {
  background: #fff6cc;
  font-weight: 600;
}

/* Icons */
.vehicle-icon {
  color: var(--primary, #ffd400);
  margin-right: 6px;
  font-size: 18px;
}

/* Cars List Table */
.car-list-table {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.car-list-table td {
  padding: 14px;
  text-align: left;
}

.car-list-table strong {
  color: #000;
}
/* ===== Badges ===== */
.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 8px;
  margin-left: 6px;
  vertical-align: middle;
}

/* Best Value */
.badge-best {
  background: #ffd400;
  color: #000;
  border: 1px solid #e6c200;
}


/* Optional hover effect */
.badge-best:hover,
.badge-premium:hover {
  opacity: 0.9;
}
/* Shimmer effect */
@keyframes shimmer {
  0% {
    background-position: -500px 0;
  }
  100% {
    background-position: 500px 0;
  }
}

.tab-pane p {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffd400; /* Base yellow */
  background: linear-gradient(
    90deg,
    #ffd400 20%,
    #ffffff 50%,
    #ffd400 80%
  );
  background-size: 500px 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
  text-align: center;
}

/* Elegant outlined note box */
.note-box {
  border: 1.5px solid #d4a017;
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.note-box:hover {
  background-color: #fffdf5;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.note-box i {
  color: #c09700;
}

.note-box p {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
}

@media (max-width: 576px) {
  .note-box {
    border-radius: 10px;
    padding: 1rem;
  }
  .note-box p {
    font-size: 14px;
  }
}
/* ===================== Floating Icons ===================== */
/* Floating Icons Base */
.float {
  text-decoration: none;
  position: fixed;
  width: 55px;
  height: 55px;
  right: 20px;
  border-radius: 50%;
  text-align: center;
  font-size: 26px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
  transition: transform 0.2s ease-in-out;
}

.float:hover {
  transform: scale(1.1);
}

/* WhatsApp (Bottom) */
.whatsapp {
  bottom: 20px;
  background: #ffd400; /* Yellow */
  color: #fff;
}

/* Call (Above WhatsApp) */
.call {
  bottom: 85px; /* Positioned above WhatsApp */
  background: #fff;
  color: #ffd400;
  border: 2px solid #ffd400;
}
.call:hover {
  background: #ffd400;
  color: #fff;
}