/* =========================================
   ميلانو — أقوى مبيد للحشرات
   Glassmorphism + 3D + Dark Premium
   ========================================= */

:root {
  --bg-primary: #0a0a14;
  --bg-secondary: #111122;
  --bg-card: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.06);
  --glass-shadow: rgba(0,0,0,0.4);
  --glass-blur: blur(20px);
  --emerald: #00d68f;
  --emerald-dark: #009e6b;
  --emerald-glow: rgba(0, 214, 143, 0.25);
  --gold: #ffd54f;
  --gold-glow: rgba(255, 213, 79, 0.3);
  --accent: #ff6b6b;
  --text: #e8e8f0;
  --text-dim: rgba(255,255,255,0.5);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: all 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Cairo', sans-serif;
  background: var(--bg-primary);
  color: var(--text);
  overflow-x: hidden;
}

::selection { background: var(--emerald); color: #000; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--emerald); border-radius: 10px; }

.text-glow {
  background: linear-gradient(135deg, var(--emerald), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Particle Canvas ===== */
#particleCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* ===== Glass Utility ===== */
.glass {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px var(--glass-shadow);
}

/* ===== Top Bar ===== */
.top-bar {
  position: relative;
  z-index: 1001;
  background: rgba(10,10,20,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 6px 0;
  font-size: 12px;
}

.top-bar-info { display: flex; flex-wrap: wrap; gap: 6px 16px; }

.top-bar-info span {
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.top-bar-info a { color: var(--text-dim); text-decoration: none; transition: var(--transition); }
.top-bar-info a:hover { color: var(--emerald); }
.top-bar-info i { color: var(--emerald); font-size: 10px; width: 14px; text-align: center; }

.top-bar-social { display: flex; gap: 5px; }

.top-bar-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: var(--text-dim);
  text-decoration: none;
  font-size: 11px;
  transition: var(--transition);
}

.top-bar-social a:hover {
  background: var(--emerald);
  color: #000;
}

/* ===== Navbar Glass ===== */
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,20,0.8) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 6px 0;
  transition: var(--transition);
}

.navbar-brand { display: flex; align-items: center; gap: 10px; }

.brand-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-text {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.brand-text small {
  display: block;
  font-size: 10px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--emerald), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

.nav-link {
  font-weight: 600;
  font-size: 13px;
  color: var(--text-dim) !important;
  padding: 6px 14px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #fff !important;
  background: rgba(0, 214, 143, 0.08);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px; height: 2px;
  background: var(--emerald);
  border-radius: 10px;
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after { transform: translateX(-50%) scaleX(1); }

.btn-nav-wa {
  background: #25D366 !important;
  color: #000 !important;
  border-radius: 50px;
  padding: 7px 20px;
  font-weight: 700;
  font-size: 12px;
  transition: var(--transition);
  border: none;
}

.btn-nav-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.35);
}

/* ===== Hero ===== */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-primary);
  z-index: 1;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.orb-1 {
  width: 500px; height: 500px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(0, 214, 143, 0.15), transparent);
  animation: orbFloat1 12s ease-in-out infinite;
}

.orb-2 {
  width: 400px; height: 400px;
  bottom: -50px; left: -100px;
  background: radial-gradient(circle, rgba(255, 213, 79, 0.1), transparent);
  animation: orbFloat2 15s ease-in-out infinite;
}

.orb-3 {
  width: 300px; height: 300px;
  top: 40%; left: 50%;
  background: radial-gradient(circle, rgba(0, 214, 143, 0.08), transparent);
  animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 30px) scale(1.1); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.15); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-40%, -60%) scale(1.2); opacity: 0.8; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--emerald);
  padding: 5px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 16px;
}

.hero-badge span { color: var(--gold); }

.hero-title { margin-bottom: 10px; }

.hero-title-line {
  display: block;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
}

