/* ===== ROOT ===== */
:root {
  --primary: #E8600A;
  --primary-dark: #C04E08;
  --primary-light: #FF8C42;
  --accent: #FFA500;
  --white: #ffffff;
  --light-bg: #FFF8F3;
  --dark: #111827;
  --gray: #6B7280;
  --light-gray: #F9FAFB;
  --border: #E5E7EB;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 8px 30px rgba(232,96,10,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --radius: 16px;
  --radius-sm: 8px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Poppins', sans-serif; color: var(--dark); background: var(--white); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: 'Poppins', sans-serif;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(232,96,10,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); }
.btn-outline:hover { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-full { width: 100%; justify-content: center; }
.btn-whatsapp { background: #25D366; color: var(--white); margin-top: 10px; }
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ===== SECTION ===== */
.section { padding: 100px 0; }
.section-alt { background: var(--light-bg); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  background: rgba(232,96,10,0.1);
  color: var(--primary);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(232,96,10,0.2);
}
.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title.left { text-align: left; }
.section-sub { color: var(--gray); font-size: 1rem; max-width: 550px; margin: 0 auto; line-height: 1.7; }

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 24px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { width: 145px; object-fit: contain; }

nav { display: flex; align-items: center; gap: 12px; }
.nav-links { display: flex; align-items: center; gap: 6px; }

/* Mobile menu overlay - body level, outside header */
.mobile-menu {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  flex-direction: column;
  overflow-y: auto;
  z-index: 9000;
}
.mobile-menu.open { display: flex; }
.mobile-menu > ul { display: flex; flex-direction: column; width: 100%; }
.mobile-menu > ul > li { border-bottom: 1px solid var(--border); }
.mobile-menu > ul > li > a { display: block; padding: 16px 20px; font-size: 0.95rem; color: var(--dark); font-weight: 500; transition: all 0.2s; }
.mobile-menu > ul > li > a:hover { background: var(--light-bg); color: var(--primary); }
.mobile-menu > ul > li > a.nav-cta { background: var(--primary); color: var(--white); margin: 16px 20px; border-radius: var(--radius-sm); text-align: center; padding: 14px 20px; display: block; }
.mob-dropdown-toggle { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; font-size: 0.95rem; font-weight: 500; color: var(--dark); cursor: pointer; transition: all 0.2s; }
.mob-dropdown-toggle:hover { background: var(--light-bg); color: var(--primary); }
.mob-dropdown-toggle i { transition: transform 0.3s; font-size: 0.8rem; }
.mob-dropdown.open .mob-dropdown-toggle i { transform: rotate(180deg); }
.mob-submenu { display: none !important; background: var(--light-bg); border-top: 1px solid var(--border); flex-direction: column; }
.mob-dropdown.open .mob-submenu { display: flex !important; }
.mob-submenu > li { border-bottom: 1px solid var(--border); }
.mob-submenu > li > a { display: block; padding: 13px 20px 13px 36px; font-size: 0.88rem; color: var(--gray); }
.mob-submenu > li > a > i { color: var(--primary); margin-right: 8px; }
.nav-links > li > a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--dark);
  transition: all 0.2s;
}
.nav-links > li > a:hover { color: var(--primary); background: rgba(232,96,10,0.06); }
.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius-sm) !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; }

/* Dropdown - desktop only */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  min-width: 260px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 10px;
  z-index: 1001;
  border: 1px solid var(--border);
}
.dropdown:hover .dropdown-menu { display: block; animation: fadeDown 0.2s ease; }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.dropdown-menu li a i { color: var(--primary); width: 16px; }
.dropdown-menu li a:hover { background: var(--light-bg); color: var(--primary); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; z-index: 1200; position: relative; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--dark); border-radius: 2px; transition: 0.3s; }

