/* =====================================
   ICI · INTERNATIONAL INDUSTRIES COMPANY
   icifactory.com — Production Stylesheet
   ===================================== */

:root {
  /* Brand colors derived from actual ICI logo */
  --ici-red: #800020;
  --ici-red-dark: #5C0017;
  --ici-red-light: #A8364D;

  --salt-white: #FFFFFF;
  --salt-cream: #FAF8F5;
  --salt-gray: #F4F2EE;

  --text-dark: #1A1A1A;
  --text-mid: #555555;
  --text-light: #888888;
  --border: rgba(0, 0, 0, 0.08);

  --shadow-sm: 0 2px 8px rgba(128, 0, 32, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(128, 0, 32, 0.15);

  --max-width: 1280px;
  --nav-height: 76px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Tajawal', 'Segoe UI', sans-serif;
  background: var(--salt-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ============ NAVBAR ============ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
  transition: all 0.3s ease;
}
nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }

.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 48px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text .ar { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.nav-logo-text .en { font-size: 10px; color: var(--text-light); letter-spacing: 0.08em; font-weight: 500; }

.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-mid);
  transition: color 0.2s; position: relative; padding: 4px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--ici-red); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--ici-red);
}

.nav-actions { display: flex; gap: 12px; align-items: center; }
.lang-toggle {
  background: transparent; border: 1px solid var(--border);
  padding: 8px 14px; border-radius: 4px; font-size: 13px; font-weight: 600;
  color: var(--text-dark); transition: all 0.2s;
}
.lang-toggle:hover { border-color: var(--ici-red); color: var(--ici-red); }

.btn-cta {
  background: var(--ici-red); color: var(--salt-white);
  padding: 10px 22px; border-radius: 4px; font-size: 14px; font-weight: 700;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px;
}
.btn-cta:hover { background: var(--ici-red-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.mobile-toggle span { width: 22px; height: 2px; background: var(--text-dark); transition: 0.3s; }

/* ============ HERO ============ */
.hero {
  min-height: 88vh; padding: calc(var(--nav-height) + 80px) 0 80px;
  position: relative; overflow: hidden;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero.hero-banner-a {
  background-image: url('../images/factory/hero-banner-a.jpg');
  background-position: 30% center; /* LTR: shift focus right so text side gets darker area */
}
.hero.hero-banner-b {
  background-image: url('../images/factory/hero-banner-b.jpg');
  background-position: 30% center;
}
html[dir="rtl"] .hero.hero-banner-a,
html[dir="rtl"] .hero.hero-banner-b {
  background-position: 70% center; /* RTL: shift focus left so right-side text gets darker area */
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  /* LTR: darker on left where text sits */
  background: linear-gradient(to right, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.25) 70%, rgba(128,0,32,0.35) 100%);
  pointer-events: none;
}
html[dir="rtl"] .hero::before {
  /* RTL: darker on right where text sits */
  background: linear-gradient(to left, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.25) 70%, rgba(128,0,32,0.35) 100%);
}

.hero-grid {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  position: relative; z-index: 2;
}

.hero-content { max-width: 720px; color: var(--salt-white); }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  padding: 8px 18px; border-radius: 50px; margin-bottom: 28px;
  font-size: 13px; font-weight: 600; color: var(--salt-white);
}
.hero-eyebrow::before {
  content: ''; width: 8px; height: 8px; background: var(--ici-red-light);
  border-radius: 50%; animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.85)} }

.hero h1 {
  font-size: clamp(38px, 5.5vw, 68px); font-weight: 900;
  line-height: 1.1; color: var(--salt-white); margin-bottom: 16px;
  letter-spacing: -0.02em; text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero h1 .accent { color: var(--ici-red-light); }
.hero h1 .block { display: block; }

.hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.92); line-height: 1.7;
  margin-bottom: 36px; max-width: 600px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 0; }
.btn-primary {
  background: var(--ici-red); color: var(--salt-white);
  padding: 16px 34px; border-radius: 6px; font-size: 15px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.25s; box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--ici-red-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline {
  border: 2px solid var(--text-dark); color: var(--text-dark);
  padding: 14px 32px; border-radius: 6px; font-size: 15px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s;
}
.btn-outline:hover { background: var(--text-dark); color: var(--salt-white); }

/* Hero buttons override (on dark background) */
.hero .btn-outline {
  border-color: var(--salt-white); color: var(--salt-white);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.05);
}
.hero .btn-outline:hover { background: var(--salt-white); color: var(--text-dark); }
.hero .btn-primary { box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

.hero-stats {
  display: flex; gap: 48px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.stat-num { font-size: 38px; font-weight: 900; color: var(--ici-red-light); line-height: 1; }
.hero .stat-label { font-size: 12px; color: rgba(255,255,255,0.78); margin-top: 6px; font-weight: 500; }
.stat-label { font-size: 12px; color: var(--text-light); margin-top: 6px; font-weight: 500; }

/* ============ STATS STRIP ============ */
.stats-strip {
  background: var(--salt-cream);
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.stats-strip-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  text-align: center;
}
.stat-card { padding: 8px; }
.stat-card-num {
  font-size: 56px; font-weight: 900; color: var(--ici-red);
  line-height: 1; letter-spacing: -0.02em;
}
.stat-card-label {
  font-size: 14px; color: var(--text-mid);
  margin-top: 12px; font-weight: 500; letter-spacing: 0.02em;
}

/* ============ CLIENTS ============ */
.clients { background: var(--salt-cream); }
.clients-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px;
  margin-top: 16px;
}
.client-logo {
  aspect-ratio: 3/2; background: var(--salt-white);
  border: 1px solid var(--border); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  padding: 18px; transition: all 0.25s;
}
.client-logo:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.client-logo img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(1); opacity: 0.7; transition: all 0.25s; }
.client-logo:hover img { filter: grayscale(0); opacity: 1; }
.client-logo span { font-size: 12px; color: var(--text-light); text-align: center; }
@media (max-width: 900px) { .clients-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--text-dark); padding: 28px 0;
  border-top: 4px solid var(--ici-red);
}
.trust-grid {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.85); font-size: 13px;
}
.trust-item .icon { font-size: 22px; }

