/* ========== CSS Variables ========== */
:root {
  --green: #2ecc71;
  --green-dark: #27ae60;
  --green-light: #a8e6c1;
  --navy: #1a3a5c;
  --navy-dark: #0f2540;
  --navy-light: #2d5a8e;
  --white: #ffffff;
  --off-white: #f4f8f5;
  --gray: #7f8c8d;
  --gray-light: #ecf0f1;
  --text-dark: #1a1a2e;
  --font-en: 'Barlow', sans-serif;
  --font-ar: 'Cairo', sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 4px 24px rgba(26,58,92,0.10);
  --shadow-lg: 0 8px 40px rgba(26,58,92,0.18);
  --radius: 12px;
}

/* ========== Reset & Base ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}

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

body.rtl, html[dir="rtl"] body {
  font-family: var(--font-ar);
  direction: rtl;
  text-align: right;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* ========== Language Switcher ========== */
.lang-bar {
  background: var(--navy-dark);
  padding: 8px 0;
  text-align: right;
}
html[dir="rtl"] .lang-bar { text-align: left; }
.lang-bar .container { display: flex; justify-content: space-between; align-items: center; }
.lang-bar-contact a {
  color: var(--green-light);
  font-size: 13px;
  margin-inline-start: 20px;
}
.lang-bar-contact a:hover { color: var(--white); }
.lang-switch a {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 14px;
  border: 1px solid var(--green);
  border-radius: 20px;
  transition: var(--transition);
}
.lang-switch a:hover {
  background: var(--green);
  color: var(--navy-dark);
}

/* ========== Header / Navbar ========== */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(26,58,92,0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-logo img {
  height: 56px;
  width: auto;
  background: transparent;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-text .logo-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1.1;
}
html[dir="rtl"] .logo-text .logo-name {
  font-family: var(--font-ar);
}
.logo-text .logo-sub {
  font-size: 11px;
  color: var(--green-dark);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-menu a {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  transition: var(--transition);
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
html[dir="rtl"] .nav-menu a::after { left: auto; right: 0; }
.nav-menu a:hover { color: var(--green-dark); }
.nav-menu a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--green);
  color: var(--navy-dark) !important;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 700 !important;
  transition: var(--transition) !important;
}
.nav-cta:hover {
  background: var(--navy) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
}
.nav-cta::after { display: none !important; }

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

/* ========== Hero Section ========== */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1e5f3a 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(46,204,113,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(46,204,113,0.08) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46,204,113,0.15);
  border: 1px solid rgba(46,204,113,0.3);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-badge span {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-badge p {
  color: var(--green-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
html[dir="rtl"] .hero-title { font-family: var(--font-ar); }
.hero-title .accent { color: var(--green); }

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.8;
}
html[dir="rtl"] .hero-desc { font-family: var(--font-ar); }

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--green);
  color: var(--navy-dark);
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(46,204,113,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
}
.stat-item { text-align: center; }
html[dir="rtl"] .stat-item { text-align: right; }
.stat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--green);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-logo-big {
  width: 280px;
  height: 280px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  border: 2px solid rgba(46,204,113,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: floatY 4s ease-in-out infinite;
}
.hero-logo-big::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(46,204,113,0.1);
  animation: spin 20s linear infinite;
}
.hero-logo-big img { width: 180px; background: transparent; }

/* ========== Services Section ========== */
.section {
  padding: 90px 0;
}
.section-alt { background: var(--off-white); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
html[dir="rtl"] .section-header { font-family: var(--font-ar); }

.section-tag {
  display: inline-block;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  position: relative;
  padding: 0 20px;
}
.section-tag::before, .section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 16px;
  height: 2px;
  background: var(--green);
}
.section-tag::before { left: 0; }
.section-tag::after { right: 0; }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
html[dir="rtl"] .section-title { font-family: var(--font-ar); }

.section-desc {
  font-size: 17px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}
html[dir="rtl"] .section-desc { font-family: var(--font-ar); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(46,204,113,0.08);
  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(--green), var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
html[dir="rtl"] .service-card::before { transform-origin: right; }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(46,204,113,0.2);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(46,204,113,0.12), rgba(26,58,92,0.08));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
}

.service-num {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 48px;
  font-weight: 900;
  color: rgba(26,58,92,0.05);
  line-height: 1;
}
html[dir="rtl"] .service-num { right: auto; left: 24px; }

.service-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 10px;
}
html[dir="rtl"] .service-title { font-family: var(--font-ar); }

.service-title-ar {
  font-size: 15px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 12px;
  font-family: var(--font-ar);
}

.service-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
}
html[dir="rtl"] .service-desc { font-family: var(--font-ar); }

.service-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 500;
}
html[dir="rtl"] .service-list li { font-family: var(--font-ar); }
.service-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