/* ===== NAV SEARCH ===== */
.nav-search-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(232,96,10,0.08);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--dark);
  font-size: 0.95rem;
  transition: all 0.2s;
  flex-shrink: 0;
}
.nav-search-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.nav-search-overlay {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 2px solid var(--primary);
  padding: 12px 24px;
  display: none;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.nav-search-overlay.open { display: block; animation: searchSlideDown 0.2s ease; }
@keyframes searchSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav-search-form {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
}
.nav-search-form > i { color: var(--primary); font-size: 1rem; flex-shrink: 0; }
.nav-search-form input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: transparent;
  padding: 6px 0;
}
.nav-search-form input::placeholder { color: var(--gray); }
.nav-search-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--gray);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.nav-search-close:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  padding-top: 76px;
  background: linear-gradient(135deg, #0a0300 0%, #150600 40%, #1f0900 70%, #2a1000 100%);
  overflow: clip;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(232,96,10,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(232,96,10,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Particles */
.hero-particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-particles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(232,96,10,0.15);
  animation: floatParticle 8s ease-in-out infinite;
}
.hero-particles span:nth-child(1) { width: 300px; height: 300px; top: -100px; left: -80px; animation-delay: 0s; }
.hero-particles span:nth-child(2) { width: 200px; height: 200px; top: 60%; right: 5%; animation-delay: 2s; background: rgba(255,165,0,0.08); }
.hero-particles span:nth-child(3) { width: 150px; height: 150px; bottom: -50px; left: 30%; animation-delay: 4s; }
.hero-particles span:nth-child(4) { width: 80px; height: 80px; top: 20%; left: 45%; animation-delay: 1s; background: rgba(232,96,10,0.1); }
.hero-particles span:nth-child(5) { width: 120px; height: 120px; top: 40%; right: 55%; animation-delay: 3s; }
@keyframes floatParticle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-30px) scale(1.1); opacity: 1; }
}

.hero-left {
  display: flex;
  align-items: center;
  padding: 20px 40px 20px 60px;
  position: relative;
  z-index: 1;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 20px;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.hero-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transform: scale(1.1);
  filter: drop-shadow(0 20px 60px rgba(232,96,10,0.25));
}

