/* style.css - INTERACTIVE DARK THEME */
:root {
  --cyan: #00AEEF;
  --cyan-dark: #0090C8;
  --gold: #F5C200;
  --gold-dark: #D4A800;
  --crimson: #D42E3C;
  --dark: #0F1419;
  --dark2: #1A2230;
  --dark3: #232F3E;
  --mid: #2C3E50;
  --light: #F4F6F8;
  --white: #FFFFFF;
  --text-muted: #7A8B99;
  --border: rgba(255,255,255,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ── SCROLL ANIMATIONS (Added for Interactivity) ── */
.reveal-hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAVBAR (Dynamic Glassmorphism) ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15, 20, 25, 0.45);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother transition */
}
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo img { height: 46px; cursor: pointer; transition: transform 0.3s; }
.nav-logo img:hover { transform: scale(1.05); } /* Logo hover effect */
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.5rem 1rem; border-radius: 6px; transition: all 0.2s; cursor: pointer; }
.nav-links a:hover, .nav-links a.active { color: var(--cyan); background: rgba(0,174,239,0.1); }
.nav-links .nav-cta { background: var(--cyan); color: var(--dark) !important; padding: 0.5rem 1.25rem; border-radius: 6px; font-weight: 700; margin-left: 0.5rem; transition: all 0.3s; }
.nav-links .nav-cta:hover { background: var(--gold) !important; color: var(--dark) !important; box-shadow: 0 0 15px rgba(245,194,0,0.5); /* Glowing hover */ }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--dark); border-bottom: 1px solid var(--border); z-index: 999; padding: 1rem; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; color: rgba(255,255,255,0.8); text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 1.1rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.85rem 1rem; border-bottom: 1px solid var(--border); cursor: pointer; }

/* ── SECTION WRAPPERS & LABELS ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; }
.section-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.75rem; }
.section-label::before { content: ''; display: block; width: 32px; height: 2px; background: var(--cyan); }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.05; margin-bottom: 1.25rem; }
.section-title span { color: var(--cyan); }
.section-title .gold { color: var(--gold); }
.section-sub { font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 600px; }

/* ── BUTTONS (With Glow Effects) ── */
.btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.85rem 1.75rem; border-radius: 8px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); border: none; }
.btn i { font-size: 1.1rem; }
.btn-primary { background: var(--cyan); color: var(--dark); }
.btn-primary:hover { background: var(--cyan-dark); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,174,239,0.4); }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(245,194,0,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.25); }
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,174,239,0.15); }
.btn-whatsapp { background: #25D366; color: white; }
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-3px); box-shadow: 0 10px 25px rgba(37,211,102,0.4); }

/* ── HOME PAGE HERO ── */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 72px; background: linear-gradient(rgba(15,20,25,0.85), rgba(15,20,25,0.85)), url('hero-bg.png'); background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,174,239,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,174,239,0.04) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%); }
.hero-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 4rem 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.6rem; background: rgba(245,194,0,0.12); border: 1px solid rgba(245,194,0,0.3); color: var(--gold); padding: 0.35rem 0.85rem; border-radius: 100px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(2.8rem, 5.5vw, 4.5rem); line-height: 1.0; margin-bottom: 1.5rem; letter-spacing: -0.01em; }
.hero-title .line1, .hero-title .line3 { display: block; }
.hero-title .line2 { display: block; color: var(--cyan); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.7); line-height: 1.7; max-width: 480px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-card { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; transition: all 0.4s; backdrop-filter: blur(8px); }
.stat-card:hover { background: rgba(0,174,239,0.07); border-color: rgba(0,174,239,0.4); transform: translateY(-5px); }
.stat-card:first-child { grid-column: span 2; background: rgba(0,174,239,0.08); border-color: rgba(0,174,239,0.2); }
.stat-number { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 2.5rem; color: var(--cyan); line-height: 1; margin-bottom: 0.3rem; }
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.6); font-weight: 500; }
.stat-icon { font-size: 1.8rem; margin-bottom: 0.75rem; color: var(--gold); }

/* ── MARQUEE STRIP ── */
.marquee-strip { background: var(--gold); padding: 0.75rem 0; overflow: hidden; }
.marquee-track { display: flex; gap: 3rem; width: max-content; animation: marquee 25s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--dark); white-space: nowrap; display: flex; align-items: center; gap: 1rem; }
.marquee-item::after { content: '◆'; color: var(--dark2); }

/* ── ABOUT SNIPPET ── */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
.about-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-card { background: var(--dark2); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; text-align: center; transition: transform 0.3s; }
.about-card:hover { transform: translateY(-5px); border-color: rgba(0,174,239,0.3); }
.about-card:first-child { grid-column: span 2; background: rgba(0,174,239,0.08); border-color: rgba(0,174,239,0.2); }
.about-card-icon { font-size: 2.2rem; margin-bottom: 0.75rem; color: var(--cyan); }
.about-card-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 0.4rem; }
.about-card-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.about-text { color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 1.5rem; }