/* ============ SECTIONS ============ */
section { padding: 100px 0; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-eyebrow {
  font-size: 12px; color: var(--ici-red); font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px;
}
.section-title { font-size: clamp(30px, 4vw, 46px); font-weight: 900; line-height: 1.15; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--text-mid); line-height: 1.7; }

/* ============ ABOUT SECTION ============ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-text h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 20px; line-height: 1.2; }
.about-text p { font-size: 16px; color: var(--text-mid); line-height: 1.9; margin-bottom: 16px; }
.about-features { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.about-feature { display: flex; gap: 14px; align-items: flex-start; }
.about-feature .icon {
  width: 36px; height: 36px; background: rgba(128,0,32,0.1); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ici-red); font-size: 18px; font-weight: 900; flex-shrink: 0;
}
.about-feature h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.about-feature p { font-size: 13px; color: var(--text-light); margin: 0; line-height: 1.6; }

.about-visual {
  position: relative; aspect-ratio: 4/5; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-visual::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}

/* About section image carousel */
.about-visual.carousel .carousel-slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity 0.8s ease;
}
.about-visual.carousel .carousel-slide.active { opacity: 1; }
.about-visual.carousel .carousel-dots {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 3;
}
.about-visual.carousel .carousel-dot {
  width: 10px; height: 10px; border-radius: 50%; padding: 0; border: none;
  background: rgba(255,255,255,0.55); cursor: pointer; transition: all 0.25s;
}
.about-visual.carousel .carousel-dot.active { background: var(--salt-white); width: 28px; border-radius: 5px; }

/* Product card hover-swap (homepage) */
.product-image.hover-swap { position: relative; }
.product-image.hover-swap img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; padding: 20px;
  transition: opacity 0.45s ease, transform 0.4s ease;
}
.product-image.hover-swap .img-hover { opacity: 0; }
.product-card:hover .product-image.hover-swap .img-default { opacity: 0; }
.product-card:hover .product-image.hover-swap .img-hover { opacity: 1; }

