@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
}

body{
  background:#f8fafc;
  color:#1e293b;
}

/* NAVBAR */
.navbar{
  display:flex;
  align-items:center;
  padding:18px 60px;
  background:rgba(10,10,10,0.95);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,0.08);
  position:sticky;
  top:0;
  z-index:1000;
}

/* LOGO */
.logo{
  font-size:26px;
  font-weight:700;
  color:white;
  
}

/* NAV CENTER */
.navbar nav{
  flex:1;
  display:flex;
  justify-content:center;
  align-items:center;
}

/* NAV LINKS */
.navbar nav a{
  color:#cbd5e1;
  margin:0 18px;
  text-decoration:none;
  font-weight:500;
  position:relative;
  transition:0.3s;
}

.navbar nav a:hover{
  color:white;
}

/* RIGHT SIDE FIX */
.nav-right{
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:nowrap;        /* 🔥 wrap band */
}

/* CONTACT TEXT FIX */
.contact-info{
  color:#94a3b8;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:6px;
  white-space:nowrap;      /* 🔥 ek line me rakhega */
}
/* 🔥 DEFAULT (DESKTOP) - MOBILE CONTACT HIDE */
.mobile-contact{
  display:none;
}

/* COMMON BUTTON STYLE */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 20px;
  border-radius:30px;
  font-size:14px;
  font-weight:500;
  text-decoration:none;
  transition:all 0.3s ease;
  position:relative;
  overflow:hidden;
  letter-spacing:0.3px;
}

/* ICON SIZE */
.btn i{
  font-size:14px;
}

/* CALL BUTTON (PREMIUM BLUE GLASS LOOK) */
.call-btn{
  background:linear-gradient(135deg,#2563eb,#1e40af);
  color:white;
  box-shadow:0 6px 18px rgba(37,99,235,0.5);
  border:1px solid rgba(255,255,255,0.1);
}


.call-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 35px rgba(37,99,235,0.8);
}

/* WHATSAPP BUTTON (ENHANCED GLOW) */
.whatsapp-btn{
  background:linear-gradient(135deg,#25D366,#16a34a);
  color:white;
  box-shadow:0 6px 18px rgba(37,211,102,0.5);
}

.whatsapp-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 35px rgba(37,211,102,0.9);
}


/* PREMIUM SHINE EFFECT */
.btn::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,0.4),transparent);
  transition:0.6s;
}

.btn:hover::before{
  left:100%;
}

/* EXTRA SMOOTH CLICK FEEL */
.btn:active{
  transform:scale(0.96);
}
/* HERO */
.hero{
  width:100vw;        /* full screen width */
  height:100vh;
  margin:0;
  padding:0;
  overflow:hidden;
}
.hero img{
  width:100%;
  height:100%;
  object-fit:cover;   /* full cover karega */
  display:block;
}



/* SECTION COMMON */
section{
  padding:80px 60px;
}

h2{
  font-size:32px;
  text-align:center;
  margin-bottom:40px;
  font-weight:700;
  color:#111827;
}

/* FEATURES */
.feature-container{
  display:flex;
  justify-content:center;
  gap:25px;
}

.feature{
  background:white;
  padding:25px;
  border-radius:12px;
  width:260px;
  text-align:center;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  transition:0.3s;
}

.feature:hover{
  transform:translateY(-8px);
}

/* CARS */
.car-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
}

.card{
  background:white;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 5px 25px rgba(0,0,0,0.08);
  transition:0.3s;
}

.card:hover{
  transform:translateY(-10px);
}

.card img{
  width:100%;
  height:180px;
  object-fit:cover;
}

.card h3{
  margin:15px;
}

.card p{
  margin:0 15px;
  color:#64748b;
}

.card button{
  margin:15px;
  padding:10px;
  border:none;
  background:#111827;
  color:white;
  border-radius:8px;
  cursor:pointer;
}

/* PRICING */
.pricing-container{
  display:flex;
  justify-content:center;
  gap:25px;
}

.plan{
  background:white;
  padding:30px;
  border-radius:12px;
  width:260px;
  text-align:center;
  box-shadow:0 5px 25px rgba(0,0,0,0.08);
}

.plan h3{
  margin-bottom:10px;
}

.plan p{
  font-size:22px;
  font-weight:600;
  color:#111827;
  white-space: nowrap;
}

.plan ul{
  list-style:none;
  margin:20px 0;
}

.plan li{
  margin:8px 0;
  color:#64748b;
}

.plan button{
  padding:10px 20px;
  border:none;
  background:#111827;
  color:white;
  border-radius:8px;
}

