/* ========== RESET & BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0d0d0d;
  --black-2: #1a1a1a;
  --black-3: #252525;
  --yellow: #f5c518;
  --yellow-dark: #d4a800;
  --yellow-light: #ffe066;
  --white: #ffffff;
  --white-off: #f5f5f5;
  --gray: #999;
  --gray-light: #ccc;
  --gray-dark: #555;
  --gradient-yellow: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  --gradient-dark: linear-gradient(135deg, var(--black), var(--black-2));
  --gradient-glow: linear-gradient(135deg, rgba(245, 197, 24, 0.15), rgba(212, 168, 0, 0.05));
  --shadow: 0 10px 40px rgba(0,0,0,0.3);
  --shadow-yellow: 0 10px 40px rgba(245, 197, 24, 0.3);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Tajawal', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

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

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--black-2);
}
::-webkit-scrollbar-thumb {
  background: var(--yellow);
  border-radius: 10px;
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(13, 13, 13, 0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}

.logo i {
  color: var(--yellow);
  font-size: 26px;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-yellow);
  transition: var(--transition);
  border-radius: 2px;
}

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

.nav-link:hover::after {
  width: 100%;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-yellow);
  color: var(--black);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
}

.header-phone:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-yellow);
}

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

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 4px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: radial-gradient(ellipse at 50% 0%, var(--black-2) 0%, var(--black) 70%);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--yellow);
  top: -200px;
  left: -200px;
  animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--yellow);
  bottom: -100px;
  right: -100px;
  animation: floatShape 10s ease-in-out infinite reverse;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: floatShape 12s ease-in-out infinite;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
}

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

.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-glow);
  border: 1px solid rgba(245, 197, 24, 0.2);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--yellow);
  margin-bottom: 24px;
}

.hero-badge i {
  font-size: 14px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}

.highlight {
  background: var(--gradient-yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: 'Tajawal', sans-serif;
}

.btn-primary {
  background: var(--gradient-yellow);
  color: var(--black);
  box-shadow: 0 8px 30px rgba(245, 197, 24, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(245, 197, 24, 0.4);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

.btn-large {
  padding: 16px 40px;
  font-size: 18px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--yellow);
}

.stat-label {
  font-size: 14px;
  color: var(--gray);
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.hero-car-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.car-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.15), transparent 70%);
  border-radius: 50%;
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
}

.hero-car-icon {
  font-size: 160px;
  color: var(--yellow);
  z-index: 1;
  animation: carBounce 2s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(245, 197, 24, 0.3));
}

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

.hero-road {
  position: absolute;
  bottom: 20%;
  left: 10%;
  right: 10%;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.road-line {
  flex: 1;
  height: 3px;
  background: var(--yellow);
  opacity: 0.3;
  border-radius: 2px;
  animation: roadMove 1s linear infinite;
}

.road-line:nth-child(2) { animation-delay: 0.2s; }
.road-line:nth-child(3) { animation-delay: 0.4s; }

@keyframes roadMove {
  0% { opacity: 0.1; }
  50% { opacity: 0.5; }
  100% { opacity: 0.1; }
}

.hero-info-cards {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 12px 24px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.info-card {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--white);
}

.info-card i {
  color: var(--yellow);
  font-size: 16px;
}

.info-card-arrow i {
  color: var(--yellow);
  font-size: 18px;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ========== SECTION SHARED ========== */
section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.section-header.right {
  text-align: right;
  margin-right: 0;
}

.section-subtitle {
  display: inline-block;
  color: var(--yellow);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  position: relative;
}

.section-subtitle::before,
.section-subtitle::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--yellow);
  vertical-align: middle;
  margin: 0 10px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--gray);
  font-size: 17px;
  line-height: 1.7;
}

/* ========== FEATURES ========== */
.features {
  background: var(--black);
}

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

.feature-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-yellow);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: right;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 197, 24, 0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gradient-glow);
  border: 1px solid rgba(245, 197, 24, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon i {
  font-size: 28px;
  color: var(--yellow);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}

/* ========== ROUTE ========== */
.route {
  background: var(--black-2);
}

.route-content {
  max-width: 700px;
  margin: 0 auto;
}

.route-map {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
}

.route-point {
  text-align: center;
  position: relative;
}

.route-dot {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 40px rgba(245, 197, 24, 0.2);
  position: relative;
  animation: dotPulse 3s ease-in-out infinite;
}

.route-point.end .route-dot {
  animation-delay: 0.5s;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(245, 197, 24, 0.2); }
  50% { box-shadow: 0 0 60px rgba(245, 197, 24, 0.4); }
}

.route-dot i {
  font-size: 32px;
  color: var(--black);
}

.route-info h4 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}

.route-info p {
  font-size: 14px;
  color: var(--gray);
}

.route-line-wrapper {
  flex: 1;
  max-width: 200px;
  min-width: 120px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.route-connector {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dark));
  position: relative;
  border-radius: 2px;
}

.car-moving {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  animation: moveCar 3s ease-in-out infinite;
}

.car-moving i {
  font-size: 22px;
  color: var(--yellow);
}