/* ============ PRODUCT CATEGORIES ============ */
.categories { background: var(--salt-white); }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cat-card {
  background: var(--salt-cream); padding: 40px 28px; border-radius: 12px;
  transition: all 0.3s; border: 2px solid transparent;
}
.cat-card:hover { border-color: var(--ici-red); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cat-icon {
  width: 64px; height: 64px; background: var(--ici-red); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--salt-white); font-size: 28px; margin-bottom: 20px;
}
.cat-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.cat-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ============ PRODUCTS GRID ============ */
.products { background: var(--salt-cream); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card {
  background: var(--salt-white); border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all 0.3s;
  cursor: pointer; border: 1px solid var(--border);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-image {
  aspect-ratio: 1; background: var(--salt-cream); overflow: hidden; position: relative;
}
.product-image img { width: 100%; height: 100%; object-fit: contain; padding: 20px; transition: transform 0.4s; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-info { padding: 24px; }
.product-tag {
  display: inline-block; font-size: 11px; font-weight: 700; color: var(--ici-red);
  background: rgba(128,0,32,0.08); padding: 4px 10px; border-radius: 4px;
  margin-bottom: 10px; letter-spacing: 0.05em;
}
.product-info h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.product-info p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.product-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border);
}
.product-weight { font-size: 13px; font-weight: 700; color: var(--text-dark); }
.product-cta { font-size: 13px; font-weight: 600; color: var(--ici-red); display: flex; align-items: center; gap: 4px; }

/* ============ CUBES SECTION (5 colors) ============ */
.cubes-section { background: var(--text-dark); color: var(--salt-white); }
.cubes-section .section-title { color: var(--salt-white); }
.cubes-section .section-sub { color: rgba(255,255,255,0.7); }
.cubes-tagline {
  margin-top: 18px; font-size: clamp(20px, 2.6vw, 28px); font-weight: 800;
  color: #E63450; letter-spacing: 0.01em; line-height: 1.5;
}
.cubes-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.cube-card {
  background: rgba(255,255,255,0.05); border-radius: 12px; padding: 24px;
  text-align: center; transition: all 0.3s; border: 1px solid rgba(255,255,255,0.08);
}
.cube-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.cube-card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 8px; margin-bottom: 16px; }
.cube-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.cube-card .cube-desc { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* ============ WHY US ============ */
.why { background: var(--salt-white); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.why-card {
  text-align: center; padding: 36px 24px; border-radius: 12px;
  transition: all 0.3s; border: 1px solid var(--border);
}
.why-card:hover { background: var(--salt-cream); border-color: var(--ici-red); }
.why-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: rgba(128,0,32,0.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--ici-red);
}
.why-card h4 { font-size: 17px; font-weight: 800; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ============ CONTACT SECTION ============ */
.contact { background: linear-gradient(135deg, #1A1A1A 0%, #2A1518 100%); color: var(--salt-white); padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: clamp(28px,3.6vw,42px); color: var(--salt-white); margin-bottom: 16px; }
.contact-info > p { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.8; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-detail {
  display: flex; flex-direction: column; gap: 2px;
  padding: 16px 20px; background: rgba(255,255,255,0.05); border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  border-right: 3px solid var(--ici-red);
  transition: all 0.2s;
}
html[dir="ltr"] .contact-detail { border-right: 1px solid rgba(255,255,255,0.08); border-left: 3px solid var(--ici-red); }
.contact-detail:hover { background: rgba(255,255,255,0.08); }
.contact-detail-text { flex: 1; }
.contact-detail-text .label { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 2px; }
.contact-detail-text .value { font-size: 16px; font-weight: 700; color: var(--salt-white); }
.contact-detail-text .value a { color: inherit; }
.value[dir="ltr"], a[dir="ltr"], .ltr-num {
  direction: ltr; unicode-bidi: isolate; display: inline-block;
}
html[dir="rtl"] .contact-detail-text .value[dir="ltr"] { text-align: right; }

.contact-form {
  background: var(--salt-white); color: var(--text-dark);
  padding: 40px; border-radius: 14px; box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600; color: var(--text-dark);
  margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; background: var(--salt-cream);
  border: 1px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: 15px; color: var(--text-dark);
  transition: all 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--ici-red); background: var(--salt-white);
  box-shadow: 0 0 0 3px rgba(128,0,32,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  background: var(--ici-red); color: var(--salt-white);
  width: 100%; padding: 16px; border-radius: 8px; font-size: 16px; font-weight: 700;
  transition: all 0.2s; cursor: pointer;
}
.btn-submit:hover { background: var(--ici-red-dark); }

/* ============ FOOTER ============ */
footer { background: #0D0D0D; color: rgba(255,255,255,0.7); padding: 60px 0 24px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { width: 64px; margin-bottom: 16px; }
.footer-brand h4 { color: var(--salt-white); font-size: 16px; margin-bottom: 8px; }
.footer-brand p { font-size: 13px; line-height: 1.7; }
.footer-col h5 {
  color: var(--salt-white); font-size: 14px; font-weight: 700;
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; transition: color 0.2s; }
.footer-col a:hover { color: var(--ici-red-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 12px;
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed; bottom: 24px; left: 24px; z-index: 99;
  width: 60px; height: 60px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s; color: var(--salt-white); font-size: 28px;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ============ ANIMATIONS ============ */
.fade-in { opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s forwards; }
.fade-in.d1 { animation-delay: 0.1s; }
.fade-in.d2 { animation-delay: 0.2s; }
.fade-in.d3 { animation-delay: 0.3s; }
.fade-in.d4 { animation-delay: 0.4s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid, .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cubes-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: calc(var(--nav-height) + 60px) 0 60px; }
  .hero h1 { font-size: clamp(32px, 7vw, 48px); }
  .hero-sub { font-size: 16px; }
  .stats-strip { padding: 40px 0; }
  .stats-strip-grid { gap: 24px; }
  .stat-card-num { font-size: 40px; }
}
@media (max-width: 640px) {
  section { padding: 60px 0; }
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .nav-links.mobile-open { display: flex; position: absolute; top: var(--nav-height); left: 0; right: 0; background: var(--salt-white); flex-direction: column; padding: 24px; gap: 18px; border-bottom: 1px solid var(--border); }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 28px; }
  .product-grid, .cat-grid, .cubes-grid, .why-grid { grid-template-columns: 1fr; }
  .cubes-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
}

/* ============ RTL ADJUSTMENTS ============ */
html[dir="rtl"] body { font-family: 'Tajawal', sans-serif; }
html[dir="rtl"] .nav-logo { flex-direction: row-reverse; }
html[dir="rtl"] .whatsapp-float { left: auto; right: 24px; }

/* Hide LTR content when RTL active and vice versa */
html[dir="rtl"] .ltr-only { display: none; }
html[dir="ltr"] .rtl-only { display: none; }
