/* 
  CourierBook.in Main Stylesheet
  Version: 1.0.0
*/

/* ===== Search Page Styles ===== */
.search-form-container {
  background: var(--background-alt);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin: 2rem 0;
  box-shadow: var(--box-shadow);
}

.search-form {
  max-width: 800px;
  margin: 0 auto;
}

.search-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.input-group {
  display: flex;
  flex-direction: column;
}

.input-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.input-group select {
  padding: 0.75rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  background: var(--background-color);
  transition: var(--transition);
  cursor: pointer;
}

.input-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

/* Searchable Select Styles */
.searchable-select {
  position: relative;
}

.searchable-select input {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 0.75rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  background: var(--background-color);
  transition: var(--transition);
  cursor: text;
}

.searchable-select input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.dropdown-arrow {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
  font-size: 0.8rem;
  user-select: none;
}

.dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--background-color);
  border: 2px solid var(--border-color);
  border-top: none;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  box-shadow: var(--box-shadow);
}

.dropdown-item {
  padding: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}

.dropdown-item:hover {
  background: var(--background-alt);
  color: var(--primary-color);
}

.dropdown-item:last-child {
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.searchable-select input:focus + .dropdown-arrow {
  color: var(--primary-color);
}

/* Scrollbar styles for dropdown */
.dropdown-list::-webkit-scrollbar {
  width: 6px;
}

.dropdown-list::-webkit-scrollbar-track {
  background: var(--gray-100);
}

.dropdown-list::-webkit-scrollbar-thumb {
  background: var(--gray-400);
  border-radius: 3px;
}

.dropdown-list::-webkit-scrollbar-thumb:hover {
  background: var(--gray-500);
}

.search-button-container {
  text-align: center;
}

.btn-large {
  padding: 1rem 3rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 6px;
  transition: var(--transition);
}

.search-results {
  margin: 3rem 0;
  padding: 2rem;
  background: var(--background-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.results-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gray-200);
}

.results-header h2 {
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.route-info {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 500;
}

.rates-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.rate-card {
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border: 2px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.rate-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.rate-card.economy {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f4ff 100%);
}

.rate-card.express {
  background: linear-gradient(135deg, #fff8f0 0%, #ffe8d4 100%);
}

.rate-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.rate-type h3 {
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.rate-type p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.rate-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.time {
  background: var(--success-color);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.cta-section {
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--background-alt) 100%);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin-top: 2rem;
}

.cta-section h3 {
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.cta-section p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.btn-phone {
  background: var(--primary-color);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-phone:hover,
.btn-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: white;
  text-decoration: none;
}

.additional-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.info-item .icon {
  color: var(--success-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .search-inputs {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .rates-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-phone,
  .btn-whatsapp {
    justify-content: center;
    width: 100%;
    max-width: 280px;
  }
  
  .additional-info {
    grid-template-columns: 1fr;
  }
  
  .search-form-container {
    padding: 1rem;
  }
  
  .search-results {
    padding: 1rem;
  }
}

/* ===== CSS Variables ===== */
:root {
  --primary-color: #0056b3;
  --secondary-color: #ff6b00;
  --success-color: #28a745;
  --error-color: #dc3545;
  --gray-50: #f9fafb;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --text-color: #333333;
  --text-light: #666666;
  --background-color: #ffffff;
  --background-alt: #f5f8fa;
  --border-color: #dddddd;
  --font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --border-radius: 4px;
  --transition: all 0.3s ease;
  --box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* ===== Features Grid ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

/* Fix for duplicate .features-grid */
section.features .features-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--gray-100);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: var(--gray-50);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  filter: grayscale(0%);
}

.feature-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

/* ===== Area Coverage Section ===== */
.area-coverage-section {
  margin: 2rem 0;
}

.area-region {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease;
}

.area-region:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.region-title {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--gray-900);
}

.region-icon {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.pin-codes {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-left: auto;
  font-weight: 400;
}

.area-list {
  display: grid;
  gap: 0.75rem;
}

.area-item {
  padding: 0.75rem;
  background: var(--gray-50);
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.area-item strong {
  color: var(--gray-800);
}

.area-feature {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===== Packaging Grid ===== */
.packaging-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.packaging-item {
  text-align: center;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 8px;
}

.package-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.packaging-item h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--gray-900);
}

.packaging-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

.packaging-note {
  text-align: center;
  font-style: italic;
  color: var(--text-light);
  margin-top: 1rem;
}

/* ===== Industry Services ===== */
.industry-services {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.industry-card {
  border-left: 4px solid var(--primary-color);
  padding-left: 1.5rem;
  background: var(--gray-50);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
}

.industry-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.industry-icon {
  font-size: 2rem;
  margin-right: 1rem;
}

.industry-card h5,
.industry-header h5 {
  font-size: 1.1rem;
  color: var(--gray-900);
  margin: 0;
}

.industry-content p {
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.service-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-highlights li {
  padding: 0.25rem 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

.service-highlights li:before {
  content: "→ ";
  color: var(--primary-color);
  font-weight: bold;
}

/* ===== Airport Services ===== */
.airport-services {
  background: var(--gray-100);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.airport-info h5 {
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.airport-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.airport-service {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-icon {
  font-size: 1.2rem;
}

/* ===== Timing Guide ===== */
.timing-guide {
  margin: 2rem 0;
}

.timing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.timing-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
}

.timing-card h5 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.time-slot {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.time-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

/* ===== Monsoon Services ===== */
.monsoon-services {
  background: #e6f7ff;
  border: 1px solid #91d5ff;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.monsoon-services h4 {
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.monsoon-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.monsoon-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ===== Booking Process ===== */
.booking-process {
  margin: 2rem 0;
  position: relative;
}

.booking-process::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 50px;
  bottom: 50px;
  width: 2px;
  background: var(--gray-300);
}

.process-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-content {
  flex: 1;
  padding-top: 0.5rem;
}

.step-content h4 {
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

.step-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-details li {
  padding: 0.25rem 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

.step-details li:before {
  content: "• ";
  color: var(--primary-color);
  font-weight: bold;
}

/* ===== Pro Tips ===== */
.pro-tips {
  background: #fff7e6;
  border: 1px solid #ffd591;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.tip-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tip-icon {
  font-size: 1.2rem;
}

/* ===== Included Features ===== */
.included-features {
  margin: 2rem 0;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
}

.check-icon {
  color: var(--success-color);
  font-weight: bold;
  font-size: 1.2rem;
}

/* ===== Additional Services ===== */
.additional-services {
  margin: 2rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.service-option {
  background: var(--gray-50);
  padding: 1rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-option strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--gray-900);
}

.service-option span {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===== Near Me Section ===== */
.near-me-section {
  margin: 2rem 0;
}

.near-me-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.near-me-area h4 {
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

.locations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.location-tag {
  background: var(--gray-100);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--text-color);
  border: 1px solid var(--gray-200);
  transition: all 0.2s ease;
}

.location-tag:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* ===== Stats Box ===== */
.stats-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 12px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== Trust Features ===== */
.trust-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.trust-icon {
  font-size: 1.2rem;
}

/* ===== City Page Specific Styles ===== */
.city-content {
  margin-top: 2rem;
}

.city-content h2 {
  color: var(--gray-900);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.city-content h3 {
  color: var(--gray-800);
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.city-content h4 {
  color: var(--gray-800);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.city-content p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

/* Fix list styles */
.city-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.city-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* ===== Pricing Table Styles ===== */
.pricing-table-container {
  overflow-x: auto;
  margin: 2rem 0;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--background-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.pricing-table thead {
  background-color: var(--primary-color);
  color: white;
}

.pricing-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.pricing-table th .delivery-time {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  opacity: 0.9;
}

.pricing-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
  transition: background-color 0.2s ease;
}

.pricing-table tbody tr:hover {
  background-color: var(--gray-100);
}

.pricing-table tbody tr.highlight-row {
  background-color: #fef7e6;
}

.pricing-table tbody tr.highlight-row:hover {
  background-color: #fef3d6;
}

.pricing-table td {
  padding: 1rem;
  color: var(--text-color);
  font-size: 0.95rem;
}

.pricing-table td strong {
  color: var(--gray-900);
}

.pricing-table td.price {
  font-weight: 600;
  color: var(--primary-color);
  white-space: nowrap;
}

/* Responsive table */
@media (max-width: 768px) {
  .pricing-table {
    font-size: 0.875rem;
  }
  
  .pricing-table th,
  .pricing-table td {
    padding: 0.75rem 0.5rem;
  }
  
  .pricing-table th .delivery-time {
    font-size: 0.75rem;
  }
  
  /* Fix feature cards on tablets */
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 480px) {
  .pricing-table-container {
    margin: 1.5rem -0.5rem;
    padding: 0;
  }
  
  .pricing-table {
    min-width: 450px;
    font-size: 0.8rem;
  }
  
  .pricing-table th,
  .pricing-table td {
    padding: 0.6rem 0.4rem;
  }
}

/* ===== Base Styles ===== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--background-color);
  overflow-x: hidden;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover, a:focus {
  color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  margin-top: 0;
}

h2 {
  font-size: 2rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
}

section {
  padding: 4rem 0;
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  section {
    padding: 2rem 0;
  }
}

.form-hp {
  position: absolute;
  left: -9999px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: #004494;
  color: white;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: #e55c00;
  color: white;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: #f0f5ff;
  color: var(--primary-color);
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  color: white;
}

.btn-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  vertical-align: middle;
}

/* ===== Header ===== */
.site-header {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.contact-info {
  display: flex;
  align-items: center;
}

.phone-button {
  display: flex;
  align-items: center;
  background-color: #e8f5e9;
  color: #0f9d58;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 24px;
  transition: all 0.2s ease;
}

.phone-button:hover {
  background-color: #0f9d58;
  color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.phone-button:hover svg {
  fill: white;
}

.phone-button svg {
  margin-right: 8px;
  transition: fill 0.2s ease;
}

.phone-button span {
  font-family: 'Google Sans', 'Roboto', sans-serif;
  font-size: 15px;
}

.main-nav .menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav .menu li {
  margin-left: 1.5rem;
}

.main-nav .menu a {
  font-weight: 500;
}

.main-nav .menu a.active {
  color: var(--secondary-color);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 5px 0;
  transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?q=80&w=2070');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 6rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.search-box {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius);
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.city-search-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
}

.city-search-form .form-group {
  flex: 1;
  min-width: 200px;
}

.city-search-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-color);
}

.city-search-form input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}

.city-search-form .form-submit {
  min-width: 150px;
}

/* ===== Features Section ===== */
.features {
  background-color: var(--background-alt);
}

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
}

/* ===== Popular Routes Section ===== */
.popular-routes h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.route-card {
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  transition: var(--transition);
  display: block;
  color: var(--text-color);
}

.route-card:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.route-cities {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 1.1rem;
}

.route-arrow {
  color: var(--secondary-color);
}

.route-card:hover .route-arrow {
  color: white;
}

.route-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-light);
}

.route-card:hover .route-info {
  color: rgba(255, 255, 255, 0.8);
}

.view-more {
  text-align: center;
  margin-top: 2.5rem;
}

/* ===== Courier Partners Section ===== */
.courier-partners {
  background-color: var(--background-alt);
  text-align: center;
}

.courier-partners h2 {
  margin-bottom: 3rem;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.partner-logo {
  width: 150px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: var(--border-radius);
  padding: 1rem;
  box-shadow: var(--box-shadow);
}

/* ===== Testimonials Section ===== */
.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.testimonial {
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  padding: 2rem;
  width: 100%;
  max-width: 350px;
  box-shadow: var(--box-shadow);
}

.testimonial-content {
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2rem;
}

.testimonial-content:before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
}

.testimonial-author {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.author-name {
  font-weight: 700;
}

.author-city {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===== CTA Section ===== */
.cta {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.cta h2 {
  margin-bottom: 1rem;
}

.cta p {
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta .btn-primary {
  background-color: var(--secondary-color);
}

.cta .btn-primary:hover {
  background-color: #e55c00;
}

/* ===== Footer ===== */
.site-footer {
  background-color: var(--gray-800);
  color: white;
  padding: 4rem 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1.5rem;
  color: white;
}

.footer-section p {
  color: var(--gray-400);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--gray-400);
}

.footer-section a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--secondary-color);
}

.footer-phone-button {
  display: inline-flex;
  align-items: center;
  background-color: rgba(15, 157, 88, 0.1);
  color: #0f9d58;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 24px;
  transition: all 0.2s ease;
  margin-bottom: 16px;
}

.footer-phone-button:hover {
  background-color: #0f9d58;
  color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.footer-phone-button:hover svg {
  fill: white;
}

.footer-phone-button svg {
  margin-right: 8px;
  transition: fill 0.2s ease;
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* ===== Content Pages ===== */
.content {
  padding: 2rem 0;
}

.content h1 {
  margin-bottom: 1.5rem;
}

.content p {
  margin-bottom: 1.5rem;
}

/* ===== FAQ Section ===== */
.faq-section {
  padding: 16px 0;
  border-top: 1px solid #dadce0;
  margin-top: 16px;
}

.faq-section h3 {
  font-family: 'Google Sans', 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #5f6368;
  text-align: center;
  margin: 0 0 16px;
}

.g-accordion {
  width: 100%;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}

.g-accordion-item {
  background-color: white;
  border-bottom: 1px solid #dadce0;
  overflow: hidden;
}

.g-accordion-item:last-child {
  border-bottom: none;
}

.g-accordion-header {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.g-accordion-header:hover {
  background-color: #f1f3f4;
}

.g-accordion-title {
  font-family: 'Google Sans', 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #202124;
}

.g-accordion-icon {
  fill: #5f6368;
  transition: transform 0.3s ease;
  min-width: 24px;
}

.g-accordion-item.active .g-accordion-icon {
  transform: rotate(180deg);
}

.g-accordion-content {
  padding: 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  color: #5f6368;
}

.g-accordion-item.active .g-accordion-content {
  padding: 0 16px 16px;
  max-height: 2000px;
}

.g-accordion-content p {
  margin-bottom: 8px;
  line-height: 1.5;
}

.g-accordion-content strong {
  color: #1a73e8;
  font-weight: 500;
}

.g-faq-list {
  margin: 8px 0 0;
  padding: 0 0 0 24px;
}

.g-faq-list li {
  margin-bottom: 8px;
  position: relative;
}

.g-faq-list li:last-child {
  margin-bottom: 0;
}

/* ===== City Pair Pages ===== */
.city-pair-info {
  margin-top: 3rem;
}

.city-pair-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-box {
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  flex: 1;
  min-width: 200px;
  text-align: center;
  box-shadow: var(--box-shadow);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.pricing-table {
  margin-bottom: 3rem;
}

.pricing-table h2 {
  margin-bottom: 1.5rem;
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.pricing-table th {
  background-color: var(--primary-color);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 500;
}

.pricing-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  background-color: white;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:nth-child(even) td {
  background-color: var(--background-alt);
}

.faqs {
  margin-bottom: 3rem;
}

.faqs h2 {
  margin-bottom: 1.5rem;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background-color: var(--background-alt);
  padding: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:after {
  content: "+";
  font-size: 1.5rem;
  color: var(--primary-color);
}

.faq-question.active:after {
  content: "-";
}

.faq-answer {
  padding: 1rem;
  border-top: 1px solid var(--border-color);
  display: none;
}

.faq-answer.show {
  display: block;
}

/* ===== Lead Form ===== */
.lead-form-container {
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin: 3rem 0;
  box-shadow: var(--box-shadow);
}

.lead-form-container h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.lead-form-container p {
  margin-bottom: 2rem;
}

.lead-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.package-phone-row {
  display: flex;
  gap: 16px;
}

.package-input {
  flex: 1.5;
}

.phone-input {
  flex: 1;
}

.lead-form .form-group {
  flex: 1;
  min-width: 250px;
}

.lead-form .full-width {
  width: 100%;
  flex-basis: 100%;
}

.lead-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.lead-form input, 
.lead-form select, 
.lead-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: var(--font-family);
  font-size: 1rem;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form .form-submit {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.primary-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.secondary-form-actions {
  display: flex;
  gap: 0.75rem;
}

.lead-form .form-note {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  border: none;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  color: white;
}

.success-actions, 
.error-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
}

@media (max-width: 600px) {
  .primary-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .secondary-form-actions {
    width: 100%;
    margin-top: 0.5rem;
  }
  
  .secondary-form-actions a {
    flex: 1;
    text-align: center;
  }
  
  .success-actions,
  .error-actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    font-size: 16px;
  }
  
  .btn svg {
    margin-right: 8px;
  }
}

.form-message {
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-top: 2rem;
  text-align: center;
}

.form-message.success {
  background-color: rgba(40, 167, 69, 0.1);
  color: var(--success-color);
  border: 1px solid var(--success-color);
}

.form-message.error {
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--error-color);
  border: 1px solid var(--error-color);
}

.form-message h3 {
  margin-top: 0;
}

.form-message p {
  margin-bottom: 0;
}

/* ===== Google-Inspired Components ===== */

/* Google Card */
.google-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
  margin: 0 0 16px;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition: box-shadow 0.2s;
}

.google-card:hover {
  box-shadow: 0 1px 3px 0 rgba(60,64,67,.3), 0 4px 8px 3px rgba(60,64,67,.15);
}

.card-header {
  padding: 16px 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-container {
  margin-bottom: 16px;
}

.google-logo {
  font-family: 'Product Sans', 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #5f6368;
}

.google-logo:before {
  content: '';
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%234285F4' d='M12.5 10.5l-.5-2.5h-3v8h3v-3h2v-2.5h-1.5z'/%3E%3Cpath fill='%2334A853' d='M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z'/%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
  margin-right: 4px;
  vertical-align: middle;
}

.google-card h2 {
  font-family: 'Google Sans', 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #202124;
  margin: 0 0 16px;
  text-align: center;
}

/* Shipping Options */
.shipping-options {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0 16px 16px;
  margin-bottom: 16px;
}

.option-card {
  flex: 1;
  max-width: 140px;
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #dadce0;
  transition: all 0.2s;
}

.option-card.active {
  background-color: #e8f0fe;
  border-color: #1a73e8;
}

.option-time {
  font-size: 14px;
  color: #5f6368;
  margin-bottom: 4px;
}

.option-name {
  font-weight: 500;
  margin-bottom: 4px;
  color: #202124;
}

.option-price {
  font-weight: 700;
  color: #1a73e8;
  font-size: 18px;
}

/* Google Benefits */
.google-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 16px 16px;
}

.benefit-chip {
  display: flex;
  align-items: center;
  background-color: #f1f3f4;
  border-radius: 16px;
  padding: 4px 12px;
  font-size: 14px;
  color: #5f6368;
}

.benefit-icon {
  margin-right: 4px;
  width: 18px;
  height: 18px;
  fill: #5f6368;
}

/* Google Form */
.google-form {
  padding: 16px;
}

.form-row {
  margin-bottom: 16px;
}

.cities-row {
  display: flex;
  gap: 12px;
}

.package-phone-row {
  display: flex;
  gap: 16px;
}

.package-input {
  flex: 1.5;
}

.phone-input {
  flex: 1;
}

.google-input {
  position: relative;
  background-color: #f1f3f4;
  border-radius: 4px;
  padding: 0 12px;
  height: 56px;
  display: flex;
  align-items: center;
  transition: background-color 0.2s;
}

.google-input:focus-within {
  background-color: #e8f0fe;
}

.input-icon {
  fill: #5f6368;
  margin-right: 12px;
  flex-shrink: 0;
}

.google-input input, 
.google-input select {
  border: none;
  background: transparent;
  height: 100%;
  width: 100%;
  font-size: 16px;
  color: #202124;
  outline: none;
}

.google-input input::placeholder {
  color: #5f6368;
}

/* Style for pre-filled city fields */
.google-input input.prefilled {
  background-color: #e8f0fe;
  color: #1a73e8;
  font-weight: 500;
}

.city-input {
  position: relative;
  flex: 1;
  min-width: 0;
}

.swap-icon {
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(60,64,67,.3);
  transition: transform 0.3s;
}

.swap-icon svg {
  fill: #5f6368;
}

.swap-icon.rotate {
  transform: translateY(-50%) rotate(180deg);
}

/* Action Row */
.action-row {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  margin-bottom: 8px;
}

.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  border-radius: 4px;
  font-family: 'Google Sans', 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.25px;
  text-transform: none;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  flex: 1;
}

.google-btn .btn-icon {
  margin-right: 8px;
  width: 18px;
  height: 18px;
}

.google-btn-primary {
  background-color: #1a73e8;
  color: white;
}

.google-btn-primary:hover {
  background-color: #1765cc;
  box-shadow: 0 1px 2px 0 rgba(66,133,244,0.3),0 1px 3px 1px rgba(66,133,244,0.15);
}

.google-btn-primary .btn-icon {
  fill: white;
}

@media (max-width: 600px) {
  .google-btn {
    height: 52px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    margin: 0;
    width: 100%;
  }
  
  .google-btn-primary {
    background-color: #0f9d58; /* Google green for more attention */
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    height: 70px;
    font-size: 20px;
    font-weight: 700;
    width: 100%;
    border-radius: 10px;
    padding: 0 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  
  .google-btn .btn-icon {
    width: 22px;
    height: 22px;
    margin-right: 12px;
  }
  
  .google-btn-primary:hover,
  .google-btn-primary:active {
    background-color: #0b8043;
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
    transform: translateY(-2px);
  }
  
  /* Breathing animation for the primary button on mobile */
  @keyframes buttonPulse {
    0% { transform: scale(1); box-shadow: 0 4px 8px rgba(0,0,0,0.3); }
    50% { transform: scale(1.02); box-shadow: 0 6px 12px rgba(0,0,0,0.4); }
    100% { transform: scale(1); box-shadow: 0 4px 8px rgba(0,0,0,0.3); }
  }
  
  .google-btn-primary {
    animation: buttonPulse 3s infinite ease-in-out;
  }
}

.google-btn-outline {
  border: 1px solid #dadce0;
  color: #1a73e8;
  background-color: white;
}

.google-btn-outline:hover {
  background-color: #f6fafe;
  box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3),0 1px 3px 1px rgba(60,64,67,0.15);
}

.google-btn-outline .btn-icon {
  fill: #1a73e8;
}

.google-btn-whatsapp {
  background-color: #25D366;
  color: white;
  border: none;
}

.google-btn-whatsapp:hover {
  background-color: #128C7E;
  box-shadow: 0 1px 2px 0 rgba(37,211,102,0.3),0 1px 3px 1px rgba(37,211,102,0.15);
}

.google-btn-whatsapp .btn-icon {
  fill: white;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.action-buttons .btn-primary {
  width: 100%;
  padding: 12px 16px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.secondary-actions {
  display: flex;
  gap: 12px;
  width: 100%;
}

.secondary-actions a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
}

/* Make buttons responsive */
@media (min-width: 768px) {
  .action-buttons {
    flex-direction: row;
    align-items: center;
  }
  
  .action-buttons .btn-primary {
    flex: 2;
  }
  
  .secondary-actions {
    flex: 3;
  }
}

/* Rate Calculator */
.rate-calculator {
  padding: 16px;
  background-color: #f8f9fa;
  border-top: 1px solid #dadce0;
}

.calc-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
}

.calc-header h3 {
  font-family: 'Google Sans', 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #202124;
  margin: 0;
}

.info-tooltip {
  margin-left: 8px;
  cursor: help;
}

.info-tooltip svg {
  fill: #5f6368;
}

/* Price Info Section */
.price-info {
  display: flex;
  margin-top: 24px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #dadce0;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(60,64,67,0.1);
  transition: box-shadow 0.2s ease;
  margin-bottom: 24px;
}

.price-info:hover {
  box-shadow: 0 2px 8px rgba(60,64,67,0.2);
}

.express-pricing, 
.economy-pricing {
  flex: 1;
  padding: 20px 16px;
  text-align: center;
  position: relative;
}

.express-pricing {
  background-color: #e8f0fe;
  border-right: 1px solid #dadce0;
}

.economy-pricing {
  background-color: #f1f3f4;
}

.pricing-header {
  margin-bottom: 12px;
}

.pricing-header h3 {
  font-family: 'Google Sans', 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #202124;
  margin: 0 0 4px;
}

.express-pricing .pricing-header h3 {
  color: #1a73e8;
}

.pricing-header span {
  font-size: 14px;
  color: #5f6368;
  display: block;
}

.pricing-amount {
  font-size: 28px;
  font-weight: 700;
  color: #1a73e8;
  padding: 6px 0;
}

.economy-pricing .pricing-amount {
  color: #5f6368;
}

.currency {
  font-size: 18px;
  vertical-align: top;
  margin-right: 2px;
}

.per-kg {
  font-size: 16px;
  font-weight: 400;
  color: #5f6368;
  margin-left: 2px;
}

.divider {
  width: 1px;
  background-color: #dadce0;
}

/* Courier Partners Section */
.courier-partners-section {
  padding: 16px 0;
  border-top: 1px solid #dadce0;
}

.courier-partners-section h3 {
  font-family: 'Google Sans', 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #5f6368;
  text-align: center;
  margin: 0 0 16px;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 0 16px;
}

/* Partners grid for both homepage and city-pair pages */
.courier-partners-section .partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 0 16px;
}

.courier-partners-section .partner-logo {
  width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: all 0.2s;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #5f6368;
}

.courier-partners-section .partner-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.courier-partners-section .partner-logo span {
  display: block;
  width: 100%;
}

/* Text-based partner display */
.partners-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
}

.partner-name {
  padding: 8px 12px;
  background-color: white;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  font-weight: 500;
  color: #5f6368;
  text-align: center;
}

.partner-logo {
  width: 80px;
  height: 48px;
  padding: 8px;
  background-color: white;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.partner-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 600px) {
  .price-info {
    flex-direction: column;
  }
  
  .express-pricing {
    border-right: none;
    border-bottom: 1px solid #dadce0;
  }
  
  .divider {
    display: none;
  }
  
  .partners-logos {
    gap: 12px;
  }
  
  .partner-logo {
    width: 70px;
    height: 42px;
    padding: 6px;
  }
  
  .courier-partners-section .partners-grid {
    gap: 8px;
  }
  
  .courier-partners-section .partner-logo {
    width: 100px;
    height: 50px;
    padding: 8px;
    font-size: 12px;
  }
}

/* Google Table */
.google-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(60,64,67,.3);
}

.table-row {
  display: flex;
}

.table-header {
  background-color: #f1f3f4;
  font-weight: 500;
}

.table-cell {
  flex: 1;
  padding: 12px 8px;
  text-align: center;
  border-bottom: 1px solid #dadce0;
  color: #202124;
  font-size: 14px;
}

.table-header .table-cell {
  color: #5f6368;
}

.table-row:last-child .table-cell {
  border-bottom: none;
}

.express-col.highlight,
.economy-col.highlight {
  background-color: #e8f0fe;
  color: #1a73e8;
  font-weight: 500;
}

/* Success and Error Messages */
.form-message.google-card {
  text-align: center;
  padding: 24px;
  margin-top: 24px;
}

.success-icon, 
.error-icon {
  margin-bottom: 16px;
}

.success-icon svg {
  fill: #0f9d58;
}

.error-icon svg {
  fill: #ea4335;
}

.form-message h3 {
  font-family: 'Google Sans', 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 12px;
}

.form-message.success h3 {
  color: #0f9d58;
}

.form-message.error h3 {
  color: #ea4335;
}

.form-message p {
  color: #5f6368;
  margin: 0 0 24px;
}

.success-actions,
.error-actions {
  display: flex;
  justify-content: center;
}

.error-actions {
  gap: 12px;
}

/* Loading Spinner */
.spinner {
  animation: rotate 2s linear infinite;
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.spinner circle {
  stroke: white;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .cities-row,
  .package-phone-row {
    flex-direction: column;
    gap: 16px;
  }
  
  .swap-icon {
    top: auto;
    right: 12px;
    bottom: -25px;
    transform: translateY(0) rotate(90deg);
  }
  
  .swap-icon.rotate {
    transform: translateY(0) rotate(270deg);
  }
  
  .package-input,
  .phone-input {
    width: 100%;
    flex: none;
  }
  
  .google-btn-primary {
    font-size: 16px;
    height: 48px;
    font-weight: 600;
  }
  
  .shipping-options {
    flex-direction: column;
    align-items: center;
  }
  
  .option-card {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 16px;
  }
  
  .option-time, 
  .option-name {
    margin: 0;
  }
  
  .action-row {
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
    margin-bottom: 20px;
    padding: 0 10px;
  }
  
  .action-row .google-btn-primary {
    order: -1;
    margin-bottom: 8px;
  }
  
  .secondary-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  
  .secondary-actions .google-btn {
    margin: 0;
  }
  
  .google-btn-whatsapp {
    height: 52px;
    font-size: 16px;
    font-weight: 500;
  }
}

.quick-contact-after {
  margin-top: 1.5rem;
  text-align: center;
}

.btn-lg {
  font-size: 1.2rem;
  padding: 1rem 2rem;
}

.cta-bottom {
  background-color: var(--background-alt);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin: 3rem 0;
  box-shadow: var(--box-shadow);
}

.cta-bottom h2 {
  margin-top: 0;
}

/* ===== City Pages ===== */
/* Breadcrumb Navigation */
.breadcrumb {
    margin: 1rem 0 1.5rem 0;
    font-size: 0.9rem;
}

.breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb li {
    display: inline-block;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.breadcrumb .separator {
    margin: 0 0.5rem;
    color: #999;
}

.city-header {
  margin-bottom: 2rem;
  text-align: center;
}


.city-info-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  background-color: var(--background-alt);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.city-contact, .city-pickup, .city-rate {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background-color: white;
  border-radius: 50px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-icon, .pickup-icon, .rate-icon {
  font-size: 1.5rem;
  margin-right: 0.75rem;
}

.city-phone {
  font-weight: 500;
  font-size: 1.1rem;
}

.city-form-container {
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: var(--box-shadow);
}

.city-form-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.city-form-heading h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.city-courier-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.city-courier-form .form-row {
  margin-bottom: 0.5rem;
}

.city-courier-form label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 500;
  color: var(--text-color);
  font-size: 0.95rem;
}

.input-with-icon {
  position: relative;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}

.input-with-icon:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.input-with-icon .input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  fill: var(--text-light);
  z-index: 2;
}

.input-with-icon input,
.input-with-icon select {
  width: 100%;
  padding: 0.9rem 1rem 0.9rem 3rem;
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  font-family: var(--font-family);
  font-size: 1rem;
  background-color: transparent;
  position: relative;
  z-index: 1;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.input-with-icon input:focus,
.input-with-icon select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.15);
}

.input-with-icon input::placeholder {
  color: var(--text-light);
  opacity: 0.7;
}


.top-routes {
  margin-bottom: 3rem;
}

.top-routes h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.city-content {
  margin-bottom: 3rem;
  line-height: 1.7;
}

.service-areas {
  margin-bottom: 3rem;
  background-color: var(--background-alt);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.service-areas h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 1rem;
}

.service-areas p {
  text-align: center;
  margin-bottom: 2rem;
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.area-chip {
  background-color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.area-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  background-color: var(--primary-color);
  color: white;
}

/* Related Cities Section */
.related-cities {
  margin-bottom: 3rem;
  background-color: var(--background-alt);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.related-cities h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 1rem;
}

.related-cities p {
  text-align: center;
  margin-bottom: 2rem;
}

.related-cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.related-city-card {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  color: var(--text-color);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.related-city-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  color: var(--text-color);
}

.related-city-card:hover .city-link-arrow {
  opacity: 1;
  transform: translateX(0);
}

.city-name {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.city-description {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.city-link-arrow {
  display: flex;
  justify-content: flex-end;
  fill: var(--primary-color);
  opacity: 0.5;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .related-cities-grid {
    grid-template-columns: 1fr;
  }
  
  .related-city-card {
    padding: 1.25rem;
  }
  
  .city-link-arrow {
    opacity: 1;
    transform: none;
  }
}

/* Related Routes Section */
.related-routes {
  margin-bottom: 3rem;
  background-color: var(--background-alt);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.related-routes h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 1rem;
}

.related-routes p {
  text-align: center;
  margin-bottom: 2rem;
}

.related-routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.related-route-card {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  color: var(--text-color);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.related-route-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  color: var(--text-color);
}

.related-route-card:hover .route-link-arrow {
  opacity: 1;
  transform: translateX(0);
}

.route-title {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.route-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.route-description {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.route-stats {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.route-link-arrow {
  display: flex;
  justify-content: flex-end;
  fill: var(--primary-color);
  opacity: 0.5;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .related-routes-grid {
    grid-template-columns: 1fr;
  }
  
  .related-route-card {
    padding: 1.25rem;
  }
  
  .route-link-arrow {
    opacity: 1;
    transform: none;
  }
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.cta-buttons .btn {
  min-width: 200px;
}

.cta-buttons .icon {
  margin-right: 0.5rem;
}

@media (max-width: 767px) {
  .city-info-bar {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1rem;
  }
  
  .city-contact, .city-pickup, .city-rate {
    width: 100%;
    justify-content: center;
  }
  
  .city-form-container {
    padding: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

/* ===== Reviews Section ===== */
.reviews-section {
  margin: 4rem 0;
  background-color: var(--background-alt);
  padding: 3rem 0;
  border-radius: var(--border-radius);
}

.reviews-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.overall-rating {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.rating-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 2rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.rating-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.rating-stars {
  display: flex;
  margin: 0.5rem 0;
}

.star {
  margin: 0 0.25rem;
}

.star.filled {
  fill: #FFC107;
}

.star.half-filled {
  fill: #FFC107;
}

.star.empty {
  fill: #E0E0E0;
}

.rating-label {
  color: var(--text-light);
  font-size: 0.9rem;
}

.customer-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.review-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
}

.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.reviewer-name {
  font-size: 1.1rem;
  margin: 0 0 0.25rem;
}

.review-date {
  font-size: 0.8rem;
  color: var(--text-light);
}

.review-rating {
  display: flex;
}

.review-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.review-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.review-cta .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-cta .btn svg {
  margin-right: 0.5rem;
}

.review-cta .separator {
  font-size: 0.9rem;
  color: var(--text-light);
  position: relative;
  width: 100%;
  text-align: center;
}

.review-cta .separator::before,
.review-cta .separator::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background-color: var(--border-color);
}

.review-cta .separator::before {
  left: 0;
}

.review-cta .separator::after {
  right: 0;
}

@media (max-width: 768px) {
  .customer-reviews {
    grid-template-columns: 1fr;
  }
  
  .rating-score {
    padding: 1rem;
  }
  
  .rating-number {
    font-size: 2.5rem;
  }
  
  .star {
    width: 20px;
    height: 20px;
  }
}

/* ===== Responsive Styles ===== */
@media (max-width: 991px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .hero {
    padding: 4rem 0;
  }
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
  }
  
  .logo {
    margin-right: auto;
  }
  
  .contact-info {
    order: 2;
    width: 100%;
    margin-top: 1rem;
    justify-content: center;
  }
  
  .phone-button {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
  }
  
  .main-nav {
    order: 1;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .main-nav .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem;
  }
  
  .main-nav .menu.show {
    display: flex;
  }
  
  .main-nav .menu li {
    margin: 0.5rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .search-box {
    padding: 1.5rem;
  }
  
  .city-search-form .form-submit {
    width: 100%;
    margin-top: 1rem;
  }
  
  .city-search-form .form-submit button {
    width: 100%;
  }
  
  .features-grid,
  .routes-grid {
    gap: 1rem;
  }
  
  .partners-grid {
    gap: 1rem;
  }
  
  .partner-logo {
    width: 120px;
    height: 70px;
  }
  
  .testimonials-slider {
    flex-direction: column;
    align-items: center;
  }
  
  .testimonial {
    max-width: 100%;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  /* General mobile adjustments */
  body {
    font-size: 0.9rem;
  }
  
  h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  h2 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  h3 {
    font-size: 1.1rem;
  }
  
  p {
    margin-bottom: 0.75rem;
  }
  
  ul, ol {
    padding-left: 1.25rem;
  }
  
  /* City page specific mobile styles */
  .city-header {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .city-info-bar {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .city-contact, .city-pickup, .city-rate {
    width: 100%;
    padding: 0.75rem;
    font-size: 0.9rem;
  }
  
  .city-form-container {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }
  
  .city-courier-form .form-row {
    margin-bottom: 1rem;
  }
  
  .city-courier-form input,
  .city-courier-form select {
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  /* Content area mobile styles */
  .content {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .content h2 {
    margin-top: 1.5rem;
  }
  
  .content h3 {
    margin-top: 1.25rem;
  }
  
  /* Top routes mobile styles */
  .top-routes {
    margin: 1.5rem 0;
  }
  
  .routes-grid {
    gap: 0.75rem;
  }
  
  .route-card {
    padding: 0.75rem;
  }
  
  /* Service areas mobile styles */
  .service-areas {
    margin: 1.5rem 0;
  }
  
  .areas-grid {
    gap: 0.5rem;
  }
  
  .area-chip {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }
  
  /* FAQ mobile styles */
  .faqs {
    margin: 1.5rem 0;
  }
  
  .faq-item {
    margin-bottom: 0.5rem;
  }
  
  .faq-question {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
  
  .faq-answer {
    padding: 0.75rem;
    font-size: 0.85rem;
  }
  
  /* Reviews mobile styles */
  .reviews-section {
    margin: 1.5rem 0;
  }
  
  .review-card {
    padding: 1rem;
    margin-bottom: 0.75rem;
  }
  
  /* CTA bottom mobile styles */
  .cta-bottom {
    margin: 1.5rem 0;
    padding: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    width: 100%;
  }
  
  /* Fix button icon spacing */
  .btn-icon {
    width: 20px;
    height: 20px;
    margin-right: 6px;
  }
  
  /* Breadcrumb mobile styles */
  .breadcrumb {
    padding: 0.5rem 0;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
  }
  
  /* Related cities mobile styles */
  .related-cities {
    margin: 1.5rem 0;
  }
  
  .related-cities-grid {
    gap: 0.75rem;
  }
  
  .related-city-card {
    padding: 0.75rem;
  }
  
  /* New HTML component mobile styles */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .feature-card {
    padding: 1rem;
  }
  
  .feature-icon {
    font-size: 2rem;
  }
  
  .area-region {
    padding: 1rem;
  }
  
  .area-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  
  .packaging-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .packaging-item {
    padding: 0.75rem;
  }
  
  .industry-card {
    padding: 1rem;
  }
  
  .industry-icon {
    font-size: 1.5rem;
  }
  
  .timing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .timing-card {
    padding: 1rem;
  }
  
  .booking-process::before {
    left: 20px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .process-step {
    gap: 1rem;
  }
  
  .stats-box {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .near-me-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .location-tag {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .included-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .monsoon-features,
  .airport-features {
    grid-template-columns: 1fr;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .search-box {
    padding: 1rem;
  }
  
  .contact-info {
    align-items: center;
  }
  
  .phone-button {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 30px;
    margin-top: 6px;
  }
  
  .feature-card,
  .route-card,
  .testimonial {
    padding: 1.5rem;
  }
  
  .cta {
    padding: 3rem 0;
  }
  
  .site-footer {
    padding-top: 3rem;
  }
}/* DOM Optimization CSS - Append to main.css */

/* Form Icon Styles - Optimized with CSS backgrounds */
.icon-input {
    padding-left: 40px;
    background-repeat: no-repeat;
    background-position: 12px center;
    background-size: 20px 20px;
    width: 100%;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-right: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    font-size: 1rem;
}

.location-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23999' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 14.5c-2.49 0-4.5-2.01-4.5-4.5S9.51 7 12 7s4.5 2.01 4.5 4.5-2.01 4.5-4.5 4.5z'/%3E%3C/svg%3E");
}

.package-input-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23999' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z'/%3E%3C/svg%3E");
}

.phone-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23999' viewBox='0 0 24 24'%3E%3Cpath d='M6.54 5c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51m9.86 12.02c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19M7.5 3H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1z'/%3E%3C/svg%3E");
}

.home-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23999' viewBox='0 0 24 24'%3E%3Cpath d='M12 5.69l5 4.5V18h-2v-6H9v6H7v-7.81l5-4.5M12 3L2 12h3v8h6v-6h2v6h6v-8h3L12 3z'/%3E%3C/svg%3E");
}

/* Update city-link-arrow to use text */
.city-link-arrow {
    margin-left: 8px;
    font-size: 20px;
    color: #666;
    flex-shrink: 0;
    transition: transform 0.2s ease;
    display: inline-block;
}

.related-city-card:hover .city-link-arrow {
    transform: translateX(4px);
    color: var(--primary-color);
}

/* Show more buttons */
.show-more-areas,
.show-more-faqs {
    background: none;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 16px;
    transition: all 0.2s ease;
    display: inline-block;
}

.show-more-areas:hover,
.show-more-faqs:hover {
    background: var(--primary-color);
    color: white;
}

/* Collapsed areas container */
.areas-collapsed {
    display: contents;
}

/* Update btn-icon to use emoji */
.btn-icon {
    margin-right: 8px;
    font-size: 18px;
    display: inline-block;
    vertical-align: middle;
}

/* Optimize form structure */
.city-courier-form .form-row {
    margin-bottom: 1rem;
}

.city-courier-form .form-row label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.city-courier-form input:not(.icon-input),
.city-courier-form select:not(.icon-input) {
    width: 100%;
    font-size: 16px;
    transition: border-color 0.2s ease;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-family);
}

.city-courier-form input:focus,
.city-courier-form select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.1);
}

/* Reduce DOM elements in route cards */
.route-card {
    text-decoration: none;
    display: block;
    padding: 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    transition: all 0.2s ease;
    background: white;
}

.route-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.route-cities {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.route-details {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.route-details span {
    white-space: nowrap;
}/* City Form Button Styling Fix */

/* Fix for city form buttons */
.city-courier-form .action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.city-courier-form .secondary-actions {
    display: flex;
    gap: 0.75rem;
}

.city-courier-form .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.city-courier-form .btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.city-courier-form .btn-primary:hover {
    background-color: #004094;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.city-courier-form .btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.city-courier-form .btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.city-courier-form .btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.city-courier-form .btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .city-courier-form .secondary-actions {
        flex-direction: column;
    }
    
    .city-courier-form .btn {
        width: 100%;
    }
}

/* Ensure proper icon display in buttons */
.city-courier-form .btn-icon {
    margin-right: 8px;
    font-size: 18px;
    display: inline-block;
    vertical-align: middle;
}

/* Fix input styling */
.city-courier-form input::placeholder,
.city-courier-form select {
    color: #999;
}

.city-courier-form select option[disabled] {
    color: #999;
}

/* Pricing Comparison Table Styles */
.pricing-comparison-table {
    margin: 2rem 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.pricing-comparison-table h3 {
    text-align: center;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.table-description {
    text-align: center;
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.table-container {
    overflow-x: auto;
    padding: 0 1rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    background: #fff;
}

.comparison-table thead {
    background: linear-gradient(135deg, #0056b3 0%, #007cba 100%);
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 0.75rem;
    text-align: left;
    vertical-align: middle;
}

.comparison-table th {
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 2px solid #004494;
}

.comparison-table .carrier-header {
    text-align: center;
}

.comparison-table .carrier-header strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.comparison-table .carrier-header small {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 400;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s ease;
}

.comparison-table tbody tr:hover {
    background-color: #f8f9fa;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.weight-cell {
    background-color: #f8f9fa;
    border-right: 1px solid #e9ecef;
}

.weight-cell strong {
    display: block;
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.25rem;
}

.weight-cell small {
    color: #666;
    font-size: 0.85rem;
}

.price-cell {
    text-align: center;
    position: relative;
    border-right: 1px solid #e9ecef;
}

.price-cell .price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    display: block;
}

.price-cell.best-price {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0fff4 100%);
    border: 2px solid #28a745;
    position: relative;
}

.price-cell.best-price .price {
    color: #28a745;
    font-weight: 700;
}

.best-badge {
    display: inline-block;
    background: #28a745;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.savings-column {
    background-color: #fff3cd;
    color: #856404;
}

.savings-cell {
    background-color: #fff3cd;
    text-align: center;
    font-weight: 600;
}

.savings-cell strong {
    display: block;
    color: #856404;
    margin-bottom: 0.25rem;
}

.savings-cell small {
    color: #6c5400;
    font-size: 0.9rem;
}

/* Carrier-specific styling */
.carrier-column.fedex,
.price-cell.fedex {
    border-left: 3px solid #4B0082;
}

.carrier-column.dhl,
.price-cell.dhl {
    border-left: 3px solid #FFCC00;
}

.carrier-column.ups,
.price-cell.ups {
    border-left: 3px solid #8B4513;
}

.table-notes {
    background: #f8f9fa;
    padding: 1.5rem;
    margin: 0 1rem 1rem 1rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.table-notes p {
    margin: 0 0 0.75rem 0;
    font-weight: 600;
    color: #333;
}

.table-notes ul {
    margin: 0;
    padding-left: 1.25rem;
}

.table-notes li {
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.table-notes li:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-comparison-table {
        margin: 1rem 0;
    }
    
    .table-container {
        padding: 0;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .comparison-table .carrier-header strong {
        font-size: 0.85rem;
    }
    
    .comparison-table .carrier-header small {
        font-size: 0.75rem;
    }
    
    .price-cell .price {
        font-size: 1rem;
    }
    
    .weight-cell strong {
        font-size: 0.9rem;
    }
    
    .weight-cell small {
        font-size: 0.8rem;
    }
    
    .best-badge {
        font-size: 0.65rem;
        padding: 0.15rem 0.4rem;
    }
    
    .table-notes {
        padding: 1rem;
        font-size: 0.85rem;
    }
    
    .table-notes li {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem 0.25rem;
    }
    
    .pricing-comparison-table h3 {
        font-size: 1.3rem;
    }
    
    /* Stack table on very small screens */
    .table-container {
        overflow-x: scroll;
    }
}

/* Prohibited Items Section Styles */
.prohibited-items-section {
    margin: 3rem 0;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.prohibited-items-section h2 {
    text-align: center;
    color: #333;
    margin: 0 0 2rem 0;
    font-size: 1.8rem;
    font-weight: 600;
    padding: 2rem 2rem 0 2rem;
}

.prohibited-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    padding: 0 2rem 2rem 2rem;
}

.prohibited-category {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    position: relative;
    margin: 0.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prohibited-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* Prohibited items styling */
.prohibited-category:has(.prohibited-list) {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border-left: 4px solid #dc3545;
}

.prohibited-category:has(.prohibited-list) h5 {
    color: #dc3545;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prohibited-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.prohibited-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(220, 53, 69, 0.1);
    color: #721c24;
    font-size: 0.9rem;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.prohibited-list li:last-child {
    border-bottom: none;
}

/* Restricted items styling */
.prohibited-category:has(.restricted-list) {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-left: 4px solid #ff9800;
}

.prohibited-category:has(.restricted-list) h5 {
    color: #ff9800;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.restricted-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.restricted-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 152, 0, 0.1);
    color: #e65100;
    font-size: 0.9rem;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.restricted-list li:last-child {
    border-bottom: none;
}

/* Allowed items styling */
.prohibited-category:has(.allowed-list) {
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e8 100%);
    border-left: 4px solid #4caf50;
}

.prohibited-category:has(.allowed-list) h5 {
    color: #4caf50;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.allowed-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.allowed-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    font-size: 0.9rem;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.allowed-list li:last-child {
    border-bottom: none;
}

/* Contact notice styling */
.prohibited-items-contact-notice {
    background: #f8f9fa;
    border: 2px solid #007cba;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 2rem 2rem 2rem;
    text-align: center;
    font-weight: 500;
    color: #0056b3;
    font-size: 0.9rem;
    line-height: 1.4;
}

.prohibited-items-contact-notice a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.prohibited-items-contact-notice a:hover {
    color: #004494;
    border-bottom-color: #004494;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .prohibited-items {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem 1rem 1rem;
    }
    
    .prohibited-items-section h2 {
        font-size: 1.5rem;
        padding: 1.5rem 1rem 0 1rem;
    }
    
    .prohibited-category {
        margin: 0;
        padding: 1rem;
    }
    
    .prohibited-category h5 {
        font-size: 1rem;
    }
    
    .prohibited-items-contact-notice {
        margin: 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .prohibited-items-section h2 {
        font-size: 1.3rem;
    }
    
    .prohibited-category {
        padding: 0.75rem;
    }
    
    .prohibited-list li,
    .restricted-list li,
    .allowed-list li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
}

/* Market Overview Section Styles */
.market-overview {
    margin: 3rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4fd 100%);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0, 86, 179, 0.1);
    border: 1px solid #e3f2fd;
    position: relative;
    overflow: hidden;
}

.market-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0056b3 0%, #007cba 50%, #00a8cc 100%);
}

.market-overview h2 {
    color: #0056b3;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    text-align: center;
    position: relative;
}

.market-overview h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0056b3 0%, #007cba 100%);
    border-radius: 2px;
}

.market-overview p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    text-align: center;
    margin: 0 0 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.market-overview p strong {
    color: #0056b3;
    font-weight: 600;
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 86, 179, 0.15);
    border-color: #0056b3;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0056b3 0%, #007cba 100%);
    border-radius: 12px 12px 0 0;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.stat-value {
    display: block;
    font-size: 1.3rem;
    color: #0056b3;
    font-weight: 700;
    line-height: 1.3;
}

/* Add icons for different stats */
.stat-item:nth-child(1)::after {
    content: '💰';
    position: absolute;
    top: -5px;
    right: 15px;
    font-size: 1.5rem;
    background: #ffffff;
    padding: 0.25rem;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stat-item:nth-child(2)::after {
    content: '👥';
    position: absolute;
    top: -5px;
    right: 15px;
    font-size: 1.5rem;
    background: #ffffff;
    padding: 0.25rem;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stat-item:nth-child(3)::after {
    content: '🏙️';
    position: absolute;
    top: -5px;
    right: 15px;
    font-size: 1.5rem;
    background: #ffffff;
    padding: 0.25rem;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive for Market Overview */
@media (max-width: 768px) {
    .market-overview {
        margin: 2rem 0;
        padding: 1.5rem;
    }
    
    .market-overview h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .market-overview p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .market-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-value {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .market-overview h2 {
        font-size: 1.3rem;
    }
    
    .market-overview p {
        font-size: 0.95rem;
    }
    
    .stat-value {
        font-size: 1.1rem;
    }
    
    .stat-item::after {
        font-size: 1.3rem;
        top: -3px;
        right: 10px;
    }
}

/* State Delivery Section Styles */
.state-delivery {
    margin: 3rem 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    position: relative;
}

.state-delivery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28a745 0%, #20c997 50%, #17a2b8 100%);
    border-radius: 16px 16px 0 0;
}

.state-delivery h2 {
    color: #28a745;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 2rem 0;
    text-align: center;
    position: relative;
}

.state-delivery h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
    border-radius: 2px;
}

.state-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.state-info {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.state-info:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 25px rgba(40, 167, 69, 0.15);
    border-color: #28a745;
}

.state-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #28a745 0%, #20c997 100%);
}

.state-info h5 {
    color: #28a745;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.state-info h5::before {
    content: '📍';
    font-size: 1.2rem;
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2);
}

.state-info p {
    margin: 0.75rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #495057;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.state-info p strong {
    color: #28a745;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Add specific icons for different info types */
.state-info p:nth-child(2) strong::before { content: '🏙️'; }
.state-info p:nth-child(3) strong::before { content: '👥'; }
.state-info p:nth-child(4) strong::before { content: '⏱️'; }
.state-info p:nth-child(5) strong::before { content: '🏭'; }

.state-info p:not(:first-child) {
    padding-left: 1rem;
    border-left: 2px solid #f8f9fa;
    margin-left: 0.5rem;
}

/* Alternating card colors */
.state-info:nth-child(even) {
    background: linear-gradient(135deg, #f8fff8 0%, #ffffff 100%);
}

.state-info:nth-child(odd) {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Add state-specific accent colors */
.state-info:nth-child(1)::before { background: linear-gradient(180deg, #007bff 0%, #0056b3 100%); } /* California - Blue */
.state-info:nth-child(2)::before { background: linear-gradient(180deg, #6610f2 0%, #520dc2 100%); } /* New York - Purple */
.state-info:nth-child(3)::before { background: linear-gradient(180deg, #e83e8c 0%, #c82668 100%); } /* Texas - Pink */
.state-info:nth-child(4)::before { background: linear-gradient(180deg, #fd7e14 0%, #dc6502 100%); } /* New Jersey - Orange */
.state-info:nth-child(5)::before { background: linear-gradient(180deg, #20c997 0%, #198269 100%); } /* Illinois - Teal */
.state-info:nth-child(6)::before { background: linear-gradient(180deg, #6f42c1 0%, #5a359a 100%); } /* Virginia - Indigo */

/* Hover effects for state names */
.state-info h5:hover {
    color: #20c997;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .state-delivery {
        margin: 2rem 0;
        padding: 1.5rem;
    }
    
    .state-delivery h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .state-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .state-info {
        padding: 1.5rem;
    }
    
    .state-info h5 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        gap: 0.5rem;
    }
    
    .state-info h5::before {
        width: 35px;
        height: 35px;
        padding: 0.4rem;
        font-size: 1rem;
    }
    
    .state-info p {
        font-size: 0.9rem;
        padding-left: 0.75rem;
        margin-left: 0.25rem;
    }
}

@media (max-width: 480px) {
    .state-delivery h2 {
        font-size: 1.3rem;
    }
    
    .state-info {
        padding: 1rem;
    }
    
    .state-info h5 {
        font-size: 1.1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .state-info h5::before {
        align-self: center;
    }
    
    .state-info p {
        font-size: 0.85rem;
        padding-left: 0.5rem;
        margin-left: 0;
        border-left: none;
        border-top: 2px solid #f8f9fa;
        padding-top: 0.5rem;
        margin-top: 0.75rem;
    }
    
    .state-info p:nth-child(2) {
        border-top: none;
        padding-top: 0;
        margin-top: 0.5rem;
    }
}

/* Service Categories Section Styles */
.service-categories {
    margin: 3rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4fd 100%);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0, 86, 179, 0.1);
    border: 1px solid #e3f2fd;
    position: relative;
}

.service-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007cba 0%, #0056b3 50%, #004494 100%);
    border-radius: 16px 16px 0 0;
}

.service-categories h2 {
    color: #0056b3;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 2rem 0;
    text-align: center;
    position: relative;
}

.service-categories h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #007cba 0%, #0056b3 100%);
    border-radius: 2px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e3f2fd;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 86, 179, 0.15);
    border-color: #007cba;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007cba 0%, #0056b3 100%);
}

.category-icon {
    font-size: 3rem;
    margin: 0 0 1.5rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4fd 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.2);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 86, 179, 0.3);
}

.category-card h5 {
    color: #0056b3;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.category-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.category-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.feature-tag {
    background: linear-gradient(135deg, #007cba 0%, #0056b3 100%);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 86, 179, 0.2);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
}

.category-pricing {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4fd 100%);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    color: #0056b3;
    font-size: 0.9rem;
    border: 1px solid #007cba;
    margin-top: 1.5rem;
    position: relative;
}

.category-pricing::before {
    content: '💰';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 86, 179, 0.2);
    font-size: 1.2rem;
}

/* Card-specific accent colors - Blue theme variations */
.category-card:nth-child(1) .category-icon { background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%); }
.category-card:nth-child(1)::before { background: linear-gradient(90deg, #007cba 0%, #0056b3 100%); }
.category-card:nth-child(1) h5 { color: #0056b3; }

.category-card:nth-child(2) .category-icon { background: linear-gradient(135deg, #e8f4fd 0%, #c5e6fc 100%); }
.category-card:nth-child(2)::before { background: linear-gradient(90deg, #0088cc 0%, #0066aa 100%); }
.category-card:nth-child(2) h5 { color: #0066aa; }

.category-card:nth-child(3) .category-icon { background: linear-gradient(135deg, #f0f8ff 0%, #d6efff 100%); }
.category-card:nth-child(3)::before { background: linear-gradient(90deg, #0099dd 0%, #0077bb 100%); }
.category-card:nth-child(3) h5 { color: #0077bb; }

.category-card:nth-child(4) .category-icon { background: linear-gradient(135deg, #f5faff 0%, #e0f2ff 100%); }
.category-card:nth-child(4)::before { background: linear-gradient(90deg, #00aaee 0%, #0088cc 100%); }
.category-card:nth-child(4) h5 { color: #0088cc; }

/* Hover effects for different cards - Blue theme */
.category-card:nth-child(1):hover { border-color: #007cba; box-shadow: 0 8px 30px rgba(0, 86, 179, 0.15); }
.category-card:nth-child(2):hover { border-color: #0088cc; box-shadow: 0 8px 30px rgba(0, 102, 170, 0.15); }
.category-card:nth-child(3):hover { border-color: #0099dd; box-shadow: 0 8px 30px rgba(0, 119, 187, 0.15); }
.category-card:nth-child(4):hover { border-color: #00aaee; box-shadow: 0 8px 30px rgba(0, 136, 204, 0.15); }

/* Mobile Responsive */
@media (max-width: 768px) {
    .service-categories {
        margin: 2rem 0;
        padding: 1.5rem;
    }
    
    .service-categories h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .category-card h5 {
        font-size: 1.2rem;
    }
    
    .category-card p {
        font-size: 0.9rem;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .category-pricing {
        font-size: 0.85rem;
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .service-categories h2 {
        font-size: 1.3rem;
    }
    
    .category-card {
        padding: 1rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .category-card h5 {
        font-size: 1.1rem;
    }
    
    .category-card p {
        font-size: 0.85rem;
    }
    
    .category-features {
        gap: 0.25rem;
    }
    
    .feature-tag {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }
    
    .category-pricing {
        font-size: 0.8rem;
        padding: 0.6rem;
    }
}

/* Routes Preview Section Styles */
.routes-preview {
    margin: 3rem 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0, 123, 255, 0.1);
    border: 1px solid #cce7ff;
    position: relative;
}

.routes-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff 0%, #0056b3 50%, #004085 100%);
    border-radius: 16px 16px 0 0;
}

.routes-preview h2 {
    color: #0056b3;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 2rem 0;
    text-align: center;
    position: relative;
}

.routes-preview h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, #007bff 0%, #0056b3 100%);
    border-radius: 2px;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.route-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #cce7ff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.route-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.2);
    border-color: #007bff;
}

.route-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007bff 0%, #0056b3 100%);
}

.route-card h5 {
    color: #0056b3;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.route-card h5::before {
    content: '✈️';
    font-size: 1.5rem;
    background: linear-gradient(135deg, #e6f3ff 0%, #cce7ff 100%);
    padding: 0.5rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.2);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
}

.route-card h5 {
    padding-top: 2.5rem;
    margin-top: 1rem;
}

.route-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fbff 0%, #e6f3ff 100%);
    border-radius: 12px;
    border: 1px solid #cce7ff;
}

.route-distance,
.route-time,
.route-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem;
    color: #495057;
    padding: 0.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.route-distance:hover,
.route-time:hover,
.route-price:hover {
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.15);
}

.route-distance {
    border-left: 3px solid #17a2b8;
}

.route-time {
    border-left: 3px solid #28a745;
}

.route-price {
    border-left: 3px solid #ffc107;
    font-weight: 600;
    color: #e65100;
}

.route-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 123, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.route-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    color: #ffffff;
}

.route-link::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.route-link:hover::after {
    transform: translateX(3px);
}

/* Route-specific styling with different accent colors */
.route-card:nth-child(1) .route-card h5::before { content: '🏙️'; }
.route-card:nth-child(2) .route-card h5::before { content: '🌴'; }
.route-card:nth-child(3) .route-card h5::before { content: '🏢'; }
.route-card:nth-child(4) .route-card h5::before { content: '🌊'; }

.route-card:nth-child(1)::before { background: linear-gradient(90deg, #dc3545 0%, #c82333 100%); }
.route-card:nth-child(2)::before { background: linear-gradient(90deg, #28a745 0%, #20c997 100%); }
.route-card:nth-child(3)::before { background: linear-gradient(90deg, #ffc107 0%, #ff8f00 100%); }
.route-card:nth-child(4)::before { background: linear-gradient(90deg, #6f42c1 0%, #5a359a 100%); }

/* Hover effects for different routes */
.route-card:nth-child(1):hover { border-color: #dc3545; box-shadow: 0 8px 30px rgba(220, 53, 69, 0.2); }
.route-card:nth-child(2):hover { border-color: #28a745; box-shadow: 0 8px 30px rgba(40, 167, 69, 0.2); }
.route-card:nth-child(3):hover { border-color: #ffc107; box-shadow: 0 8px 30px rgba(255, 193, 7, 0.2); }
.route-card:nth-child(4):hover { border-color: #6f42c1; box-shadow: 0 8px 30px rgba(111, 66, 193, 0.2); }

/* Mobile Responsive */
@media (max-width: 768px) {
    .routes-preview {
        margin: 2rem 0;
        padding: 1.5rem;
    }
    
    .routes-preview h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .routes-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .route-card {
        padding: 1.5rem;
    }
    
    .route-card h5 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        padding-top: 2rem;
    }
    
    .route-card h5::before {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        top: -22px;
    }
    
    .route-details {
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .route-distance,
    .route-time,
    .route-price {
        font-size: 0.9rem;
        padding: 0.4rem;
    }
    
    .route-link {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .routes-preview h2 {
        font-size: 1.3rem;
    }
    
    .route-card {
        padding: 1rem;
    }
    
    .route-card h5 {
        font-size: 1.1rem;
        padding-top: 1.5rem;
        margin-top: 0.5rem;
    }
    
    .route-card h5::before {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: -20px;
    }
    
    .route-details {
        padding: 0.75rem;
        gap: 0.4rem;
    }
    
    .route-distance,
    .route-time,
    .route-price {
        font-size: 0.85rem;
        padding: 0.3rem;
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
    
    .route-link {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        border-radius: 20px;
    }
}

/* Final CTA Section Styles */
.final-cta-section {
    margin: 3rem 0;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #ffffff;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0.05)"/></radialGradient></defs><circle fill="url(%23a)" cx="10" cy="10" r="8"/><circle fill="url(%23a)" cx="80" cy="5" r="6"/><circle fill="url(%23a)" cx="90" cy="15" r="4"/></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.final-cta-section h3 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.final-cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    margin: 0 0 2rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 2rem 0 2.5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
    justify-content: center;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #0f2027;
    border: 2px solid transparent;
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    color: #0f2027;
}

.cta-button.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #20b858 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-button.whatsapp:hover {
    background: linear-gradient(135deg, #20b858 0%, #1ba34a 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Add subtle animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.final-cta-section::after {
    content: '🚀';
    position: absolute;
    top: -15px;
    right: 2rem;
    font-size: 3rem;
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .final-cta-section {
        margin: 2rem 0;
        padding: 2rem 1.5rem;
    }
    
    .final-cta-section h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .final-cta-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-features {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        margin: 1.5rem 0 2rem 0;
    }
    
    .cta-feature {
        font-size: 0.85rem;
        padding: 0.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        min-width: auto;
    }
    
    .final-cta-section::after {
        top: -10px;
        right: 1rem;
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .final-cta-section {
        padding: 1.5rem 1rem;
    }
    
    .final-cta-section h3 {
        font-size: 1.5rem;
    }
    
    .final-cta-section p {
        font-size: 0.95rem;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .cta-feature {
        font-size: 0.8rem;
        padding: 0.6rem;
    }
    
    .cta-button {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
    }
    
    .final-cta-section::after {
        font-size: 2rem;
        top: -8px;
        right: 0.5rem;
    }
}