/* ========== About Section ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-visual {
  position: relative;
}
.about-card-main {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  color: var(--white);
}
.about-card-main img {
  width: 160px;
  margin: 0 auto 24px;
}
.about-card-main h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 6px;
}
html[dir="rtl"] .about-card-main h3 { font-family: var(--font-ar); }
.about-card-main p { color: var(--green-light); font-size: 14px; }

.about-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--green);
  color: var(--navy-dark);
  padding: 20px 28px;
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
html[dir="rtl"] .about-float { right: auto; left: -20px; }
.about-float .big { font-size: 36px; display: block; line-height: 1; }
.about-float small { font-size: 12px; font-weight: 600; }

.about-content {}
.about-content .section-tag { text-align: start; }
.about-content .section-tag::before { display: none; }
.about-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
html[dir="rtl"] .about-title { font-family: var(--font-ar); }

.about-desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 12px;
}
html[dir="rtl"] .about-desc { font-family: var(--font-ar); }

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.highlight-item {
  background: var(--off-white);
  padding: 18px;
  border-radius: 10px;
  border-inline-start: 4px solid var(--green);
}
.highlight-item strong {
  display: block;
  font-size: 15px;
  color: var(--navy-dark);
  margin-bottom: 4px;
}
html[dir="rtl"] .highlight-item strong { font-family: var(--font-ar); }
.highlight-item span {
  font-size: 13px;
  color: var(--gray);
}
html[dir="rtl"] .highlight-item span { font-family: var(--font-ar); }

/* ========== Why Us ========== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-4px);
}
.why-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.why-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
html[dir="rtl"] .why-card h4 { font-family: var(--font-ar); }
.why-card h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-light);
  margin-bottom: 10px;
  font-family: var(--font-ar);
}
.why-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
html[dir="rtl"] .why-card p { font-family: var(--font-ar); }

.section-dark {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}
.section-dark .section-tag { color: var(--green-light); }
.section-dark .section-tag::before,
.section-dark .section-tag::after { background: var(--green-light); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-desc { color: rgba(255,255,255,0.65); }

/* ========== Partners ========== */
.partners-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.partner-item {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
  text-align: center;
  min-width: 160px;
}
html[dir="rtl"] .partner-item { font-family: var(--font-ar); }
.partner-item:hover {
  border-color: var(--green);
  color: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.partner-item span { display: block; font-size: 11px; color: var(--gray); font-weight: 500; margin-top: 3px; }

/* ========== Contact Section ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {}
.contact-info h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 8px;
}
html[dir="rtl"] .contact-info h3 { font-family: var(--font-ar); }
.contact-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 20px;
  font-family: var(--font-ar);
}
.contact-info p { color: var(--gray); font-size: 15px; margin-bottom: 28px; line-height: 1.8; }
html[dir="rtl"] .contact-info p { font-family: var(--font-ar); }

.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--white);
}
.contact-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 2px;
}
html[dir="rtl"] .contact-text strong { font-family: var(--font-ar); }
.contact-text span, .contact-text a {
  font-size: 14px;
  color: var(--gray);
  display: block;
}
.contact-text a:hover { color: var(--green-dark); }

.contact-persons { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.person-card {
  background: var(--off-white);
  border-radius: 10px;
  padding: 16px 20px;
  border-inline-start: 3px solid var(--green);
}
.person-card strong { font-size: 15px; color: var(--navy-dark); font-weight: 700; display: block; }
.person-card .role { font-size: 12px; font-weight: 700; color: var(--green-dark); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; display: block; }
.person-card span { font-size: 13px; color: var(--gray); }
.person-card a { color: var(--navy); font-weight: 600; }
.person-card a:hover { color: var(--green-dark); }

.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-light);
}
.contact-form h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 6px;
}
html[dir="rtl"] .contact-form h3 { font-family: var(--font-ar); }
.contact-form h4 {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 28px;
  font-family: var(--font-ar);
  font-weight: 600;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
html[dir="rtl"] .form-group label { font-family: var(--font-ar); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}
html[dir="rtl"] .form-group input,
html[dir="rtl"] .form-group select,
html[dir="rtl"] .form-group textarea { font-family: var(--font-ar); text-align: right; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(46,204,113,0.1);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
html[dir="rtl"] .btn-submit { font-family: var(--font-ar); }
.btn-submit:hover {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,204,113,0.3);
}

/* ========== Footer ========== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}

.footer-brand img { height: 60px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.6); }
html[dir="rtl"] .footer-brand p { font-family: var(--font-ar); }

.footer-col h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(46,204,113,0.3);
}
html[dir="rtl"] .footer-col h5 { font-family: var(--font-ar); letter-spacing: 0; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
html[dir="rtl"] .footer-col ul li a { font-family: var(--font-ar); }
.footer-col ul li a:hover { color: var(--green); padding-inline-start: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.45); }
html[dir="rtl"] .footer-bottom p { font-family: var(--font-ar); }
.footer-bottom .green { color: var(--green); }

/* ========== Animations ========== */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  html[dir="rtl"] .hero-grid { text-align: center; }
  .hero-visual { display: none; }
  .hero-stats { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-badge { justify-content: center; }
  .nav-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy-dark); flex-direction: column; justify-content: center; align-items: center; gap: 32px; }
  .nav-menu.open { display: flex; }
  .nav-menu a { color: var(--white); font-size: 20px; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .section { padding: 60px 0; }
  .contact-form { padding: 28px; }
  .about-float { position: relative; bottom: auto; right: auto; left: auto; margin-top: 20px; display: inline-block; }
}

/* ========== RTL Specifics ========== */
html[dir="rtl"] .section-tag::before { left: auto; right: 0; }
html[dir="rtl"] .section-tag::after { right: auto; left: 0; }
html[dir="rtl"] .about-content .section-tag::before,
html[dir="rtl"] .about-content .section-tag::after { display: none; }
