/* ===========================
   HighGate - Main Stylesheet
   Brand Color: #2E6080 (Steel Blue)
   =========================== */

:root {
  --primary: #2E6080;
  --primary-dark: #1e4a63;
  --primary-light: #3d7a9e;
  --accent: #C9A84C;
  --accent-light: #e2c070;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #eef2f5;
  --gray: #6c7a89;
  --dark: #1a2533;
  --text: #2c3e50;
  --border: #dde4eb;
  --shadow: 0 4px 24px rgba(46,96,128,0.10);
  --shadow-lg: 0 12px 48px rgba(46,96,128,0.18);
  --radius: 10px;
  --radius-lg: 18px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-ar: 'Cairo', 'Tajawal', sans-serif;
  --font-en: 'Inter', 'Segoe UI', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ar);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
body.en { font-family: var(--font-en); }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.3; color: var(--dark); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(46,96,128,0.08);
  transition: var(--transition);
  border-bottom: 2px solid transparent;
}
.navbar.scrolled { border-bottom-color: var(--primary); }
.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 54px; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text .brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}
.nav-logo-text .brand-sub {
  font-size: 0.7rem;
  color: var(--gray);
  font-weight: 500;
}
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--primary); background: var(--light-gray); }
.nav-links a:hover::after { left: 16%; right: 16%; }
.nav-links a.active { color: var(--primary); }

.lang-switcher {
  display: flex;
  background: var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-inline-start: 12px;
}
.lang-btn {
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray);
  border: none;
  background: none;
  font-family: inherit;
}
.lang-btn.active, .lang-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px; height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f2d3f 0%, var(--primary-dark) 30%, var(--primary) 65%, var(--primary-light) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 78% 50%, rgba(201,168,76,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 20% 30%, rgba(46,96,128,0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.hero-shape-1 { width: 500px; height: 500px; top: -150px; right: -100px; background: rgba(255,255,255,0.04); }
.hero-shape-2 { width: 300px; height: 300px; bottom: -80px; left: -60px; background: rgba(255,255,255,0.04); }
.hero-shape-3 { width: 220px; height: 220px; top: 40%; left: 30%; background: rgba(201,168,76,0.07); }
.hero-shape-4 { width: 380px; height: 380px; top: 50%; right: 22%; transform: translateY(-50%); background: rgba(201,168,76,0.06); border-radius: 50%; position: absolute; }

.hero-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-title {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-title span { color: var(--accent-light); }
.hero-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
}
.stat {
  text-align: center;
}
.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  border: 2px solid var(--accent);
  cursor: pointer;
  font-family: inherit;
}
.btn-primary:hover { background: var(--accent-light); border-color: var(--accent-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  font-family: inherit;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: white; transform: translateY(-2px); }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-logo-display {
  text-align: center;
  position: relative;
}
.hero-logo-glow {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.18) 0%, rgba(46,96,128,0.22) 50%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}
.hero-logo-ring-outer {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(201,168,76,0.9) 0deg,
    rgba(46,96,128,0.6) 90deg,
    rgba(30,74,99,0.4) 180deg,
    rgba(61,122,158,0.6) 270deg,
    rgba(201,168,76,0.9) 360deg
  );
  padding: 4px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ring-spin 12s linear infinite;
}
@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero-logo-ring-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(30,74,99,0.85) 0%, rgba(46,96,128,0.75) 100%);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ring-spin 12s linear infinite reverse;
}
.hero-logo-img-circle {
  width: 236px;
  height: 236px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.35));
  position: relative;
  z-index: 2;
}
.hero-logo-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  position: relative;
  z-index: 2;
}
.hero-logo-line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.6));
}
.hero-logo-line.right {
  background: linear-gradient(90deg, rgba(201,168,76,0.6), transparent);
}
.hero-logo-display p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}
.hero-logo-display p span {
  display: block;
  font-size: 0.75rem;
  color: var(--accent-light);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}
.hero-logo-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 14px;
  position: relative;
  z-index: 2;
}
.hero-logo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201,168,76,0.5);
}
.hero-logo-dot.active {
  background: var(--accent);
  width: 18px;
  border-radius: 3px;
}

/* ===== SECTION BASE ===== */
.section { padding: 100px 0; }
.section-alt { background: var(--off-white); }
.container { max-width: 1300px; margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-label { justify-content: center; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 580px; margin: 0 auto; color: var(--gray); font-size: 1.05rem; }

/* ===== ABOUT STRIP ===== */
.about-strip {
  background: var(--primary);
  color: white;
  padding: 28px 0;
}
.about-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.strip-item { display: flex; align-items: center; gap: 12px; }
.strip-icon { font-size: 1.5rem; }
.strip-text { font-size: 0.95rem; font-weight: 600; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: white;
}
.service-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.service-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag {
  padding: 4px 12px;
  background: var(--light-gray);
  color: var(--primary);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ===== PRODUCTS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-img {
  height: 180px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.product-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(0,0,0,0.3));
}
.product-body { padding: 24px; }
.product-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.product-body p { color: var(--gray); font-size: 0.88rem; }

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-content { }
.why-visual {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 48px;
  color: white;
  text-align: center;
}
.why-visual-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.why-stat {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.15);
}
.why-stat-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-light);
}
.why-stat-label { font-size: 0.85rem; opacity: 0.85; }

