*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1f2933;
  background-color: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
}

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

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: .5px;
}
.logo span {
  color: #06b6d4;
}

.main-nav {
  display: flex;
  gap: 24px;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #334155;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #06b6d4;
  transition: width .2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* Mobile nav toggle */
.mobile-menu {
  display: none;
  font-size: 1.3rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 8px 16px 16px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.12);
}
.mobile-nav a {
  padding: 8px 0;
  color: #334155;
  font-weight: 500;
}

/* Hero */
.hero {
  position: relative;
  height: 70vh;
  min-height: 420px;
  color: #ffffff;
  overflow: hidden;
}

.hero-slider {
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1s ease, transform 8s ease;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.2));
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1.05);
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
}

.hero-content h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}
.hero-content p {
  font-size: 1rem;
  max-width: 480px;
  margin-bottom: 20px;
}

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.9);
  cursor: pointer;
  transition: all .2s ease;
}
.hero-dot.active {
  width: 24px;
  background: #06b6d4;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(226, 232, 240, 0.9);
  color: #0f172a;
  background: rgba(248, 250, 252, 0.9);
}
.btn.primary {
  background: linear-gradient(135deg, #06b6d4, #0ea5e9);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(8, 47, 73, 0.35);
}
.btn.outline {
  background: transparent;
  color: #e2e8f0;
  border-color: rgba(148, 163, 184, 0.7);
}
.btn.small {
  padding: 7px 14px;
  font-size: 0.8rem;
}

/* Sections */
.section {
  padding: 60px 0;
}
.section.alt {
  background: #f8fafc;
}
.section-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 32px;
}

/* Grid */
.grid-3 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Cards */
.feature-card,
.vehicle-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.06);
}
.feature-card i {
  font-size: 1.6rem;
  color: #06b6d4;
  margin-bottom: 8px;
}
.feature-card h3,
.vehicle-card h3 {
  margin: 8px 0;
  font-size: 1.05rem;
}
.vehicle-card img {
  border-radius: 12px;
  margin-bottom: 10px;
}

/* Testimonials */
.testimonial-slider {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.testimonial {
  display: none;
}
.testimonial.active {
  display: block;
}
.testimonial p {
  font-style: italic;
  margin-bottom: 12px;
}
.testimonial span {
  font-weight: 600;
  color: #0f172a;
}

/* CTA */
.cta {
  padding: 50px 0 60px;
  background: radial-gradient(circle at top left, #0f172a, #020617);
  color: #e2e8f0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cta-inner h2 {
  margin: 0 0 6px;
}
.cta-inner p {
  margin: 0 0 10px;
}

/* Offer box */
.offer-box {
  position: fixed;
  right: 18px;
  top: 140px;
  width: 240px;
  padding: 16px 18px;
  background: #06b6d4;
  color: #0f172a;
  border-radius: 16px 0 0 16px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.4);
  animation: offerSlideIn .9s ease-out;
  z-index: 40;
}
.offer-title {
  font-weight: 700;
  margin: 0 0 4px;
}
.offer-text {
  margin: 0 0 10px;
  font-size: 0.86rem;
}

@keyframes offerSlideIn {
  from { transform: translateX(120%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

/* Footer */
.site-footer {
  background: #020617;
  color: #cbd5f5;
  padding-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1fr;
  gap: 24px;
  padding-bottom: 20px;
}
.site-footer h3,
.site-footer h4 {
  margin-top: 0;
}
.site-footer a {
  color: #e2e8f0;
  font-size: 0.9rem;
}
.footer-bottom {
  border-top: 1px solid rgba(51, 65, 85, 0.9);
  text-align: center;
  padding: 14px 0 18px;
  font-size: 0.8rem;
}
.footer-bottom a {
  color: #38bdf8;
}

/* WhatsApp floating btn */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.7rem;
  box-shadow: 0 15px 35px rgba(22, 163, 74, 0.6);
  z-index: 50;
}

/* Content pages */
.page-hero {
  padding: 80px 0 40px;
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #e5e7eb;
  text-align: center;
}
.page-hero h1 {
  margin: 0 0 8px;
}
.page-hero p {
  margin: 0;
  font-size: 0.95rem;
  opacity: .9;
}

.page-section {
  padding: 40px 0 60px;
}

/* Forms */
form.contact-form {
  max-width: 520px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.contact-form input,
.contact-form textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-family: inherit;
  resize: vertical;
}
.contact-form textarea {
  min-height: 120px;
}
.contact-form button {
  border: none;
  cursor: pointer;
}

/* Services cards */
.services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}
.service-card h3 {
  margin-top: 0;
}
.service-card ul {
  padding-left: 18px;
  margin: 8px 0 0;
  font-size: 0.9rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.gallery-grid img {
  border-radius: 12px;
  height: 160px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 960px) {
  .grid-3,
  .footer-grid,
  .services-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .main-nav {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-3,
  .footer-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero {
    min-height: 380px;
  }
}


/* Logo image */
.logo img {
  height: 52px;
  width: auto;
  display: block;
}
@media (max-width: 720px) {
  .logo img {
    height: 44px;
  }
}
