/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cairo', 'Montserrat', sans-serif;
  background: #0a0a0a;
  color: #f0f0f0;
  direction: rtl;
  overflow-x: hidden;
}
body.en { direction: ltr; font-family: 'Montserrat', 'Cairo', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: 4px; font-weight: 700;
  font-size: 1rem; cursor: pointer; transition: all 0.3s; border: 2px solid transparent;
  font-family: inherit;
}
.btn-primary {
  background: #e31e24; color: #fff; border-color: #e31e24;
}
.btn-primary:hover { background: #c01419; border-color: #c01419; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(227,30,36,0.4); }
.btn-outline {
  background: transparent; color: #fff; border-color: #fff;
}
.btn-outline:hover { background: #fff; color: #0a0a0a; transform: translateY(-2px); }
.btn-white { background: #fff; color: #e31e24; border-color: #fff; }
.btn-white:hover { background: transparent; color: #fff; transform: translateY(-2px); }
.btn-full { width: 100%; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; background: rgba(227,30,36,0.15); color: #e31e24;
  border: 1px solid rgba(227,30,36,0.4); padding: 6px 20px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 16px; text-transform: uppercase;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: #fff;
  line-height: 1.2; margin-bottom: 16px;
}
.section-subtitle { color: #aaa; font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ===== NAVBAR ===== */
.navbar {
  position: relative; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  background: transparent;
}
.navbar.scrolled {
  background: transparent;
  padding: 16px 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.logo-brand-name { font-size: 1.6rem; font-weight: 900; color: #e31e24; letter-spacing: 2px; font-family: 'Cairo', sans-serif; }
.nav-links {
  display: flex; list-style: none; gap: 8px; align-items: center;
}
.nav-links a {
  color: #ddd; font-weight: 600; font-size: 0.9rem; padding: 8px 14px;
  border-radius: 4px; transition: all 0.2s; position: relative;
}
.nav-links a:hover { color: #e31e24; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-btn {
  background: rgba(227,30,36,0.15); border: 1px solid rgba(227,30,36,0.5);
  color: #e31e24; padding: 7px 18px; border-radius: 4px; cursor: pointer;
  font-weight: 700; font-size: 0.85rem; transition: all 0.2s; font-family: inherit;
}
.lang-btn:hover { background: #e31e24; color: #fff; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.7) 50%, rgba(227,30,36,0.15) 100%);
}
.hero-content {
  position: relative; z-index: 1; text-align: center; max-width: 800px;
  padding: 60px 24px 80px;
}
.hero-badge {
  display: inline-block; background: rgba(227,30,36,0.2); border: 1px solid rgba(227,30,36,0.5);
  color: #e31e24; padding: 8px 24px; border-radius: 50px; font-size: 0.9rem;
  font-weight: 700; margin-bottom: 24px; letter-spacing: 1px;
}
.hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem); font-weight: 900; line-height: 1.1;
  color: #fff; margin-bottom: 20px; display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.hero-title-red { color: #e31e24; }
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem); color: #ccc; margin-bottom: 40px;
  line-height: 1.7; max-width: 600px; margin-left: auto; margin-right: auto;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 0;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 24px 40px; backdrop-filter: blur(10px); flex-wrap: wrap; gap: 0;
}
.stat { text-align: center; padding: 0 32px; }
.stat-num { display: block; font-size: 2rem; font-weight: 900; color: #e31e24; }
.stat-label { font-size: 0.85rem; color: #aaa; }
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.15); }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 1; }
.scroll-indicator {
  width: 2px; height: 50px; background: linear-gradient(to bottom, #e31e24, transparent);
  margin: 0 auto; animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:0.3;transform:scaleY(0.5)} }

/* ===== MARQUEE ===== */
.marquee-strip {
  background: #e31e24; padding: 14px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 40px; white-space: nowrap;
  animation: marquee 25s linear infinite;
}
body.en .marquee-track { animation-direction: reverse; }
.marquee-track span { font-weight: 700; font-size: 0.95rem; color: #fff; flex-shrink: 0; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: #0f0f0f; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; border-radius: 8px; overflow: visible; }
.about-img { width: 100%; height: 450px; object-fit: cover; border-radius: 8px; }
.about-badge-float {
  position: absolute; bottom: -20px; right: -20px;
  background: #e31e24; color: #fff; padding: 20px 24px; border-radius: 8px;
  text-align: center; box-shadow: 0 10px 30px rgba(227,30,36,0.4);
}
body.en .about-badge-float { right: auto; left: -20px; }
.badge-num { display: block; font-size: 2rem; font-weight: 900; }
.badge-text { font-size: 0.8rem; font-weight: 600; }
.about-text .section-tag { margin-bottom: 12px; }
.about-text .section-title { text-align: right; margin-bottom: 20px; }
body.en .about-text .section-title { text-align: left; }
.about-desc { color: #aaa; line-height: 1.8; margin-bottom: 16px; font-size: 1rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.feature-item { display: flex; gap: 12px; align-items: flex-start; }
.feature-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.feature-item strong { display: block; color: #fff; font-weight: 700; margin-bottom: 4px; }
.feature-item p { color: #888; font-size: 0.85rem; }

/* ===== PRODUCTS ===== */
.products { padding: 100px 0; background: #0a0a0a; }
.products-filter { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }
.filter-btn {
  padding: 10px 24px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.15);
  background: transparent; color: #aaa; cursor: pointer; font-weight: 600;
  font-size: 0.9rem; transition: all 0.2s; font-family: inherit;
}
.filter-btn:hover, .filter-btn.active { background: #e31e24; border-color: #e31e24; color: #fff; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card {
  background: #141414; border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06); transition: all 0.3s;
}
.product-card:hover { transform: translateY(-6px); border-color: rgba(227,30,36,0.3); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.product-card.hidden { display: none; }
.product-img-wrap { position: relative; overflow: hidden; height: 220px; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-overlay {
  position: absolute; inset: 0; background: rgba(227,30,36,0.85);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay span { color: #fff; font-weight: 700; font-size: 1.1rem; }
.product-info { padding: 20px; }
.product-info h3 { color: #fff; font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.product-info p { color: #888; font-size: 0.85rem; line-height: 1.6; margin-bottom: 16px; }
.product-btn {
  display: inline-block; padding: 8px 20px; background: rgba(227,30,36,0.15);
  border: 1px solid rgba(227,30,36,0.4); color: #e31e24; border-radius: 4px;
  font-size: 0.85rem; font-weight: 600; transition: all 0.2s;
}
.product-btn:hover { background: #e31e24; color: #fff; }

/* ===== SECTORS ===== */
.sectors { padding: 100px 0; background: #0f0f0f; }
.sectors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sector-card {
  background: #141414; border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px; padding: 36px 28px; text-align: center; transition: all 0.3s;
}
.sector-card:hover { border-color: rgba(227,30,36,0.4); transform: translateY(-4px); background: #1a1a1a; }
.sector-icon { font-size: 2.5rem; margin-bottom: 16px; }
.sector-card h3 { color: #fff; font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.sector-card p { color: #888; font-size: 0.85rem; line-height: 1.6; }

/* ===== REVIEWS ===== */
.reviews { padding: 100px 0; background: #0a0a0a; overflow: hidden; }
.google-rating {
  display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 20px;
}
.google-logo { height: 24px; width: auto; filter: grayscale(0); }
.stars { color: #FFB800; font-size: 1.2rem; letter-spacing: 2px; }
.rating-text { color: #fff; font-weight: 700; font-size: 1rem; }
.reviews-slider { overflow: hidden; position: relative; width: 100%; }
.reviews-track {
  display: flex; gap: 24px; transition: transform 0.5s ease; width: max-content;
}
.reviews-grid-static {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.review-card {
  background: #141414; border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px; padding: 24px; width: auto; max-width: none; min-width: 0; flex-shrink: 0;
  transition: border-color 0.3s; box-sizing: border-box;
}
.review-card:hover { border-color: rgba(227,30,36,0.3); }
.review-stars { color: #FFB800; font-size: 1.1rem; margin-bottom: 16px; }
.review-text { color: #ccc; font-size: 0.95rem; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: #e31e24;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.reviewer strong { display: block; color: #fff; font-size: 0.95rem; margin-bottom: 2px; }
.reviewer span { color: #888; font-size: 0.8rem; }
.reviews-nav { display: flex; gap: 12px; justify-content: center; margin-top: 32px; }
.rev-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15);
  background: transparent; color: #fff; cursor: pointer; font-size: 1.1rem; transition: all 0.2s;
}
.rev-btn:hover { background: #e31e24; border-color: #e31e24; }

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, #e31e24 0%, #9b0a0e 100%);
  padding: 80px 24px; text-align: center;
}
.cta-content h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 900; color: #fff; margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 36px; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: #0f0f0f; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; color: #fff; font-weight: 700; margin-bottom: 4px; }
.contact-item p, .contact-item a { color: #aaa; font-size: 0.95rem; }
.contact-item a:hover { color: #e31e24; }
.contact-socials { margin-top: 32px; }
.social-btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 12px 24px;
  border-radius: 4px; font-weight: 700; font-size: 0.95rem; transition: all 0.2s;
}
.social-btn.whatsapp { background: #25D366; color: #fff; }
.social-btn.whatsapp:hover { background: #1da851; transform: translateY(-2px); }
.contact-form { background: #141414; border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: #ccc; font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: #1a1a1a; border: 1px solid rgba(255,255,255,0.1);
  color: #fff; padding: 12px 16px; border-radius: 4px; font-size: 0.95rem;
  font-family: inherit; transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #e31e24; }
.form-group select option { background: #1a1a1a; }
.form-group textarea { resize: vertical; }

/* ===== FOOTER ===== */
.footer { background: #050505; padding: 60px 0 0; }
.footer-content {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 40px;
}
.footer-brand-name { font-size: 1.8rem; font-weight: 900; color: #e31e24; letter-spacing: 2px; font-family: 'Cairo', sans-serif; margin-bottom: 12px; }
.footer-logo p { color: #666; font-size: 0.9rem; line-height: 1.7; }
.footer-links h4, .footer-contact h4 { color: #fff; font-weight: 700; margin-bottom: 20px; font-size: 1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a, .footer-contact p, .footer-contact a { color: #666; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover, .footer-contact a:hover { color: #e31e24; }
.footer-contact p { margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 24px; text-align: center;
}
.footer-bottom p { color: #444; font-size: 0.85rem; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; left: 28px; z-index: 999;
  width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.3s;
  animation: wa-pulse 2.2s ease-in-out infinite;
}
body.en .whatsapp-float { left: auto; right: 28px; }
.whatsapp-float:hover { transform: scale(1.15) !important; animation: none; box-shadow: 0 8px 30px rgba(37,211,102,0.6); }
@keyframes wa-pulse {
  0%   { transform: scale(1);    box-shadow: 0 0 0 0   rgba(37,211,102,0.7); }
  50%  { transform: scale(1.08); box-shadow: 0 0 0 16px rgba(37,211,102,0);   }
  100% { transform: scale(1);    box-shadow: 0 0 0 0   rgba(37,211,102,0);   }
}



/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-img { height: 350px; }
  .about-badge-float { right: 20px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .review-card { width: calc((100vw - 48px - 48px) / 2); max-width: 420px; min-width: unset; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; right: 0; bottom: 0; width: 280px; background: #0a0a0a; padding: 80px 24px 40px; z-index: 999; transform: translateX(100%); transition: transform 0.3s; }
  body.en .nav-links { right: auto; left: 0; transform: translateX(-100%); }
  .nav-links.open { display: flex; transform: translateX(0); }
  .hamburger { display: flex; }
  .hero-stats { padding: 20px; gap: 16px; }
  .stat { padding: 0 16px; }
  .stat-divider { height: 30px; }
  .products-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; gap: 32px; }
  .review-card { width: calc(100vw - 48px); max-width: 100%; min-width: unset; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { width: 60px; height: 1px; }
}


/* ===== FOOTER SOCIAL ICONS ===== */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #aaa;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-icon:hover {
  background: #e31e24;
  color: #fff;
  border-color: #e31e24;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(227,30,36,0.4);
}

.footer-social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