/* Floating cards */
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  z-index: 2;
  letter-spacing: 0.3px;
}
.hero-float-card i { color: var(--primary); font-size: 0.9rem; }
.card-1 { top: 15%; left: -10%; animation: floatCard 4s ease-in-out infinite; }
.card-2 { top: 50%; right: -5%; animation: floatCard 4s ease-in-out infinite 1.5s; }
.card-3 { bottom: 15%; left: 0%; animation: floatCard 4s ease-in-out infinite 3s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== HERO INNER ===== */
.hero-inner {
  display: none;
}

/* LEFT CONTENT */
.hero-content { position: relative; z-index: 1; max-width: 100%; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,96,10,0.15);
  border: 1px solid rgba(232,96,10,0.4);
  color: #ffbb66;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.highlight {
  background: linear-gradient(135deg, #ff6b1a, #ffcc00, #ff6b1a);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.hero-content > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 460px;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #ff7a20);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,96,10,0.45);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,96,10,0.55);
}

.hero-stats {
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 16px 20px;
  width: fit-content;
  backdrop-filter: blur(12px);
}
.stat { text-align: center; padding: 0 20px; flex-shrink: 0; }
.stat span { display: block; font-size: 1.7rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat p { font-size: 0.7rem; color: rgba(255,255,255,0.5); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

/* ===== HERO SHOWCASE (RIGHT) ===== */
.hero-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.hero-showcase::before { display: none; }
.hero-showcase::after { display: none; }

.showcase-main {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(232,96,10,0.35);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow:
    0 0 0 1px rgba(232,96,10,0.12),
    0 30px 80px rgba(0,0,0,0.6),
    0 0 50px rgba(232,96,10,0.12);
  animation: showcaseFloat 5s ease-in-out infinite;
  padding: 24px;
}
@keyframes showcaseFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}
.showcase-main img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 16px 40px rgba(232,96,10,0.4));
}
.showcase-glow {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: radial-gradient(ellipse at 50% 100%, rgba(232,96,10,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.showcase-tag {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(232,96,10,0.3);
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 7px 20px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  letter-spacing: 0.3px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--primary);
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
}
.trust-track {
  display: inline-flex;
  gap: 50px;
  animation: marquee 25s linear infinite;
}
.trust-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.trust-track span i { font-size: 0.85rem; opacity: 0.85; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== CATEGORY TABS ===== */
.cat-tabs {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 6px 4px 16px 4px;
  margin-bottom: 36px;
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  background: var(--white);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  font-family: 'Poppins', sans-serif;
  min-width: 200px;
}
.cat-tab-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(232,96,10,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.cat-tab-icon i { font-size: 1.2rem; color: var(--primary); }
.cat-tab-text { text-align: left; }
.cat-tab-text span { display: block; font-size: 0.88rem; font-weight: 700; color: var(--dark); transition: color 0.3s; line-height: 1.3; }
.cat-tab-text small { display: block; font-size: 0.73rem; color: var(--gray); margin-top: 3px; transition: color 0.3s; }
.cat-tab:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(232,96,10,0.15);
}
.cat-tab:hover .cat-tab-icon { background: rgba(232,96,10,0.15); }
.cat-tab.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(232,96,10,0.35);
  transform: translateY(-3px);
}
.cat-tab.active .cat-tab-icon { background: rgba(255,255,255,0.2); }
.cat-tab.active .cat-tab-icon i { color: var(--white); }
.cat-tab.active .cat-tab-text span { color: var(--white); }
.cat-tab.active .cat-tab-text small { color: rgba(255,255,255,0.8); }

/* ===== SCROLL BUTTONS ===== */
.scroll-wrapper {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 16px;
}
.scroll-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.scroll-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ===== PRODUCTS HORIZONTAL SCROLL ===== */
.products-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 12px;
  align-items: stretch;
  scrollbar-width: none;
}
.products-scroll::-webkit-scrollbar { display: none; }

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: var(--shadow-sm);
  min-width: 300px;
  max-width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover::before { opacity: 1; }
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(232,96,10,0.15);
  border-color: rgba(232,96,10,0.2);
}
.product-img {
  background: linear-gradient(135deg, #1c0d00, #3d2010);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 210px;
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
}
.product-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.product-card:hover .product-real-img { transform: scale(1.08); }
.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-badge.new { background: #10B981; }
.product-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); line-height: 1.4; }
.product-body > p { color: var(--gray); font-size: 0.85rem; line-height: 1.6; margin-bottom: 14px; flex: 1; }
.product-features { margin-bottom: 18px; display: flex; flex-direction: column; gap: 7px; }
.product-features li { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--gray); }
.product-features i { color: var(--primary); font-size: 0.72rem; flex-shrink: 0; }


.why-us { background: linear-gradient(135deg, #0a0300 0%, #150600 40%, #1f0900 70%, #2a1000 100%); position: relative; overflow: hidden; }
.why-us::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,96,10,0.06) 0%, transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}
.why-us .section-tag { background: rgba(255,165,0,0.15); color: var(--accent); border-color: rgba(255,165,0,0.2); }
.why-us .section-title { color: var(--white); }
.why-us .section-sub { color: rgba(255,255,255,0.45); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 36px 28px 32px;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.why-num {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(232,96,10,0.08);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -2px;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.35s;
  transform-origin: left;
}
.why-card:hover::after { transform: scaleX(1); }
.why-card:hover { background: rgba(232,96,10,0.07); border-color: rgba(232,96,10,0.2); transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.why-card:hover .why-num { color: rgba(232,96,10,0.15); }
.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(232,96,10,0.35);
  transition: transform 0.3s;
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(-5deg); }
.why-icon i { font-size: 1.5rem; color: var(--white); }
.why-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.45); font-size: 0.87rem; line-height: 1.7; }