/* ── PRODUCTS GRID ── */
.products-bg { background: var(--dark2); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.product-card { background: var(--dark); border: 1px solid var(--border); border-radius: 12px; padding: 1.75rem; cursor: pointer; transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); position: relative; overflow: hidden; text-decoration: none; display: block; }
.product-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--cyan); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.product-card:hover::before { transform: scaleX(1); }
.product-card:hover { border-color: rgba(0,174,239,0.5); transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,174,239,0.1); }
.product-card.featured { border-color: rgba(0,174,239,0.3); background: rgba(0,174,239,0.06); }
.product-card.featured::before { transform: scaleX(1); }
.product-icon { font-size: 2.2rem; margin-bottom: 1rem; color: var(--gold); transition: transform 0.3s; }
.product-card:hover .product-icon { transform: scale(1.1); }
.product-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--white); }
.product-desc { font-size: 0.87rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 1rem; }
.product-items { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.product-tag { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.65); padding: 0.2rem 0.6rem; border-radius: 4px; font-size: 0.75rem; font-weight: 500; }
.product-card.featured .product-tag { background: rgba(0,174,239,0.1); border-color: rgba(0,174,239,0.2); color: var(--cyan); }

/* ── MABATI FEATURE ── */
.mabati-feature { background: linear-gradient(135deg, rgba(0,174,239,0.12) 0%, rgba(15,20,25,0) 60%); border: 1px solid rgba(0,174,239,0.2); border-radius: 16px; padding: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-top: 3rem; transition: transform 0.4s; }
.mabati-feature:hover { transform: translateY(-5px); border-color: rgba(0,174,239,0.4); box-shadow: 0 15px 40px rgba(0,174,239,0.1); }
.mabati-content .section-label { margin-bottom: 0.5rem; }
.mabati-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 2.2rem; line-height: 1.1; margin-bottom: 1rem; }
.mabati-list { list-style: none; margin: 1rem 0 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.mabati-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.95rem; color: rgba(255,255,255,0.75); }
.mabati-list li i { color: var(--cyan); font-size: 0.85rem; }
.mabati-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.spec-box { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 10px; padding: 1.25rem; text-align: center; }
.spec-val { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.6rem; color: var(--gold); }
.spec-key { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }

/* ── WHY CHOOSE US ── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 3rem; }
.why-card { background: var(--dark2); border: 1px solid var(--border); border-radius: 12px; padding: 2rem 1.5rem; text-align: center; transition: all 0.4s; }
.why-card:hover { border-color: rgba(245,194,0,0.5); background: rgba(245,194,0,0.05); transform: translateY(-8px); box-shadow: 0 15px 30px rgba(245,194,0,0.1); }
.why-icon { font-size: 2.6rem; margin-bottom: 1rem; color: var(--cyan); transition: transform 0.3s; }
.why-card:hover .why-icon { transform: scale(1.15) rotate(5deg); color: var(--gold); }
.why-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.15rem; margin-bottom: 0.5rem; }
.why-desc { font-size: 0.87rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg, var(--dark2) 0%, rgba(0,174,239,0.12) 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 4rem 0; text-align: center; }
.cta-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 2.5rem; margin-bottom: 1rem; }
.cta-sub { color: rgba(255,255,255,0.65); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── INTERIOR PAGE HEADER ── */
.page-hero { background: var(--dark2); padding: 9rem 0 5rem; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 40%; background: radial-gradient(ellipse at right center, rgba(0,174,239,0.1) 0%, transparent 70%); pointer-events: none; }
.page-hero-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); margin-bottom: 0.75rem; }
.page-hero-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.05; margin-bottom: 1rem; }
.page-hero-sub { color: rgba(255,255,255,0.65); max-width: 600px; line-height: 1.7; font-size: 1.05rem; }

/* ── ABOUT PAGE ── */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.mv-card { background: var(--dark2); border: 1px solid var(--border); border-radius: 14px; padding: 2.5rem; position: relative; overflow: hidden; transition: transform 0.3s; }
.mv-card:hover { transform: translateY(-5px); }
.mv-card.mission { border-top: 3px solid var(--cyan); }
.mv-card.mission:hover { box-shadow: 0 10px 30px rgba(0,174,239,0.1); }
.mv-card.vision { border-top: 3px solid var(--gold); }
.mv-card.vision:hover { box-shadow: 0 10px 30px rgba(245,194,0,0.1); }
.mv-icon { font-size: 2.5rem; margin-bottom: 1rem; transition: transform 0.3s;}
.mv-card:hover .mv-icon { transform: scale(1.1); }
.mv-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.5rem; margin-bottom: 1rem; }
.mv-card.mission .mv-title, .mv-card.mission .mv-icon { color: var(--cyan); }
.mv-card.vision .mv-title, .mv-card.vision .mv-icon { color: var(--gold); }
.mv-text { color: rgba(255,255,255,0.7); line-height: 1.75; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
.value-card { background: var(--dark2); border: 1px solid var(--border); border-radius: 12px; padding: 1.75rem; transition: 0.3s; }
.value-card:hover { border-color: rgba(0,174,239,0.4); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,174,239,0.05); }
.value-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.value-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 0.4rem; }
.value-text { font-size: 0.87rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ── PRODUCTS PAGE ── */
.cat-section { margin-bottom: 3.5rem; transition: transform 0.3s; }
.cat-section:hover { transform: translateY(-2px); }
.cat-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.cat-icon { font-size: 1.75rem; }
.cat-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--white); }
.cat-desc { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.2rem; }
.items-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 0.75rem; }