@keyframes moveCar {
  0% { left: 0; }
  50% { left: calc(100% - 22px); }
  100% { left: 0; }
}

.route-duration {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray);
}

.route-duration i {
  color: var(--yellow);
}

.route-arrow-circle {
  display: none;
}

/* ========== ABOUT ========== */
.about {
  background: var(--black);
}

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

.about-visual {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  width: fit-content;
}

.about-image-placeholder {
  width: 380px;
  height: 450px;
  background: linear-gradient(135deg, var(--black-3), var(--black-2));
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(245, 197, 24, 0.05), transparent 70%);
}

.about-image-placeholder i {
  font-size: 120px;
  color: var(--yellow);
  opacity: 0.6;
}

.about-exp-badge {
  position: absolute;
  bottom: -10px;
  left: -10px;
  background: var(--gradient-yellow);
  color: var(--black);
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(245, 197, 24, 0.3);
}

.exp-num {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.exp-label {
  font-size: 12px;
  font-weight: 700;
}

.about-floating-cards {
  position: absolute;
  top: 30px;
  right: -30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-card {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  backdrop-filter: blur(10px);
}

.float-card i {
  color: var(--yellow);
  font-size: 16px;
}

.about-desc {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 28px;
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
}

.detail-item i {
  color: var(--yellow);
  font-size: 18px;
  flex-shrink: 0;
}

/* ========== CONTACT ========== */
.contact {
  background: var(--black-2);
}

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

.main-card {
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.05), rgba(245, 197, 24, 0.01));
  border: 1px solid rgba(245, 197, 24, 0.12);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.04), transparent 60%);
  animation: rotateGlow 10s linear infinite;
}

@keyframes rotateGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.contact-phone-big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.contact-phone-big i {
  color: var(--yellow);
  font-size: 30px;
}

.contact-hint {
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.contact-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-info-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.contact-info-item:hover {
  border-color: rgba(245, 197, 24, 0.2);
  transform: translateY(-3px);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient-glow);
  border: 1px solid rgba(245, 197, 24, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  font-size: 20px;
  color: var(--yellow);
}

.contact-info-item h4 {
  font-size: 14px;
  color: var(--gray);
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-info-item p {
  font-size: 16px;
  font-weight: 700;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-logo i {
  color: var(--yellow);
}

.footer-brand p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 300px;
}

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

.footer-links a,
.footer-contact a {
  display: block;
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--yellow);
}

.footer-contact a,
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact i {
  color: var(--yellow);
  width: 16px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--gray-dark);
}

/* ========== FLOATING ACTIONS ========== */
.floating-actions {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  transition: var(--transition);
  animation: floatBtn 3s ease-in-out infinite;
}

.float-btn-call {
  background: var(--gradient-yellow);
  color: var(--black);
}

.float-btn-wa {
  background: #25d366;
  animation-delay: 0.5s;
}

.float-btn:hover {
  transform: scale(1.1);
}

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

/* ========== FADE IN ANIMATIONS ========== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-car-wrapper {
    max-width: 300px;
  }

  .hero-car-icon {
    font-size: 120px;
  }

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

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image-wrapper {
    margin: 0 auto;
  }

  .about-floating-cards {
    right: 0;
    left: auto;
  }

  .section-header.right {
    text-align: center;
  }

  .about-details {
    align-items: center;
  }

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

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

@media (max-width: 768px) {
  .header-phone span {
    display: none;
  }

  .header-phone {
    padding: 8px 12px;
  }

  .nav {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 40px 32px;
    gap: 24px;
    transition: var(--transition);
    border-left: 1px solid rgba(255,255,255,0.05);
  }

  .nav.active {
    right: 0;
  }

  .nav-link {
    font-size: 18px;
  }

  .menu-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-car-icon {
    font-size: 90px;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-num {
    font-size: 22px;
  }

  .hero-info-cards {
    padding: 10px 18px;
    font-size: 14px;
  }

  section {
    padding: 70px 0;
  }

  .section-header h2 {
    font-size: 30px;
  }

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

  .route-map {
    flex-direction: column;
    gap: 20px;
  }

  .route-line-wrapper {
    max-width: 100%;
    min-width: unset;
    flex-direction: row;
  }

  .route-connector {
    height: 2px;
    flex: 1;
  }

  .car-moving {
    animation-duration: 2s;
  }

  .about-image-placeholder {
    width: 280px;
    height: 340px;
  }

  .about-image-placeholder i {
    font-size: 80px;
  }

  .about-floating-cards {
    display: none;
  }

  .about-exp-badge {
    padding: 10px 16px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
  }

  .contact-info-cards {
    grid-template-columns: 1fr;
  }

  .main-card {
    padding: 32px 24px;
  }

  .contact-phone-big {
    font-size: 24px;
  }

  .contact-phone-big i {
    font-size: 22px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .footer-contact a,
  .footer-contact p {
    justify-content: center;
  }

  .floating-actions {
    bottom: 20px;
    left: 20px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .hero-stats {
    gap: 20px;
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-large {
    padding: 14px 32px;
    font-size: 16px;
  }
}
