/* ==============================================
   css/home.css
   Eraniyan Pyro Park – Home Page Custom Styles
   Pure CSS, no Tailwind dependency for homepage
   ============================================== */

/* ---- Base Reset & Font ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Outfit', 'Segoe UI', sans-serif; background: #fff; color: #1e293b; }
a { color: inherit; }

/* ---- Layout Helpers ---- */
.hp-container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.hp-section { padding: 60px 0; }
.hp-section-sm { padding: 40px 0; }

/* ---- HERO BANNER SLIDER ---- */
.hp-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff7ed 0%, #fde68a 35%, #f59e0b 65%, #ea580c 100%);
  border-bottom: 4px solid #4f46e5;
}
.hp-hero-inner {
  display: flex;
  align-items: center;
  min-height: 380px;
  gap: 32px;
}
.hp-hero-text { flex: 1; padding: 40px 0; }
.hp-hero-text .tag {
  display: inline-block;
  background: #7c3aed;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.hp-hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: #1e293b;
  margin-bottom: 14px;
}
.hp-hero-text h1 span { color: #4f46e5; }
.hp-hero-text p { font-size: 15px; color: #475569; max-width: 480px; line-height: 1.7; margin-bottom: 28px; }
.hp-hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hp-btn-primary {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(124,58,237,0.35);
  transition: all 0.3s ease;
}
.hp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(124,58,237,0.5); }
.hp-btn-outline {
  display: inline-block;
  padding: 14px 30px;
  background: transparent;
  color: #7c3aed;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid #7c3aed;
  transition: all 0.3s ease;
}
.hp-btn-outline:hover { background: #7c3aed; color: #fff; }
.hp-hero-image {
  flex: 0 0 420px;
  max-width: 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}
.hp-hero-image img { width: 100%; height: 280px; object-fit: cover; display: block; }

/* ---- BANNER SLIDER DOTS ---- */
.hp-hero-slide { display: none; }
.hp-hero-slide.active { display: flex; }
.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(124,58,237,0.3);
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}
.slider-dot.active { background: #7c3aed; width: 28px; border-radius: 5px; }

/* ---- BRAND LOGOS MARQUEE STRIP ---- */
.hp-brands {
  background: #fff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 28px 0;
  overflow: hidden;
}
.hp-brands-heading {
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 24px;
  position: relative;
}
.hp-brands-heading::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed, #ec4899);
  border-radius: 4px;
  margin: 8px auto 0;
}
.hp-brands-track-wrap { overflow: hidden; }
.hp-brands-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: brandMarquee 18s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.hp-brands-track:hover { animation-play-state: paused; }
@keyframes brandMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.hp-brand-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  transition: all 0.3s;
  filter: grayscale(0.4);
}
.hp-brand-logo:hover { filter: grayscale(0); transform: scale(1.07); border-color: #7c3aed; }

/* ---- ABOUT + SECOND BANNER ROW ---- */
.hp-about { background: #fff; }
.hp-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hp-about-text h2 {
  font-size: 28px;
  font-weight: 900;
  color: #7c3aed;
  margin-bottom: 4px;
}
.hp-about-text h2 .underline-red {
  display: block;
  width: 48px;
  height: 4px;
  background: #4f46e5;
  border-radius: 4px;
  margin-top: 6px;
  margin-bottom: 16px;
}
.hp-about-text p { font-size: 13.5px; color: #64748b; line-height: 1.8; margin-bottom: 12px; }
.hp-about-banner {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  position: relative;
}
.hp-about-banner img { width: 100%; height: 300px; object-fit: cover; display: block; }
.hp-about-banner-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: linear-gradient(135deg, #4f46e5, #b91c1c);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 999px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(220,38,38,0.4);
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ---- FEATURED PRODUCT CATEGORIES GRID ---- */
.hp-categories { background: #f8fafc; }
.hp-section-heading {
  text-align: center;
  margin-bottom: 40px;
}
.hp-section-heading h2 {
  font-size: 28px;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 6px;
}
.hp-section-heading p { font-size: 13px; color: #94a3b8; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.hp-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}
.hp-cat-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
  display: block;
  color: inherit;
}
.hp-cat-card:hover {
  transform: translateY(-5px);
  border-color: #7c3aed;
  box-shadow: 0 16px 40px rgba(124,58,237,0.12);
}
.hp-cat-icon {
  font-size: 40px;
  margin-bottom: 12px;
  display: block;
}
.hp-cat-name {
  font-size: 14px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.3;
}
.hp-cat-sub {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
  margin-top: 4px;
}

/* ---- PRODUCTS SHOWCASE GRID ---- */
.hp-products { background: #fff; }
.hp-products-inner {
  display: block;
}
.hp-products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.hp-prod-card {
  background: #fff;
  border: 1.5px solid #f1e8ff;
  border-radius: 18px;
  padding: 18px;
  transition: all 0.3s;
}
.hp-prod-card:hover {
  transform: translateY(-4px);
  border-color: #7c3aed;
  box-shadow: 0 12px 32px rgba(124,58,237,0.1);
}
/* Product card thumb area */
.hp-prod-thumb {
  width: 100%;
  height: 110px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fdf4ff 0%, #ede9fe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid #e9d5ff;
  position: relative;
}
.hp-prod-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hp-prod-thumb-emoji {
  font-size: 54px;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(124,58,237,0.2));
}
.hp-prod-sku { font-size: 10px; color: #94a3b8; font-weight: 700; font-family: monospace; }
.hp-prod-name { font-size: 13px; font-weight: 800; color: #1e293b; margin: 4px 0 8px; line-height: 1.4; }
.hp-prod-prices { display: flex; align-items: baseline; gap: 8px; margin-bottom: 10px; }
.hp-prod-original { font-size: 11px; color: #94a3b8; text-decoration: line-through; }
.hp-prod-offer { font-size: 16px; font-weight: 900; color: #7c3aed; }
.hp-prod-badge {
  display: inline-block;
  background: #fdf2f8;
  color: #db2777;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid #fbcfe8;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hp-prod-btn {
  display: block;
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  color: #fff;
  text-align: center;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
}
.hp-prod-btn:hover { opacity: 0.9; transform: translateY(-1px); }
/* Ad columns removed */

/* ---- PRICELIST CTA BANNER ---- */
.hp-pricelist-cta {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.hp-pricelist-cta::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hp-pricelist-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.hp-pricelist-text { flex: 1; color: #fff; }
.hp-pricelist-text h2 { font-size: 30px; font-weight: 900; margin-bottom: 10px; }
.hp-pricelist-text p { font-size: 14px; color: rgba(255,255,255,0.75); max-width: 480px; line-height: 1.7; margin-bottom: 24px; }
.hp-pricelist-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #1e1b4b;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  border-radius: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(245,158,11,0.4);
  transition: all 0.3s;
}
.hp-pricelist-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(245,158,11,0.6); }
.hp-pricelist-image {
  flex: 0 0 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.hp-pricelist-image img { width: 100%; height: 200px; object-fit: cover; display: block; }

/* ---- STATS ROW ---- */
.hp-stats { background: #fdf4ff; border-top: 1px solid #e9d5ff; border-bottom: 1px solid #e9d5ff; padding: 40px 0; }
.hp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hp-stat-card {
  text-align: center;
  padding: 24px 16px;
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid #e9d5ff;
  transition: all 0.3s;
}
.hp-stat-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(124,58,237,0.1); }
.hp-stat-icon { font-size: 36px; display: block; margin-bottom: 10px; }
.hp-stat-number { font-size: 30px; font-weight: 900; color: #7c3aed; display: block; }
.hp-stat-label { font-size: 10px; color: #94a3b8; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }

/* ---- TESTIMONIALS ---- */
.hp-testimonials { background: #fff; }
.hp-test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hp-test-card {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px 22px;
  position: relative;
}
.hp-test-card::before {
  content: '"';
  position: absolute;
  top: 12px; left: 20px;
  font-size: 72px;
  color: #ede9fe;
  font-family: Georgia, serif;
  line-height: 1;
  font-weight: 900;
}
.hp-test-stars { color: #f59e0b; font-size: 14px; margin-bottom: 12px; }
.hp-test-quote { font-size: 13px; color: #475569; line-height: 1.75; font-style: italic; margin-bottom: 16px; }
.hp-test-author { font-size: 11px; color: #94a3b8; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }

/* ---- WHY CHOOSE US ---- */
.hp-why { background: #f8fafc; }
.hp-why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hp-why-text h2 { font-size: 28px; font-weight: 900; color: #1e293b; margin-bottom: 16px; line-height: 1.2; }
.hp-why-text .highlight { color: #7c3aed; }
.hp-why-text p { font-size: 13.5px; color: #64748b; line-height: 1.8; margin-bottom: 20px; }
.hp-why-license {
  border-left: 4px solid #7c3aed;
  padding-left: 16px;
  margin-bottom: 24px;
}
.hp-why-license span { font-size: 10px; color: #94a3b8; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; display: block; }
.hp-why-license strong { font-size: 14px; color: #7c3aed; font-family: monospace; }
.hp-why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hp-why-feat {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px 16px;
}
.hp-why-feat-icon { font-size: 24px; margin-bottom: 8px; display: block; }
.hp-why-feat h4 { font-size: 13px; font-weight: 800; color: #1e293b; margin-bottom: 4px; }
.hp-why-feat p { font-size: 11px; color: #94a3b8; line-height: 1.6; }

/* ---- CONTACT CTA ---- */
.hp-contact-cta {
  background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 60%, #2563eb 100%);
  padding: 56px 0;
}
.hp-contact-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.hp-contact-text h2 { font-size: 26px; font-weight: 900; color: #fff; margin-bottom: 8px; }
.hp-contact-text p { font-size: 14px; color: rgba(255,255,255,0.75); max-width: 420px; }
.hp-contact-details { display: flex; flex-direction: column; gap: 12px; }
.hp-contact-detail { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 600; }
.hp-contact-detail span { font-size: 18px; }
.hp-contact-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #fff;
  color: #7c3aed;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  border-radius: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: all 0.3s;
  white-space: nowrap;
}
.hp-contact-btn:hover { transform: translateY(-2px); background: #f8fafc; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hp-about-inner { grid-template-columns: 1fr; }
  .hp-pricelist-inner { flex-direction: column; }
  .hp-pricelist-image { flex: 0 0 auto; width: 100%; }
  .hp-why-inner { grid-template-columns: 1fr; }
  .hp-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-test-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hp-hero-inner { flex-direction: column; text-align: center; }
  .hp-hero-image { flex: none; max-width: 100%; }
  .hp-hero-buttons { justify-content: center; }
  .hp-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-products-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-why-features { grid-template-columns: 1fr; }
  .hp-contact-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hp-section { padding: 40px 0; }
  .hp-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-products-grid { grid-template-columns: 1fr 1fr; }
}
