/* Pricing Section Custom CSS */

.pricing-section {
  padding: 80px 0;
  position: relative;
  background-color: #f8f9fc;
}

.pricing-container {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(1, 40, 79, 0.05);
  padding: 40px;
  margin-bottom: 50px;
}

/* Rate Type Toggle (Forward / RTO) */
.rate-type-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 35px;
}

.rate-type-toggle {
  background-color: #f1f3f7;
  border-radius: 50px;
  padding: 6px;
  display: inline-flex;
  gap: 5px;
  border: 1px solid #e1e4e8;
}

.rate-toggle-btn {
  border: none;
  background: transparent;
  padding: 12px 30px;
  font-family: var(--tanspot-font-two);
  font-weight: 600;
  font-size: 16px;
  color: var(--tanspot-gray);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rate-toggle-btn.active {
  background-color: var(--tanspot-black);
  color: var(--tanspot-white);
  box-shadow: 0 4px 10px rgba(1, 40, 79, 0.15);
}

.rate-toggle-btn:not(.active):hover {
  color: var(--tanspot-black);
}

/* Weight Class Filters & Search Row */
.filter-search-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .filter-search-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.weight-filters-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}

.weight-filter-btn {
  background-color: #ffffff;
  border: 1px solid #e1e4e8;
  color: var(--tanspot-gray);
  font-family: var(--tanspot-font);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.weight-filter-btn.active {
  background-color: var(--tanspot-base);
  border-color: var(--tanspot-base);
  color: var(--tanspot-white);
  box-shadow: 0 4px 8px rgba(251, 92, 8, 0.15);
}

.weight-filter-btn:not(.active):hover {
  border-color: var(--tanspot-base);
  color: var(--tanspot-base);
}

.search-box-wrapper {
  position: relative;
  min-width: 280px;
}

.search-box-wrapper input {
  width: 100%;
  padding: 10px 15px 10px 45px;
  border: 1px solid #e1e4e8;
  border-radius: 30px;
  font-size: 15px;
  color: var(--tanspot-black);
  outline: none;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

.search-box-wrapper input:focus {
  border-color: var(--tanspot-black);
  box-shadow: 0 0 0 3px rgba(1, 40, 79, 0.1);
}

.search-box-wrapper .search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--tanspot-gray);
  pointer-events: none;
}

/* Pricing Table */
.pricing-table-wrapper {
  overflow-x: auto;
  border: 1px solid #e1e4e8;
  border-radius: 12px;
  margin-bottom: 30px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
  font-size: 15px;
  color: var(--tanspot-black);
}

.pricing-table th {
  background-color: #f8f9fc;
  border-bottom: 2px solid #e1e4e8;
  padding: 16px 20px;
  font-weight: 700;
  font-family: var(--tanspot-font-two);
  text-align: left;
}

.pricing-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #f1f3f7;
  font-family: var(--tanspot-font);
}

.pricing-table tbody tr {
  transition: background-color 0.2s ease;
}

.pricing-table tbody tr:hover {
  background-color: #f4f6fa;
}

/* Badges */
.badge-category {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  text-transform: capitalize;
}

.badge-category.air {
  background-color: #e3f2fd;
  color: #0d47a1;
}

.badge-category.surface {
  background-color: #efebe9;
  color: #4e342e;
}

/* Dest Zones Info section */
.destination-zones-info {
  background-color: #f8f9fc;
  border-radius: 12px;
  padding: 30px;
  border: 1px dashed #e1e4e8;
}

.destination-zones-info h4 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}

.zone-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 576px) {
  .zone-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .zone-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.zone-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 15px;
  border: 1px solid #e8eaf0;
  text-align: center;
}

.zone-card .zone-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--tanspot-black);
  color: var(--tanspot-white);
  font-weight: 700;
  font-family: var(--tanspot-font-two);
  margin-bottom: 10px;
}

.zone-card h5 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
}

.zone-card p {
  font-size: 13px;
  color: var(--tanspot-gray);
  line-height: 1.4;
}

/* Highlight matching search text */
.highlight {
  background-color: #ffeb3b;
  font-weight: bold;
}