/* =========================================================
   HANUMAN AUTOMOTIVE — Dark Industrial Theme
   Fonts: Bebas Neue (display) + Outfit (body)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --black:      #0a0a0a;
  --dark:       #111214;
  --panel:      #1a1c1f;
  --panel2:     #222428;
  --border:     #2e3035;
  --orange:     #f4601a;
  --amber:      #ffb347;
  --white:      #f0ede8;
  --muted:      #8a8c92;
  --radius:     6px;
  --transition: 0.25s ease;
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--dark);
  color: var(--white);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; width: 100%; object-fit: cover; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ── Section (default inner container) ──────────────────── */
section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Full-bleed sections override max-width */
.banner, .hero, .product, .testimonials {
  max-width: 100%;
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 40px;
}

h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
}

/* ── Section heading accent ──────────────────────────────── */
.services h2,
.gallery h2,
.videos h2,
.testimonials h2,
.contact h2,
.product > h2 {
  text-align: center;
}

.services h2::after,
.gallery h2::after,
.videos h2::after,
.testimonials h2::after,
.contact h2::after,
.product > h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--orange);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ── Button ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  background: var(--orange);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  margin: 6px 4px;
}

.btn:hover {
  background: transparent;
  color: var(--orange);
  box-shadow: 0 0 18px rgba(244,96,26,0.35);
  transform: translateY(-2px);
}

/* ── HEADER ──────────────────────────────────────────────── */
header {
  background: var(--black);
  border-bottom: 2px solid var(--orange);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 64px;
}

.header-brand h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  letter-spacing: 3px;
  color: var(--orange);
  line-height: 1;
}

.header-brand p {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

header nav ul {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 10px 0;
}

header nav ul li a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all var(--transition);
}

header nav ul li a:hover {
  color: var(--orange);
  border-color: var(--orange);
  background: rgba(244,96,26,0.08);
}

/* ── BANNER ──────────────────────────────────────────────── */
.banner {
  padding: 0;
  height: 420px;
  overflow: hidden;
  position: relative;
}

.banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.2), rgba(10,10,10,0.7));
  pointer-events: none;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: var(--black);
  padding: 80px 24px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent, transparent 20px,
    rgba(244,96,26,0.03) 20px,
    rgba(244,96,26,0.03) 21px
  );
  pointer-events: none;
}

.hero h2 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.1;
  letter-spacing: 3px;
  margin-bottom: 18px;
  max-width: 820px;
  margin-inline: auto;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 560px;
  margin-inline: auto;
}

/* ── PRODUCT ─────────────────────────────────────────────── */
.product {
  background: var(--panel);
  padding: 80px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Price card */
.price-details {
  max-width: 720px;
  margin: 0 auto 48px;
  background: var(--panel2);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 40px;
}

.price-details > h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 20px;
  text-align: left;
}

.price-details > h2::after { display: none; }

.price-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.price-list li {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 22px;
  font-size: 1rem;
  flex: 1 1 150px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.price-list li:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}

.price-list li strong {
  display: block;
  color: var(--orange);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.price-details h3 {
  color: var(--amber);
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 20px 0 10px;
}

.price-details p {
  color: #b0b3ba;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.action-buttons {
  text-align: center;
  margin-top: 28px;
}

/* Benefits */
.rat-guard-benefits {
  max-width: 900px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.rat-guard-benefits li {
  background: var(--panel2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.92rem;
  color: #c8cad0;
  transition: background var(--transition);
}

.rat-guard-benefits li:hover {
  background: rgba(244,96,26,0.07);
}

/* Product gallery */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.product-gallery img {
  height: 220px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(244,96,26,0.3);
  border-color: var(--orange);
}

/* ── SERVICES ────────────────────────────────────────────── */
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  border-color: var(--orange);
}

.service-card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover img { transform: scale(1.05); }

.service-card h3 {
  padding: 18px 18px 6px;
  font-size: 1rem;
  color: var(--white);
}

.service-card p {
  padding: 0 18px 20px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.gallery-grid img {
  height: 220px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 28px rgba(244,96,26,0.25);
  border-color: var(--orange);
}

/* ── VIDEOS ──────────────────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.video-grid video {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--black);
  max-height: 300px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.video-grid video:hover {
  border-color: var(--orange);
  box-shadow: 0 6px 24px rgba(244,96,26,0.2);
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials {
  background: var(--black);
  padding: 80px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonial-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 18px;
  font-size: 4.5rem;
  color: var(--orange);
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1;
  opacity: 0.35;
}

.testimonial-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.testimonial-card p {
  color: #b0b3ba;
  font-size: 0.92rem;
  margin-bottom: 16px;
  padding-top: 22px;
}

.testimonial-card strong {
  color: var(--amber);
  font-size: 0.82rem;
  letter-spacing: 1px;
}

/* ── CONTACT ─────────────────────────────────────────────── */
.contact {
  max-width: 760px;
  text-align: center;
}

.contact-box {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  text-align: left;
  margin-bottom: 24px;
}

.contact-box p {
  color: #b0b3ba;
  font-size: 0.95rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.contact-box p:last-child { border-bottom: none; }

.contact-box strong { color: var(--white); }

.contact-box a {
  color: var(--orange);
  transition: opacity var(--transition);
}

.contact-box a:hover { opacity: 0.75; }

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 4px;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 2px solid var(--orange);
  text-align: center;
  padding: 28px 24px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── FLOATING BUTTONS ────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: #fff;
  font-size: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.45);
  z-index: 1000;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

.call-float {
  position: fixed;
  bottom: 92px;
  right: 24px;
  background: var(--orange);
  color: #fff;
  font-size: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.45);
  z-index: 1000;
  transition: transform var(--transition), box-shadow var(--transition);
}

.call-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(244,96,26,0.5);
}

/* ── FADE-IN ANIMATION ───────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

header, .banner, .hero, .product, .services, .gallery,
.videos, .testimonials, .contact { animation: fadeUp 0.6s ease both; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 16px;
    gap: 8px;
  }

  header nav ul { gap: 4px; }

  header nav ul li a {
    padding: 6px 10px;
    font-size: 0.72rem;
  }

  .banner { height: 220px; }

  .hero { padding: 50px 20px 60px; }

  section { padding: 56px 16px; }

  .price-details { padding: 24px 20px; }

  .service-list,
  .gallery-grid,
  .video-grid,
  .testimonial-list,
  .product-gallery {
    grid-template-columns: 1fr;
  }

  .contact-box { padding: 20px; }

  .whatsapp-float { bottom: 16px; right: 16px; }
  .call-float     { bottom: 84px; right: 16px; }
}
