/* ===== GLOBAL FALLBACKS FOR HOSTINGER ===== */
html {
  box-sizing: border-box;
  scroll-behavior: smooth; /* works in most modern browsers */
}

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

/* ===== COLOR VARIABLES WITH FALLBACK ===== */
:root {
  --brand: #111;
  --muted: #6b7280;
  --bg: #fafafa;
}

/* Fallback if var() fails */
body {
  color: #111;
  background: #fafafa;
}

/* =============================
   Robust fallbacks & supports
   Paste at the VERY TOP of style.css
   ============================= */

/* CSS variables (fallback values first) */
:root {
  /* fallback values in case var() is unsupported the first declaration below will still apply */
  --brand-fallback: #111;
  --muted-fallback: #6b7280;
  --bg-fallback: #fafafa;

  /* real variables */
  --brand: #111;
  --muted: #6b7280;
  --bg: #fafafa;
}

/* safe global box-sizing (Hostinger-safe pattern) */
html { box-sizing: border-box; }
body, body * { box-sizing: inherit; }

/* ========== H1 font-size: fallback then clamp() with supports ========== */
/* fallback for browsers that don't support clamp() */
h1 {
  font-size: 32px;           /* minimum sensible fallback */
  margin: 12px 0;
  line-height: 1.08;
}

/* if clamp() is supported, replace with responsive size */
@supports (font-size: clamp(32px, 4.5vw, 48px)) {
  h1 {
    font-size: clamp(32px, 4.5vw, 48px);
  }
}

/* ========== .sub color & max-width: provide a solid fallback then var() ========== */
/* fallback color first so older browsers use it */
.sub {
  color: #6b7280;   /* fallback color */
  max-width: 62ch;  /* safe: ch is widely supported */
}

