/* ===========================
   BROTHER PLAST - MAIN STYLES
   Dark Luxury Gold Theme
   =========================== */

:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #9a7a2e;
  --dark: #0a0a0f;
  --dark2: #111118;
  --dark3: #1a1a2e;
  --dark4: #16213e;
  --text-light: #f0f0f0;
  --text-muted: #888899;
  --white: #ffffff;
  --border: rgba(201, 168, 76, 0.2);
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --font-ar: 'Cairo', sans-serif;
  --font-en: 'Montserrat', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ar);
  background: var(--dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

body.lang-en { direction: ltr; font-family: var(--font-en); }

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================
   BUTTONS
   ======================== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  color: #0a0a0f;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.btn-gold:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}
.btn-gold.full-width { width: 100%; justify-content: center; font-size: 1.1rem; padding: 16px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 4px;
  font-size: 1rem;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ========================
   HEADER
   ======================== */
.header { position: fixed; top: 0; width: 100%; z-index: 1000; }

.header-top {
  background: linear-gradient(90deg, var(--dark2), var(--dark3));
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 0.85rem;
}
.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-info { display: flex; gap: 20px; flex-wrap: wrap; }
.contact-info a {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
}
.contact-info a:hover { color: var(--gold); }
.contact-info .icon { font-size: 0.9rem; }

.lang-switch { display: flex; gap: 6px; }
.lang-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 4px 12px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: var(--transition);
  font-family: inherit;
}
.lang-btn.active, .lang-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  font-weight: 700;
}