/* ===== SECTION PRODUCTS BG ===== */
#products { background: var(--light-bg); }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about-visual { position: relative; height: 420px; }
.about-img-wrap {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.about-exp-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.about-exp-num { font-size: 1.6rem; font-weight: 800; line-height: 1; }
.about-exp-text { font-size: 0.72rem; font-weight: 600; opacity: 0.9; white-space: nowrap; margin-top: 3px; }
.about-card-sm {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  font-size: 0.88rem;
  z-index: 2;
}
.about-card-sm i { color: var(--primary); font-size: 1.1rem; }
.top-right { top: 10px; right: 10px; }
.bottom-left { bottom: 10px; left: 10px; }
.about-text .section-tag { display: inline-block; margin-bottom: 14px; }
.about-text p { color: var(--gray); line-height: 1.8; margin-bottom: 16px; font-size: 0.95rem; }
.about-list { margin: 20px 0 30px; display: flex; flex-direction: column; gap: 10px; }
.about-list li { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; }
.about-list i { color: var(--primary); font-size: 1rem; }

/* ===== INDIA MAP ===== */
.map-section { background: var(--light-bg); }
.map-section .section-title { color: var(--dark); }
.map-section .section-sub { color: var(--gray); }
.map-section .section-tag { background: rgba(232,96,10,0.1); color: var(--primary); border-color: rgba(232,96,10,0.2); }
.map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.map-wrap { max-width: 420px; margin: 0 auto; width: 100%; }
.map-img-box {
  position: relative;
  display: inline-block;
  width: 100%;
}
.india-map-img { width: 100%; height: auto; display: block; }

/* Pins */
.mpin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -100%);
  cursor: pointer;
  z-index: 3;
}
.mpin-icon {
  font-size: 1.8rem;
  color: #ffffff;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
  animation: pinPulse 2s ease-in-out infinite;
  display: block;
}
.mpin-dot-only {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 3px rgba(232,96,10,0.3);
  animation: pinPulse 2s ease-in-out infinite;
  z-index: 3;
}
.mpin-label {
  background: var(--dark);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  margin-bottom: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  font-family: 'Poppins', sans-serif;
  order: -1;
}

/* Map info */
.states-title { font-size: 0.88rem; font-weight: 700; color: var(--primary); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.states-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 320px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--border);
  padding-right: 4px;
}
.state-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray);
  white-space: nowrap;
  transition: all 0.2s;
}
.state-chip i { font-size: 0.65rem; color: var(--gray); }
.state-chip:hover { border-color: var(--primary); color: var(--primary); }
.state-chip i:hover { color: var(--primary); }
.active-chip {
  background: rgba(232,96,10,0.08);
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 700;
}
.active-chip i { color: var(--primary); }

@media (max-width: 900px) { .map-grid { grid-template-columns: 1fr; gap: 30px; } .map-wrap { max-width: 340px; } }
@media (max-width: 480px) { .map-wrap { max-width: 100%; } .mpin-label { font-size: 0.5rem; padding: 2px 5px; } .mpin-dot { width: 10px; height: 10px; } }

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  background: linear-gradient(135deg, #0a0300 0%, #150600 40%, #1f0900 70%, #2a1000 100%);
  overflow: hidden;
}
.reviews-section .section-tag { background: rgba(255,165,0,0.15); color: var(--accent); border-color: rgba(255,165,0,0.2); }
.reviews-section .section-title { color: var(--white); }
.reviews-section .section-sub { color: rgba(255,255,255,0.5); }