.hero-title-glow {
  background: linear-gradient(135deg, var(--emerald), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(13px, 1.5vw, 17px);
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 540px;
}

.hero-stats { display: flex; gap: 22px; margin-top: 22px; }

.hero-stat { text-align: center; }

.hero-stat-num {
  display: block;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--emerald), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 600;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color: #000;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px;
  right: -2px; bottom: -2px;
  background: linear-gradient(135deg, var(--emerald), var(--gold), var(--emerald));
  border-radius: 52px;
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px var(--emerald-glow);
}

.btn-hero-primary:hover::before { opacity: 1; }

.btn-hero-glass {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.btn-hero-glass:hover {
  background: #25D366;
  border-color: #25D366;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* ===== Hero 3D Scene ===== */
.hero-3d-scene {
  perspective: 800px;
  width: 320px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-3d-inner {
  position: relative;
  width: 280px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  animation: sceneFloat 6s ease-in-out infinite;
}

.hero-3d-ring {
  position: absolute;
  width: 260px;
  height: 260px;
  animation: ringSpin 12s linear infinite;
  transform-style: preserve-3d;
}

.hero-3d-ring span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--emerald-glow);
}

.hero-3d-ring span:nth-child(1) { transform: translate(-50%, -50%) rotateY(0deg) translateX(130px); }
.hero-3d-ring span:nth-child(2) { transform: translate(-50%, -50%) rotateY(60deg) translateX(130px); }
.hero-3d-ring span:nth-child(3) { transform: translate(-50%, -50%) rotateY(120deg) translateX(130px); }
.hero-3d-ring span:nth-child(4) { transform: translate(-50%, -50%) rotateY(180deg) translateX(130px); }
.hero-3d-ring span:nth-child(5) { transform: translate(-50%, -50%) rotateY(240deg) translateX(130px); }
.hero-3d-ring span:nth-child(6) { transform: translate(-50%, -50%) rotateY(300deg) translateX(130px); }

@keyframes ringSpin {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}

@keyframes sceneFloat {
  0%, 100% { transform: translateY(0) rotateX(5deg); }
  50% { transform: translateY(-15px) rotateX(-5deg); }
}

.hero-3d-product {
  max-height: 250px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 60px var(--emerald-glow));
  transform: translateZ(40px);
  transition: var(--transition-spring);
}

.hero-3d-glow {
  position: absolute;
  bottom: 20px;
  width: 180px;
  height: 30px;
  background: radial-gradient(ellipse, var(--emerald-glow), transparent);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: scaleX(1); opacity: 0.5; }
  50% { transform: scaleX(1.3); opacity: 0.8; }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--emerald);
  border-radius: 10px;
  margin-top: 6px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ===== Promo ===== */
.promo-section {
  position: relative;
  z-index: 2;
  padding: 30px 0;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.promo-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: default;
}

.promo-card:hover {
  background: rgba(0, 214, 143, 0.08);
  border-color: var(--emerald-glow);
  transform: translateY(-3px);
}

.promo-icon {
  width: 36px; height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: rgba(0, 214, 143, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  font-size: 16px;
}

.promo-card span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

/* ===== Section Common ===== */
.section { padding: 80px 0; position: relative; z-index: 1; }

.section-header { text-align: center; margin-bottom: 45px; }

.section-tag {
  display: inline-block;
  color: var(--emerald);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-transform: uppercase;
  opacity: 0.7;
}

.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.section-desc {
  font-size: 14px;
  color: var(--text-dim);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== Filter ===== */
.filter-wrap { margin-bottom: 30px; }

.filter-strip {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 60px;
  margin: 0 auto;
  width: fit-content;
}

.filter-btn {
  padding: 6px 16px;
  background: transparent;
  border: none;
  border-radius: 50px;
  font-family: 'Cairo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dim);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(0, 214, 143, 0.12);
  color: var(--emerald);
}

/* ===== Products ===== */
.products-section { background: var(--bg-secondary); }

.product-card {
  border-radius: var(--radius);
  padding-bottom: 0;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  will-change: transform;
}

.product-card:hover {
  border-color: var(--emerald-glow);
  box-shadow: 0 15px 50px var(--emerald-glow);
}

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, var(--gold), #ff9800);
  color: #000;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 9px;
  font-weight: 800;
  z-index: 3;
}

.product-badge-green {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color: #000;
}

.product-img {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;
  position: relative;
}

.product-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: var(--transition-spring);
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
}

