/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #00DDB3;
  --color-dark: #1a2332;
  --color-dark-secondary: #282a3b;
  --color-text: #1f2433;
  --color-text-light: #6b7280;
  --color-white: #ffffff;
  --color-gray-light: #e8eaed;
  --color-star: #ffb444;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navbar */
.navbar {
  background: var(--color-dark);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo img {
  height: 48px;
}

.nav-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--color-primary);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
}

.hero-image {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center 25%;
}

.hero-overlay {
  display: none;
}

.hero-form-wrapper {
  position: relative;
  background: transparent;
  padding-top: 0;
  padding-bottom: 0;
}

.request-card {
  max-width: 967px;
  width: 100%;
  padding: 0 24px;
  margin: 0 auto;
  margin-top: -60px;
  margin-bottom: -200px;
  position: relative;
  z-index: 10;
}

.request-card-inner {
  /* min-height removed to eliminate extra space below form */
}

.request-card-accent {
  background: var(--color-white);
  height: 6px;
  border-radius: 8px 8px 0 0;
  border-bottom: 4px solid var(--color-primary);
}

.request-card-body {
  background: var(--color-white);
  padding: 24px 40px 28px;
  text-align: center;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.request-card-body h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.request-card-body p {
  color: var(--color-text-light);
  font-size: 13px;
  margin-bottom: 16px;
  white-space: nowrap;
}

/* Multi-Step Form */
.multi-step-form {
  position: relative;
  overflow: hidden;
}

.form-step {
  display: none;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-step.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.form-step.exit {
  display: block;
  opacity: 0;
  transform: translateX(-20px);
}

.form-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 16px;
  flex-wrap: nowrap;
}

.form-row-inline {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.form-row-inline .form-group {
  flex: 1;
  min-width: 180px;
  max-width: 250px;
}

.form-row-inline .btn-primary {
  min-width: 140px;
  height: 46px;
  margin-top: 0;
}

.form-group {
  position: relative;
  flex: 1;
  max-width: 200px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: var(--color-white);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group input::placeholder,
.form-group select option[value=""] {
  color: #6b7280;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(0, 221, 179, 0.1);
}

.form-group input.error,
.form-group select.error {
  border-color: #ef4444;
}

.form-group input.valid,
.form-group select.valid {
  border-color: var(--color-primary);
}

.error-message {
  display: block;
  color: #ef4444;
  font-size: 11px;
  margin-top: 4px;
  min-height: 16px;
  text-align: left;
}

.form-disclaimer {
  font-size: 10px;
  color: var(--color-text-light);
  line-height: 1.5;
  margin-bottom: 16px;
  text-align: left;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.btn-next,
.multi-step-form button[type="submit"] {
  min-width: 140px;
}

.btn-next:disabled,
.multi-step-form button[type="submit"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Success State */
.form-success {
  display: none;
  text-align: center;
  padding: 20px 0;
  animation: fadeIn 0.4s ease;
}

.form-success.active {
  display: block;
}

.success-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-dark);
}

.form-success h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--color-text-light);
  font-size: 13px;
  margin-bottom: 0;
  white-space: nowrap;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Buttons */
.btn-primary {
  background: var(--color-primary);
  color: var(--color-dark);
  font-weight: 700;
  padding: 12px 32px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-family: inherit;
  transition: filter 0.3s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  filter: brightness(1.1);
}

.btn-rounded {
  border-radius: 50px;
}

.btn-sm {
  padding: 10px 32px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  font-weight: 700;
  padding: 10px 32px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s;
}

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

/* Services Section */
.services {
  background: var(--color-dark-secondary);
  padding: 280px 0 220px;
}

.services h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 80px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--color-white);
  padding: 40px 24px 32px;
  border-radius: 12px;
  text-align: center;
  border-bottom: 5px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  color: var(--color-dark);
}

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

.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.service-card p {
  color: var(--color-text-light);
  font-size: 12px;
  margin-bottom: 24px;
  flex-grow: 1;
  line-height: 1.5;
}

/* Plans Section */
.plans-section {
  position: relative;
  padding: 100px 0 120px;
}

.plans-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.plans-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plans-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
}

.plans-section .container {
  position: relative;
  z-index: 1;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .plans-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 20px;
  }
  
  .plans-grid .plan-card {
    width: 100%;
  }
}

.plan-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid #e0e0e0;
  border-left: 4px solid var(--color-primary);
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan-card.featured {
  border: 2px solid var(--color-primary);
  border-left: 4px solid var(--color-primary);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.plan-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--color-dark);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 0 0 8px 8px;
}

.plan-badge-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: auto;
  z-index: 1;
  border-top-right-radius: 10px;
}

/* Diagonal Ribbon */
.ribbon-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  overflow: hidden;
  z-index: 10;
  pointer-events: none;
}

.ribbon {
  position: absolute;
  top: 24px;
  right: -35px;
  width: 150px;
  padding: 8px 0;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
  box-shadow: 
    0 0 10px rgba(0, 240, 200, 0.5),
    0 0 20px rgba(0, 240, 200, 0.3);
}

