/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;900&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #e67e22;
  --primary-dark: #d35400;
  --primary-light: #f39c12;
  --gold: #f4c430;
  --green: #27ae60;
  --dark: #0d0d0d;
  --dark2: #1a1a2e;
  --dark3: #16213e;
  --text-light: #f0f0f0;
  --text-muted: #aaa;
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.1);
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark);
  color: var(--text-light);
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ===== TOP BAR ===== */
.top-navbar {
  background: linear-gradient(90deg, #0d0d0d, #1a0a00) !important;
  border-bottom: 1px solid rgba(230,126,34,0.3);
  padding: 8px 0;
  font-size: 13px;
}
.top-navbar a {
  color: var(--text-muted) !important;
  text-decoration: none;
  transition: color 0.3s;
}
.top-navbar a:hover { color: var(--primary) !important; }

/* ===== NAVBAR ===== */
.head {
  background: linear-gradient(90deg, #1a0a00, #2d1200, #1a0a00) !important;
  border-bottom: 2px solid var(--primary);
  box-shadow: 0 4px 20px rgba(230,126,34,0.2);
  position: sticky;
  top: 0;
  z-index: 999;
}
.navbar-brand img { filter: drop-shadow(0 0 8px rgba(230,126,34,0.5)); }
.nav-item a {
  color: var(--text-light) !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 14px;
  border: 1px solid transparent;
  border-radius: 25px;
  padding: 8px 22px !important;
  margin: 0 5px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.nav-item a:hover, .nav-item a.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: var(--primary);
  color: white !important;
  box-shadow: 0 4px 15px rgba(230,126,34,0.4);
  transform: translateY(-1px);
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.35);
  transition: transform 8s ease;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(13,13,13,0.85) 0%,
    rgba(26,10,0,0.7) 50%,
    rgba(211,84,0,0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
  animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230,126,34,0.5); }
  50% { box-shadow: 0 0 20px 8px rgba(230,126,34,0.2); }
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 7vw, 90px);
  font-weight: 900;
  line-height: 1.1;
  color: white;
  text-shadow: 0 0 40px rgba(230,126,34,0.3);
}
.hero-title span {
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--text-muted);
  line-height: 1.8;
  margin: 20px 0 35px;
  max-width: 600px;
}
.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-primary-glow {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  padding: 14px 35px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 6px 25px rgba(230,126,34,0.4);
}
.btn-primary-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(230,126,34,0.6);
  color: white;
}
.btn-outline-glow {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.btn-outline-glow:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.hero-stat h3 {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat p { font-size: 12px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }
.hero-visual { position: relative; }
.hero-card-float {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 25px;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
.hero-card-float .icon-circle {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 15px;
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--primary);
  border-radius: 50%;
  animation: particle-float linear infinite;
  opacity: 0.6;
}
@keyframes particle-float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* ===== SECTION TITLES ===== */
.section-tag {
  display: inline-block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: white;
  line-height: 1.2;
}
.section-title span {
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 2px;
  margin: 15px 0 20px;
}
.section-divider.center { margin: 15px auto 20px; }

/* ===== ABOUT SECTION ===== */
.about-section { padding: 100px 0; background: linear-gradient(180deg, var(--dark) 0%, #0f0a03 100%); }
.about-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.about-img-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--primary);
  border-radius: 20px;
  z-index: 1;
  opacity: 0.5;
}
.about-img-wrapper img { width: 100%; height: auto; display: block; border-radius: 20px; }
.about-badge-float {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  border-radius: 15px;
  padding: 15px 20px;
  text-align: center;
  z-index: 2;
}
.about-badge-float h4 { font-size: 28px; font-weight: 800; color: white; margin: 0; }
.about-badge-float p { font-size: 11px; color: rgba(255,255,255,0.8); margin: 0; letter-spacing: 1px; }
.about-text p { color: var(--text-muted); line-height: 1.9; font-size: 14px; margin-bottom: 15px; }
.about-text p span { color: var(--primary); font-weight: 600; font-size: 16px; }
.about-text b { color: var(--gold); font-size: 15px; }
.about-features { display: flex; flex-direction: column; gap: 15px; margin-top: 25px; }
.about-feature-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 14px 18px;
  transition: all 0.3s;
}
.about-feature-item:hover {
  border-color: var(--primary);
  transform: translateX(5px);
  background: rgba(230,126,34,0.05);
}
.feature-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.about-feature-item h6 { color: white; font-size: 14px; font-weight: 600; margin: 0 0 4px; }
.about-feature-item p { color: var(--text-muted); font-size: 12px; margin: 0; }

/* ===== MISSION / VISION ===== */
.mv-section { padding: 80px 0; background: #080808; }
.mv-card {
  background: linear-gradient(135deg, rgba(26,10,0,0.8), rgba(13,13,13,0.9));
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
}
.mv-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(230,126,34,0.2);
}
.mv-icon { font-size: 48px; margin-bottom: 20px; }
.mv-card h1 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}
.mv-card p { color: var(--text-muted); font-size: 13px; line-height: 1.9; margin-bottom: 12px; }
.mv-card p span { color: var(--primary); font-weight: 600; }
.mv-img { border-radius: 20px; width: 100%; height: 100%; object-fit: cover; box-shadow: var(--shadow); }