/* Updated Pill Layout for Images */
.item-pill { 
  background: var(--dark2); border: 1px solid var(--border); border-radius: 8px; 
  padding: 0.5rem 1rem; /* Slightly reduced padding to accommodate images */
  font-size: 0.9rem; color: rgba(255,255,255,0.8); font-weight: 500; 
  transition: all 0.3s; cursor: default;
  display: flex; align-items: center; /* Aligns the image and text nicely */
}
.item-pill:hover { border-color: rgba(0,174,239,0.5); color: var(--cyan); background: rgba(0,174,239,0.05); transform: translateY(-2px); }

/* New rule specifically for the uploaded images inside the pills */
.item-pill img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  margin-right: 10px;
  border-radius: 4px;
  background: rgba(255,255,255,0.9); /* Adds a subtle light background so the steel pops */
  padding: 3px;
}

/* ── MABATI PAGE ── */
.mabati-range-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.mabati-type { background: var(--dark2); border: 1px solid var(--border); border-radius: 14px; padding: 2rem; transition: 0.4s; }
.mabati-type:hover { border-color: rgba(0,174,239,0.4); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,174,239,0.1); }
.mabati-type-icon { font-size: 2rem; margin-bottom: 0.75rem; transition: transform 0.3s; }
.mabati-type:hover .mabati-type-icon { transform: scale(1.1); }
.mabati-type-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--cyan); }
.mabati-type-desc { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.specs-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.specs-table th, .specs-table td { padding: 1rem 1.25rem; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.specs-table th { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan); background: rgba(0,174,239,0.06); }
.specs-table td { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.specs-table tr:hover td { background: rgba(255,255,255,0.03); color: var(--white); }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; margin-top: 3rem; }
.contact-block { display: flex; gap: 1rem; padding: 1.5rem; background: var(--dark2); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 1rem; transition: 0.3s; }
.contact-block:hover { border-color: rgba(0,174,239,0.4); transform: translateX(5px); background: rgba(0,174,239,0.02); }
.contact-block-icon { font-size: 1.5rem; flex-shrink: 0; width: 40px; text-align: center; }
.contact-block-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan); margin-bottom: 0.25rem; }
.contact-block-val { font-size: 0.97rem; color: rgba(255,255,255,0.8); }
.contact-block-val a { color: inherit; text-decoration: none; transition: color 0.2s; }
.contact-block-val a:hover { color: var(--cyan); }
.contact-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.85rem; border-radius: 10px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: 0.3s; cursor: pointer; border: none; }
.social-wa { background: #25D366; color: white; }
.social-wa:hover { background: #1ebe5d; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(37,211,102,0.3); }
.social-call { background: var(--cyan); color: var(--dark); }
.social-call:hover { background: var(--cyan-dark); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,174,239,0.3); }
.form-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.75rem; margin-bottom: 0.5rem; }
.form-sub { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--dark2); border: 1.5px solid var(--border); border-radius: 8px; padding: 0.85rem 1rem; color: var(--white); font-family: 'Barlow', sans-serif; font-size: 0.95rem; transition: 0.3s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--cyan); background: rgba(0,174,239,0.04); box-shadow: 0 0 0 3px rgba(0,174,239,0.1); }
.form-group select option { background: var(--dark2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; margin-top: 0.5rem; font-size: 1.05rem; padding: 1rem; justify-content: center; }
.form-success { display: none; text-align: center; padding: 2rem; color: #25D366; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.25rem; }

/* ── FOOTER ── */
footer { background: #080C10; border-top: 1px solid var(--border); padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 42px; margin-bottom: 1rem; transition: transform 0.3s; }
.footer-brand img:hover { transform: scale(1.05); }
.footer-desc { font-size: 0.87rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 280px; }
.footer-col-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan); margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.65rem; display: flex; align-items: center; gap: 0.5rem; }
.footer-links li i { color: var(--gold); font-size: 0.85rem; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.87rem; transition: color 0.2s, transform 0.2s; cursor: pointer; display: inline-block; }
.footer-links a:hover { color: var(--white); transform: translateX(3px); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer-copy span { color: var(--cyan); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .hero-stats-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-stats-grid .stat-card:first-child { grid-column: span 4; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .mabati-feature { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .mabati-range-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  section { padding: 4rem 0; }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats-grid .stat-card:first-child { grid-column: span 2; }
}