.product-card:hover .product-img img {
  transform: scale(1.12) translateZ(20px);
}

.product-tag {
  display: inline-block;
  background: rgba(0, 214, 143, 0.08);
  color: var(--emerald);
  padding: 1px 10px;
  border-radius: 50px;
  font-size: 9px;
  font-weight: 700;
  margin-bottom: 3px;
  width: fit-content;
}

.product-info { padding: 12px 16px 16px; flex: 1; display: flex; flex-direction: column; }

.product-name {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 1px;
  color: #fff;
}

.product-size {
  font-size: 11px;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.product-price {
  font-size: 20px;
  font-weight: 900;
  color: var(--emerald);
  margin-top: auto;
}

.product-actions {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  width: 100%;
}

.product-actions a {
  flex: 1;
}

.btn-product-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  color: var(--text);
  border-radius: 50px;
  padding: 8px 6px;
  font-weight: 600;
  font-size: 11px;
  text-decoration: none;
  transition: var(--transition);
}

.btn-product-link:hover {
  border-color: var(--emerald);
  color: var(--emerald);
  background: rgba(0, 214, 143, 0.05);
}

.btn-product-glass {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(0, 214, 143, 0.1);
  border: 1px solid rgba(0, 214, 143, 0.15);
  color: var(--emerald);
  border-radius: 50px;
  padding: 8px;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  transition: var(--transition);
}

.btn-product-glass:hover {
  background: #25D366;
  border-color: #25D366;
  color: #000;
}

/* ===== About ===== */
.about-section { background: var(--bg-primary); }

.about-glass {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 20px;
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
}

.about-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.a-orb-1 {
  width: 200px; height: 200px;
  top: -50px; left: -50px;
  background: radial-gradient(circle, var(--emerald-glow), transparent);
}

.a-orb-2 {
  width: 150px; height: 150px;
  bottom: -30px; right: -30px;
  background: radial-gradient(circle, var(--gold-glow), transparent);
}

.about-img { width: 100%; display: block; position: relative; z-index: 1; }

.about-text {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 12px;
}

.about-features { display: flex; flex-direction: column; gap: 8px; }

.about-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.about-feat i { color: var(--emerald); font-size: 15px; }

.about-feat strong { color: var(--emerald); }

/* ===== Features ===== */
.features-section { background: var(--bg-secondary); }

.feat-card {
  padding: 30px 20px;
  border-radius: var(--radius);
  text-align: center;
  height: 100%;
  transition: var(--transition);
  border: 1px solid var(--glass-border);
}

.feat-card:hover {
  border-color: var(--emerald-glow);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px var(--emerald-glow);
}

.feat-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(0, 214, 143, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 24px;
  color: var(--emerald);
  transition: var(--transition);
}

.feat-card:hover .feat-icon {
  background: var(--emerald);
  color: #000;
  transform: scale(1.1);
}

.feat-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.feat-card p { font-size: 13px; color: var(--text-dim); line-height: 1.7; margin: 0; }

/* ===== FAQ ===== */
.faq-section { background: var(--bg-primary); }

.accordion-item {
  margin-bottom: 8px;
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  border: 1px solid var(--glass-border) !important;
}

.accordion-button {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  padding: 14px 18px;
  background: transparent !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--emerald);
}

.accordion-button::after {
  background-size: 12px;
  filter: invert(0.5);
}

.accordion-body {
  padding: 14px 18px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
  background: transparent;
  border-top: 1px solid var(--glass-border);
}

/* ===== Stats ===== */
.stats-section {
  background: var(--bg-secondary);
  padding: 60px 0;
}