/* Rating Summary */
.rev-summary {
  display: flex;
  align-items: center;
  gap: 50px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.rev-summary-score { text-align: center; flex-shrink: 0; }
.rev-big-score {
  display: block;
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.rev-big-stars { color: var(--accent); font-size: 1.4rem; letter-spacing: 3px; margin: 6px 0 4px; }
.rev-summary-score p { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.rev-summary-bars { flex: 1; min-width: 180px; display: flex; flex-direction: column; gap: 8px; }
.rev-bar-row { display: flex; align-items: center; gap: 10px; }
.rev-bar-row > span { font-size: 0.78rem; color: rgba(255,255,255,0.5); width: 24px; flex-shrink: 0; }
.rev-bar-row > span:last-child { width: 32px; text-align: right; }
.rev-bar { flex: 1; height: 6px; background: rgba(255,255,255,0.1); border-radius: 50px; overflow: hidden; }
.rev-bar-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 50px; }
.rev-summary-stats { display: flex; flex-direction: column; gap: 16px; flex-shrink: 0; }
.rev-stat-item { display: flex; align-items: center; gap: 12px; }
.rev-stat-item i { width: 36px; height: 36px; background: rgba(232,96,10,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 0.9rem; }
.rev-stat-item span { font-size: 1.1rem; font-weight: 700; color: var(--white); display: block; line-height: 1; }
.rev-stat-item p { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* Marquee */
.rev-marquee-wrap {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 80px, black calc(100% - 80px), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 80px, black calc(100% - 80px), transparent);
}
.rev-marquee {
  display: flex;
  gap: 20px;
  animation: revScroll 35s linear infinite;
  width: max-content;
}
.rev-marquee:hover { animation-play-state: paused; }
@keyframes revScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.rev-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 24px;
  width: 320px;
  flex-shrink: 0;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.rev-card::before {
  content: '\201C';
  position: absolute;
  top: -8px; right: 16px;
  font-size: 6rem;
  color: rgba(232,96,10,0.1);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.rev-card:hover { background: rgba(232,96,10,0.08); border-color: rgba(232,96,10,0.25); transform: translateY(-4px); }
.rev-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.rev-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.rev-card-top h4 { font-size: 0.9rem; font-weight: 700; color: var(--white); }
.rev-card-top p { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 2px; }
.rev-card-stars { margin-left: auto; color: var(--accent); font-size: 0.8rem; letter-spacing: 1px; flex-shrink: 0; }
.rev-card > p { color: rgba(255,255,255,0.65); font-size: 0.85rem; line-height: 1.7; font-style: italic; margin-bottom: 14px; }
.rev-card-product { display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; color: var(--primary); font-weight: 600; }
.rev-card-product i { font-size: 0.7rem; }

@media (max-width: 768px) {
  .rev-summary { flex-direction: column; gap: 24px; padding: 24px 20px; }
  .rev-summary-stats { flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .rev-card { width: 280px; }
}
@media (max-width: 480px) {
  .rev-card { width: 250px; padding: 18px; }
  .rev-big-score { font-size: 3rem; }
}

/* ===== GALLERY HORIZONTAL SCROLL ===== */
.gallery-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.gallery-scroll::-webkit-scrollbar { display: none; }

.gallery-item {
  min-width: 280px;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.06);
}
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img,
.gallery-item:hover video { transform: scale(1.05); }
.gallery-item iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.gallery-video { min-width: 280px; height: 200px; overflow: hidden; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.gallery-overlay i {
  color: var(--white);
  font-size: 1.8rem;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.3s;
}
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.45); }
.gallery-item:hover .gallery-overlay i { opacity: 1; transform: scale(1); }
.gallery-play i { font-size: 2.2rem; opacity: 0.85 !important; transform: scale(1) !important; }
.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 20px 14px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.gallery-label i { font-size: 0.75rem; color: var(--primary); }
.gallery-video .gallery-play { background: rgba(0,0,0,0.3); }
.gallery-item iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  cursor: pointer;
}
.lightbox-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 90vw;
  max-height: 90vh;
  flex-direction: column;
}
.lightbox-content img {
  max-width: 80vw;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  background: #1a1a1a;
  padding: 10px;
}
.lightbox-caption {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.lightbox-close:hover { background: var(--primary); }
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.lightbox-nav:hover { background: var(--primary); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ===== CONTACT ===== */
#contact { background: linear-gradient(135deg, #0f0500 0%, #1a0800 50%, #2a1000 100%); }
#contact .section-title { color: var(--white); }
#contact .section-sub { color: rgba(255,255,255,0.5); }
#contact .section-tag { background: rgba(255,165,0,0.15); color: var(--accent); border-color: rgba(255,165,0,0.2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 16px;
  transition: all 0.3s;
}
.contact-item:hover { background: rgba(232,96,10,0.08); border-color: rgba(232,96,10,0.2); }
.contact-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(232,96,10,0.3);
}
.contact-item h4 { font-weight: 600; font-size: 0.9rem; margin-bottom: 3px; color: var(--white); }
.contact-item p { color: rgba(255,255,255,0.5); font-size: 0.88rem; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: all 0.3s;
  color: var(--dark);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(232,96,10,0.08); }
.form-group textarea { resize: vertical; }

/* ===== FOOTER ===== */
footer { background: var(--light-bg); color: var(--gray); border-top: 1px solid var(--border); }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  padding: 70px 0 50px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p { font-size: 0.87rem; line-height: 1.8; margin: 16px 0 24px; max-width: 280px; color: var(--gray); }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo img { height: 44px; width: 44px; object-fit: contain; }
.footer-logo-main { display: block; font-size: 1.15rem; font-weight: 700; color: var(--primary); }
.footer-logo-sub { display: block; font-size: 0.7rem; color: var(--gray); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: all 0.3s;
  font-size: 0.9rem;
}
.footer-social a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); transform: translateY(-2px); }
.footer-links h4 { color: var(--dark); font-size: 0.9rem; font-weight: 700; margin-bottom: 20px; letter-spacing: 0.5px; }
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--gray);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before { content: '→'; font-size: 0.75rem; color: var(--primary); opacity: 0; transition: opacity 0.2s; }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-links a:hover::before { opacity: 1; }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray);
}

