/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&display=swap');

/* ----------------- Utilities ----------------- */
.text-color-info { color: #0cd2dd !important; }
.text-light-black { color: #949494 !important; }
.text-color-white, .text-white { color: #ffffff !important; }
.bg-color-info { background-color: #0cd2dd !important; }
.bg-color-white { background-color: #ffffff !important; }
.bg-light-grey { background-color: #f5f5f5 !important; }
.bg-info2 { background-color: #a5fbff !important; }
.pr-7 { padding-right: 7rem !important; }
.pl-40 { padding-left: 40px !important; }
.pl-60 { padding-left: 60px !important; }
.b-none { border: none !important; }
.radius-20 { border-radius: 20px; }
.radius-10 { border-radius: 10px; }
.font-family-inter { font-family: "Inter", sans-serif; }
.font-family-merriweather { font-family: 'Merriweather', serif; }
.fs-49 { font-size: 49px; }
.fs-20 { font-size: 20px; }
.fs-28 { font-size: 28px; }
.fs-30 { font-size: 30px; }
.text-capitalize { text-transform: capitalize; }
.text-tracking-wide { letter-spacing: 0.05em; }
.text-tracking-wider { letter-spacing: 0.1em; }
.text-tracking-tight { letter-spacing: -0.05em; }
.f15rem { font-size: 1.15rem; }
.active { color: #0dcaf0; }
.navbar {
  --bs-navbar-active-color: #0dcaf0;
}
.custom-tabs-wrapper .nav-link.active, 
.custom-tabs-wrapper .nav-link:hover {
  color: #ffffff !important;
}

/* ----------------- Global ----------------- */
body {
  font-family: "Roboto", sans-serif;
  color: #000;
}
p {
  line-height: 1.6;
  color: #766f6f;
}

/* ----------------- Navbar ----------------- */
.navbar {
  padding: 1.5rem 0;
  background-color: transparent !important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar-wrapper {
  border-radius: 20px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  min-height: 70px;
  display: flex;
  align-items: center;
}

.logo-img {
  width: 150px;
  height: 50px;
  object-fit: contain;
}

.menu-links {
  text-align: center;
  display: flex;
  align-items: center;
  margin-bottom: 0 !important;
}

.menu-links .nav-link {
  font-weight: 600;
  color: #000;
  padding: 8px 16px;
  margin: 0 4px;
  font-family: sans-serif;
  transition: all 0.3s ease;
  font-size: 15px;
  white-space: nowrap;
}

.menu-links .nav-link:hover,
.menu-links .nav-link.active { 
  color: #0dcaf0; 
}

.btn-dark,
.btn-outline-dark {
  font-size: 15px !important;
  padding: 10px 24px !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  border-width: 2px !important;
  transition: all 0.3s ease;
}

.btn-dark {
  background-color: #2c3e50 !important;
  border-color: #2c3e50 !important;
}

.btn-dark:hover {
  background-color: #1a252f !important;
  border-color: #1a252f !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

.btn-outline-dark {
  background-color: transparent !important;
  border-color: #2c3e50 !important;
  color: #2c3e50 !important;
}

.btn-outline-dark:hover {
  background-color: #2c3e50 !important;
  border-color: #2c3e50 !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

/* Mobile Menu */
.mobile-menu { 
  padding-left: 0; 
}

.mobile-menu .nav-item { 
  border-bottom: 1px solid #ddd; 
}

.mobile-menu .nav-link {
  text-align: left;
  padding: 12px 5px;
  font-weight: 600;
  color: #000;
}

.mobile-menu .nav-link:hover { 
  color: #0dcaf0; 
}

.navbar-toggler {
  padding: 4px 8px;
  font-size: 18px;
  border: none;
}

.navbar-toggler:focus { 
  box-shadow: none; 
}

/* Dropdown Menu Styling */
.dropdown-menu {
  border-radius: 12px !important;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
  padding: 8px 0;
}

.dropdown-item {
  padding: 10px 20px;
  font-size: 14px;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #0dcaf0 !important;
}

.dropdown-toggle::after {
  margin-left: 6px;
}

/* Wallet Badge */
.border-info {
  border-color: #0dcaf0 !important;
  border-width: 2px !important;
}

/* User Avatar in Navbar */
.navbar .rounded-circle {
  border: 2px solid #e9ecef;
}

/* Sticky Navbar Effect */
.navbar.scrolled {
  position: fixed;
  background-color: rgba(241, 251, 252, 0.95) !important;
  backdrop-filter: blur(10px);
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* ----------------- Hero Section ----------------- */
.hero {
  background-color: #f1fbfc;
  min-height: 80vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: #000;
}

.hero-bg-color { 
  background-color: #f1fbfc; 
}

.hero-section {
  background-image: url('{{ asset("frontend/images/hero-background.png") }}');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  position: relative;
  padding-top: 0 !important;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(12, 210, 221, 0.1) 0%, rgba(12, 210, 221, 0.05) 100%);
}

.hero h1, .hero h2 {
  font-weight: 600;
  font-size: 50px;
}

.hero h1 { 
  color: #0dcaf0; 
  margin-top: 50px; 
}

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

.home-hero-heading {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 49px;
  line-height: 1.2;
  text-transform: capitalize;
  color: #0cd2dd;
}

.home-hero-heading span { 
  color: #000; 
}

.hero .btn {
  min-width: 180px;
  font-weight: 600;
  margin: 10px 10px 30px;
  padding: 12px 25px;
  border-radius: 8px;
  margin-bottom: 50px;
}

/* ----------------- Map ----------------- */
.map-container {
  width: 600px;
  height: 280px;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto 20px;
}
.map-container-home {
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto 20px;
}
.map-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----------------- Community Alert Section ----------------- */
.section-heading {
  font-size: 2.5rem;
  color: #000;
  /* max-width: 500px; */
}
.alert-card {
  background-color: #fff;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s;
  height: 100%;
}
.alert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15) !important;
}
.map-card-image {
  max-height: 170px;
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 0.75rem;
}
.map-card-image img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.alert-tag {
  background-color: #ffe0e0;
  border-radius: 20px;
  padding: 5px 15px;
  margin-top: 10px;
}
.alert-tag .alert-text {
  color: #ff0000;
  font-weight: 600;
  font-size: 0.9rem;
}
.alert-tag .alert-icon {
  width: 18px;
  height: 18px;
}
.icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 15px;
  padding: 12px;
}
.feature-icon {
  max-width: 25px;
  max-height: 25px;
}

/* ----------------- Towed Vehicle Finder ----------------- */
.towed-vehicle-finder { 
  background-color: #fff; 
}
.towed-vehicle-finder .map-card-image {
  max-height: 270px;
  height: 270px;
}
.map-finder-container { 
  border-radius: 20px; 
}
.map-finder-container .map-image-custom { 
  border-radius: 20px; 
}
.instructions-heading { 
  font-size: 2.25rem; 
}
.custom-input-field {
  height: 55px;
  border: 1px solid #ced4da;
  border-radius: 10px;
  padding: 15px;
  box-shadow: none;
}
.custom-input-field:focus {
  border-color: #0cd2dd;
  box-shadow: 0 0 0 0.1rem rgba(12,210,221,0.25);
}
textarea.custom-input-field {
  height: auto;
  resize: vertical;
  max-height: 70px;
}

/* ----------------- Registered Vehicles ----------------- */
.registered-vehicles { 
  background-color: #f1fbfc; 
}
.heading-row {
  font-size: 22px !important;
  padding: 24px 8px !important;
}
.vehicle-data-row {
  background-color: #fff;
  transition: transform 0.2s;
  font-size: 1.1rem;
  color: #766f6f;
}
.vehicle-data-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}
.vehicle-icon { 
  width: 30px; 
  height: 30px; 
}
.status-active {
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  background-color: rgba(181,232,93,0.29) !important;
  color: #b5e85d !important;
}
.action-icons i { 
  cursor: pointer; 
  font-size: 1.1rem; 
}
.action-delete { 
  color: #ff5757; 
}
.action-edit { 
  color: #0cd2dd; 
}
.car-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background-color: #d8fdff;
}
.vehicle-icon { 
  max-width: 22px; 
  max-height: 22px; 
}
.action-icons .action-icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* ----------------- Newsletter ----------------- */
.newsletter-section { 
  background-color: #fff; 
}
.newsletter-form {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  padding: 5px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(208,209,215,0.5);
}
.newsletter-input {
  border: none;
  flex-grow: 1;
  padding: 10px 15px;
  box-shadow: none !important;
}
.newsletter-btn {
  flex-shrink: 0;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 5px !important;
}
.newsletter-input::placeholder { 
  color: #999; 
}

/* ----------------- Footer ----------------- */
.main-footer { 
  background-color: #f1fbfc; 
  color: #333; 
}
.footer-links li a {
  color: #666;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 2.2;
  transition: color 0.2s;
}
.footer-links li a:hover { 
  color: #0cd2dd; 
}
.footer-legal-links a {
  color: #666;
  text-decoration: none;
  font-size: 0.85rem;
  margin-left: 15px;
}
.footer-legal-links a:hover { 
  color: #0cd2dd; 
}
.footer-logo-img {
  width: 150px;
  height: auto;
  object-fit: contain;
}

/* ----------------- Report Tow Modal ----------------- */
.custom-modal-content { 
  background-color: #fff; 
  padding: 20px; 
}
.map-modal-preview { 
  border: none; 
  overflow: hidden; 
}
.custom-input-field {
  border: none;
  border-radius: 10px;
  padding: 10px 15px;
  background-color: #f2f2f2;
  max-height: 45px;
}
.custom-input-field::placeholder,
.custom-input-location::placeholder { 
  color: #c0c0c0; 
}
textarea.custom-input-field {
  background-color: #f2f2f2;
  border: none;
}
.custom-input-location .input-group-text {
  background-color: #f2f2f2;
  border-left: none;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  color: #0cd2dd;
  border: none !important;
}
.custom-input-location input {
  background-color: #f2f2f2;
  border: none !important;
}
.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%230dcaf0' stroke-width='2' viewBox='0 0 16 16'%3e%3cpath d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 16px;
  padding-right: 2.5rem;
  color: #c0c0c0;
}

/* Upload Area */
.upload-area {
  background-color: #f2f2f2;
  border: none !important;
  cursor: pointer;
  transition: background-color 0.3s;
}
.upload-area:hover { 
  background-color: #f0f0f0; 
}
.upload-icon-lg { 
  font-size: 3rem; 
  color: #949494; 
}
.upload-label { 
  display: block; 
  cursor: pointer; 
}

/* ----------------- User Profile Page ----------------- */
.profile-main {
    min-height: 85vh;
}

.avatar-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid white; 
    box-shadow: 0 0 0 2px #0CD2DD50;
    overflow: hidden;
}

.profile-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.community-badge-card {
    background-color: #FBF4CA; 
    max-width: 520px;
    border: 1px solid #FBF4CA;
}

.badge-icon {
    width: 60px;
    height: 60px;
}

.badge-level-2 {
    background-color: #FFDB02; 
    color: #333;
}

.stat-icon-lg {
    width: auto;
    height: 60px;
}

.stat-card h3 {
    color: black; 
    font-size: 1.5rem;
    font-weight: 600;
}

.custom-tabs-wrapper {
    border-radius: 10px;
    display: inline-flex;
}

.nav-pills .nav-link {
    color: #333;
    background-color: transparent;
    transition: all 0.2s;
}

.nav-pills .nav-link.active, 
.nav-pills .nav-link:hover,
.tab-active {
    color: white !important;
    background-color: #0CD2DD;
    box-shadow: 0 4px 8px rgba(0, 205, 221, 0.3);
}

.report-item {
    border: 1px solid #eee;
}

.report-icon {
    width: 35px;
    height: 35px;
}

.status-complete {
    background-color: #f1fbfc;
    color: #0cd2dd;
    border-radius: 5px;
    padding: 10px 20px;
}

.download-icon {
    cursor: pointer;
    font-size: 1.1rem;
}

/* ----------------- Contact Us Page Styling ----------------- */
.contact-us-page {
    background-color: #F1FBFC;
}

.contact-card {
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
    padding: 1.5rem!important
}

.contact-icon {
    width: 115px;
    height: 100px;
    padding: 20px;
    border: 1px solid #0CD2DD;
    border-radius: 15px;
}

.contact-card h4 {
    color: #000;
}
.contact-card p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* ----------------- Services Page Features ----------------- */
.services-intro .section-heading {
    color: #000;
}

.service-card {
    border: 1px solid #eee;
    transition: transform 0.2s, box-shadow 0.2s;
    min-height: 180px;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1) !important;
}

.service-card-icon {
    width: 80px;
    height: 103px;
    border-radius: 10px;
    object-fit: contain;
}

.service-card h5 {
    font-size: 1.25rem;
}

.coming-soon-badge {
    background-color: #fff3cd !important;
    color: #856404 !important;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 5px;
}

/* ----------------- About Us Page Styling ----------------- */
.about-intro {
    background-color: #f1fbfc; 
}

.about-intro h1 {
    font-size: 2.5rem;
}

.about-features li {
    font-weight: 500;
    color: #333;
}
.about-features .fa-dot-circle {
    color: #0cd2dd;
}

.about-illustration {
    max-width: 450px;
    height: auto;
}

.mission-heading, .vision-heading {
    color: #0cd2dd;
    font-size: 2.2rem;
}

.goals-wrapper {
    background-color: #e5f0f6; 
    border: 1px solid #d2e4f0;
}

.goals-illustration-container {
    flex-shrink: 0;
}

.goals-illustration {
    max-width: 390px;
    height: auto;
}

.goals-heading {
    font-size: 2rem;
    color: #000;
}

.goals-list {
    padding-left: 0;
}

.goals-list li {
    font-size: 1.3rem;
    font-weight: 500;
    color: #333;
}

.goals-list .fa-circle-check {
    color: #0cd2dd;
    font-size: 1.2rem;
    position: relative;
    top: 2px;
}
.goals-content{
  margin-left: 35px;
}

.vehicle-table-wrapper {
  width: 100%;
  max-width: 1200px;
}

[data-label]::before {
  display: none;
}

/* Responsive adjustments for goals section */
@media (max-width: 992px) {
    .goals-wrapper {
        flex-direction: column;
    }
    .goals-content {
        order: 2;
        text-align: center;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .goals-illustration-container {
        order: 1;
        margin-bottom: 30px;
    }
    .custom-tabs-wrapper {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    .custom-tabs-wrapper .nav-item {
        flex-shrink: 0;
    }
    .report-item {
        padding: 10px;
    }
    .about-illustration {
      max-width: 100%;
      height: auto;
    }
    .goals-illustration {
      max-width: 100%;
      height: auto;
    }
}

/* ----------------- Responsive ----------------- */
@media (max-width: 992px) {
  .hero h1, .hero h2 { 
    font-size: 36px; 
  }
  .navbar .d-none.d-lg-flex.ms-auto { 
    display: none; 
  }
  .find-form-wrapper {
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
  }
  .instructions-heading { 
    margin-top: 30px; 
    font-size: 1.8rem; 
  }
  .form-label { 
    text-align: left; 
    display: block; 
  }
}

@media (max-width: 768px) {
  .hero h1, .hero h2 { 
    font-size: 35px; 
    margin-top: 20px; 
  }
  .map-pic { 
    width: 600px; 
    height: 280px; 
    border-radius: 10px; 
  }
  .hero .btn { 
    min-width: 140px; 
    padding: 10px 20px; 
  }
  .section-heading { 
    font-size: 2rem; 
  }
  .alert-card { 
    margin-bottom: 20px; 
  }
  .home-hero-heading {
    font-size: 24px;
  }
  .col-lg-7.mb-4.mb-lg-0.pl-3.pr-7.text-center {
    padding-right: 0 !important;
  }
  .pl-60 { 
    padding-left: 15px !important; 
  }

  .heading-row {
    display: none !important;
  }

  .vehicle-data-row {
    display: block;
    text-align: left;
    padding: 1rem;
    border-radius: 12px;
  }

  .vehicle-data-row > [class*="col-"] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    width: 100%;
  }

  .vehicle-data-row > [data-label]::before {
    content: attr(data-label);
    font-weight: 600;
    color: #333;
    flex: 1;
  }

  .vehicle-data-row > [data-label] {
    flex: 1;
    text-align: right;
    color: #555;
  }

  .vehicle-data-row .d-flex.align-items-center {
    justify-content: flex-start;
    gap: 10px;
  }

  .vehicle-data-row .action-icons {
    justify-content: flex-end !important;
  }
  .profile-main {
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .hero h1, .hero h2 { 
    font-size: 22px; 
  }
  .hero .btn { 
    display: block; 
    width: 100%; 
    margin: 10px auto; 
  }
  .footer-top-row h6 { 
    margin-top: 15px; 
  }
  .footer-legal-links { 
    text-align: center; 
    padding-left: 0; 
  }
  .footer-legal-links li { 
    display: block; 
    margin-left: 0 !important; 
  }
}

@media (max-width: 767.98px) {
  .vehicle-data-row { 
    display: block; 
    text-align: left; 
  }
  .vehicle-data-row > div {
    width: 100% !important;
    padding: 5px 0;
    border-bottom: 1px dashed #eee;
  }
  .vehicle-data-row > div:first-child {
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
  }
  .vehicle-data-row > div:not(:first-child)::before {
    content: attr(data-label);
    font-weight: bold;
    display: inline-block;
    width: 120px;
    color: #555;
  }
  .action-icons { 
    margin-top: 10px; 
    text-align: center !important; 
  }
}

/* Benefit Cards Equal Height */
.benefit-card {
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.benefit-card .row {
    flex: 1;
}

.benefit-card-img {
    max-height: 200px;
    width: auto;
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .benefit-card {
        min-height: auto;
    }
    
    .benefit-card-img {
        max-height: 150px;
        margin-top: 20px;
    }
}

/* ----------------- Who Towed My Car Section ----------------- */
.city-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid #e9ecef;
}

.city-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

.city-card-image {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #e3f5f8 0%, #f0f9fb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.city-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.city-card:hover .city-card-image img {
    transform: scale(1.05);
}

.city-card-title {
    color: #2c3e50;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

/* City Card Buttons */
.city-view-btn {
    background-color: #2c3e50 !important;
    border-color: #2c3e50 !important;
    font-size: 13px !important;
    transition: all 0.3s ease;
}

.city-view-btn:hover {
    background-color: #1a252f !important;
    border-color: #1a252f !important;
    transform: translateY(-2px);
}

.city-check-btn {
    background-color: #ffd700 !important;
    border-color: #ffd700 !important;
    color: #2c3e50 !important;
    font-size: 13px !important;
    transition: all 0.3s ease;
}

.city-check-btn:hover {
    background-color: #ffed4e !important;
    border-color: #ffed4e !important;
    transform: translateY(-2px);
}

/* View All Cities Link */
.view-all-cities-link {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.view-all-cities-link:hover {
    color: #0cd2dd;
    transform: translateX(5px);
}

.view-all-cities-link i {
    transition: transform 0.3s ease;
}

.view-all-cities-link:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .city-card-image {
        height: 180px;
        padding: 15px;
    }
    
    .city-card-title {
        font-size: 1rem;
    }
    
    .city-view-btn,
    .city-check-btn {
        font-size: 12px !important;
        padding: 8px 16px !important;
    }
}

@media (max-width: 576px) {
    .city-card-image {
        height: 160px;
    }
    
    .city-card .d-flex.gap-2 {
        flex-direction: column;
        gap: 0.5rem !important;
    }
    
    .city-view-btn,
    .city-check-btn {
        width: 100%;
    }
}

/* ----------------- Newsletter Section (Updated) ----------------- */
.newsletter-section { 
    background-color: #f8f9fa;
    padding: 80px 0;
}

.newsletter-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid #e9ecef;
}

.newsletter-heading {
    font-size: 2rem;
    line-height: 1.3;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

/* Newsletter Form */
.newsletter-form-wrapper {
    max-width: 500px;
}

.newsletter-input-group {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    overflow: hidden;
    padding: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.newsletter-email-input {
    border: none !important;
    background: transparent !important;
    padding: 12px 16px !important;
    font-size: 15px;
    color: #495057;
    outline: none !important;
    box-shadow: none !important;
}

.newsletter-email-input::placeholder {
    color: #adb5bd;
    font-size: 14px;
}

.newsletter-email-input:focus {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.newsletter-submit-btn {
    background-color: #ffd700 !important;
    color: #2c3e50 !important;
    border: none !important;
    padding: 12px 28px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    border-radius: 50px !important;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: none !important;
}

.newsletter-submit-btn:hover {
    background-color: #ffed4e !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3) !important;
}

.newsletter-submit-btn:active,
.newsletter-submit-btn:focus {
    background-color: #ffd700 !important;
    box-shadow: none !important;
    transform: translateY(0);
}

/* Newsletter Illustration */
.newsletter-illustration-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-illustration {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Success Message */
#subscribe-msg {
    font-size: 14px;
    padding-left: 6px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-heading {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .newsletter-form-wrapper {
        margin: 0 auto;
    }
    
    .newsletter-illustration-wrapper {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .newsletter-wrapper {
        padding: 2rem 1.5rem !important;
    }
    
    .newsletter-heading {
        font-size: 1.5rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        padding: 8px;
    }
    
    .newsletter-email-input {
        width: 100%;
        margin-bottom: 8px;
        text-align: center;
    }
    
    .newsletter-submit-btn {
        width: 100%;
        padding: 14px 28px !important;
    }
}

@media (max-width: 576px) {
    .newsletter-section {
        padding: 40px 0;
    }
    
    .newsletter-heading {
        font-size: 1.25rem;
    }
    
    .newsletter-illustration-wrapper {
        max-width: 250px;
    }
}


/* ----------------- Footer (Updated) ----------------- */
.main-footer { 
    background-color: #e6fbfc; 
    color: #333;
    border-top: 1px solid #e3f0f3;
}

.footer-logo-img {
    width: 150px;
    height: auto;
    object-fit: contain;
}

.footer-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 12px;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.25rem;
    text-transform: capitalize;
}

.footer-links {
    padding-left: 0;
}

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

.footer-links li a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #0cd2dd;
    padding-left: 5px;
}

/* Footer Contact Info */
.footer-contact-info {
    max-width: 400px;
}

.footer-contact-item {
    font-size: 0.9rem;
    color: #6c757d;
    display: flex;
    align-items: center;
}

.footer-contact-item i {
    color: #0cd2dd;
    font-size: 0.85rem;
    min-width: 20px;
}

.footer-contact-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #0cd2dd;
}

/* Footer Bottom */
.footer-bottom-row {
    border-top: 1px solid #d8e8ea !important;
    padding-top: 1.5rem;
}

.footer-copyright {
    color: #6c757d;
    font-size: 0.85rem;
}

/* Social Links */
.footer-social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-social-links {
        justify-content: flex-end;
    }
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #e3f0f3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-social-link:hover {
    background-color: #0cd2dd;
    color: #fff;
    border-color: #0cd2dd;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(12, 210, 221, 0.3);
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-top-row {
        text-align: left;
    }
    
    .footer-description {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding-top: 3rem !important;
    }
    
    .footer-heading {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .footer-links li a {
        font-size: 0.85rem;
    }
    
    .footer-contact-info {
        margin-top: 1rem;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .footer-social-link {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .footer-top-row > div {
        margin-bottom: 2rem !important;
    }
    
    .footer-top-row > div:last-child {
        margin-bottom: 0 !important;
    }
    
    .footer-bottom-row {
        padding-top: 1rem;
    }
    
    .footer-social-links {
        margin-top: 0.5rem;
    }
}

/* ----------------- Services Page Styling (Updated to Match Figma) ----------------- */

/* Services Hero Section */
.services-hero-section {
    background-color: #E8F8FA;
    padding-top: 120px;
    padding-bottom: 60px;
}

.services-main-heading {
    font-size: 2.75rem;
    color: #2C3E50;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-subtitle {
    font-size: 1.05rem;
    color: #5A6C7D;
    line-height: 1.6;
    max-width: 700px;
}

/* Service Item Cards */
.service-item-card {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #E8F0F2;
}

.service-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-title {
    font-size: 1.15rem;
    color: #2C3E50;
    font-weight: 700;
    line-height: 1.4;
}

.service-description {
    font-size: 0.95rem;
    color: #5A6C7D;
    line-height: 1.6;
}

/* Launching Soon Badge */
.badge-launching-soon {
    background-color: #FFF3CD;
    color: #856404;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Support Cities Section */
.support-cities-section {
    background-color: #FFFFFF;
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-main-heading {
    font-size: 2.25rem;
    color: #2C3E50;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1rem;
    color: #5A6C7D;
    line-height: 1.7;
    max-width: 900px;
}

/* Benefit Item Cards */
.benefit-item-card {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #E8F0F2;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.benefit-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.benefit-icon-wrapper {
    width: 120px;
    height: 120px;
    background-color: #E8F8FA;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.benefit-title {
    font-size: 1.15rem;
    color: #2C3E50;
    font-weight: 700;
    line-height: 1.4;
}

.benefit-description {
    font-size: 0.95rem;
    color: #5A6C7D;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 991px) {
    .services-hero-section {
        padding-top: 100px;
        padding-bottom: 50px;
    }
    
    .services-main-heading {
        font-size: 2.25rem;
    }
    
    .section-main-heading {
        font-size: 2rem;
    }
    
    .services-subtitle,
    .section-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .services-hero-section {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    
    .services-main-heading {
        font-size: 1.85rem;
    }
    
    .section-main-heading {
        font-size: 1.75rem;
    }
    
    .services-subtitle,
    .section-description {
        font-size: 0.9rem;
        padding: 0 15px;
    }
    
    .service-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .service-title {
        font-size: 1.05rem;
    }
    
    .service-description {
        font-size: 0.88rem;
    }
    
    .benefit-item-card {
        min-height: auto;
        margin-bottom: 20px;
    }
    
    .benefit-icon-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .benefit-icon-img {
        width: 65px;
        height: 65px;
    }
}

@media (max-width: 576px) {
    .services-main-heading {
        font-size: 1.65rem;
    }
    
    .section-main-heading {
        font-size: 1.5rem;
    }
    
    .services-subtitle br,
    .section-description br {
        display: none;
    }
    
    .service-item-card {
        padding: 1.25rem !important;
    }
    
    .service-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-right: 0.75rem !important;
    }
    
    .service-title {
        font-size: 0.95rem;
    }
    
    .badge-launching-soon {
        font-size: 0.6rem;
        padding: 3px 8px;
        display: inline-block;
        margin-top: 4px;
        margin-left: 0 !important;
    }
    
    .service-description {
        font-size: 0.85rem;
    }
    
    .support-cities-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .benefit-item-card {
        padding: 1.5rem !important;
    }
}


/* ----------------- Report Tow Modal (Figma Design) ----------------- */

/* Modal Background & Content */
.report-tow-modal-content {
    background-color: #E8F8FA !important;
    border-radius: 30px !important;
    border: none !important;
    padding: 40px 30px;
    position: relative;
}

/* Close Button (Top Right Circle) */
.report-tow-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #2C3E50;
    color: #2C3E50;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 1;
    z-index: 10;
    transition: all 0.3s ease;
    padding: 0;
}

.report-tow-close-btn:hover {
    background-color: #2C3E50;
    color: white;
    transform: rotate(90deg);
}

.report-tow-close-btn i {
    margin: 0;
    line-height: 1;
}

/* Modal Body */
.report-tow-modal-body {
    padding: 0;
}

/* Title */
.report-tow-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
}

/* Map Container */
.report-tow-map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Labels */
.report-tow-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 10px;
    display: block;
}

/* Input Fields */
.report-tow-input {
    background-color: white !important;
    border: 1px solid #E0E0E0 !important;
    border-radius: 30px !important;
    padding: 14px 18px !important;
    font-size: 0.95rem !important;
    color: #2C3E50 !important;
    transition: all 0.3s ease;
    height: auto !important;
    min-height: 50px;
}

.report-tow-input:focus {
    border-color: #0CD2DD !important;
    box-shadow: 0 0 0 3px rgba(12, 210, 221, 0.1) !important;
    background-color: white !important;
}

.report-tow-input::placeholder {
    color: #999999 !important;
    font-size: 0.9rem;
}

/* Select Dropdown */
.report-tow-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%232C3E50' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px 16px;
    padding-right: 45px !important;
}

/* Location Input Group */
.report-tow-location-group {
    position: relative;
}

.report-tow-location-group .report-tow-input {
    padding-right: 50px !important;
}

.report-tow-location-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #0CD2DD;
    font-size: 1.2rem;
    pointer-events: none;
}

/* Textarea */
.report-tow-textarea {
    resize: vertical;
    min-height: 100px !important;
    max-height: 200px;
}

/* Upload Area */
.report-tow-upload-area {
    background-color: white;
    border: 2px dashed #D0D0D0;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.report-tow-upload-area:hover {
    border-color: #0CD2DD;
    background-color: #F0FEFF;
}

.report-tow-upload-label {
    cursor: pointer;
    margin: 0;
    display: block;
}

.report-tow-upload-icon {
    font-size: 3rem;
    color: #2C3E50;
    opacity: 0.7;
}

.report-tow-upload-text {
    color: #666;
    font-size: 0.95rem;
    margin-top: 10px;
}

/* Image Preview */
.report-tow-image-preview {
    text-align: center;
}

.report-tow-image-preview img {
    max-width: 300px;
    max-height: 200px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Submit Button */
.report-tow-submit-btn {
    background-color: #2C3E50 !important;
    color: white !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 16px 60px !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

.report-tow-submit-btn:hover {
    background-color: #1a252f !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(44, 62, 80, 0.4);
}

.report-tow-submit-btn:disabled {
    background-color: #95a5a6 !important;
    cursor: not-allowed;
    transform: none;
}

/* Error Alert Styling */
#reportErrors {
    background-color: #FFF3F3;
    border: 1px solid #FFCDD2;
    color: #C62828;
    border-radius: 12px;
    padding: 15px 20px;
}

#reportErrors ul {
    margin: 0;
    padding-left: 20px;
}

/* Validation Styles */
.report-tow-input.is-invalid {
    border-color: #EF5350 !important;
    box-shadow: 0 0 0 3px rgba(239, 83, 80, 0.1) !important;
}

.invalid-feedback {
    color: #C62828;
    font-size: 0.875rem;
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .report-tow-modal-content {
        padding: 30px 20px;
    }

    .report-tow-title {
        font-size: 1.65rem;
    }
}

@media (max-width: 768px) {
    .report-tow-modal-content {
        padding: 25px 15px;
        border-radius: 20px !important;
    }

    .report-tow-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .report-tow-close-btn {
        width: 35px;
        height: 35px;
        top: 15px;
        right: 15px;
        font-size: 18px;
    }

    .report-tow-map-container {
        margin-bottom: 20px;
    }

    #map {
        height: 220px !important;
    }

    .report-tow-input {
        padding: 12px 16px !important;
        min-height: 45px;
    }

    .report-tow-upload-area {
        padding: 30px 15px;
    }

    .report-tow-upload-icon {
        font-size: 2.5rem;
    }

    .report-tow-submit-btn {
        padding: 14px 40px !important;
        font-size: 1rem !important;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .modal-dialog.modal-xl {
        margin: 0.5rem;
    }

    .report-tow-title {
        font-size: 1.35rem;
    }

    .report-tow-label {
        font-size: 0.9rem;
    }

    .report-tow-input {
        font-size: 0.9rem !important;
        padding: 10px 14px !important;
    }
}

/* Pac Container (Google Autocomplete) */
.pac-container {
    z-index: 9999 !important;
    border-radius: 12px !important;
    border: 1px solid #E0E0E0 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    margin-top: 4px !important;
}

.pac-item {
    padding: 10px 14px !important;
    font-size: 0.95rem !important;
    border-top: 1px solid #F0F0F0 !important;
}

.pac-item:hover {
    background-color: #F0FEFF !important;
}

.pac-item-query {
    font-size: 0.95rem !important;
    color: #2C3E50 !important;
}