.navbar {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  padding: 0;
}
.navbar.scrolled {
  background: rgba(10, 10, 15, 0.99);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-text { display: flex; align-items: center; gap: 10px; }
.logo-bp {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -2px;
  line-height: 1;
}
.logo-bp .gold { color: #aaa; }
.logo-name { display: flex; flex-direction: column; }
.logo-name span {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--gold);
  line-height: 1.2;
  letter-spacing: 1px;
}
.logo-name small {
  font-size: 0.62rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 60%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

/* lang switch في الـ navbar */
.nav-lang {
  display: flex;
  gap: 5px;
  align-items: center;
}
.nav-lang .lang-btn {
  padding: 4px 10px;
  font-size: .78rem;
  min-width: 34px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}

/* ========================
   HERO SECTION
   ======================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 110px;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(201, 168, 76, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, var(--dark) 0%, var(--dark2) 50%, var(--dark) 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(201, 168, 76, 0.03) 60px, rgba(201, 168, 76, 0.03) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(201, 168, 76, 0.03) 60px, rgba(201, 168, 76, 0.03) 61px);
}

.hero-particles { position: absolute; inset: 0; overflow: hidden; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 1px;
  animation: fadeInDown 0.8s ease forwards;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-title-line1 { display: block; color: var(--white); }
.hero-title-line2 { display: block; }

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

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  font-weight: 400;
  animation: fadeInUp 0.8s 0.3s ease both;
  letter-spacing: 0.5px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s 0.4s ease both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 40px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s 0.5s ease both;
}
.stat-item { text-align: center; padding: 0 32px; }
.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  font-family: var(--font-en);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.82rem; color: var(--text-muted); }
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  animation: bounceDown 2s infinite;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}

/* ========================
   SECTIONS
   ======================== */
.section { padding: 100px 0; }
.dark-section { background: var(--dark2); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
}
.section-label::before, .section-label::after {
  content: '—';
  margin: 0 10px;
  opacity: 0.5;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.section-title.light { color: var(--white); }
.section-subtitle { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ========================
   ABOUT SECTION
   ======================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 400px;
  padding: 24px;
}
.about-card-main {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark3), var(--dark4));
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}
.about-icon-big { font-size: 5rem; }
.about-card-main h3 { font-size: 1.8rem; font-weight: 800; color: var(--gold); }
.about-card-main p { color: var(--text-muted); }

.about-badge-float {
  position: absolute;
  top: -20px;
  left: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  font-weight: 900;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}
.about-badge-float span { display: block; font-size: 1.2rem; font-family: var(--font-en); }
.about-badge-float small { font-size: 0.75rem; }

.about-years-float {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background: var(--dark);
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  font-weight: 900;
}
.about-years-float span { display: block; font-size: 2rem; font-family: var(--font-en); }
.about-years-float small { font-size: 0.75rem; color: var(--text-muted); }

.about-text .section-label { text-align: right; }
body.lang-en .about-text .section-label { text-align: left; }
.about-desc { color: var(--text-muted); margin-bottom: 28px; line-height: 1.9; }
.about-points { margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.about-point { display: flex; align-items: center; gap: 12px; }
.point-icon { font-size: 1.1rem; flex-shrink: 0; }

/* ========================
   PRODUCTS SECTION
   ======================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.product-card {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.product-card:hover::before { transform: scaleX(1); }

.product-icon { font-size: 2.5rem; margin-bottom: 16px; }
.product-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--gold); margin-bottom: 10px; }
.product-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; line-height: 1.7; }
.product-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.product-tags span {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ========================
   FEATURES SECTION
   ======================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}
.feature-item {
  text-align: center;
  padding: 32px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: var(--transition);
}
.feature-item:hover {
  border-color: var(--border);
  background: rgba(201, 168, 76, 0.03);
  transform: translateY(-4px);
}
.feature-icon-wrap {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  transition: var(--transition);
}
.feature-item:hover .feature-icon-wrap {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: var(--gold);
  transform: rotate(-5deg) scale(1.1);
}
.feature-item:hover .feature-icon-wrap span { filter: grayscale(1) brightness(0); }
.feature-item h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.feature-item p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }

/* ========================
   CLIENTS SECTION
   ======================== */
.clients-section { padding: 70px 0; }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}
.client-card {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: var(--transition);
}
.client-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.client-card span { font-size: 2rem; display: block; margin-bottom: 10px; }
.client-card p { color: var(--text-muted); font-size: 0.88rem; font-weight: 600; }

/* ========================
   PORTFOLIO SECTION
   ======================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.portfolio-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  cursor: pointer;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 { color: var(--gold); font-size: 1rem; margin-bottom: 4px; }
.portfolio-overlay p { color: var(--text-muted); font-size: 0.85rem; }

.portfolio-placeholder {
  border: 2px dashed var(--border);
  border-radius: 12px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}
.portfolio-placeholder:hover { border-color: var(--gold); }
.placeholder-content { text-align: center; }
.placeholder-content span { display: block; font-size: 3rem; font-weight: 900; color: var(--gold); font-family: var(--font-en); }
.placeholder-content p { color: var(--text-muted); font-size: 0.9rem; margin: 8px 0 4px; }
.placeholder-content small { color: var(--gold); font-size: 0.78rem; opacity: 0.7; }

/* ========================
   ARTICLES SECTION
   ======================== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}
.article-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.article-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.article-card-header {
  padding: 28px 28px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.article-emoji { font-size: 2rem; flex-shrink: 0; }
.article-meta { flex: 1; }
.article-tag {
  display: inline-block;
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.article-date { color: var(--text-muted); font-size: 0.78rem; }
.article-body { padding: 16px 28px 28px; }
.article-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}
.article-body p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 16px; }
.article-read {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.article-card:hover .article-read { gap: 10px; }
.articles-more { text-align: center; }

/* ========================
   CONTACT SECTION
   ======================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}
.contact-info-box, .contact-form-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}
.contact-info-box h3, .contact-form-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail strong { display: block; color: var(--white); font-size: 0.85rem; margin-bottom: 2px; }
.contact-detail p, .contact-detail a { color: var(--text-muted); font-size: 0.9rem; }
.contact-detail a:hover { color: var(--gold); }

.contact-social { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  border: 2px solid transparent;
}
.social-btn.whatsapp { background: #25D366; color: #fff; }
.social-btn.call { background: transparent; border-color: var(--gold); color: var(--gold); }
.social-btn:hover { transform: translateY(-2px); opacity: 0.9; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  padding: 12px 16px;
  font-size: 0.92rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.form-group select option { background: var(--dark3); }
.form-note { text-align: center; color: var(--text-muted); font-size: 0.78rem; margin-top: 12px; }

.form-success {
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.3);
  color: #2ecc71;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
}

/* ========================
   FOOTER
   ======================== */
.footer { background: var(--dark2); border-top: 1px solid var(--border); }
.footer-top { padding: 70px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo .logo-bp { font-size: 2.2rem; }
.footer-logo strong { display: block; color: var(--gold); font-weight: 800; }
.footer-logo small { color: var(--text-muted); font-size: 0.72rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.8; }

.footer-links h4, .footer-products h4, .footer-contact h4 {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-muted); font-size: 0.88rem; }
.footer-links a:hover { color: var(--gold); padding-right: 6px; }
body.lang-en .footer-links a:hover { padding-right: 0; padding-left: 6px; }

.footer-products ul { display: flex; flex-direction: column; gap: 10px; }
.footer-products li { color: var(--text-muted); font-size: 0.88rem; }
.footer-products li::before { content: '▸ '; color: var(--gold); }

.footer-contact p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 10px; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; }

/* ========================
   WHATSAPP FLOAT
   ======================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5); }
body.lang-en .whatsapp-float { left: auto; right: 28px; }

/* ========================
   ANIMATIONS
   ======================== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .header-top { display: none; }
  .nav-lang { display: flex; } /* اللغة دايماً ظاهرة في الناف */
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    background: rgba(10, 10, 15, 0.98);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; display: block; }

  .hero-stats { gap: 0; padding: 20px; }
  .stat-item { padding: 12px 16px; }
  .stat-divider { height: 30px; }
  .stat-number { font-size: 1.6rem; }

  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .section { padding: 60px 0; }
  .hero { padding-top: 80px; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .stat-divider { display: none; }
  .hero-stats { gap: 8px; }
}