/* ===== SCROLL ANIMATION ===== */
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 2.4rem; }
  .about-grid { gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 30px; }
}

@media (max-width: 900px) {
  .section { padding: 70px 0; }
  .section-title { font-size: 2rem; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
    min-height: unset;
    overflow: visible;
    isolation: auto;
    z-index: auto;
  }
  .hero-left { padding: 90px 24px 24px; order: 1; }
  .hero-right { height: 280px; padding: 0 24px 30px; overflow: hidden; order: 2; }
  .hero-img-wrap img { transform: scale(1); }
  .hero-float-card { display: none; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content > p { font-size: 0.92rem; max-width: 100%; }
  .hero-badge { font-size: 0.7rem; padding: 5px 12px; margin-bottom: 12px; }
  .hero-btns { margin-bottom: 20px; }
  .hero-stats { flex-wrap: wrap; width: 100%; padding: 12px 16px; gap: 0; }
  .stat { padding: 8px 12px; }
  .stat span { font-size: 1.4rem; }
  .stat p { font-size: 0.65rem; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-visual { height: 260px; }
  .top-right { top: -10px; right: -10px; }
  .bottom-left { bottom: -10px; left: -10px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }

  /* Products */
  .product-card { min-width: 260px; max-width: 260px; }

  /* Gallery */
  .gallery-item { min-width: 220px; height: 180px; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-title { font-size: 1.8rem; }
  .section-header { margin-bottom: 36px; }
  .container { padding: 0 16px; }
  .logo img { height: 60px; width: 100px; }

  /* Navbar mobile */
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 76px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    z-index: 1001;
  }
  .nav-links.open { display: flex !important; }
  .nav-links > li { border-bottom: 1px solid var(--border); }
  .nav-links > li > a { display: block; padding: 16px 20px; font-size: 0.95rem; color: var(--dark); }
  .nav-links > li > a:hover { background: var(--light-bg); color: var(--primary); }
  .nav-cta { background: var(--primary) !important; color: var(--white) !important; margin: 16px 20px !important; border-radius: var(--radius-sm) !important; text-align: center; display: block !important; padding: 14px 20px !important; }
  .dropdown-menu { display: none; }
  .dropdown:hover .dropdown-menu { display: none; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
    min-height: unset;
    overflow: visible;
  }
  .hero-left { padding: 86px 16px 16px; order: 1; }
  .hero-right { height: 240px; padding: 0 16px 24px; overflow: hidden; order: 2; }
  .hero-img-wrap img { transform: scale(1); }
  .hero-content h1 { font-size: 1.75rem; line-height: 1.2; margin-bottom: 10px; }
  .hero-content > p { font-size: 0.88rem; margin-bottom: 18px; max-width: 100%; }
  .hero-badge { font-size: 0.68rem; padding: 5px 12px; margin-bottom: 12px; letter-spacing: 0.5px; }
  .hero-btns { gap: 10px; margin-bottom: 18px; }
  .hero-btns .btn { padding: 10px 18px; font-size: 0.85rem; }
  .hero-stats { padding: 10px 12px; width: 100%; max-width: 100%; }
  .stat { padding: 8px 10px; flex: 1; min-width: 60px; }
  .stat span { font-size: 1.2rem; }
  .stat p { font-size: 0.6rem; }
  .stat-divider { height: 28px; }

  /* Trust bar */
  .trust-track span { font-size: 0.72rem; }

  /* Category tabs */
  .cat-tab { min-width: 150px; padding: 12px 14px; gap: 10px; }
  .cat-tab-icon { width: 36px; height: 36px; }
  .cat-tab-text span { font-size: 0.8rem; }
  .cat-tab-text small { font-size: 0.68rem; }

  /* Products */
  .product-card { min-width: 240px; max-width: 240px; }
  .product-img { height: 180px; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-card { padding: 28px 20px; }

  /* About */
  .about-visual { height: 220px; }
  .about-card-big h3 { font-size: 2rem; }
  .about-card-sm { padding: 10px 14px; font-size: 0.8rem; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-item { min-width: 240px; height: 165px; }
  .gallery-video { min-width: 280px; height: 200px; overflow: hidden; }

  /* Contact */
  .contact-form { padding: 20px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .btn-whatsapp { width: 100%; justify-content: center; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 30px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { font-size: 0.78rem; }
}

@media (max-width: 480px) {
  .section { padding: 50px 0; }
  .section-title { font-size: 1.5rem; }
  .container { padding: 0 14px; }

  /* Hero */
  .hero-left { padding: 80px 14px 14px; }
  .hero-right { height: 200px; padding: 0 14px 20px; }
  .hero-content h1 { font-size: 1.5rem; }
  .hero-content > p { font-size: 0.85rem; }
  .hero-badge { font-size: 0.65rem; }
  .hero-btns { flex-direction: column; gap: 8px; margin-bottom: 16px; }
  .hero-btns .btn { width: 100%; justify-content: center; padding: 11px 16px; }
  .hero-stats { width: 100%; max-width: 100%; padding: 10px; justify-content: space-around; }
  .stat-divider { display: none; }
  .stat { padding: 6px 4px; flex: 1; min-width: 50px; }
  .stat span { font-size: 1.1rem; }
  .stat p { font-size: 0.58rem; }

  /* Products */
  .product-card { min-width: 220px; max-width: 220px; }

  /* Gallery */
  .gallery-item { min-width: 200px; height: 150px; }
  .gallery-video { min-width: 280px; height: 200px; overflow: hidden; }

  /* Cat tabs */
  .cat-tab { min-width: 130px; padding: 10px 12px; gap: 8px; }
  .cat-tab-icon { width: 32px; height: 32px; }
  .cat-tab-icon i { font-size: 0.9rem; }
  .cat-tab-text span { font-size: 0.76rem; }

  /* Why */
  .why-num { font-size: 3rem; }

  /* About */
  .about-visual { height: 200px; }
  .top-right { top: -8px; right: -8px; }
  .bottom-left { bottom: -8px; left: -8px; }

  /* Reviews */
  .review-card { padding: 20px 16px; }

  /* Contact */
  .contact-form { padding: 16px 14px; }

  /* Footer */
  .footer-top { gap: 20px; padding: 30px 0 20px; }
}


