/* ==============================================
   RYDER BOOKING PLATFORM - MAIN STYLES
   ============================================== */

:root {
  --primary: #000000;
  --secondary: #ffffff;
  --accent: #16a085;
  --accent-yellow: #f4c430;
  --accent-navy: #2c3e50;
  --dark: #1a1a2e;
  --light: #f8f9fa;
  --border: #e0e0e0;
  --text-dark: #333;
  --text-light: #666;
  --success: #06d6a0;
  --warning: #ffd700;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: white;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==============================================
   HEADER & NAVIGATION
   ============================================== */

.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 15px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-dark);
}

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

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--accent);
}

.dropdown {
  position: relative;
}

.dropdown button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

.dropdown button:hover {
  color: var(--accent);
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 12px 16px;
  color: var(--text-dark);
  text-decoration: none;
  transition: background 0.3s;
}

.dropdown-content a:hover {
  background: var(--light);
  color: var(--primary);
}

.service-tabs {
  display: flex;
  gap: 30px;
}

.tab-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: var(--text-light);
  transition: color 0.3s;
}

.tab-btn.active {
  color: var(--accent);
  font-weight: 600;
}

.tab-btn:hover {
  color: var(--accent);
}

.tab-btn .icon {
  font-size: 1.2rem;
}

.contact-section {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.contact-number {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.contact-number:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
}

/* ==============================================
   HERO SECTION
   ============================================== */

.hero {
  background: linear-gradient(135deg, #f5f7ff 0%, #f0f3ff 100%);
  padding: 80px 0 150px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-text .highlight {
  color: var(--accent);
  display: inline-block;
  position: relative;
}

.hero-text .highlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  opacity: 0.3;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 500px;
  line-height: 1.7;
  font-weight: 400;
}

.app-download {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.download-btn-image {
  display: inline-block;
  transition: all 0.3s ease;
}

.download-btn-image:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.download-img {
  height: 150px;
  width: auto;
  display: block;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
}

.download-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(22, 160, 133, 0.3);
}

.download-icon {
  font-size: 2rem;
}

.download-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.download-label {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.9;
}

.download-store {
  font-size: 1.1rem;
  font-weight: 700;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background: #0f8970;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(22, 160, 133, 0.3);
}

.btn-secondary {
  background: white;
  color: var(--text-dark);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cab-illustration {
  width: 600px;
  height: auto;
}

.cab-illustration svg {
  width: 100%;
  height: 100%;
  animation: float 3s ease-in-out infinite;
}

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

.support-badge {
  position: absolute;
  top: 40px;
  right: 40px;
  background: white;
  border-radius: 12px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.badge-icon {
  font-size: 1.8rem;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-weight: 700;
  font-size: 1.2rem;
}

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

.banner-img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ==============================================
   BOOKING WIDGET
   ============================================== */

.booking-widget {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  margin-top: -100px;
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.booking-widget h3 {
  margin-bottom: 25px;
  font-size: 1.3rem;
  color: var(--text-dark);
  font-weight: 600;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 60px;
  gap: 20px;
  align-items: flex-end;
}

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

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.form-group label .icon {
  font-size: 1.2rem;
}

.form-group input {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(22, 160, 133, 0.1);
}

.search-btn {
  width: 60px;
  height: 48px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn:hover {
  background: #0f8970;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(22, 160, 133, 0.3);
}

/* ==============================================
   OFFERS CAROUSEL
   ============================================== */

.offers {
  padding: 60px 0;
  background: white;
}

.carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.offer-card {
  padding: 30px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.offer-card h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.offer-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.offer-card-1 {
  background: linear-gradient(135deg, #ffe5cc 0%, #ffe0c0 100%);
}

.offer-card {
  background: linear-gradient(135deg, #e8e4ff 0%, #f0e8ff 100%);
}

.offer-card-4 {
  background: linear-gradient(135deg, #e8f8ff 0%, #e0f5ff 100%);
}

.offer-image {
  font-size: 2rem;
  margin-bottom: 15px;
}

.offer-badge {
  display: inline-block;
  background: #1a1a2e;
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.valid-till {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
}

.carousel-btn {
  background: rgba(0, 0, 0, 0.3);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.5);
}

/* ==============================================
   WHY CHOOSE SECTION
   ============================================== */

.why-section {
  padding: 80px 0;
  background: white;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.why-content .highlight {
  color: var(--primary);
}

.why-content > p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 500px;
}

.decoration {
  font-size: 3rem;
  margin-bottom: 20px;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.feature {
  text-align: left;
}

.feature-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.feature h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-weight: 600;
}

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

.cab-image-box {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.cab-image-box svg {
  width: 100%;
  height: auto;
}

/* ==============================================
   FEATURED SECTION
   ============================================== */

.featured {
  padding: 80px 0;
  background: var(--light);
}

.featured h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.featured-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.featured-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
  font-weight: 700;
}

.featured-card h3 {
  padding: 20px 20px 10px;
  font-size: 1.2rem;
  color: var(--text-dark);
  font-weight: 600;
}

.featured-card .description {
  padding: 0 20px 20px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ==============================================
   PARTNERS SECTION
   ============================================== */

.partners {
  padding: 60px 0;
  background: white;
  text-align: center;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partner {
  color: var(--text-light);
  font-weight: 600;
  font-size: 1rem;
}

/* ==============================================
   TESTIMONIALS SECTION
   ============================================== */

.testimonials {
  padding: 80px 0;
  background: white;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 50px;
  font-weight: 400;
  line-height: 1.6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid var(--border);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.quote-icon {
  font-size: 4rem;
  color: var(--accent);
  line-height: 1;
  opacity: 0.2;
  position: absolute;
  top: 20px;
  right: 30px;
  font-family: "Inter", sans-serif;
}

.testimonial-card .stars {
  font-size: 1.1rem;
  margin-bottom: 20px;
  display: block;
}

.review-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 25px;
  min-height: 100px;
  font-weight: 400;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.reviewer-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.reviewer-info h4 {
  font-size: 1.1rem;
  margin: 0 0 3px 0;
  color: var(--text-dark);
  font-weight: 600;
}

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

/* ==============================================
   EXPLORE SECTION
   ============================================== */

.explore {
  padding: 80px 0;
  background: white;
}

.explore h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
}

.city-card {
  text-align: center;
  cursor: pointer;
}

.city-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

.city-card:hover .city-image {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.city-card h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text-dark);
  font-weight: 600;
}

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

/* ==============================================
   SUPPORT & TRUST SECTION
   ============================================== */

.support-trust {
  padding: 80px 0;
  background: var(--light);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.support-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.support-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 15px;
}

.support-card h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.support-card p {
  color: var(--text-light);
  margin: 0;
}

.download-section {
  text-align: center;
  background: white;
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.download-section h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-weight: 600;
}

.download-section > p:first-of-type {
  color: var(--text-light);
  margin-bottom: 30px;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.download-img-footer {
  height: 150px;
  width: auto;
  display: block;
  transition: all 0.3s ease;
}

.download-section .download-btn-image:hover .download-img-footer {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--dark);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.download-btn.apple {
  background: var(--dark);
}

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

/* ==============================================
   FOOTER
   ============================================== */

.footer {
  background: var(--dark);
  color: white;
  padding: 60px 0 30px;
}

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

.footer-brand {
  max-width: 350px;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  margin-bottom: 15px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-section h4 {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: white;
  font-weight: 600;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

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

.footer-section li {
  margin-bottom: 12px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: var(--accent);
}

.contact-info {
  margin-top: 20px;
}

.contact-info p {
  margin: 10px 0;
}

.contact-info a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: var(--accent);
}

.footer-app-link {
  display: inline-block;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.footer-app-link:hover {
  transform: translateY(-3px);
}

.footer-app-badge {
  height: 50px;
  width: auto;
}

.social-section {
  margin-top: 20px;
}

.social-section h4 {
  margin-bottom: 15px;
  font-size: 1rem;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.9rem;
}

/* ==============================================
   RESPONSIVE DESIGN
   ============================================== */

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .nav-menu,
  .service-tabs {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    padding: 10px 0;
  }

  .navbar .container {
    gap: 15px;
  }

  .contact-section {
    margin-left: auto;
  }

  .logo-img {
    height: 45px;
  }

  .contact-number {
    font-size: 0.8rem;
    padding: 8px 14px;
    gap: 5px;
  }

  .user-section {
    margin-left: 0;
  }

  .hero {
    padding: 40px 0 70px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-text {
    text-align: left;
  }

  .hero-text h1 {
    font-size: 1.75rem;
    line-height: 1.35;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  .hero-text p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 400;
  }

  .cab-illustration {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    order: 2;
  }

  .banner-img {
    max-width: 100%;
    width: 100%;
  }

  .app-download {
    margin-top: 25px;
    justify-content: center;
  }

  .download-img {
    height: 90px;
    width: auto;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .search-btn {
    width: 100%;
    height: 48px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-content {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .image-placeholder {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
  }

  .cities-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .city-card {
    padding: 15px 10px;
  }

  .city-image {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .carousel {
    grid-template-columns: 1fr;
  }
}

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

  .navbar {
    padding: 8px 0;
  }

  .navbar .container {
    gap: 10px;
  }

  .logo-img {
    height: 40px;
  }

  .contact-number {
    font-size: 0.65rem;
    padding: 6px 8px;
    gap: 3px;
    white-space: nowrap;
  }

  .hero {
    padding: 30px 0 50px;
  }

  .hero-text h1 {
    font-size: 1.45rem;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  .hero-text p {
    font-size: 0.875rem;
    margin-bottom: 15px;
    line-height: 1.6;
    font-weight: 400;
  }

  .cab-illustration {
    max-width: 100%;
  }

  .download-img {
    height: 80px;
  }

  .app-download {
    margin-top: 20px;
    justify-content: center;
  }

  .booking-widget {
    padding: 20px;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .city-card {
    padding: 12px 8px;
  }

  .city-image {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .city-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .download-buttons {
    flex-direction: column;
  }

  .download-btn {
    width: 100%;
    justify-content: center;
  }

  .download-img-footer {
    height: 45px;
  }

  .partner-logos {
    gap: 20px;
  }

  .why-content h2 {
    font-size: 1.65rem;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  .featured h2,
  .explore h2 {
    font-size: 1.65rem;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  .section-title {
    font-size: 1.65rem;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
