/* Lightweight, non-destructive visual enhancements for Dinar Rent A Car */

:root{
  --brand:#22c55e; /* green */
  --brand-600:#16a34a;
  --brand-700:#15803d;
  --ink:#0f172a; /* slate-900 */
  --ink-700:#334155; /* slate-600 */
  --surface:#0b1220; /* dark overlay */
  --card:#ffffff;
  --muted:#94a3b8;
  --ring:rgba(34,197,94,.35);
}

/* Navbar CTA */
.navbar-right .nav-cta a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: var(--brand);
  color:#fff!important;
  padding:10px 16px!important;
  border-radius:999px;
  margin-left:12px;
  line-height:1;
  white-space:nowrap;
  border:1px solid transparent;
  box-shadow:0 8px 16px rgba(34,197,94,.25);
  transition: background .2s ease;
}
.navbar-right .nav-cta a:hover,
.navbar-right .nav-cta a:focus{background:var(--brand-600);color:#fff!important}

/* Hero */
.welcome-hero:before{background:linear-gradient(180deg, rgba(11,18,32,.85), rgba(11,18,32,.6) 40%, rgba(11,18,32,.85))}
.welcome-hero-txt{padding:200px 0 160px;position:relative;z-index:2}
.welcome-hero-txt h2{font-size:56px;line-height:1.1;font-weight:800;text-transform:uppercase;letter-spacing:.5px}
.welcome-hero-txt h2 .accent{color:var(--brand)}
.welcome-hero-txt p{font-size:22px;color:#e2e8f0;margin-top:14px}

.hero-badges{margin:22px auto 0;display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.chip{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border-radius:999px;background:rgba(255,255,255,.08);color:#e2e8f0;border:1px solid rgba(255,255,255,.12);font-size:14px}
.chip .dot{width:8px;height:8px;border-radius:50%;background:var(--brand)}

.hero-ctas{margin-top:26px;display:flex;gap:16px;justify-content:center;flex-wrap:wrap}
.btn-cta{display:inline-flex;align-items:center;gap:10px;border-radius:999px;padding:14px 22px;font-weight:600;text-decoration:none;transition:background .2s ease}
.hero-ctas .btn-cta,
.hero-ctas .btn-cta:hover,
.hero-ctas .btn-cta:focus{color:#fff}
.btn-cta.primary{background:var(--brand);box-shadow:0 10px 20px rgba(34,197,94,.25)}
.btn-cta.primary:hover{background:var(--brand-600)}
.btn-cta.secondary{background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.18)}
.btn-cta.secondary:hover{background:rgba(255,255,255,.2)}

/* Section header tweaks */
.section-header h2{font-size:40px}
.section-header h2 .accent{color:var(--brand)}
.section-header .delivery-note{color:var(--ink-700)}

.category-chips{margin:14px 0 32px;display:flex;gap:10px;justify-content:center;flex-wrap:wrap}
.category-chips .chip{background:#f1f5f9;color:#0f172a;border-color:#e2e8f0}
.category-chips .chip.active{background:rgba(34,197,94,.1);color:#065f46;border-color:var(--ring)}

/* Cards */
.featured-cars .single-featured-cars{background:var(--card);border:1px solid #eef2f7;border-radius:18px;box-shadow:0 8px 24px rgba(2,6,23,.06);overflow:hidden}
.featured-cars .featured-img-box{position:relative}
.featured-cars .featured-cars-img img{width:100%;height:180px;object-fit:cover;border-radius:14px;margin-top:12px}
.year-badge{position:absolute;right:14px;top:14px;background:#0ea5e9;color:#fff;font-weight:700;font-size:12px;padding:6px 10px;border-radius:999px;box-shadow:0 6px 16px rgba(14,165,233,.3)}
.featured-model-info{display:none}

.featured-cars-txt{padding:14px 16px 18px}
.featured-cars-txt h2 a{font-weight:700}
.featured-cars-txt .price{font-size:18px;margin:6px 0 10px;color:#0f172a}
.featured-cars-txt .price strong{color:var(--brand)}

/* Rental option pills */
.rental-options{display:flex;gap:8px;flex-wrap:wrap;margin:8px 0 10px}
.rental-options label{display:inline-flex;align-items:center;gap:6px;padding:6px 10px;border:1px solid #e2e8f0;border-radius:999px;color:#0f172a;cursor:pointer;font-size:13px;transition:all .15s ease}
.rental-options input{display:none}
.rental-options label.active{background:rgba(34,197,94,.08);border-color:var(--ring);color:#065f46;box-shadow:inset 0 0 0 2px rgba(34,197,94,.15)}

.book-now-btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:8px;
  background:var(--brand) !important;
  color:#fff!important;
  border-radius:12px !important;
  padding:10px 18px !important;
  font-weight:600 !important;
  margin-top:8px !important;
  box-shadow:0 8px 18px rgba(34,197,94,.25) !important;
  transition:background .2s ease !important;
  white-space:nowrap !important;
  line-height:1 !important;
  text-decoration:none!important;
  min-width:120px !important;
  border:none!important;
  outline:none!important;
  font-size:16px !important;
  text-align:center !important;
  transform:none !important;
}
.book-now-btn:hover,
.book-now-btn:focus{
  background:var(--brand-600) !important;
  color:#fff!important;
  text-decoration:none!important;
  border:none!important;
  outline:none!important;
  transform:none !important;
}
.book-now-btn:after{content:'\2192';font-size:16px;margin-left:4px}

/* Utility */
.text-muted{color:var(--muted)}

/* Responsive tweaks */
@media (max-width: 991px){
  .welcome-hero-txt{padding:160px 0 120px}
  .welcome-hero-txt h2{font-size:40px}
}
@media (max-width: 480px){
  .welcome-hero-txt h2{font-size:32px}
}
