/* ============================================================
   Vhashavhi Driving School — Modern Redesign 2024
   SEO-Optimized for "Driving School Gauteng"
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary:    #0052CC;
  --primary-dk: #003d99;
  --primary-lt: #4d8df5;
  --accent:     #FF6B35;
  --accent-dk:  #e05520;
  --dark:       #0f1b2d;
  --dark-soft:  #1e2d42;
  --light:      #f4f7ff;
  --white:      #ffffff;
  --text:       #374151;
  --text-light: #6b7280;
  --border:     #e5e7eb;
  --green:      #22c55e;
  --gold:       #f59e0b;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.18);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: .3s ease;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---------- Utility ---------- */
.section { padding: 90px 0; }
.section-label {
  display: inline-block;
  background: rgba(0,82,204,.1);
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 18px;
}
.section-title .highlight,
.highlight { color: var(--accent); }
.section-subtitle, .section-text {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
}
.section-subtitle { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn-primary-custom {
  background: var(--primary);
  color: var(--white) !important;
  border: 2px solid var(--primary);
  padding: 13px 32px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  display: inline-block;
  transition: var(--transition);
}
.btn-primary-custom:hover {
  background: var(--primary-dk);
  border-color: var(--primary-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,82,204,.35);
}
.btn-outline-primary-custom {
  background: transparent;
  color: var(--primary) !important;
  border: 2px solid var(--primary);
  padding: 11px 28px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  display: inline-block;
  transition: var(--transition);
}
.btn-outline-primary-custom:hover {
  background: var(--primary);
  color: var(--white) !important;
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white) !important;
  border: 2px solid #25D366;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  display: inline-block;
  transition: var(--transition);
}
.btn-whatsapp:hover {
  background: #1fba58;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,.35);
}
.btn-cta {
  background: var(--accent);
  color: var(--white) !important;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-cta:hover {
  background: var(--accent-dk);
  transform: translateY(-1px);
}

/* ---------- Navigation ---------- */
#mainNav {
  background: transparent;
  padding: 18px 0;
  transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
  z-index: 1000;
}
#mainNav.scrolled {
  background: rgba(15,27,45,.97);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white) !important;
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}
.navbar-brand img { height: 48px; width: auto; border-radius: 6px; }
.navbar-brand span { color: var(--white); }
.navbar-brand .highlight { color: var(--accent); }
.nav-link {
  color: rgba(255,255,255,.88) !important;
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .03em;
  padding: 6px 14px !important;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--white) !important; background: rgba(255,255,255,.1); }
.navbar-toggler {
  border-color: rgba(255,255,255,.5);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(15,27,45,.97);
    backdrop-filter: blur(10px);
    margin-top: 12px;
    padding: 16px;
    border-radius: 12px;
  }
}

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: url('../img/img_cover.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,25,55,.88) 0%, rgba(10,25,55,.65) 60%, rgba(0,82,204,.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,107,53,.2);
  color: #ffa07a;
  border: 1px solid rgba(255,107,53,.4);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.15;
}
.hero-subtitle {
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 580px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
}
.hero-features span { display: flex; align-items: center; gap: 8px; }
.hero-features i { color: var(--green); font-size: 1rem; }
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator a {
  color: rgba(255,255,255,.7);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
  display: block;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Stats ---------- */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark-soft) 100%);
  padding: 56px 0;
}
.stat-item {
  text-align: center;
  padding: 20px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; height: 60%;
  width: 1px;
  background: rgba(255,255,255,.2);
}
.stat-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ---------- About ---------- */
.about-section { background: var(--white); }
.about-image-grid {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-lg);
  margin-right: 30px;
}
.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 26px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.badge-year { display: block; font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; opacity: .85; }
.badge-number { display: block; font-family: 'Poppins', sans-serif; font-size: 2.2rem; font-weight: 800; line-height: 1; }
.about-features { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--light);
  border-radius: var(--radius);
  border-left: 3px solid var(--primary);
}
.feature-item > i {
  font-size: 1.3rem;
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
  width: 24px;
}
.feature-item h5 { font-size: .95rem; margin-bottom: 4px; color: var(--dark); }
.feature-item p { font-size: .87rem; color: var(--text-light); margin: 0; }

/* ---------- Services ---------- */
.services-section { background: var(--light); }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark-soft) 100%);
  color: var(--white);
  border-color: transparent;
}
.service-card.featured::before { background: var(--accent); transform: scaleX(1); }
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,.85); }
.service-card.featured .service-icon { background: rgba(255,255,255,.15); color: var(--white); }
.service-card.featured .service-features li { color: rgba(255,255,255,.85); }
.service-card.featured .service-features li i { color: #86efac; }
.featured-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--accent);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: .05em;
}
.service-icon {
  width: 70px; height: 70px;
  background: rgba(0,82,204,.1);
  color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 14px; color: var(--dark); }