/* HIGHLIGHT PLAN */
.highlight{
  border:2px solid #111827;
}

/* HOW IT WORKS */
.steps{
  display:flex;
  justify-content:center;
  gap:25px;
}

.step{
  background:white;
  padding:25px;
  border-radius:12px;
  width:260px;
  text-align:center;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

/* TESTIMONIALS */
.testimonials{
  background:#111827;
  color:white;
}

.review-box{
  display:flex;
  justify-content:center;
  gap:25px;
}

.review{
  background:#1f2937;
  padding:25px;
  border-radius:12px;
  width:260px;
  text-align:center;
}

/* APP */
.app{
  background:#111827;
  color:white;
  text-align:center;
}

.app button{
  margin-top:20px;
  padding:12px 25px;
  border:none;
  background:white;
  color:#111827;
  border-radius:8px;
}

.contact-info{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:12px;
  font-size:15px;
  color:#cbd5e1;

  /* clean box look */
  background:rgba(255,255,255,0.05);
  padding:10px 14px;
  border-radius:8px;
  width:fit-content;

  border:1px solid rgba(255,255,255,0.08);
  transition:0.3s;
}

/* ICON COLOR */
.contact-info i{
  color:#3b82f6;
  font-size:14px;
}

/* HOVER */
.contact-info:hover{
  background:rgba(255,255,255,0.08);
  transform:translateX(3px);
}
/* ABOUT SECTION */
.about{
  padding:80px 60px;
  background:#f8fafc;
  text-align:center;
}

/* CONTAINER */
.about-container{
  max-width:1000px;
  margin:auto;
}

/* TEXT */
.about-text{
  margin-top:15px;
  color:#64748b;
  font-size:16px;
  line-height:1.6;
}

/* DETAILS GRID */
.about-details{
  margin-top:40px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

/* CARD */
.about-card{
  background:white;
  padding:20px;
  border-radius:12px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  transition:0.3s;
}

/* HOVER EFFECT */
.about-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* TITLE */
.about-card h4{
  margin-bottom:8px;
  color:#111827;
}

/* TEXT */
.about-card p{
  color:#64748b;
  font-size:14px;
}

/* PRIVACY SECTION */
.privacy{
  padding:70px 20px;
  background:#f8fafc;
}

/* CONTAINER */
.privacy-container{
  max-width:900px;
  margin:auto;
}

/* HEADING */
.privacy h2{
  text-align:center;
  font-size:28px;
  margin-bottom:20px;
  color:#111827;
}

/* INTRO */
.intro{
  text-align:center;
  color:#64748b;
  margin-bottom:30px;
  line-height:1.6;
}

/* SUBHEADINGS */
.privacy h3{
  margin-top:25px;
  margin-bottom:10px;
  color:#1e293b;
  font-size:18px;
}

/* LIST */
.privacy ul{
  padding-left:20px;
  margin-bottom:15px;
}

.privacy li{
  margin-bottom:8px;
  color:#475569;
  line-height:1.5;
}

/* PARAGRAPH */
.privacy p{
  color:#475569;
  line-height:1.6;
}

/* FINAL LINE */
.secure{
  margin-top:20px;
  font-weight:500;
  color:#111827;
}

/* REFUND SECTION */
.refund{
  padding:70px 20px;
  background:#f8fafc;
}

/* CONTAINER */
.refund-container{
  max-width:950px;
  margin:auto;
}

/* HEADING */
.refund h2{
  text-align:center;
  font-size:28px;
  margin-bottom:20px;
  color:#111827;
}

/* INTRO */
.refund .intro{
  text-align:center;
  color:#64748b;
  margin-bottom:30px;
}

/* BOX */
.refund-box{
  background:white;
  padding:20px;
  border-radius:12px;
  margin-bottom:20px;
  border:1px solid #e5e7eb;
  transition:0.3s;
}

/* HOVER */
.refund-box:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* SUBHEAD */
.refund-box h3{
  margin-bottom:10px;
  color:#1e293b;
}

/* LIST */
.refund-box ul{
  padding-left:18px;
}

.refund-box li{
  margin-bottom:6px;
  color:#475569;
}

/* TERMS SECTION */
.terms{
  padding:70px 20px;
  background:#ffffff;
}

/* CONTAINER */
.terms-container{
  max-width:950px;
  margin:auto;
}

/* HEADING */
.terms h2{
  text-align:center;
  font-size:28px;
  margin-bottom:20px;
  color:#111827;
}

/* INTRO */
.intro{
  text-align:center;
  color:#64748b;
  margin-bottom:30px;
}

/* BOX STYLE */
.term-box{
  background:#f9fafb;
  padding:20px;
  border-radius:12px;
  margin-bottom:20px;
  border:1px solid #e5e7eb;
  transition:0.3s;
}

/* HOVER EFFECT */
.term-box:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* SUBHEADINGS */
.term-box h3{
  margin-bottom:10px;
  color:#1e293b;
}

/* LIST */
.term-box ul{
  padding-left:18px;
}

.term-box li{
  margin-bottom:6px;
  color:#475569;
}

/* TEXT */
.term-box p{
  color:#475569;
  margin-bottom:10px;
}
/*disclaimer */
.disclaimer{
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.disclaimer-container{
  max-width:800px;
}
/* CONTACT */
/*left side */
.contact-left p{
  margin-bottom:30px;
}

/* RIGHT SIDE NEW */
.contact-right{
  flex:1;
  background:linear-gradient(135deg,#020617,#0f172a);
  padding:40px;
  border-radius:20px;
  text-align:center;
  box-shadow:0 20px 60px rgba(0,0,0,0.6);
  border:1px solid rgba(255,255,255,0.08);
}

/* TEXT */
.small-text{
  color:#94a3b8;
  margin-bottom:25px;
}

/* BUTTON GROUP */
.btn-group{
  display:flex;
  flex-direction:column;
  gap:15px;
}

/* BIG BUTTON */
.contact-btn{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  padding:15px;
  border-radius:12px;
  font-size:16px;
  font-weight:600;
  text-decoration:none;
  transition:0.3s;
}

/* CALL BUTTON */
.contact-btn.call{
  background:linear-gradient(135deg,#2563eb,#1e40af);
  color:white;
  box-shadow:0 10px 30px rgba(37,99,235,0.5);
}

.contact-btn.call:hover{
  transform:translateY(-3px);
}

/* WHATSAPP */
.contact-btn.whatsapp{
  background:linear-gradient(135deg,#25D366,#16a34a);
  color:white;
  box-shadow:0 10px 30px rgba(37,211,102,0.5);
}

.contact-btn.whatsapp:hover{
  transform:translateY(-3px);
}

/* TRUST POINTS */
.trust{
  margin-top:25px;
  color:#cbd5e1;
  font-size:14px;
}

.trust p{
  margin:5px 0;
}
/* FOOTER */
footer{
  background:#111827;
  color:#94a3b8;
  text-align:center;
  padding:25px;
}
.footer-links a{
  color:white;
  margin:0 18px;
  text-decoration:none;
  font-weight:500;
  position:relative;
  transition:0.3s;
}

/* =========================
   🍪 COOKIES SECTION STYLE
========================= */

.privacy h3{
  margin-top:30px;
  margin-bottom:10px;
  color:#111827;
  font-size:20px;
}

/* Sub headings (H4) */
.privacy h4{
  margin-top:20px;
  margin-bottom:8px;
  color:#1f2937;
  font-size:16px;
  font-weight:600;
}

/* Paragraph spacing improvement */
.privacy p{
  margin-bottom:12px;
  line-height:1.7;
  color:#475569;
}

/* UL list spacing */
.privacy ul{
  margin:10px 0 15px 20px;
}

.privacy ul li{
  margin-bottom:8px;
  line-height:1.6;
}

/* 🍪 Cookies block highlight feel */
.privacy h3:nth-of-type(5){
  margin-top:40px;
  padding-top:15px;
  border-top:2px solid #e5e7eb;
}

/* LINKS inside cookies section */
.privacy a{
  color:#2563eb;
  text-decoration:none;
  font-weight:500;
}

.privacy a:hover{
  text-decoration:underline;
}

/* FINAL SECURITY NOTE */
.secure{
  margin-top:25px;
  padding:15px;
  background:#f1f5f9;
  border-left:4px solid #2563eb;
  border-radius:6px;
  color:#111827;
  font-weight:500;
}

/* =========================
   💰 SECURITY DEPOSIT TABLE
========================= */

.deposit-table{
  width:100%;
  border-collapse:collapse;
  margin-top:15px;
  background:#ffffff;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

/* HEADER */
.deposit-table thead{
  background:#111827;
  color:white;
}

.deposit-table th,
.deposit-table td{
  padding:12px 15px;
  text-align:left;
  font-size:14px;
}

/* ROWS */
.deposit-table tbody tr{
  border-bottom:1px solid #e5e7eb;
  transition:0.3s;
}

.deposit-table tbody tr:hover{
  background:#f1f5f9;
}

/* LAST BORDER REMOVE */
.deposit-table tbody tr:last-child{
  border-bottom:none;
}

/* MOBILE RESPONSIVE TABLE */
@media (max-width:768px){

  .deposit-table th,
  .deposit-table td{
    font-size:13px;
    padding:10px;
  }
}

/* =========================
   📱 TABLET (<= 992px)
========================= */
@media (max-width: 992px){

  section{
    padding:60px 25px;
  }

  .feature-container,
  .pricing-container,
  .steps,
  .review-box{
    flex-wrap:wrap;
    justify-content:center;
  }

  .car-grid{
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  }
}

/* =========================
   📱 MOBILE (<= 768px)
========================= */
@media (max-width: 768px){

  /* NAVBAR */
  .navbar{
    flex-wrap:wrap;
    padding:12px 18px;
  }

  .navbar nav{
    display:none;
    flex-direction:column;
    width:100%;
    background:#111827;
    margin-top:15px;
    padding:15px 0;
    border-radius:10px;
  }

  .navbar nav.active{
    display:flex;
  }

  .navbar nav a{
    margin:10px 0;
    text-align:center;
  }

  .hamburger{
    display:flex;
  }

  .nav-right{
    display:none;
  }

  /* HERO */
  .hero{
    height:60vh;
  }

  /* SECTION SPACING */
  section{
    padding:50px 20px;
  }

  h2{
    font-size:24px;
  }

  /* FLEX TO STACK */
  .feature-container,
  .pricing-container,
  .steps,
  .review-box{
    flex-direction:column;
    align-items:center;
  }

  /* CARDS */
  .feature,
  .card,
  .plan,
  .step,
  .review,
  .about-card{
    width:100%;
    max-width:320px;
  }

  /* GRID FIX */
  .car-grid{
    grid-template-columns:1fr;
  }

  /* FOOTER */
  .footer-links{
    flex-direction:column;
    gap:10px;
  }
}

/* =========================
   📱 SMALL MOBILE (<= 480px)
========================= */
@media (max-width: 480px){

  .logo{
    font-size:20px;
  }

  .navbar{
    padding:10px 12px;
  }

  .btn{
    padding:8px 14px;
    font-size:13px;
  }

  .contact-info{
    font-size:12px;
  }

  h2{
    font-size:20px;
  }

  .hero{
    height:50vh;
  }

  .card img{
    height:150px;
  }
}
/* DEFAULT HIDE */
.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  z-index:2000;
}

.hamburger span{
  width:28px;
  height:3px;
  background:white;
  border-radius:3px;
}

/* NAVBAR FLEX FIX */
.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 50px;
  position:sticky;
  top:0;
  background:#0b0f19;
}

/* LOGO */
.logo{
  font-size:24px;
  font-weight:700;
  color:white;
  white-space:nowrap;
}

/* CONTACT INFO NEXT TO LOGO */
.nav-info{
  display:flex;
  gap:15px;
  align-items:center;
}

.contact-info{
  color:#cbd5e1;
  font-size:14px;
  white-space:nowrap;
}

/* NAV LINKS CENTER */
.navbar nav{
  display:flex;
  align-items:center;
  gap:18px;
}

/* HAMBURGER RIGHT SIDE */
.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  margin-left:20px;
}

.hamburger span{
  width:28px;
  height:3px;
  background:white;
  border-radius:3px;
}

/* =========================
   📱 MOBILE
========================= */
@media (max-width: 768px){

  .navbar{
    padding:12px 18px;
  }

  /* hide nav links */
  .navbar nav{
    display:none;
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    flex-direction:column;
    background:#111827;
    padding:15px 0;
  }

  .navbar nav.active{
    display:flex;
  }

  /* hamburger RIGHT visible */
  .hamburger{
    display:flex;
    margin-left:auto;   /* 🔥 RIGHT PUSH */
  }

  /* hide contact info on mobile (clean UI) */
  .nav-info{
    display:none;
  }
}
/* hide mobile contact by default (desktop) */
.mobile-contact{
  display:none;
  flex-direction:column;
  gap:8px;
  margin:15px 0;
  color:#cbd5e1;
  font-size:14px;
}

/* ================= MOBILE ================= */
@media (max-width:768px){

  /* show hamburger nav */
  .navbar nav{
    display:none;
    flex-direction:column;
    width:100%;
    background:#111827;
    position:absolute;
    top:70px;
    left:0;
    padding:20px 0;
  }

  .navbar nav.active{
    display:flex;
  }

  /* show mobile contact ONLY in menu */
  .mobile-contact{
    display:flex;
  }

  /* hide top contact */
  .nav-right,
  .nav-info{
    display:none;
  }

  .hamburger{
    display:flex;
  }
}