.ribbon::before,
.ribbon::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00f0c8, transparent);
  box-shadow: 0 0 10px #00f0c8, 0 0 20px #00f0c8;
}

.ribbon::before {
  top: 0;
}

.ribbon::after {
  bottom: 0;
}

.plan-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.plan-price .price-amount {
  font-size: 42px;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1;
}

.plan-price .price-promo {
  font-size: 42px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.plan-price .price-original {
  font-size: 20px;
  color: var(--color-text-light);
  text-decoration: line-through;
  border: 1px solid var(--color-primary);
  padding: 2px 6px;
  border-radius: 4px;
}

.plan-price .price-period {
  font-size: 14px;
  color: var(--color-text-light);
}

.price-period-line {
  font-size: 12px;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.plan-tagline {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.plan-subtitle {
  font-size: 12px;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.plan-subtitle strong {
  color: var(--color-primary);
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--color-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.plan-features li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--color-primary);
  margin-top: 2px;
}

.plan-included {
  margin-bottom: 20px;
}

.plan-included strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-dark);
  display: block;
  margin-bottom: 4px;
}

.plan-included p {
  font-size: 12px;
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.4;
}

.btn-plan {
  width: 100%;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  margin-top: auto;
}

/* Pricing Section */
.pricing {
  position: relative;
  min-height: 500px;
}

.pricing-gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(to right, var(--color-primary), var(--color-dark), var(--color-dark));
}

.pricing-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--color-primary);
}

.pricing-bg {
  position: absolute;
  inset: 0;
}

.pricing-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.7), transparent);
}

.pricing-content {
  position: relative;
  padding: 80px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.pricing-text {
  max-width: 420px;
}

.pricing-text h2 {
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.pricing-text p {
  color: var(--color-text-light);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.pricing-row.center {
  justify-content: center;
}

.price-card {
  background: var(--color-white);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--color-primary);
  width: 192px;
  text-align: center;
}

.price {
  font-size: 36px;
  font-weight: 900;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.plan-name {
  color: var(--color-text-light);
  font-size: 14px;
}

/* Fleet Section */
.fleet {
  height: 400px;
  position: relative;
  overflow: hidden;
}

.fleet > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.fleet:hover > img {
  transform: scale(1.05);
}

.fleet-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 35, 50, 0.6), transparent, transparent);
}

.fleet-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.fleet-text h3 {
  font-size: 40px;
  font-weight: 900;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 1.1;
}

.text-teal {
  color: var(--color-primary);
}

/* Reviews Section */
.reviews {
  background: #c8d5e0;
  padding: 48px 8px;
}

.reviews-container {
  max-width: 98%;
  margin: 0 auto;
  background: var(--color-dark-secondary);
  border-radius: 48px;
  padding: 64px 60px;
  overflow: hidden;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}

.reviews-title h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 8px;
}

.reviews-title p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

.reviews-nav {
  display: flex;
  gap: 12px;
}

.nav-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.nav-btn:hover {
  opacity: 0.7;
}

.nav-btn svg {
  width: 20px;
  height: 20px;
  color: var(--color-white);
}

.reviews-track {
  display: flex;
  gap: 48px;
  overflow-x: auto;
  padding-bottom: 40px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  position: relative;
  min-width: 340px;
  flex-shrink: 0;
}

.review-shadow {
  position: absolute;
  inset: 0;
  background: var(--color-primary);
  border-radius: 32px;
  transform: translate(10px, 10px);
  z-index: 0;
}