/* ===== PRODUCTS SECTION ===== */
.products-section { padding: 100px 0; background: linear-gradient(180deg, #080808, var(--dark)); }
.product-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 25px 60px rgba(230,126,34,0.25);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 250px;
  background: linear-gradient(135deg, #1a1a1a, #2d1200);
  display: flex; align-items: center; justify-content: center;
}
.product-img-wrap img { max-height: 220px; max-width: 100%; object-fit: contain; transition: transform 0.4s; }
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7));
}
.product-info { padding: 20px; }
.product-info h5 { color: white; font-size: 15px; font-weight: 600; margin: 0; }
.product-info span { color: var(--primary); font-size: 12px; }

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-dark), #7d2a00, var(--primary-dark));
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-item { text-align: center; position: relative; z-index: 1; }
.stat-item h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: white;
  text-shadow: 0 0 30px rgba(255,255,255,0.3);
  border-bottom: 2px solid rgba(255,255,255,0.3);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.stat-item p { color: rgba(255,255,255,0.85); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; }

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(180deg, #080808, #000);
  border-top: 1px solid rgba(230,126,34,0.2);
  padding-top: 60px;
}
.foot img { filter: drop-shadow(0 0 10px rgba(230,126,34,0.4)); margin-bottom: 10px; }
.foot h3 {
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
}
.home h3 { color: var(--primary); font-weight: 700; font-size: 16px; letter-spacing: 2px; margin-bottom: 20px; }
.home li { list-style: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
.home li a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 48px;
  transition: all 0.3s;
  display: block;
}
.home li a:hover { color: var(--primary); padding-left: 10px; }
.follow h3 { color: var(--primary); font-weight: 700; font-size: 16px; letter-spacing: 2px; margin-bottom: 15px; }
.follow img { display: inline; height: 40px; width: 40px; margin: 10px 8px 0 0; transition: transform 0.3s; filter: brightness(0.8); }
.follow img:hover { transform: scale(1.2) rotate(5deg); filter: brightness(1.2); }
.sub input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 15px;
  color: white;
  width: 100%;
  font-size: 13px;
  outline: none;
  margin-bottom: 12px;
}
.sub input:focus { border-color: var(--primary); }
.sub a {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  text-decoration: none;
  color: white;
  font-size: 13px;
  border-radius: 10px;
  padding: 10px 25px;
  display: inline-block;
  transition: all 0.3s;
  font-weight: 600;
}
.sub a:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(230,126,34,0.4); }
.last {
  background: linear-gradient(90deg, #0d0d0d, #1a0a00, #0d0d0d);
  border-top: 1px solid rgba(230,126,34,0.15);
  padding: 18px;
  margin-top: 40px;
  text-align: center;
}
.last p { color: var(--text-muted); font-size: 13px; margin: 0; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.8s ease forwards; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-stats { gap: 20px; }
  .mv-card { margin-bottom: 20px; }
  .hero-section { min-height: 70vh; }
}
