/* ================================================================
   التحدي لأنظمة الإطفاء — main.css v2
   RTL Arabic · Dark/Red · Cairo · Mobile-First
   ================================================================ */

/* ── 0. Design Tokens ──────────────────────────────────────────── */
:root {
  --bg:           #F5F5F5;
  --bg-2:         #FFFFFF;
  --bg-3:         #EEEEEE;
  --bg-4:         #E5E5E5;
  --bg-5:         #DCDCDC;
  --border:       #DDDDDD;
  --border-2:     #CCCCCC;

  --red:          #D32F2F;
  --red-lt:       #EF5350;
  --red-dk:       #B71C1C;
  --red-alpha:    rgba(211,47,47,.10);
  --red-glow:     rgba(211,47,47,.20);

  --wa:           #25D366;
  --wa-alpha:     rgba(37,211,102,.10);

  --white:        #FFFFFF;
  --text-1:       #1A1A1A;
  --text-2:       #3A3A3A;
  --text-3:       #666666;
  --text-4:       #999999;

  --font:         'Cairo', -apple-system, Arial, sans-serif;

  --hero-size:    clamp(2.4rem, 7vw, 6.5rem);
  --h2-size:      clamp(1.7rem, 3.2vw, 2.8rem);
  --h3-size:      clamp(1rem, 1.8vw, 1.3rem);
  --body-size:    1rem;

  --max-w:        1180px;
  --header-h:     72px;
  --section-v:    100px;
  --section-v-sm: 56px;

  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   22px;
  --r-pill: 9999px;

  --ease:   cubic-bezier(.4,0,.2,1);
  --t-fast: 150ms;
  --t-base: 280ms;
  --t-slow: 500ms;
}

/* ── 1. Reset ──────────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--font);
  font-size:var(--body-size);
  background:var(--bg);
  color:var(--text-2);
  line-height:1.8;
  overflow-x:hidden;
  direction:rtl;
  -webkit-font-smoothing:antialiased;
}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none;transition:color var(--t-base) var(--ease)}
ul{list-style:none}
button{cursor:pointer;border:none;background:none;font-family:inherit}
input,textarea,select{font-family:inherit;font-size:1rem;direction:rtl}
/* Phone numbers always LTR */
[dir="ltr"],a[href^="tel"],a[href^="wa"],
.phone-ltr{unicode-bidi:embed;direction:ltr;display:inline-block}
::selection{background:var(--red);color:#fff}
h1,h2,h3,h4,h5,h6{font-family:var(--font);color:var(--text-1);line-height:1.2;font-weight:800;letter-spacing:-.01em}
h1{font-size:var(--hero-size)}
h2{font-size:var(--h2-size)}
h3{font-size:var(--h3-size)}
p{margin-bottom:.8rem}
p:last-child{margin-bottom:0}
.accent{color:var(--red)}

/* ── 2. Layout Helpers ─────────────────────────────────────────── */
.section-container{
  width:100%;max-width:var(--max-w);
  margin-inline:auto;
  padding-inline:clamp(1rem,4vw,2rem);
}
.section-header{text-align:center;margin-bottom:3rem}
.section-eyebrow{
  display:inline-flex;align-items:center;gap:.4rem;
  font-size:.78rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  color:var(--red);margin-bottom:.9rem;
}
.section-title{margin-bottom:.8rem;line-height:1.15}
.section-desc{color:var(--text-3);max-width:560px;margin-inline:auto;font-size:.92rem}

/* ── 3. Header ─────────────────────────────────────────────────── */
.site-header{
  position:fixed;top:0;inset-inline:0;z-index:900;
  height:var(--header-h);
  background:rgba(13,13,13,.93);
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);
  transition:background var(--t-base),box-shadow var(--t-base);
}
.site-header.scrolled{background:rgba(13,13,13,.99);box-shadow:0 2px 30px rgba(0,0,0,.5)}
.header-container{
  max-width:var(--max-w);
  margin-inline:auto;
  padding-inline:clamp(1rem,3vw,2rem);
  height:100%;
  display:flex;align-items:center;gap:1.5rem;
}
.site-logo{flex:0 0 auto}
.site-logo img{max-height:50px;width:auto;display:block}
.logo-text-link{display:flex;flex-direction:column;line-height:1;gap:1px}
.logo-ar{font-size:1.35rem;font-weight:900;color:var(--white)}
.logo-en{font-size:.72rem;font-weight:700;color:var(--red);letter-spacing:.04em}

/* Nav */
.site-nav{flex:1}
.nav-list{display:flex;gap:1.75rem;justify-content:center}
.nav-list a{
  font-size:.88rem;font-weight:600;color:var(--text-2);
  padding-block:.3rem;position:relative;
}
.nav-list a::after{
  content:'';position:absolute;bottom:-2px;right:0;
  width:0;height:2px;background:var(--red);
  transition:width var(--t-base) var(--ease);
}
.nav-list a:hover{color:var(--white)}
.nav-list a:hover::after,.nav-list a.active::after{width:100%}
.nav-list a.active{color:var(--white)}