.why-list { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-item-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: white;
}
.why-item-text h4 { font-size: 1rem; margin-bottom: 4px; }
.why-item-text p { color: var(--gray); font-size: 0.9rem; }

/* ===== CONTACT PAGE ===== */
.contact-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 140px 0 80px;
  text-align: center;
  color: white;
}
.contact-hero h1 { color: white; margin-bottom: 16px; }
.contact-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow); border-color: var(--primary); }
.ci-icon {
  width: 50px; height: 50px; min-width: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: white;
}
.ci-content h4 { font-size: 0.85rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.ci-content a, .ci-content p { color: var(--text); font-weight: 600; font-size: 1rem; }
.ci-content a:hover { color: var(--primary); }

.social-links { display: flex; gap: 12px; margin-top: 8px; }
.social-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition);
  border: 2px solid;
}
.social-btn.wa { border-color: #25D366; color: #25D366; }
.social-btn.wa:hover { background: #25D366; color: white; }
.social-btn.fb { border-color: #1877F2; color: #1877F2; }
.social-btn.fb:hover { background: #1877F2; color: white; }

/* ===== FORMS ===== */
.contact-forms { display: flex; flex-direction: column; gap: 28px; }
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.form-card-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.form-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: white;
}
.form-card-icon.wa-icon { background: #25D366; }
.form-card-icon.email-icon { background: var(--primary); }
.form-card-header h3 { font-size: 1.15rem; margin: 0; }
.form-card-header p { font-size: 0.85rem; color: var(--gray); margin: 2px 0 0; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); background: white; box-shadow: 0 0 0 3px rgba(46,96,128,0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.btn-wa {
  width: 100%;
  padding: 14px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-wa:hover { background: #1EB85B; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }

.btn-email {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-email:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(46,96,128,0.35); }

/* ===== MAP ===== */
.map-section { padding: 0; }
.map-section iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand img { height: 64px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; opacity: 0.75; }
.footer h4 { color: white; font-size: 1rem; margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.9rem; opacity: 0.75; transition: var(--transition); }
.footer-links a:hover { opacity: 1; color: var(--accent-light); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 0.9rem; opacity: 0.8; }
.footer-contact-item a { opacity: 1; }
.footer-contact-item a:hover { color: var(--accent-light); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  color: white;
}
.footer-social-btn:hover { background: var(--primary); color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ===== PAGE INNER HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 140px 0 80px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-header h1 { color: white; margin-bottom: 12px; position: relative; z-index: 1; }
.page-header p { color: rgba(255,255,255,0.8); font-size: 1.05rem; position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.85rem; color: rgba(255,255,255,0.65);
  margin-top: 12px;
  position: relative; z-index: 1;
}
.breadcrumb a { color: var(--accent-light); }
.breadcrumb span { opacity: 0.5; }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 28px; /* Left for RTL */
  width: 48px; height: 48px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  z-index: 999;
  box-shadow: var(--shadow);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-4px); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  z-index: 999;
  padding: 32px 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--primary); background: var(--light-gray); }
.mobile-lang {
  display: flex; gap: 12px; margin-top: 16px;
}
.mobile-lang a {
  flex: 1; text-align: center;
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 700;
  border: 2px solid var(--border);
  font-size: 0.95rem;
}
.mobile-lang a.active { background: var(--primary); color: white; border-color: var(--primary); }

/* ===== ABOUT PAGE ===== */
.timeline { position: relative; padding-inline-start: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; inset-inline-start: 12px;
  width: 2px;
  background: linear-gradient(var(--primary), var(--accent));
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-dot {
  position: absolute;
  inset-inline-start: -34px; top: 4px;
  width: 18px; height: 18px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--primary);
}
.timeline-year {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.timeline-item h3 { margin-bottom: 8px; }
.timeline-item p { color: var(--gray); font-size: 0.95rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate { opacity: 0; }
.animate.in { animation: fadeUp 0.6s ease forwards; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-stats { justify-content: center; }
  .hero-cta { justify-content: center; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .lang-switcher { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 20px; }
}

/* ===== RTL BASE ===== */
[dir="rtl"] { direction: rtl; text-align: right; }
[dir="ltr"] { direction: ltr; text-align: left; }