.stat-card {
  text-align: center;
  padding: 15px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.stat-card:hover {
  border-color: var(--emerald-glow);
  transform: translateY(-4px);
}

.stat-num {
  font-size: 40px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--emerald), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-card p {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

/* ===== Contact ===== */
.contact-section { background: var(--bg-primary); }

.contact-cards { display: flex; flex-direction: column; gap: 12px; }

.contact-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--emerald-glow);
  transform: translateX(-4px);
}

.contact-card-icon {
  width: 42px; height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: rgba(0, 214, 143, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  font-size: 16px;
}

.contact-card h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px; }

.contact-card a {
  color: var(--emerald);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition);
}

.contact-card a:hover { color: var(--gold); }

.contact-card p { margin: 0; color: var(--text-dim); font-size: 12px; }

/* ===== Contact Form ===== */
.contact-form { padding: 28px; border-radius: var(--radius); }

.form-group label {
  font-weight: 600;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 4px;
  display: block;
}

.glass-input {
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  font-family: 'Cairo', sans-serif;
  transition: var(--transition);
  width: 100%;
}

.glass-input:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px var(--emerald-glow);
  background: rgba(0, 214, 143, 0.03);
}

.glass-input::placeholder { color: var(--text-dim); opacity: 0.5; }

select.glass-input { cursor: pointer; }

textarea.glass-input { min-height: 90px; resize: vertical; }

.btn-submit-glass {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color: #000;
  padding: 12px 40px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  border: none;
  width: 100%;
  transition: var(--transition);
}

.btn-submit-glass:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--emerald-glow);
}

/* ===== WhatsApp Float ===== */
.wa-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 26px;
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
  animation: waPulse 2.5s infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
  color: #000;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 5px 40px rgba(37, 211, 102, 0.7); }
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  padding: 55px 0 0;
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-brand img {
  border-radius: 10px;
}

.footer-brand h4 {
  color: #fff;
  font-weight: 800;
  margin: 0;
  font-size: 17px;
  line-height: 1;
}

.footer-brand small {
  font-size: 9px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--emerald), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

.footer-desc {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-social { display: flex; gap: 8px; }

.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  color: var(--text-dim);
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--emerald);
  color: #000;
  transform: translateY(-3px);
}

.footer-title {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 6px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 2px;
  background: var(--emerald);
  border-radius: 10px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li { margin-bottom: 7px; }

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  transition: var(--transition);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-links a::before {
  content: '\f104';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 10px;
  color: var(--emerald);
}

.footer-links a:hover { color: var(--emerald); padding-right: 3px; }

.footer-contact { list-style: none; padding: 0; margin: 0; }

.footer-contact li {
  margin-bottom: 8px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
}

.footer-contact i { color: var(--emerald); width: 14px; text-align: center; }

.footer-contact a {
  color: var(--text-dim);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact a:hover { color: var(--emerald); }

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 16px 0;
  margin-top: 30px;
  text-align: center;
}

.footer-bottom p { margin: 0; font-size: 12px; color: rgba(255,255,255,0.2); }

/* ===== AOS Fix ===== */
[data-aos] { opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].aos-animate { opacity: 1; }

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
  .top-bar-info { justify-content: center; }
  .top-bar-social { justify-content: center; margin-top: 2px; }
  .hero-section { min-height: auto; padding: 100px 0 60px; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-title { text-align: center; }
  .hero-title-line { text-align: center; }
  .hero-subtitle { text-align: center; margin: 0 auto; }
  .hero-badge { margin: 0 auto 14px; }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-card:hover { transform: none; }
  .about-glass { max-width: 400px; margin: 0 auto; }
  .filter-strip { border-radius: var(--radius-sm); }
}

@media (max-width: 767.98px) {
  .section { padding: 50px 0; }
  .stats-section { padding: 40px 0; }
  .stat-num { font-size: 32px; }
  .product-img { height: 160px; }
  .contact-form { padding: 18px; }
}