/* then try to set via CSS variable (modern browsers) */
.sub {
  color: var(--muted, #6b7280); /* second param is fallback */
}

/* optional: force specificity if overwritten elsewhere (use sparingly) */
/* .sub { color: var(--muted, #6b7280) !important; } */

:root{--brand:#111;--muted:#6b7280;--bg:#fafafa}
html {
  box-sizing: border-box;
}

body,
body * {
  box-sizing: inherit;
}


body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Arial,sans-serif;margin:0;color:#111;background:#fff;line-height:1.5}
a{color:inherit}
img{max-width:100%;display:block}
.container {
  width: 92%;
  max-width: 1120px;
  margin: 0 auto;
}

.header{position:sticky;top:0;background:#fff;border-bottom:1px solid #eee;z-index:20}
.nav{display:flex;justify-content:space-between;align-items:center;padding:14px 0;gap:16px}
.menu{display:flex;gap:16px;list-style:none;margin:0;padding:0}
.menu a{text-decoration:none;padding:8px 10px;border-radius:8px}
.menu a:hover{background:#f3f4f6}
.lang-switch{display:flex;gap:6px}
.lang{border:1px solid #ddd;border-radius:999px;padding:6px 10px;background:#fff;cursor:pointer}
.lang.active{background:#111;color:#fff}
.hero{padding:72px 0;background:linear-gradient(0deg,rgba(255,255,255,.85),rgba(255,255,255,.85)), url('assets/img/hero.jpg') center/cover no-repeat}
.hero .tag{display:inline-block;padding:6px 10px;border-radius:999px;background:#111;color:#fff;font-size:12px}
h1{font-size:clamp(32px,4.5vw,48px);margin:12px 0}
.sub{color:var(--muted);max-width:62ch}
.cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}
.btn{display:inline-block;border:1px solid #111;padding:12px 16px;border-radius:12px;text-decoration:none}
.btn.primary{background:#111;color:#fff}
.section{padding:56px 0}
.section h2{font-size:clamp(22px,3.5vw,32px);margin:0 0 16px}
.grid{display:grid;gap:16px}
.cards{grid-template-columns:repeat(auto-fit,minmax(240px,1fr))}
.card{background:#fff;border:1px solid #eee;border-radius:14px;padding:16px;display:flex;gap:12px;align-items:flex-start}
.card .icon{width:36px;height:36px;border-radius:10px;border:1px solid #eee;display:grid;place-items:center;flex:0 0 auto}
.card h3{margin:4px 0 6px 0;font-size:18px}
.card p{margin:0;color:var(--muted)}
.steps .step{display:flex;gap:12px;align-items:flex-start}
.steps .num{width:32px;height:32px;border-radius:999px;border:1px solid #111;display:grid;place-items:center;font-weight:600}
.contact-grid{display:grid;grid-template-columns:2fr 1fr;gap:16px}
@media (max-width:900px){.contact-grid{grid-template-columns:1fr}}
input,textarea{width:100%;padding:12px;border:1px solid #e5e7eb;border-radius:10px;margin-top:6px}
.footer{border-top:1px solid #eee;padding:24px 0;color:var(--muted);margin-top:40px}
.socials{display:flex;gap:10px;align-items:center}
/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px; /* Distance from bottom */
  right: 20px;  /* Distance from right */
  width: 60px;
  height: 60px;
  background-color: #25d366; /* Official WhatsApp green */
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-size: 30px;
  z-index: 1000;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover Effect */
.whatsapp-float:hover {
  background-color: #1ebe5d; /* Darker green on hover */
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 26px;
    bottom: 15px;
    right: 15px;
  }
}

.map{border:0;width:100%;height:320px;border-radius:12px}
/* Car Showcase Section */
.car-showcase {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.car-showcase .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.car-cards {
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.car-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 20px;
  max-width: 320px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.car-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.car-card img {
  width: 100%;
  height: 200px;
  object-fit: cover; /* Ensures all images have the same height */
  border-radius: 8px;
  margin-bottom: 15px;
}

.car-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.car-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  flex-grow: 1;
}


.hero {
  padding: 80px 20px;
  background: #f8f8f8;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.hero-text {
  flex: 1 1 500px;
}

.hero-text .tag {
  display: inline-block;
  background: #ff4d4f;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-text .sub {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
}

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

.cta .btn {
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}

.cta .btn.primary {
  background: #ff4d4f;
  color: #fff;
}

.hero-image {
  flex: 1 1 500px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 30px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text .sub {
    font-size: 1rem;
  }

  .cta {
    justify-content: center;
  }
}
/* ===== PREMIUM REQUIREMENTS SECTION ===== */
.requirements {
  padding: 80px 20px;
  background: #f8f8f8;
  text-align: center;
}

.requirements .section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #111;
}

.requirements .section-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 40px;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  justify-items: center;
}

.req-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  max-width: 300px;
}

.req-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Icon wrapper */
.req-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin: 0 auto 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Icon image */
/* Icon wrapper */
.req-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin: 0 auto 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background: #f0f0f0; /* subtle background so icons stand out */
}

/* Icon image */
/* Icon wrapper */
.req-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;      /* keeps slightly rounded corners */
  margin: 0 auto 20px;
  overflow: hidden;          /* ensures image conforms to the round frame */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background: #f0f0f0;       /* subtle background for visibility */
}

/* Icon image */
.req-icon img {
  width: 100%;              /* fill the wrapper completely */
  height: 100%;
  object-fit: cover;         /* ensures the square image fills the rounded frame */
  display: block;
  transition: transform 0.3s ease;
}

/* Hover zoom effect */
.req-card:hover .req-icon img {
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .req-icon {
    width: 80px;
    height: 80px;
  }

  .req-icon img {
    width: 100%;
    height: 100%;
  }
}



/* Hover effect on image */
.req-card:hover .req-icon img {
  transform: scale(1.1);
}

.req-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #111;
}

.req-card p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .requirements {
    padding: 60px 10px;
  }

  .requirements .section-title {
    font-size: 2rem;
  }

  .req-card {
    padding: 20px 15px;
    max-width: 100%;
  }

  .req-icon {
    width: 80px;
    height: 80px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Language dropdown */
.lang-dropdown {
  position: relative;
}

.lang-btn {
  padding: 6px 14px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #ddd;
  cursor: pointer;
  font-weight: bold;
}

.lang-menu {
  position: absolute;
  top: 45px;
  right: 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  z-index: 999;
}

.lang-menu button {
  background: none;
  border: none;
  padding: 6px 10px;
  text-align: left;
  cursor: pointer;
  font-weight: bold;
  transition: 0.2s;
}

.lang-menu button:hover {
  background-color: #111;
  color: #fff;
}

.hidden {
  display: none;
}
/* General Section Styling */
.how-it-works {
  padding: 60px 20px 100px 20px; /* reduced top padding for better alignment */
  background: #f8f9fb;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.section-subtitle {
  color: #007bff;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
}

.section-title {
  font-size: 36px;
  margin-bottom: 50px; /* reduced bottom margin for tighter spacing */
  color: #222;
}

/* Timeline Layout */
.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  gap: 40px;
  flex-wrap: wrap;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  height: 4px;
  background: #007bff;
  z-index: 0;
  overflow: hidden;
}

.timeline::after {
  content: '';
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #007bff 25%, transparent 25%, transparent 50%, #007bff 50%, #007bff 75%, transparent 75%, transparent);
  background-size: 40px 4px;
  z-index: 1;
  animation: moveLine 2s linear infinite;
}

/* Animated line effect */
@keyframes moveLine {
  0% { background-position: 0 0; }
  100% { background-position: 40px 0; }
}

/* Timeline Step Styling */
.timeline-step {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  width: 180px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.timeline-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Step Icon Styling with Bounce Animation */
.step-icon {
  font-size: 36px;
  background: #007bff;
  color: #fff;
  width: 70px;
  height: 70px;
  line-height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  position: relative;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Step Text */
.timeline-step h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.timeline-step p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    align-items: center;
  }
  .timeline::before,
  .timeline::after {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: #007bff;
    animation: none;
  }
  .timeline-step {
    width: 250px;
    margin-bottom: 60px;
  }
}

.footer {
  background: #808080; /* keeps original site background */
  color: #000; /* text color */
  padding: 20px 0;
  font-family: Arial, sans-serif;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}

.footer p {
  margin: 0;
  font-size: 14px;
}

.footer .socials {
  display: flex;
  gap: 12px;
}

.footer .socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #0d47a1; /* default logo blue */
  color: white; /* icon color */
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer .socials a:hover {
  background-color: #064080; /* darker blue on hover */
  transform: scale(1.1);
}
/* Hero Section */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  color: #fff;
}

/* Overlay for readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* dark overlay */
  z-index: 1;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Subtitle */
.hero-content .sub {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.6;
  color: #f1f1f1;
}

/* Logos */
.platform-logos {
  margin: 30px 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.platform-logo {
  height: 50px;
}

/* CTA buttons */
.cta .btn {
  margin: 10px 10px 0 10px;
}
.menu li a {
  color: #000;        /* Black text */
  font-weight: bold;  /* Bold */
  font-size: 16px;    /* Slightly bigger, safe size */
  text-decoration: none;
}
/* Hide menu toggle on desktop */
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

/* Optional: ensure mobile menu looks good */
@media (max-width: 767px) {
  .menu {
    display: none;
    flex-direction: column;
  }
  .menu.show {
    display: flex;
  }
}
/* Benefits Section */
.benefits-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.section-header .section-subtitle {
  font-size: 16px;
  color: #555;
}

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

.benefit-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.benefit-content {
  padding: 20px;
}

.benefit-content h3 {
  font-size: 20px;
  color: #0078ff;
  margin-bottom: 8px;
}

.benefit-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 8px;
}

.seo-text {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
