/* ============================================================
   DRIVESAFE — LANDING PAGE  |  Red · Black · Grey · White
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --ds-red:       #e31e24;
  --ds-red-dark:  #b71c1c;
  --ds-red-light: #ff5252;
  --ds-black:     #111111;
  --ds-dark:      #1a1a1a;
  --ds-grey-dark: #2d2d2d;
  --ds-grey:      #555555;
  --ds-grey-mid:  #888888;
  --ds-grey-light:#e5e5e5;
  --ds-white:     #ffffff;
  --ds-off-white: #f7f7f7;
  --ds-shadow:    0 8px 32px rgba(0,0,0,0.18);
  --ds-radius:    14px;
  --ds-transition:all 0.3s ease;
}

/* ---- BASE ---- */
.landing-page { overflow-x: hidden; background: var(--ds-white); }

/* ---- NAVBAR ---- */
.lp-navbar {
  background: transparent;
  padding: 18px 0;
  transition: var(--ds-transition);
}
.lp-navbar-scrolled {
  background: rgba(17,17,17,0.97) !important;
  backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.lp-brand { display:flex; align-items:center; gap:10px; text-decoration:none; }
.brand-icon {
  width:42px; height:42px; background:var(--ds-red);
  border-radius:10px; display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:1.15rem; flex-shrink:0;
}
.brand-text { color:#fff; font-size:1.25rem; font-weight:900; letter-spacing:-0.5px; }
.lp-nav-link {
  color:rgba(255,255,255,0.85) !important;
  font-weight:600; font-size:0.9rem; padding:8px 14px !important;
  border-radius:8px; transition:var(--ds-transition);
}
.lp-nav-link:hover,.lp-nav-link.active {
  color:#fff !important; background:rgba(227,30,36,0.25);
}
.lp-toggler { border:none; background:none; padding:6px; display:flex; flex-direction:column; gap:5px; cursor:pointer; }
.lp-toggler span { display:block; width:24px; height:2px; background:#fff; border-radius:2px; transition:var(--ds-transition); }
.lp-btn-outline {
  border:2px solid rgba(255,255,255,0.55); color:#fff !important;
  border-radius:10px; padding:8px 22px; font-weight:600; font-size:0.88rem; transition:var(--ds-transition);
}
.lp-btn-outline:hover { background:rgba(255,255,255,0.12); border-color:#fff; }
.lp-btn-primary {
  background:var(--ds-red); color:#fff !important; border:none;
  border-radius:10px; padding:8px 22px; font-weight:700; font-size:0.88rem; transition:var(--ds-transition);
}
.lp-btn-primary:hover { background:var(--ds-red-dark); transform:translateY(-1px); }

/* ---- HERO ---- */
.lp-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d0a0a 100%);
  position:relative; overflow:hidden; color:#fff; min-height:100vh;
}
.lp-hero-bg {
  position:absolute; inset:0;
  background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.lp-hero-shapes { position:absolute; inset:0; overflow:hidden; pointer-events:none; }
.shape { position:absolute; border-radius:50%; background:rgba(227,30,36,0.06); }
.shape-1 { width:700px; height:700px; top:-250px; right:-200px; }
.shape-2 { width:450px; height:450px; bottom:-150px; left:-120px; background:rgba(255,255,255,0.03); }
.shape-3 { width:220px; height:220px; top:40%; right:22%; background:rgba(227,30,36,0.1); }

.lp-badge {
  display:inline-flex; align-items:center;
  background:rgba(227,30,36,0.18); color:var(--ds-red-light);
  border:1px solid rgba(227,30,36,0.4);
  padding:8px 18px; border-radius:50px; font-size:0.85rem; font-weight:600;
}
.lp-hero-title {
  font-size:clamp(2.4rem,5vw,4rem);
  font-weight:900; line-height:1.08; margin-bottom:20px;
}
.lp-highlight {
  color:var(--ds-red);
  text-shadow:0 0 40px rgba(227,30,36,0.5);
}
.lp-hero-sub {
  font-size:1.1rem; opacity:0.82; max-width:500px; line-height:1.75; margin-bottom:32px;
}
.lp-btn-hero-primary {
  background:var(--ds-red); color:#fff !important; border:none;
  border-radius:12px; padding:14px 34px; font-weight:700; font-size:1rem;
  transition:var(--ds-transition); box-shadow:0 8px 28px rgba(227,30,36,0.4);
}
.lp-btn-hero-primary:hover { background:var(--ds-red-dark); transform:translateY(-2px); box-shadow:0 14px 36px rgba(227,30,36,0.5); }
.lp-btn-hero-outline {
  border:2px solid rgba(255,255,255,0.45); color:#fff !important;
  border-radius:12px; padding:14px 34px; font-weight:600; font-size:1rem; transition:var(--ds-transition);
}
.lp-btn-hero-outline:hover { background:rgba(255,255,255,0.1); border-color:#fff; }

.lp-stats-row {
  display:flex; align-items:center; flex-wrap:wrap;
  background:rgba(255,255,255,0.06); border-radius:16px; padding:20px 24px;
  backdrop-filter:blur(10px); border:1px solid rgba(255,255,255,0.1);
}
.lp-stat { text-align:center; flex:1; min-width:80px; }
.lp-stat-num { font-size:1.9rem; font-weight:900; color:var(--ds-red); line-height:1; }
.lp-stat-label { font-size:0.7rem; opacity:0.65; margin-top:4px; text-transform:uppercase; letter-spacing:0.5px; }
.lp-stat-divider { width:1px; height:40px; background:rgba(255,255,255,0.12); flex-shrink:0; }

/* Hero image card */
.lp-hero-visual { position:relative; display:inline-block; }
.lp-hero-img-wrap {
  width:420px; height:320px; border-radius:20px; overflow:hidden;
  border:3px solid rgba(227,30,36,0.4);
  box-shadow:0 20px 60px rgba(0,0,0,0.5);
  margin:0 auto;
}
.lp-hero-img-wrap img { width:100%; height:100%; object-fit:cover; }
.lp-float-card {
  position:absolute; background:#fff; color:#222;
  border-radius:12px; padding:10px 16px; font-size:0.82rem; font-weight:600;
  box-shadow:0 8px 25px rgba(0,0,0,0.2); white-space:nowrap;
}
.lp-float-1 { top:20px; left:-30px; }
.lp-float-2 { top:50%; right:-40px; transform:translateY(-50%); }
.lp-float-3 { bottom:30px; left:-10px; }

.lp-hero-wave { position:absolute; bottom:-1px; left:0; right:0; line-height:0; }
.lp-hero-wave svg { width:100%; height:60px; }

/* ---- SECTIONS ---- */
.lp-section { padding:90px 0; background:var(--ds-white); }
.lp-section-alt { background:var(--ds-off-white); }
.lp-section-header { text-align:center; margin-bottom:56px; }
.lp-section-tag {
  display:inline-block; background:rgba(227,30,36,0.1); color:var(--ds-red);
  padding:6px 18px; border-radius:50px; font-size:0.78rem; font-weight:700;
  text-transform:uppercase; letter-spacing:1.5px; margin-bottom:14px;
}
.lp-section-title {
  font-size:clamp(1.8rem,3vw,2.6rem); font-weight:900;
  color:var(--ds-black); margin-bottom:14px; line-height:1.2;
}
.lp-section-sub { color:var(--ds-grey); font-size:1rem; max-width:520px; margin:0 auto; }

/* ---- SERVICES ---- */
.lp-service-card {
  background:#fff; border-radius:var(--ds-radius); padding:32px 28px;
  box-shadow:0 4px 20px rgba(0,0,0,0.07); border:1px solid var(--ds-grey-light);
  height:100%; transition:var(--ds-transition); position:relative; overflow:hidden;
}
.lp-service-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--ds-red),var(--ds-red-light));
  transform:scaleX(0); transition:transform 0.3s; transform-origin:left;
}
.lp-service-card:hover { transform:translateY(-6px); box-shadow:0 18px 45px rgba(0,0,0,0.13); }
.lp-service-card:hover::before { transform:scaleX(1); }
.lp-service-icon {
  width:60px; height:60px; border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.5rem; margin-bottom:16px;
}
.lp-service-tag {
  display:inline-block; font-size:0.7rem; font-weight:700;
  text-transform:uppercase; letter-spacing:1px; color:var(--ds-red);
  background:rgba(227,30,36,0.08); padding:3px 10px; border-radius:50px; margin-bottom:10px;
}
.lp-service-title { font-size:1.1rem; font-weight:800; color:var(--ds-black); margin-bottom:10px; }
.lp-service-desc { color:var(--ds-grey); font-size:0.88rem; line-height:1.65; margin-bottom:16px; }
.lp-service-link { color:var(--ds-red); font-weight:700; font-size:0.85rem; text-decoration:none; transition:var(--ds-transition); }
.lp-service-link:hover { color:var(--ds-red-dark); }

/* ---- PACKAGES ---- */
.lp-pkg-card {
  background:#fff; border-radius:20px; padding:36px 28px;
  box-shadow:0 4px 20px rgba(0,0,0,0.08); border:2px solid var(--ds-grey-light);
  height:100%; transition:var(--ds-transition); position:relative; overflow:hidden;
}
.lp-pkg-card:hover { transform:translateY(-6px); box-shadow:0 22px 55px rgba(0,0,0,0.14); }
.lp-pkg-popular {
  border-color:var(--ds-red);
  background:linear-gradient(180deg,#fff5f5 0%,#fff 40%);
  transform:scale(1.03);
}
.lp-pkg-popular:hover { transform:scale(1.03) translateY(-6px); }
.lp-pkg-badge {
  position:absolute; top:0; right:0;
  background:var(--ds-red); color:#fff;
  font-size:0.75rem; font-weight:700; padding:6px 16px;
  border-radius:0 18px 0 12px;
}
.lp-pkg-header { text-align:center; margin-bottom:20px; }
.lp-pkg-icon {
  width:56px; height:56px; border-radius:16px;
  background:rgba(17,17,17,0.07); color:var(--ds-black);
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem; margin:0 auto 12px;
}
.lp-pkg-popular .lp-pkg-icon { background:rgba(227,30,36,0.12); color:var(--ds-red); }
.lp-pkg-name { font-size:1.15rem; font-weight:900; color:var(--ds-black); margin-bottom:4px; }
.lp-pkg-vehicle { font-size:0.78rem; color:var(--ds-grey-mid); font-weight:600; text-transform:uppercase; letter-spacing:0.5px; }
.lp-pkg-price { text-align:center; margin:20px 0; }
.lp-pkg-currency { font-size:1.4rem; font-weight:700; color:var(--ds-black); vertical-align:top; margin-top:8px; display:inline-block; }
.lp-pkg-amount { font-size:3rem; font-weight:900; color:var(--ds-black); line-height:1; }
.lp-pkg-popular .lp-pkg-amount,.lp-pkg-popular .lp-pkg-currency { color:var(--ds-red); }
.lp-pkg-features { list-style:none; padding:0; margin:0 0 20px; }
.lp-pkg-features li {
  display:flex; align-items:center; gap:10px;
  padding:8px 0; border-bottom:1px solid #f5f5f5;
  font-size:0.88rem; color:var(--ds-grey);
}
.lp-pkg-features li:last-child { border-bottom:none; }
.lp-pkg-features li i { color:var(--ds-red); font-size:0.8rem; flex-shrink:0; }
.lp-pkg-desc { font-size:0.8rem; color:var(--ds-grey-mid); margin-bottom:20px; }
.lp-pkg-btn {
  display:block; width:100%; text-align:center;
  background:var(--ds-black); color:#fff !important; border:none;
  border-radius:12px; padding:13px; font-weight:700; font-size:0.95rem;
  transition:var(--ds-transition); text-decoration:none;
}
.lp-pkg-btn:hover { background:var(--ds-grey-dark); transform:translateY(-1px); }
.lp-pkg-btn-popular { background:var(--ds-red); color:#fff !important; }
.lp-pkg-btn-popular:hover { background:var(--ds-red-dark); }

/* ---- WHY US ---- */
.lp-why-icon-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:16px;
  max-width:320px; margin:0 auto;
}
.lp-why-icon-box {
  width:90px; height:90px; border-radius:20px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.8rem; color:#fff; box-shadow:0 8px 20px rgba(0,0,0,0.2);
  transition:transform 0.3s;
}
.lp-why-icon-box:hover { transform:scale(1.08) rotate(-3deg); }
.lp-why-center { grid-column:2; grid-row:2; font-size:2.2rem; }
.lp-why-item {
  display:flex; align-items:flex-start; gap:14px;
  background:#fff; border-radius:14px; padding:18px;
  box-shadow:0 2px 12px rgba(0,0,0,0.06); border:1px solid var(--ds-grey-light);
  transition:var(--ds-transition);
}
.lp-why-item:hover { transform:translateY(-3px); box-shadow:0 10px 28px rgba(0,0,0,0.1); }
.lp-why-item-icon {
  width:44px; height:44px; border-radius:12px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-size:1.1rem;
}
.lp-why-item-title { font-weight:800; font-size:0.92rem; color:var(--ds-black); margin-bottom:4px; }
.lp-why-item-desc { font-size:0.8rem; color:var(--ds-grey); line-height:1.55; }

/* ---- HOW IT WORKS ---- */
.lp-step-card {
  background:#fff; border-radius:18px; padding:36px 24px;
  text-align:center; box-shadow:0 4px 20px rgba(0,0,0,0.07);
  border:1px solid var(--ds-grey-light); position:relative; transition:var(--ds-transition);
}
.lp-step-card:hover { transform:translateY(-5px); box-shadow:0 18px 45px rgba(0,0,0,0.13); }
.lp-step-num {
  width:38px; height:38px; border-radius:50%; color:#fff;
  font-weight:900; font-size:1rem; display:flex; align-items:center;
  justify-content:center; margin:0 auto 16px; box-shadow:0 4px 14px rgba(0,0,0,0.25);
}
.lp-step-icon { font-size:2.5rem; margin-bottom:16px; }
.lp-step-title { font-size:1.05rem; font-weight:800; color:var(--ds-black); margin-bottom:10px; }
.lp-step-desc { font-size:0.85rem; color:var(--ds-grey); line-height:1.65; }
.lp-step-arrow {
  position:absolute; right:-20px; top:50%; transform:translateY(-50%);
  color:#ccc; font-size:1.2rem; z-index:1;
}

/* ---- TESTIMONIALS ---- */
.lp-review-card {
  background:#fff; border-radius:18px; padding:28px;
  box-shadow:0 4px 20px rgba(0,0,0,0.07); border:1px solid var(--ds-grey-light);
  height:100%; transition:var(--ds-transition); position:relative;
}
.lp-review-card::before {
  content:'\201C'; position:absolute; top:16px; right:24px;
  font-size:5rem; color:rgba(227,30,36,0.08); font-family:Georgia,serif; line-height:1;
}
.lp-review-card:hover { transform:translateY(-5px); box-shadow:0 18px 45px rgba(0,0,0,0.13); }
.lp-review-stars { color:var(--ds-red); font-size:0.9rem; margin-bottom:14px; }
.lp-review-text { color:var(--ds-grey); font-size:0.9rem; line-height:1.75; margin-bottom:20px; font-style:italic; }
.lp-review-author { display:flex; align-items:center; gap:12px; }
.lp-review-avatar {
  width:44px; height:44px; border-radius:50%; background:var(--ds-red);
  color:#fff; display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:0.9rem; flex-shrink:0;
}
.lp-review-name { font-weight:800; font-size:0.9rem; color:var(--ds-black); }
.lp-review-pkg { font-size:0.75rem; color:var(--ds-grey-mid); }

/* ---- CTA ---- */
.lp-cta {
  background:linear-gradient(135deg,#0a0a0a 0%,#1a1a1a 60%,#2d0a0a 100%);
  padding:90px 0; position:relative; overflow:hidden; color:#fff;
}
.cta-shape-1 {
  position:absolute; width:500px; height:500px; border-radius:50%;
  background:rgba(227,30,36,0.07); top:-200px; right:-100px;
}
.cta-shape-2 {
  position:absolute; width:300px; height:300px; border-radius:50%;
  background:rgba(255,255,255,0.03); bottom:-100px; left:-50px;
}
.lp-cta-icon { font-size:3.5rem; color:var(--ds-red); margin-bottom:20px; }
.lp-cta-title { font-size:clamp(1.8rem,3vw,2.6rem); font-weight:900; margin-bottom:16px; }
.lp-cta-sub { font-size:1.05rem; opacity:0.78; max-width:500px; margin:0 auto 36px; }
.lp-btn-cta-primary {
  background:var(--ds-red); color:#fff !important; border:none;
  border-radius:12px; padding:14px 34px; font-weight:700; font-size:1rem;
  transition:var(--ds-transition); box-shadow:0 8px 28px rgba(227,30,36,0.4);
}
.lp-btn-cta-primary:hover { background:var(--ds-red-dark); transform:translateY(-2px); }
.lp-btn-cta-outline {
  border:2px solid rgba(255,255,255,0.45); color:#fff !important;
  border-radius:12px; padding:14px 34px; font-weight:600; font-size:1rem; transition:var(--ds-transition);
}
.lp-btn-cta-outline:hover { background:rgba(255,255,255,0.1); border-color:#fff; }

/* ---- CONTACT ---- */
.lp-contact-info { display:flex; flex-direction:column; gap:20px; }
.lp-contact-item { display:flex; align-items:flex-start; gap:16px; }
.lp-contact-icon {
  width:48px; height:48px; border-radius:14px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-size:1.1rem;
}
.lp-contact-label { font-size:0.75rem; font-weight:700; text-transform:uppercase; letter-spacing:0.8px; color:var(--ds-grey-mid); margin-bottom:4px; }
.lp-contact-value { font-size:0.92rem; color:#333; line-height:1.55; }
.lp-contact-value a { color:var(--ds-red); text-decoration:none; font-weight:600; }
.lp-contact-value a:hover { color:var(--ds-red-dark); }

.lp-social-links { display:flex; gap:10px; flex-wrap:wrap; }
.lp-social-btn {
  width:38px; height:38px; border-radius:10px; color:#fff !important;
  display:flex; align-items:center; justify-content:center;
  font-size:0.9rem; text-decoration:none; transition:var(--ds-transition);
}
.lp-social-btn:hover { transform:translateY(-3px); box-shadow:0 6px 18px rgba(0,0,0,0.25); }

.lp-contact-form-card {
  background:#fff; border-radius:20px; padding:36px;
  box-shadow:0 8px 32px rgba(0,0,0,0.09); border:1px solid var(--ds-grey-light);
}
.lp-contact-form-title { font-size:1.2rem; font-weight:800; color:var(--ds-black); margin-bottom:24px; }
.lp-contact-form-card .form-control:focus,
.lp-contact-form-card .form-select:focus {
  border-color:var(--ds-red); box-shadow:0 0 0 3px rgba(227,30,36,0.15);
}
.lp-contact-form-card .btn-submit {
  background:var(--ds-red); color:#fff; border:none;
  border-radius:12px; padding:13px; font-weight:700; font-size:0.95rem;
  width:100%; transition:var(--ds-transition);
}
.lp-contact-form-card .btn-submit:hover { background:var(--ds-red-dark); transform:translateY(-1px); }

/* ---- FOOTER ---- */
.lp-footer { background:var(--ds-black); color:rgba(255,255,255,0.7); }
.lp-footer-top { padding:70px 0 50px; }
.lp-footer-brand { display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.lp-footer-about { font-size:0.88rem; line-height:1.75; max-width:300px; margin-bottom:20px; }
.lp-footer-heading {
  color:#fff; font-weight:800; font-size:0.9rem;
  text-transform:uppercase; letter-spacing:1px; margin-bottom:20px;
}
.lp-footer-links { list-style:none; padding:0; margin:0; }
.lp-footer-links li { margin-bottom:10px; }
.lp-footer-links a {
  color:rgba(255,255,255,0.6); text-decoration:none; font-size:0.88rem; transition:color 0.2s;
}
.lp-footer-links a:hover { color:var(--ds-red); }
.lp-footer-contact { list-style:none; padding:0; margin:0; }
.lp-footer-contact li {
  display:flex; align-items:flex-start; gap:12px;
  margin-bottom:14px; font-size:0.88rem; color:rgba(255,255,255,0.6);
}
.lp-footer-contact li i { color:var(--ds-red); margin-top:2px; flex-shrink:0; width:14px; }
.lp-footer-contact a { color:rgba(255,255,255,0.6); text-decoration:none; }
.lp-footer-contact a:hover { color:var(--ds-red); }
.lp-footer-bottom {
  border-top:1px solid rgba(255,255,255,0.08);
  padding:20px 0; font-size:0.85rem; color:rgba(255,255,255,0.45);
}

/* ---- BACK TO TOP ---- */
.lp-back-top {
  position:fixed; bottom:28px; right:28px; z-index:999;
  width:44px; height:44px; border-radius:12px;
  background:var(--ds-red); color:#fff; border:none;
  display:flex; align-items:center; justify-content:center;
  font-size:1rem; box-shadow:0 4px 18px rgba(227,30,36,0.4);
  opacity:0; transform:translateY(20px); transition:var(--ds-transition); cursor:pointer;
}
.lp-back-top.show { opacity:1; transform:translateY(0); }
.lp-back-top:hover { background:var(--ds-red-dark); }

/* ---- GALLERY STRIP ---- */
.lp-gallery { padding:70px 0; background:var(--ds-black); }
.lp-gallery-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:12px;
}
.lp-gallery-item {
  border-radius:12px; overflow:hidden; aspect-ratio:4/3; position:relative;
}
.lp-gallery-item img {
  width:100%; height:100%; object-fit:cover;
  transition:transform 0.4s ease;
}
.lp-gallery-item:hover img { transform:scale(1.07); }
.lp-gallery-item.tall { grid-row:span 2; aspect-ratio:auto; }

/* ---- RESPONSIVE ---- */
@media (max-width:991px) {
  .lp-navbar { background:rgba(17,17,17,0.97) !important; padding:12px 0; }
  .lp-hero { padding-top:80px; }
  .lp-hero-img-wrap { width:280px; height:210px; }
  .lp-float-1,.lp-float-2,.lp-float-3 { display:none; }
  .lp-pkg-popular { transform:none; }
  .lp-pkg-popular:hover { transform:translateY(-6px); }
  .lp-why-icon-grid { max-width:260px; }
  .lp-why-icon-box { width:72px; height:72px; font-size:1.4rem; }
  .lp-step-arrow { display:none !important; }
  .lp-gallery-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:767px) {
  .lp-section { padding:60px 0; }
  .lp-section-header { margin-bottom:36px; }
  .lp-hero-title { font-size:2.2rem; }
  .lp-stats-row { padding:16px; }
  .lp-stat-num { font-size:1.4rem; }
  .lp-contact-form-card { padding:24px; }
  .lp-footer-top { padding:50px 0 30px; }
  .lp-back-top { bottom:16px; right:16px; }
  .lp-gallery-grid { grid-template-columns:repeat(2,1fr); }
}