.review-content {
  position: relative;
  background: var(--color-white);
  padding: 32px;
  border-radius: 32px;
  border: 1px solid #f3f4f6;
  z-index: 1;
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.stars svg {
  width: 16px;
  height: 16px;
  color: var(--color-star);
}

.review-content h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.review-content .date {
  font-size: 12px;
  color: var(--color-text-light);
}

.service-type {
  font-size: 12px;
  font-weight: 900;
  color: var(--color-dark);
  text-transform: uppercase;
  margin: 20px 0 4px;
}

.review-content p {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.read-more {
  background: none;
  border: none;
  font-size: 14px;
  color: var(--color-text-light);
  text-decoration: underline;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  margin-top: 16px;
}

.reviews-rating {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.reviews-rating .rating-value {
  color: var(--color-white);
}

.reviews-rating a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
}

.reviews-rating a:hover {
  color: var(--color-primary);
}

/* Home Comfort Section */
.home-comfort-section {
  padding: 100px 8px;
  background: #f5f6f8;
}

.home-comfort-section .container {
  max-width: 98%;
  padding: 0 60px;
}

.home-comfort-section h2 {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  line-height: 1.15;
  margin-bottom: 60px;
}

.comfort-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding-top: 48px;
}

.comfort-feature {
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}

.comfort-feature:first-child {
  border-left: none;
  padding-left: 0;
}

.comfort-feature:last-child {
  padding-right: 0;
}

.comfort-icon {
  margin-bottom: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comfort-icon svg {
  width: 32px;
  height: 32px;
  stroke: #1a3a4a;
}

.comfort-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.comfort-feature h3 {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
}

.comfort-feature p {
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .comfort-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .comfort-feature {
    border-left: none;
    padding: 0;
  }
}

@media (max-width: 576px) {
  .comfort-features {
    grid-template-columns: 1fr;
  }
  
  .home-comfort-section h2 {
    font-size: 36px;
  }
}

/* Map Section */
.map-section {
  padding: 100px 0;
  background: #ffffff;
}

.map-section h2 {
  font-size: 48px;
  font-weight: 700;
  color: #1a3a4a;
  text-align: center;
  text-transform: none;
  letter-spacing: -1px;
  margin-bottom: 24px;
  line-height: 1.2;
}

.map-subtitle {
  max-width: 650px;
  margin: 0 auto 48px;
  text-align: center;
  color: #4a6a7a;
  font-size: 16px;
  line-height: 1.6;
}

.map-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.map-image {
  width: 100%;
  height: auto;
  display: block;
}

.city-pin {
  position: absolute;
  background: #1a3a4a;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transform: translateX(-50%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.city-pin::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #1a3a4a;
}

.city-pin:hover {
  transform: translateX(-50%) scale(1.1) translateY(-3px);
  background: var(--color-primary);
  color: #1a3a4a;
  box-shadow: 0 8px 20px rgba(0, 221, 179, 0.4);
}

.city-pin:hover::after {
  border-top-color: var(--color-primary);
}

.state-btn {
  position: absolute;
  background: #1a3a4a;
  color: white;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transform: translateX(-50%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

.state-btn::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #1a3a4a;
}

.state-btn:hover {
  transform: translateX(-50%) scale(1.1) translateY(-3px);
  background: var(--color-primary);
  color: #1a3a4a;
  box-shadow: 0 8px 20px rgba(0, 221, 179, 0.4);
}

.state-btn:hover::after {
  border-top-color: var(--color-primary);
}

.map-tooltip {
  position: absolute;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 10px 18px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  font-weight: 600;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  transform: translateX(-50%);
  z-index: 10;
  border-left: 3px solid var(--color-primary);
}

.map-tooltip.visible {
  opacity: 1;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  padding: 16px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--color-white);
  border-radius: 16px;
  padding: 32px;
  max-width: 400px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--color-text-light);
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--color-text);
}

.modal-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.modal-subtitle {
  color: var(--color-text-light);
  font-size: 14px;
  margin-bottom: 24px;
}

.cities-list {
  list-style: none;
}

.cities-list li {
  display: block;
  padding: 12px 0;
  color: var(--color-text);
  line-height: 1.5;
}

.office-address {
  color: #777;
  font-size: 14px;
  font-weight: 500;
}

.cities-list li::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Footer */
.footer {
  background: var(--color-dark);
  color: var(--color-white);
}

.footer-accent {
  height: 4px;
  background: var(--color-primary);
}

.footer-content {
  padding: 48px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 56px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4 {
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-links span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.social-links a {
  color: var(--color-white);
  transition: color 0.3s;
}

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

.social-links svg {
  width: 20px;
  height: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-content {
    flex-direction: column;
    text-align: center;
  }
  
  .pricing-text {
    max-width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .fleet-text h3 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-dark);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    display: none;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .hero-image {
    min-height: 45vh;
  }
  
  .hero-form-wrapper {
    background: #282a3b;
  }
  
  .request-card {
    margin-top: -120px;
    padding: 0 16px;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .request-card-body {
    padding: 24px 20px 32px;
    overflow: hidden;
  }
  
  .request-card-body h2 {
    font-size: 20px;
  }
  
  .request-card-body p {
    font-size: 12px;
    margin-bottom: 20px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .form-row {
    flex-direction: column;
    gap: 12px;
  }
  
  .form-group {
    max-width: 100%;
    width: 100%;
  }
  
  .form-disclaimer {
    text-align: center;
  }
  
  .btn-next,
  .multi-step-form button[type="submit"] {
    width: 100%;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-row {
    flex-direction: column;
    align-items: center;
  }
  
  .price-card {
    width: 100%;
    max-width: 250px;
  }
  
  .fleet {
    height: 300px;
  }
  
  .fleet-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
  
  .fleet-text h3 {
    font-size: 28px;
  }
  
  .reviews-container {
    padding: 32px 24px;
    border-radius: 24px;
  }
  
  .reviews-title h2 {
    font-size: 28px;
  }
  
  .review-card {
    min-width: 280px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-brand p {
    max-width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 12px 16px;
  }
  
  .nav-logo img {
    height: 36px;
  }
  
  .request-card {
    margin-top: -64px;
  }
  
  .reviews-header {
    flex-direction: column;
    gap: 16px;
  }
}