.service-card p { font-size: .93rem; color: var(--text-light); margin-bottom: 20px; }
.service-features { margin-bottom: 28px; }
.service-features li {
  font-size: .88rem;
  color: var(--text-light);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-features li i { color: var(--green); font-size: .8rem; }

/* ---------- Why / Steps ---------- */
.why-section { background: var(--white); }
.why-items { margin-top: 28px; display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; align-items: flex-start; gap: 18px; }
.why-icon {
  width: 52px; height: 52px;
  background: rgba(0,82,204,.1);
  color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.why-content h5 { font-size: 1rem; margin-bottom: 6px; }
.why-content p { font-size: .9rem; color: var(--text-light); margin: 0; }
.steps-container {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.steps-title {
  font-size: 1.25rem;
  margin-bottom: 32px;
  color: var(--dark);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 16px;
}
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}
.step-item:last-child { margin-bottom: 0; }
.step-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  opacity: .25;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.step-content h5 { font-size: .97rem; margin-bottom: 6px; }
.step-content p { font-size: .88rem; color: var(--text-light); margin: 0; }

/* ---------- Testimonials ---------- */
.testimonials-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
}
.testimonials-section .section-label {
  background: rgba(255,107,53,.2);
  color: #ffa07a;
}
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-subtitle { color: rgba(255,255,255,.7); }
.testimonial-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  height: 100%;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-5px);
}
.stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 18px; letter-spacing: 2px; }
.testimonial-card p {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--white); font-size: .95rem; }
.testimonial-author span { color: rgba(255,255,255,.55); font-size: .82rem; }

/* ---------- FAQ ---------- */
.faq-section { background: var(--light); }
.accordion-item {
  background: var(--white);
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.accordion-button {
  background: var(--white);
  color: var(--dark);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  padding: 18px 22px;
  border-radius: var(--radius) !important;
}
.accordion-button:not(.collapsed) {
  background: var(--primary);
  color: var(--white);
  box-shadow: none;
}
.accordion-button:not(.collapsed)::after { filter: brightness(10); }
.accordion-button:focus { box-shadow: none; }
.accordion-body {
  color: var(--text-light);
  font-size: .93rem;
  line-height: 1.75;
  padding: 18px 22px;
}

/* ---------- Gallery ---------- */
.gallery-section { background: var(--white); }
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item::after {
  content: '\f065';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  background: rgba(0,82,204,.7);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover::after { opacity: 1; }

/* ---------- Service Areas ---------- */
.areas-section { background: var(--light); }
.area-badge {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--dark);
  padding: 10px 16px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 500;
  transition: var(--transition);
  margin-bottom: 12px;
  display: inline-block;
}
.area-badge i { color: var(--primary); font-size: .8rem; transition: var(--transition); }
.area-badge:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.area-badge:hover i { color: var(--white); }

/* ---------- Contact ---------- */
.contact-section { background: var(--white); }
.contact-info-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark-soft) 100%);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  height: 100%;
}
.contact-info-card h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-detail > i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 3px;
  width: 22px;
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  color: rgba(255,255,255,.6);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.contact-detail p { color: var(--white); font-size: .93rem; margin: 0; }
.contact-detail a { color: var(--white); }
.contact-detail a:hover { color: var(--accent); }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  transition: var(--transition);
}
.social-btn.whatsapp { background: #25D366; color: var(--white); }
.social-btn.whatsapp:hover { background: #1fba58; color: var(--white); transform: translateY(-2px); }
.social-btn.facebook { background: #1877F2; color: var(--white); }
.social-btn.facebook:hover { background: #1463d0; color: var(--white); transform: translateY(-2px); }
.contact-form-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  height: 100%;
}
.form-label {
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: .93rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,82,204,.12);
}
textarea.form-control { resize: vertical; }

/* ---------- Map ---------- */
.map-section iframe { display: block; }

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 70px 0 0;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand img { height: 44px; border-radius: 6px; }
.footer-brand h5 { color: var(--white); font-size: 1rem; margin: 0; }
.footer p { font-size: .9rem; line-height: 1.75; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.75);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-heading {
  color: var(--white);
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact p {
  font-size: .88rem;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.75); }
.footer-contact a:hover { color: var(--accent); }
.footer-divider { border-color: rgba(255,255,255,.1); margin: 40px 0 0; }
.footer-bottom { padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.45); margin-bottom: 4px; }
.footer-seo-text { font-size: .75rem !important; color: rgba(255,255,255,.25) !important; }

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
  transition: var(--transition);
}
.whatsapp-float:hover { background: #1fba58; transform: scale(1.1); color: var(--white); }
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37,211,102,.25);
  animation: ping 2s ease-in-out infinite;
  z-index: -1;
}
@keyframes ping {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.5); opacity: 0; }
}
.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  background: var(--dark);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ---------- Scroll Top ---------- */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 998;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--primary-dk); transform: translateY(-3px); }

/* ---------- Alert ---------- */
.alert { border-radius: 10px; font-size: .93rem; margin-bottom: 24px; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .about-badge { right: 10px; }
  .about-image-grid { margin-right: 10px; }
  .steps-container { padding: 28px; margin-top: 40px; }
  .contact-info-card, .contact-form-card { padding: 32px 24px; }
}
@media (max-width: 767px) {
  .section { padding: 60px 0; }
  .stat-item::after { display: none; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .about-img-main { height: 300px; }
  .service-card { padding: 28px 22px; }
  .contact-info-card, .contact-form-card { padding: 28px 20px; }
  .whatsapp-float { bottom: 18px; right: 18px; width: 52px; height: 52px; font-size: 1.4rem; }
  .scroll-top { right: 18px; bottom: 84px; }
  .footer { padding-top: 50px; }
}
@media (max-width: 480px) {
  .hero-badge { font-size: .72rem; }
  .stats-section { padding: 36px 0; }
  .stat-number { font-size: 1.8rem; }
}