/* Header Right */
.header-right{display:flex;align-items:center;gap:.75rem;flex:0 0 auto}
.header-socials{display:flex;align-items:center;gap:.4rem}
.header-social-link{
  width:32px;height:32px;border-radius:50%;
  border:1px solid var(--border-2);
  display:flex;align-items:center;justify-content:center;
  color:var(--text-3);font-size:.85rem;
  transition:all var(--t-fast);
}
.header-social-link:hover{border-color:var(--red);color:var(--red)}
.header-socials .header-social-link:last-child:hover{border-color:#e1306c;color:#e1306c}

/* Language Switch */
.lang-switch{
  display:flex;align-items:center;gap:.3rem;
  padding:.4rem .7rem;border:1px solid var(--border-2);border-radius:var(--r-pill);
  color:var(--text-2);font-size:.78rem;font-weight:700;
  transition:all var(--t-fast);
}
.lang-switch:hover{border-color:var(--red);color:var(--red)}
.lang-switch i{font-size:.85rem}
.mobile-lang-switch{
  display:flex;align-items:center;justify-content:center;gap:.4rem;
  padding:.55rem 1rem;margin-block:.75rem;
  border:1px solid var(--border-2);border-radius:var(--r-pill);
  color:var(--text-2);font-size:.85rem;font-weight:700;
}

.btn-whatsapp-header{
  display:flex;align-items:center;gap:.4rem;
  padding:.45rem 1rem;
  background:var(--wa);color:#fff;
  font-weight:800;font-size:.82rem;
  border-radius:var(--r-pill);
  transition:background var(--t-fast),transform var(--t-fast);
}
.btn-whatsapp-header:hover{background:#1ebe5a;transform:translateY(-1px)}
.btn-whatsapp-header i{font-size:.95rem}

/* Hamburger */
.nav-toggle{
  display:none;flex-direction:column;gap:5px;
  padding:.4rem;border-radius:var(--r-sm);
}
.toggle-bar{display:block;width:22px;height:2px;background:var(--text-2);border-radius:2px;transition:transform var(--t-base),opacity var(--t-base)}
.nav-toggle.open .toggle-bar:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.nav-toggle.open .toggle-bar:nth-child(2){opacity:0}
.nav-toggle.open .toggle-bar:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

/* ── 4. Mobile Menu ────────────────────────────────────────────── */
.mobile-menu{
  position:fixed;top:0;right:0;
  width:min(300px,85vw);height:100%;
  background:var(--bg-3);
  border-left:1px solid var(--border);
  transform:translateX(100%);
  transition:transform var(--t-slow) var(--ease);
  z-index:950;overflow-y:auto;
}
.mobile-menu.open{transform:translateX(0)}
.mobile-menu-inner{padding:1.5rem;display:flex;flex-direction:column;gap:1.25rem;min-height:100%}
.mobile-close{
  align-self:flex-end;width:36px;height:36px;
  display:flex;align-items:center;justify-content:center;
  border-radius:50%;border:1px solid var(--border-2);
  color:var(--text-2);font-size:1.1rem;
  transition:color var(--t-fast),border-color var(--t-fast);
}
.mobile-close:hover{color:var(--red);border-color:var(--red)}
.mobile-logo{padding-bottom:.75rem;border-bottom:1px solid var(--border)}
.mobile-logo img{max-height:44px;width:auto}
.mobile-logo .logo-ar{font-size:1.4rem;font-weight:900;color:var(--white)}
.mobile-nav-list{display:flex;flex-direction:column;gap:.35rem;list-style:none;margin:0;padding:0}
.mobile-nav-list li{display:block;width:100%}
.mobile-nav-list a{
  display:block;padding:.75rem 1rem;
  font-size:.95rem;font-weight:600;color:var(--text-1);
  border-radius:var(--r-sm);border:1px solid transparent;
  transition:all var(--t-fast);
}
.mobile-nav-list a:hover{background:var(--red-alpha);border-color:var(--red);color:var(--white)}
.mobile-footer-info{display:flex;flex-direction:column;gap:.75rem;margin-top:auto;padding-top:1rem;border-top:1px solid var(--border)}
.mobile-info-link{
  display:flex;align-items:center;gap:.5rem;
  font-size:.9rem;color:var(--text-2);
  direction:ltr;
}
.mobile-info-link i{color:var(--red);width:16px;flex-shrink:0}
.mobile-whatsapp i{color:var(--wa)}
.mobile-socials{display:flex;gap:.5rem;margin-top:.25rem}
.mob-soc{
  width:34px;height:34px;border-radius:50%;
  border:1px solid var(--border-2);
  display:flex;align-items:center;justify-content:center;
  color:var(--text-3);font-size:.85rem;
  transition:all var(--t-fast);
}
.mob-soc:hover{border-color:var(--red);color:var(--red)}
.mob-soc--wa:hover{border-color:var(--wa);color:var(--wa)}

.mobile-overlay{
  position:fixed;inset:0;background:rgba(0,0,0,.65);
  opacity:0;pointer-events:none;z-index:940;
  transition:opacity var(--t-slow) var(--ease);
}
.mobile-overlay.open{opacity:1;pointer-events:all}

/* ── 5. WhatsApp Floating ──────────────────────────────────────── */
.whatsapp-float{
  position:fixed;bottom:1.5rem;inset-inline-end:1.5rem;
  z-index:800;width:54px;height:54px;
  background:var(--wa);color:#fff;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:1.5rem;
  box-shadow:0 4px 20px rgba(37,211,102,.4);
  transition:transform var(--t-fast),box-shadow var(--t-fast);
}
.whatsapp-float:hover{transform:scale(1.1);box-shadow:0 6px 28px rgba(37,211,102,.55)}
.wa-tooltip{
  position:absolute;inset-inline-end:calc(100% + .6rem);
  white-space:nowrap;
  background:var(--bg-4);color:var(--text-1);
  font-size:.75rem;font-weight:600;
  padding:.3rem .65rem;border-radius:var(--r-sm);border:1px solid var(--border);
  opacity:0;pointer-events:none;
  transition:opacity var(--t-fast);
}
.whatsapp-float:hover .wa-tooltip{opacity:1}

/* ── 6. Hero Section ───────────────────────────────────────────── */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;align-items:center;justify-content:center;
  padding-top:var(--header-h);
  overflow:hidden;
  background:#ffffff;
}
.hero-canvas{
  position:absolute;inset:0;width:100%;height:100%;
  pointer-events:none;z-index:0;opacity:.45;
}
.hero-overlay{
  position:absolute;inset:0;z-index:1;
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(211,47,47,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(211,47,47,.05) 0%, transparent 50%);
}
.hero-hexes{position:absolute;inset:0;pointer-events:none;z-index:1;overflow:hidden}
.deco-hex{position:absolute;color:var(--red);opacity:.08}
.dh-1{width:340px;height:390px;top:-70px;right:-90px}
.dh-2{width:200px;height:230px;bottom:60px;left:-30px}

.hero-inner{
  position:relative;z-index:2;
  text-align:center;
  max-width:860px;
  padding:3rem clamp(1rem,4vw,2rem);
  margin-inline:auto;
}
.hero-badge-wrap{margin-bottom:1.25rem}
.hero-badge{
  display:inline-flex;align-items:center;gap:.45rem;
  padding:.5rem 1.1rem;
  border:1.5px solid rgba(211,47,47,.4);border-radius:var(--r-pill);
  background:#fff5f5;
  font-size:.75rem;font-weight:700;color:var(--red);letter-spacing:.04em;
}
.badge-dot{
  width:7px;height:7px;border-radius:50%;background:var(--red);
  animation:pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot{0%,100%{transform:scale(1);opacity:1}50%{transform:scale(1.5);opacity:.5}}
.badge-cd-logo{
  display:inline-block;width:26px;height:26px;border-radius:50%;
  object-fit:contain;background:#fff;padding:2px;
  box-shadow:0 1px 4px rgba(0,0,0,.15);
}

.hero-headline{
  font-size:var(--hero-size);font-weight:900;color:#1A1A1A;
  line-height:1.1;letter-spacing:-.02em;margin-bottom:1.25rem;
}
.hero-sub{
  font-size:clamp(.95rem,1.8vw,1.1rem);color:#555555;
  max-width:600px;margin-inline:auto;margin-bottom:2rem;line-height:1.9;
}

/* Hero CTAs */
.hero-ctas{display:flex;align-items:center;justify-content:center;gap:.85rem;flex-wrap:wrap;margin-bottom:1.25rem}
.btn-wa-hero{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.8rem 1.75rem;
  background:var(--wa);color:#fff;
  font-weight:800;font-size:.95rem;
  border-radius:var(--r-pill);
  box-shadow:0 4px 20px rgba(37,211,102,.35);
  transition:all var(--t-fast) var(--ease);
}
.btn-wa-hero:hover{background:#1ebe5a;transform:translateY(-2px);box-shadow:0 6px 28px rgba(37,211,102,.5)}
.btn-wa-hero i{font-size:1.15rem}
.btn-ghost-hero{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.8rem 1.75rem;
  border:1.5px solid var(--red);
  color:var(--red);font-weight:700;font-size:.95rem;
  border-radius:var(--r-pill);
  background:#fff;
  transition:all var(--t-fast) var(--ease);
}
.btn-ghost-hero:hover{background:var(--red);color:#fff}

/* Hero Social Links */
.hero-socials{
  display:flex;align-items:center;justify-content:center;gap:.6rem;
  margin-bottom:2.25rem;flex-wrap:wrap;
}
.hero-social-label{font-size:.75rem;color:#777;font-weight:600}
.hero-social-btn{
  display:inline-flex;align-items:center;justify-content:center;
  width:48px;height:48px;
  border-radius:50%;
  border:2px solid transparent;
  font-size:1.2rem;
  transition:all var(--t-fast);
  box-shadow:0 2px 8px rgba(0,0,0,.12);
}
.hero-social-btn span{display:none}
.hero-social-btn i{font-size:1.25rem}
.hero-social-btn--fb{background:#1877F2;color:#fff;border-color:#1877F2}
.hero-social-btn--fb:hover{background:#1558c4;border-color:#1558c4;transform:scale(1.1)}
.hero-social-btn--ig{background:linear-gradient(135deg,#e1306c,#833ab4);color:#fff;border-color:#e1306c}
.hero-social-btn--ig:hover{filter:brightness(1.15);transform:scale(1.1)}
.hero-social-btn--wa{background:var(--wa);color:#fff;border-color:var(--wa)}
.hero-social-btn--wa:hover{background:#1ebe57;border-color:#1ebe57;transform:scale(1.1)}

/* Stats Strip */
.hero-strip{
  display:flex;align-items:center;justify-content:center;gap:0;flex-wrap:wrap;
  padding:1.25rem;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
  border-radius:var(--r-lg);
  backdrop-filter:blur(10px);
}
.hero-strip-item{display:flex;flex-direction:column;align-items:center;padding:0 1.75rem;gap:.15rem}
.strip-num{font-size:1.75rem;font-weight:900;color:#1A1A1A}
.strip-label{font-size:.72rem;color:var(--text-3);white-space:nowrap}
.hero-strip-sep{width:1px;height:38px;background:var(--border-2)}
.hero-scroll{
  position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);
  color:var(--text-4);font-size:1.1rem;z-index:2;
  animation:bounce-down 2s ease-in-out infinite;
}
@keyframes bounce-down{0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(8px)}}

/* ── 7. Contact Section ─────────────────────────────────────────── */
.section-contact{
  padding-block:var(--section-v);
  background:var(--bg-2);
  border-top:1px solid var(--border);
}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:2.5rem;align-items:start}
.contact-info{display:flex;flex-direction:column;gap:.85rem}

.contact-card{
  display:flex;align-items:center;gap:.9rem;
  padding:1rem 1.2rem;
  background:var(--bg-3);border:1px solid var(--border);border-radius:var(--r-md);
  transition:border-color var(--t-base),background var(--t-base);
  cursor:pointer;
}
.contact-card:hover{border-color:var(--red);background:rgba(211,47,47,.04)}
.contact-card--whatsapp{background:rgba(37,211,102,.07);border-color:rgba(37,211,102,.25)}
.contact-card--whatsapp:hover{background:rgba(37,211,102,.12);border-color:var(--wa)}
.contact-card--static{cursor:default}
.contact-card--static:hover{border-color:var(--border);background:var(--bg-3)}

.contact-card-icon{
  flex:0 0 42px;height:42px;
  display:flex;align-items:center;justify-content:center;
  border-radius:var(--r-sm);background:var(--red-alpha);color:var(--red);font-size:1.05rem;
}
.contact-card--whatsapp .contact-card-icon{background:rgba(37,211,102,.12);color:var(--wa);font-size:1.25rem}
.contact-card-body{display:flex;flex-direction:column;flex:1;gap:.1rem}
.contact-card-label{font-size:.7rem;color:var(--text-3);font-weight:700;letter-spacing:.05em;text-transform:uppercase}
.contact-card-value{font-size:.92rem;font-weight:700;color:var(--text-1);direction:ltr;display:inline-block}
.contact-card-hint{font-size:.73rem;color:var(--text-3)}
.contact-card-arrow{color:var(--text-4);font-size:.8rem;transition:color var(--t-fast),transform var(--t-fast)}
.contact-card:hover .contact-card-arrow{color:var(--red);transform:translateX(-3px)}

.contact-social{
  display:flex;align-items:center;gap:.9rem;
  padding:.75rem;border-top:1px solid var(--border);
  margin-top:.25rem;flex-wrap:wrap;
}
.contact-social-label{font-size:.75rem;color:var(--text-3);font-weight:600}
.contact-social-links{display:flex;gap:.5rem;flex-wrap:wrap}
.social-link{
  display:inline-flex;align-items:center;gap:.35rem;
  padding:.35rem .8rem;border-radius:var(--r-pill);
  border:1px solid var(--border);font-size:.78rem;font-weight:600;
  transition:all var(--t-fast);
}
.social-link--fb:hover{background:#1877F2;border-color:#1877F2;color:#fff}
.social-link--ig:hover{background:linear-gradient(135deg,#E1306C,#833AB4);border-color:#E1306C;color:#fff}
.social-link--wa:hover{background:var(--wa);border-color:var(--wa);color:#fff}

/* Contact Form */
.contact-form-wrap{
  background:var(--bg-3);border:1px solid var(--border);
  border-radius:var(--r-lg);padding:1.75rem;
}
.contact-form-header{margin-bottom:1.5rem}
.contact-form-header h3{font-size:1.2rem;margin-bottom:.25rem}
.contact-form-header p{color:var(--text-3);font-size:.83rem}
.form-row{display:flex;gap:.85rem}
.form-row--2>*{flex:1;min-width:0}
.form-group{display:flex;flex-direction:column;gap:.35rem;margin-bottom:.85rem}
.form-group label{font-size:.8rem;font-weight:700;color:var(--text-2)}
.form-group input,.form-group textarea,.form-group select{
  background:var(--bg-4);border:1px solid var(--border);color:var(--text-1);
  border-radius:var(--r-sm);padding:.65rem .9rem;
  transition:border-color var(--t-fast);outline:none;width:100%;
}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{border-color:var(--red)}
.form-group textarea{resize:vertical;min-height:100px}
.form-group select option{background:var(--bg-4)}
.btn-submit{
  width:100%;display:flex;align-items:center;justify-content:center;gap:.45rem;
  padding:.8rem 1.25rem;
  background:var(--red);color:#fff;font-weight:800;font-size:.95rem;
  border-radius:var(--r-md);transition:background var(--t-fast),transform var(--t-fast);
}
.btn-submit:hover{background:var(--red-dk);transform:translateY(-1px)}
.btn-loading{display:none}
.btn-submit.loading .btn-text,.btn-submit.loading .btn-icon{display:none}
.btn-submit.loading .btn-loading{display:flex}
.form-feedback{margin-top:.65rem;padding:.6rem .9rem;border-radius:var(--r-sm);font-size:.83rem;font-weight:600;display:none}
.form-feedback.success{background:rgba(37,211,102,.1);color:var(--wa);border:1px solid rgba(37,211,102,.25);display:block}
.form-feedback.error{background:var(--red-alpha);color:var(--red-lt);border:1px solid rgba(211,47,47,.3);display:block}
.form-or{display:flex;align-items:center;gap:.9rem;margin-block:1rem;color:var(--text-4);font-size:.78rem}
.form-or::before,.form-or::after{content:'';flex:1;height:1px;background:var(--border)}
.btn-wa-alt{
  display:flex;align-items:center;justify-content:center;gap:.45rem;
  padding:.7rem;
  background:var(--wa-alpha);border:1.5px solid rgba(37,211,102,.3);
  color:var(--wa);font-weight:700;font-size:.88rem;border-radius:var(--r-md);
  transition:all var(--t-fast);
}
.btn-wa-alt:hover{background:rgba(37,211,102,.18);border-color:var(--wa)}

/* ── 8. Products Section ────────────────────────────────────────── */
.section-products{
  padding-block:var(--section-v);
  background:var(--bg);border-top:1px solid var(--border);
}
.products-tabs{display:flex;gap:.6rem;justify-content:center;flex-wrap:wrap;margin-bottom:2.5rem}
.product-tab{
  display:flex;align-items:center;gap:.45rem;
  padding:.6rem 1.25rem;
  border:1.5px solid var(--border);border-radius:var(--r-pill);
  font-size:.84rem;font-weight:700;color:var(--text-2);
  background:transparent;transition:all var(--t-base) var(--ease);
}
.product-tab:hover{border-color:var(--red);color:var(--white)}
.product-tab.active{background:var(--red);border-color:var(--red);color:#fff;box-shadow:0 4px 18px var(--red-glow)}

.product-category{display:none}
.product-category.active{display:block}

.cat-header{
  display:flex;gap:1.25rem;align-items:flex-start;
  margin-bottom:2rem;padding:1.5rem;
  background:var(--bg-3);border:1px solid var(--border);border-radius:var(--r-lg);
}
.cat-icon{
  flex:0 0 52px;height:52px;
  display:flex;align-items:center;justify-content:center;
  border-radius:var(--r-md);font-size:1.4rem;
}
.cat-icon--red{background:var(--red-alpha);color:var(--red)}
.cat-icon--orange{background:rgba(255,138,0,.12);color:#FF8A00}
.cat-icon--blue{background:rgba(33,150,243,.12);color:#2196F3}
.cat-icon--green{background:rgba(76,175,80,.12);color:#4CAF50}
.cat-title{font-size:1.3rem;margin-bottom:.3rem}
.cat-title small{display:block;font-size:.76rem;font-weight:500;color:var(--text-3);margin-top:.2rem}
.cat-desc{color:var(--text-2);font-size:.88rem;margin:0}

/* Grid — 2-col for categories with 2 products, 3-col for 3 */
.products-grid{display:grid;gap:1.1rem}
.products-grid--two{grid-template-columns:repeat(2,1fr)}
.products-grid--three{grid-template-columns:repeat(3,1fr)}

.product-card{
  position:relative;display:flex;flex-direction:column;
  background:var(--bg-3);border:1px solid var(--border);border-radius:var(--r-lg);
  overflow:hidden;
  transition:border-color var(--t-base),transform var(--t-base),box-shadow var(--t-base);
}
.product-card:hover{border-color:var(--red);transform:translateY(-4px);box-shadow:0 12px 36px rgba(211,47,47,.15)}
.product-badge{
  position:absolute;top:.8rem;inset-inline-end:.8rem;
  padding:.2rem .6rem;background:var(--red);color:#fff;
  font-size:.68rem;font-weight:800;border-radius:var(--r-pill);
  text-transform:uppercase;letter-spacing:.04em;
}
.product-card-icon{display:none}

/* Product image header */
.product-card-img{
  width:100%;height:160px;
  display:flex;align-items:center;justify-content:center;
  border-bottom:1px solid var(--border);
  overflow:hidden;position:relative;
}
.product-card-img img{width:100%;height:100%;object-fit:cover}
.product-img-icon{font-size:3.5rem;opacity:.85}
.product-card-img--red{background:linear-gradient(135deg,#ffeaea 0%,#ffd6d6 100%)}
.product-card-img--red .product-img-icon{color:#D32F2F}
.product-card-img--orange{background:linear-gradient(135deg,#fff3e0 0%,#ffe0c0 100%)}
.product-card-img--orange .product-img-icon{color:#E65100}
.product-card-img--blue{background:linear-gradient(135deg,#e8f0fe 0%,#d0e4ff 100%)}
.product-card-img--blue .product-img-icon{color:#1565C0}
.product-card-img--green{background:linear-gradient(135deg,#e8f5e9 0%,#c8e6c9 100%)}
.product-card-img--green .product-img-icon{color:#2E7D32}
.product-card-img--yellow{background:linear-gradient(135deg,#fffde7 0%,#fff176 100%)}
.product-card-img--yellow .product-img-icon{color:#F57F17}
.product-card-body{padding:1.2rem;flex:1;display:flex;flex-direction:column;gap:.5rem}
.product-name{font-size:.98rem;font-weight:800;color:var(--text-1);line-height:1.3}
.product-name-en{font-size:.73rem;color:var(--text-3);font-weight:500}
.product-desc{font-size:.8rem;color:var(--text-3);line-height:1.7;margin-block:.3rem}
.product-specs{display:flex;flex-direction:column;gap:.3rem}
.product-specs li{display:flex;align-items:flex-start;gap:.4rem;font-size:.78rem;color:var(--text-2)}
.product-specs li i{color:var(--red);font-size:.62rem;margin-top:.3rem;flex-shrink:0}
.product-card-footer{padding:.9rem 1.2rem;border-top:1px solid var(--border)}
.btn-product-enquiry{
  display:flex;align-items:center;justify-content:center;gap:.35rem;
  width:100%;padding:.55rem;
  background:var(--wa-alpha);border:1px solid rgba(37,211,102,.2);
  color:var(--wa);font-weight:700;font-size:.8rem;
  border-radius:var(--r-md);transition:all var(--t-fast);
}
.btn-product-enquiry:hover{background:rgba(37,211,102,.18);border-color:var(--wa)}

/* CTA Banner */
.products-cta{margin-top:2.5rem}
.products-cta-inner{
  display:flex;align-items:center;gap:1.75rem;
  padding:1.75rem 2.25rem;
  background:var(--red-alpha);border:1px solid rgba(211,47,47,.22);border-radius:var(--r-lg);
  flex-wrap:wrap;
}
.products-cta-icon{font-size:2.25rem;color:var(--red);flex-shrink:0}
.products-cta-inner>div{flex:1;min-width:180px}
.products-cta-inner h3{font-size:1.05rem;margin-bottom:.2rem}
.products-cta-inner p{color:var(--text-2);font-size:.85rem;margin:0}
.btn-cta-products{
  flex:0 0 auto;display:inline-flex;align-items:center;gap:.45rem;
  padding:.7rem 1.4rem;background:var(--wa);color:#fff;
  font-weight:800;font-size:.88rem;border-radius:var(--r-pill);white-space:nowrap;
  transition:background var(--t-fast),transform var(--t-fast);
}
.btn-cta-products:hover{background:#1ebe5a;transform:translateY(-1px)}

/* ── 9. About Section ───────────────────────────────────────────── */
.section-about{
  padding-block:var(--section-v);
  background:var(--bg-2);border-top:1px solid var(--border);
}
.about-grid{display:grid;grid-template-columns:1fr 1.35fr;gap:3.5rem;align-items:center}
.about-visual{display:flex;flex-direction:column;gap:1.25rem}
.about-img-wrap{
  border-radius:var(--r-lg);overflow:hidden;
  border:1px solid var(--border);
  background:var(--bg-3);
}
.about-img-wrap img{width:100%;height:auto;display:block}
.about-img-placeholder svg{width:100%;height:auto;display:block}
.about-cert-badges{display:flex;flex-direction:column;gap:.6rem}
.cert-badge{
  display:flex;align-items:center;gap:.7rem;
  padding:.7rem 1rem;background:var(--bg-3);border:1px solid var(--border);border-radius:var(--r-md);
  font-size:.8rem;font-weight:600;color:var(--text-1);
}
.cert-badge i{color:var(--red);font-size:.95rem;flex-shrink:0}

.about-content .section-eyebrow{margin-bottom:.6rem;display:inline-flex}
.about-lead{font-size:1rem;color:var(--text-1);font-weight:500;margin-bottom:.85rem;line-height:1.85}
.about-features{display:flex;flex-direction:column;gap:.9rem;margin-block:1.5rem}
.about-feature{display:flex;align-items:flex-start;gap:.8rem;font-size:.88rem}
.about-feature i{color:var(--red);font-size:1.05rem;margin-top:.1rem;flex-shrink:0}
.about-feature strong{display:block;color:var(--white);font-size:.9rem;margin-bottom:.1rem}
.about-feature span{color:var(--text-3);font-size:.8rem}
.about-actions{display:flex;gap:.85rem;flex-wrap:wrap}
.btn-primary-about{
  display:inline-flex;align-items:center;gap:.45rem;
  padding:.7rem 1.4rem;background:var(--red);color:#fff;
  font-weight:800;font-size:.88rem;border-radius:var(--r-pill);
  transition:background var(--t-fast),transform var(--t-fast);
}
.btn-primary-about:hover{background:var(--red-dk);transform:translateY(-1px)}
.btn-wa-about{
  display:inline-flex;align-items:center;gap:.45rem;
  padding:.7rem 1.4rem;
  background:var(--wa-alpha);border:1.5px solid rgba(37,211,102,.3);
  color:var(--wa);font-weight:800;font-size:.88rem;border-radius:var(--r-pill);
  transition:all var(--t-fast);
}
.btn-wa-about:hover{background:rgba(37,211,102,.2);border-color:var(--wa)}

/* ── 10. Marquee ────────────────────────────────────────────────── */
.marquee-section{
  overflow:hidden;border-block:1px solid var(--border);
  background:var(--bg-3);padding-block:.8rem;
}
.marquee-inner{display:flex;width:max-content;animation:marquee-rtl 30s linear infinite}
.marquee-text{
  display:inline-flex;align-items:center;
  font-size:.78rem;font-weight:700;letter-spacing:.1em;
  color:var(--text-4);text-transform:uppercase;padding-inline:.9rem;white-space:nowrap;
}
@keyframes marquee-rtl{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ── 11. Stats Section ──────────────────────────────────────────── */
.section-stats{padding-block:var(--section-v-sm);background:var(--bg);border-top:1px solid var(--border)}
.stats-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:1px;background:var(--border);
  border:1px solid var(--border);border-radius:var(--r-lg);overflow:hidden;
}
.stat-item{
  display:flex;flex-direction:column;align-items:center;
  padding:2.25rem 1.25rem;background:var(--bg-3);text-align:center;gap:.4rem;
  transition:background var(--t-base);
}
.stat-item:hover{background:var(--bg-4)}
.stat-icon{font-size:1.4rem;color:var(--red);margin-bottom:.2rem}
.stat-num{font-size:2rem;font-weight:900;color:var(--text-1)}
.stat-label{font-size:.78rem;color:var(--text-2)}

/* ── 12. Footer ─────────────────────────────────────────────────── */
.site-footer{background:#1A1A1A;border-top:1px solid #333;color:#C0C0C0}
.site-footer h4,.site-footer .footer-col-title{color:#F2F2F2}
.site-footer a{color:#C0C0C0}
.site-footer a:hover{color:var(--red)}
.footer-top{padding-block:3.5rem}
.footer-container{
  max-width:var(--max-w);margin-inline:auto;
  padding-inline:clamp(1rem,4vw,2rem);
  display:grid;grid-template-columns:2fr 1fr 1fr 1.5fr;gap:2.5rem;
}
.footer-col-title{font-size:.82rem;font-weight:800;color:var(--white);margin-bottom:1.1rem;letter-spacing:.04em}
.footer-tagline{color:var(--text-3);font-size:.85rem;line-height:1.8;margin-block:.9rem}
.footer-logo-text{display:flex;flex-direction:column}
.footer-logo-text .logo-ar{font-size:1.4rem;font-weight:900}
.footer-logo-text .logo-en{font-size:.78rem;color:var(--red);font-weight:700}
.site-footer .site-logo img{max-height:60px;width:auto;margin-bottom:.5rem}
.footer-social{display:flex;gap:.5rem;margin-top:1.1rem}
.footer-social a{
  width:34px;height:34px;border-radius:50%;border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;color:var(--text-3);font-size:.85rem;
  transition:all var(--t-fast);
}
.footer-social a:hover{border-color:var(--red);color:var(--red)}
.footer-links{display:flex;flex-direction:column;gap:.55rem}
.footer-links a{
  display:flex;align-items:center;gap:.45rem;
  font-size:.84rem;color:var(--text-3);transition:color var(--t-fast);
}
.footer-links a i{font-size:.62rem;color:var(--text-4)}
.footer-links a:hover{color:var(--red)}
.footer-links a:hover i{color:var(--red)}
.footer-contact-list{display:flex;flex-direction:column;gap:.65rem}
.footer-contact-list li{
  display:flex;align-items:flex-start;gap:.55rem;
  font-size:.82rem;color:var(--text-3);
}
.footer-contact-list i{color:var(--red);font-size:.88rem;margin-top:.1rem;flex-shrink:0}
.footer-contact-list a{direction:ltr;display:inline}
.footer-contact-list a:hover{color:var(--white)}
.footer-bottom{border-top:1px solid var(--border);padding-block:1.1rem}
.footer-bottom .footer-container{
  display:flex;justify-content:space-between;align-items:center;
  grid-template-columns:unset;gap:.75rem;flex-wrap:wrap;
}
.copyright,.footer-credit{font-size:.76rem;color:var(--text-4);margin:0}
.footer-credit a{color:var(--red)}

/* ── 13. Inner Pages ────────────────────────────────────────────── */
.inner-page{padding-top:calc(var(--header-h) + 3rem);padding-bottom:4rem}
.inner-container{max-width:860px;margin-inline:auto;padding-inline:clamp(1rem,4vw,2rem)}

/* ── 14. Responsive — Tablet ────────────────────────────────────── */
@media (max-width:1024px){
  .footer-container{grid-template-columns:1fr 1fr;gap:2rem}
  .about-grid{grid-template-columns:1fr;gap:2.5rem}
  .about-visual{flex-direction:row;flex-wrap:wrap;gap:1rem}
  .about-img-wrap{flex:1 1 280px}
  .about-cert-badges{flex:1 1 200px}
  .products-grid--three{grid-template-columns:repeat(2,1fr)}
}

/* ── 15. Responsive — Mobile ────────────────────────────────────── */
@media (max-width:768px){
  :root{
    --section-v:64px;
    --section-v-sm:38px;
    --header-h:62px;
  }

  /* Header */
  .site-nav{display:none}
  .header-socials{display:none}
  .btn-whatsapp-header span{display:none}
  .btn-whatsapp-header{padding:.45rem .75rem}
  .nav-toggle{display:flex}

  /* Hero */
  .hero-headline{font-size:clamp(2rem,8vw,3rem)}
  .hero-strip{flex-wrap:wrap;gap:.5rem;padding:1rem}
  .hero-strip-item{padding:0 .85rem}
  .strip-num{font-size:1.4rem}
  .hero-strip-sep{height:28px}

  /* Contact */
  .contact-grid{grid-template-columns:1fr}
  .form-row--2{flex-direction:column}

  /* Products */
  .products-tabs{gap:.4rem}
  .product-tab{padding:.5rem .9rem;font-size:.78rem}
  .cat-header{flex-direction:column;gap:.9rem}
  .products-grid--two,
  .products-grid--three{grid-template-columns:1fr}

  /* About */
  .about-visual{flex-direction:column}

  /* Stats */
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .stat-num{font-size:1.7rem}

  /* Footer */
  .footer-container{grid-template-columns:1fr;gap:1.75rem}
  .footer-bottom .footer-container{flex-direction:column;text-align:center}
  .footer-top{padding-block:2.5rem}

  /* CTA Banner */
  .products-cta-inner{flex-direction:column;text-align:center;gap:1.25rem}
}

/* ── 16. Responsive — Small Mobile ─────────────────────────────── */
@media (max-width:480px){
  .hero-strip{gap:0}
  .hero-strip-item{padding:.5rem 1rem}
  .hero-strip-sep{width:100%;height:1px;background:var(--border)}
  .hero-ctas{flex-direction:column;align-items:stretch;gap:.65rem}
  .btn-wa-hero,.btn-ghost-hero{justify-content:center}

  .products-tabs{flex-direction:column}
  .product-tab{justify-content:flex-start}

  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .stat-item{padding:1.75rem .75rem}
  .stat-num{font-size:1.5rem}

  .contact-form-wrap{padding:1.25rem}
  .hero-badge{font-size:.68rem}
}

/* ── 17. AOS base (JS overrides) ───────────────────────────────── */
[data-aos]{opacity:1!important;transform:none!important}
