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

:root {
  --teal: #63C9C6;
  --teal-dark: #3fa9a6;
  --teal-light: #a8e6e4;
  --teal-xlight: #e8f9f9;
  --white: #ffffff;
  --dark: #0d1b2a;
  --dark2: #1a2d3f;
  --gray: #6b7c8d;
  --gray-light: #f4f7f9;
  --border: #e1eaed;
  --shadow: 0 8px 32px rgba(99,201,198,.15);
  --shadow-lg: 0 20px 60px rgba(99,201,198,.2);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font-en: 'Inter', sans-serif;
  --font-ar: 'Noto Sans Arabic', sans-serif;
}

html { scroll-behavior: smooth; }

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

body.rtl {
  font-family: var(--font-ar);
  direction: rtl;
  text-align: right;
}

/* Language visibility */
.en-content { display: block; }
.ar-content { display: none; }
span.en-content { display: inline; }
span.ar-content { display: none; }
body.rtl .en-content { display: none; }
body.rtl .ar-content { display: block; }
body.rtl span.en-content { display: none; }
body.rtl span.ar-content { display: inline; }

/* ── Scrollbar ────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-light); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ── Utility ──────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-xlight); color: var(--teal-dark);
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 6px 16px;
  border-radius: 50px; border: 1px solid var(--teal-light);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; color: var(--dark);
  line-height: 1.15; margin-bottom: 16px;
}
.section-title span { color: var(--teal); }
.section-subtitle {
  font-size: 17px; color: var(--gray);
  max-width: 600px; line-height: 1.8;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 50px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  border: none; text-decoration: none;
  transition: var(--transition);
}
.btn-primary {
  background: var(--teal); color: var(--white);
  box-shadow: 0 4px 20px rgba(99,201,198,.4);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99,201,198,.5);
}
.btn-outline {
  background: transparent; color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover {
  background: var(--teal); color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,.12); color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.22);
  transform: translateY(-2px);
}

/* ── Navbar ───────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  padding: 12px 0;
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.nav-logo img {
  height: 52px; width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.2));
  transition: var(--transition);
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block; padding: 8px 18px;
  color: rgba(255,255,255,.9); font-size: 14px; font-weight: 500;
  text-decoration: none; border-radius: 50px;
  transition: var(--transition);
}
#navbar.scrolled .nav-links a { color: var(--dark); }
.nav-links a:hover,
.nav-links a.active {
  background: var(--teal); color: var(--white) !important;
}
.nav-right { display: flex; align-items: center; gap: 12px; }

/* Language Toggle */
.lang-toggle {
  display: flex; align-items: center;
  background: rgba(255,255,255,.15);
  border-radius: 50px; padding: 4px;
  border: 1px solid rgba(255,255,255,.25);
  transition: var(--transition);
}
#navbar.scrolled .lang-toggle {
  background: var(--teal-xlight);
  border-color: var(--teal-light);
}
.lang-btn {
  padding: 6px 14px; border-radius: 50px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  border: none; background: transparent;
  color: rgba(255,255,255,.8); transition: var(--transition);
}
#navbar.scrolled .lang-btn { color: var(--gray); }
.lang-btn.active { background: var(--teal); color: var(--white) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}
#navbar.scrolled .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark); z-index: 999;
  flex-direction: column; justify-content: center;
  align-items: center; gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--white); font-size: 22px; font-weight: 600;
  text-decoration: none; padding: 12px 48px;
  border-radius: 50px; transition: var(--transition);
}
.mobile-nav a:hover { background: var(--teal); }
.mobile-nav .lang-toggle {
  margin-top: 28px;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
}
.mobile-nav .lang-btn { color: rgba(255,255,255,.8); }

/* ── Hero ─────────────────────────────────────────── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a1520 0%, var(--dark2) 55%, #082030 100%);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 55%, rgba(99,201,198,.14) 0%, transparent 50%),
    radial-gradient(circle at 85% 15%, rgba(99,201,198,.09) 0%, transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(99,201,198,.06) 0%, transparent 40%);
}
.hero-lines {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-lines::before, .hero-lines::after {
  content: ''; position: absolute;
  border: 1px solid rgba(99,201,198,.08);
  border-radius: 50%;
}
.hero-lines::before {
  width: 800px; height: 800px;
  top: -200px; right: -200px;
}
.hero-lines::after {
  width: 500px; height: 500px;
  bottom: -150px; left: -100px;
}

.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding: 130px 0 90px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(99,201,198,.14); color: var(--teal-light);
  border: 1px solid rgba(99,201,198,.28);
  padding: 8px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 28px;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.hero-title {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 800; color: var(--white);
  line-height: 1.08; margin-bottom: 24px;
}
.hero-title span { color: var(--teal); }
.hero-subtitle {
  font-size: 17px; color: rgba(255,255,255,.65);
  line-height: 1.9; margin-bottom: 44px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 0; margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.stat {
  flex: 1; text-align: center; padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat:last-child { border-right: none; }
body.rtl .stat { border-right: none; border-left: 1px solid rgba(255,255,255,.08); }
body.rtl .stat:last-child { border-left: none; }
.stat-num {
  display: block; font-size: 34px; font-weight: 800;
  color: var(--teal); line-height: 1;
}
.stat-label {
  display: block !important; font-size: 12px; color: rgba(255,255,255,.45);
  margin-top: 6px; font-weight: 500; letter-spacing: .5px;
  text-transform: uppercase;
}
body.rtl .stat-label.en-content { display: none !important; }
body.rtl .stat-label.ar-content { display: block !important; }

.hero-visual {
  position: relative; display: flex;
  justify-content: center; align-items: center;
}
.hero-banner-wrap {
  position: relative; width: 100%;
}
.hero-banner-wrap img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(99,201,198,.15);
  display: block;
}
.hero-banner-glow {
  position: absolute; bottom: -24px; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 60px;
  background: radial-gradient(ellipse, rgba(99,201,198,.35) 0%, transparent 70%);
  filter: blur(24px);
  pointer-events: none;
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.35); font-size: 10px;
  letter-spacing: 2.5px; text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
  z-index: 3;
}
.hero-scroll i { font-size: 16px; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .35; }
  50% { transform: translateX(-50%) translateY(10px); opacity: .7; }
}

/* ── Why Choose Us ────────────────────────────────── */
#why { background: var(--gray-light); padding: 90px 0; }
.why-header { text-align: center; margin-bottom: 56px; }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 28px; text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0); transform-origin: left;
  transition: var(--transition);
}
body.rtl .why-card::before { transform-origin: right; }
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 72px; height: 72px;
  background: var(--teal-xlight); border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; font-size: 28px; color: var(--teal);
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--teal); color: var(--white); }
.why-card h3 {
  font-size: 17px; font-weight: 700; color: var(--dark);
  margin-bottom: 10px;
}
.why-card p { font-size: 14px; color: var(--gray); line-height: 1.75; }

/* ── About Preview ────────────────────────────────── */
#about-preview { padding: 100px 0; background: var(--white); }
.about-preview-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: contain; max-height: 440px;
}
.about-badge-float {
  position: absolute; bottom: -28px; right: -28px;
  background: var(--teal); color: var(--white);
  border-radius: var(--radius); padding: 24px 28px;
  box-shadow: var(--shadow-lg); text-align: center;
  min-width: 140px;
}
body.rtl .about-badge-float { right: auto; left: -28px; }
.about-badge-float .num {
  display: block; font-size: 22px; font-weight: 800; line-height: 1;
}
.about-badge-float .lbl {
  display: block; font-size: 12px; font-weight: 500;
  opacity: .85; margin-top: 5px;
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 36px;
}
.about-feat {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 18px; background: var(--gray-light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--teal);
  font-size: 14px; font-weight: 600; color: var(--dark);
}
body.rtl .about-feat { border-left: none; border-right: 3px solid var(--teal); }
.about-feat i { color: var(--teal); font-size: 15px; flex-shrink: 0; }

/* ── Services ─────────────────────────────────────── */
#services {
  background: var(--dark);
  position: relative; overflow: hidden;
}
#services::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 8% 50%, rgba(99,201,198,.09) 0%, transparent 45%),
    radial-gradient(circle at 92% 20%, rgba(99,201,198,.07) 0%, transparent 40%);
}
#services .section-tag {
  background: rgba(99,201,198,.12);
  color: var(--teal-light);
  border-color: rgba(99,201,198,.22);
}
#services .section-title { color: var(--white); }
#services .section-subtitle { color: rgba(255,255,255,.55); }
.services-header { text-align: center; margin-bottom: 56px; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; position: relative; z-index: 1;
}
.service-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 36px 28px;
  transition: var(--transition); position: relative;
  overflow: hidden;
}
.service-card:hover {
  background: rgba(99,201,198,.07);
  border-color: rgba(99,201,198,.28);
  transform: translateY(-6px);
}
.service-icon {
  width: 64px; height: 64px;
  background: rgba(99,201,198,.13); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--teal);
  margin-bottom: 24px; transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--teal); color: var(--white); }
.service-card h3 {
  font-size: 18px; font-weight: 700; color: var(--white);
  margin-bottom: 14px;
}
.service-card p {
  font-size: 14px; color: rgba(255,255,255,.5);
  line-height: 1.85;
}
.service-card.cta {
  background: linear-gradient(135deg, rgba(99,201,198,.14), rgba(99,201,198,.06));
  border-color: rgba(99,201,198,.3);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
}

/* ── About Section ────────────────────────────────── */
#about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-vm {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 40px;
}
.vm-card {
  background: var(--gray-light); border-radius: var(--radius);
  padding: 28px 24px; border-top: 3px solid var(--teal);
}
.vm-card h4 {
  font-size: 14px; font-weight: 700; color: var(--teal);
  margin-bottom: 10px; letter-spacing: .5px;
  text-transform: uppercase; display: flex; align-items: center; gap: 8px;
}
.vm-card p { font-size: 14px; color: var(--gray); line-height: 1.8; }
.about-visual-side { position: relative; }
.about-single-img {
  width: 100%; height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: block;
  object-fit: cover;
}

/* ── Contact ──────────────────────────────────────── */
#contact { background: var(--gray-light); }
.contact-header { text-align: center; }
.contact-wrapper {
  display: grid; grid-template-columns: 1fr 1.65fr;
  gap: 56px; margin-top: 56px; align-items: start;
}
.contact-intro {
  font-size: 16px; color: var(--gray);
  line-height: 1.85; margin-bottom: 36px;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 22px;
}
.contact-item-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--teal); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 18px;
}
.contact-item-text strong {
  display: block; font-size: 12px; font-weight: 700;
  color: var(--dark); letter-spacing: .7px;
  text-transform: uppercase; margin-bottom: 3px;
}
.contact-item-text span {
  font-size: 15px; color: var(--gray);
}
.contact-truck {
  width: 100%; margin-top: 28px;
  border-radius: var(--radius); opacity: .88;
}
.contact-link {
  font-size: 15px; color: var(--teal);
  text-decoration: none; font-weight: 500;
  transition: var(--transition);
}
.contact-link:hover { color: var(--teal-dark); text-decoration: underline; }

/* Contact Form */
.contact-form {
  background: var(--white); border-radius: var(--radius);
  padding: 44px; box-shadow: var(--shadow);
}
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 13px; font-weight: 600; color: var(--dark);
  letter-spacing: .3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 15px; font-family: inherit; color: var(--dark);
  background: var(--gray-light); transition: var(--transition);
  outline: none; appearance: none;
}
body.rtl .form-group input,
body.rtl .form-group select,
body.rtl .form-group textarea { text-align: right; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aab4be; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(99,201,198,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 4px; }
.form-submit .btn {
  width: 100%; justify-content: center;
  padding: 16px;
}

/* ── Footer ───────────────────────────────────────── */
#footer { background: var(--dark); padding: 64px 0 28px; }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand img { height: 54px; margin-bottom: 20px; display: block; }
.footer-brand p {
  font-size: 14px; color: rgba(255,255,255,.45);
  line-height: 1.85; max-width: 280px;
}
.footer-col h4 {
  font-size: 13px; font-weight: 700; color: var(--white);
  letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: 20px; padding-bottom: 12px;
  position: relative;
}
.footer-col h4::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; width: 32px; height: 2px;
  background: var(--teal); border-radius: 2px;
}
body.rtl .footer-col h4::after { left: auto; right: 0; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.45); font-size: 14px;
  text-decoration: none; transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-col ul li a i {
  font-size: 10px; color: var(--teal);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--teal); padding-left: 4px; }
body.rtl .footer-col ul li a:hover { padding-left: 0; padding-right: 4px; }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; padding-top: 28px;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-slogan {
  font-size: 14px; color: var(--teal);
  font-weight: 600; font-style: italic;
}

/* ── Inner Page Hero ──────────────────────────────── */
.page-hero {
  position: relative;
  padding: 160px 0 90px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1520 0%, var(--dark2) 55%, #082030 100%);
}
.page-hero .hero-pattern,
.page-hero .hero-lines { position: absolute; inset: 0; }
.page-hero-content {
  position: relative; z-index: 2;
  text-align: center;
}
.page-hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800; color: var(--white);
  line-height: 1.1; margin-bottom: 16px;
}
.page-hero-title span { color: var(--teal); }
.page-hero-sub {
  font-size: 17px; color: rgba(255,255,255,.55);
  max-width: 540px; margin: 0 auto 28px;
  line-height: 1.8;
}
.breadcrumb {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: rgba(255,255,255,.4);
  list-style: none;
}
.breadcrumb a { color: var(--teal); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { opacity: .4; }

/* ── FAQ ──────────────────────────────────────────── */
#faq { background: var(--white); }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.open {
  border-color: var(--teal);
  box-shadow: 0 4px 24px rgba(99,201,198,.12);
}
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 28px;
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 16px; font-weight: 600;
  color: var(--dark); text-align: left;
  transition: background var(--transition), color var(--transition);
}
body.rtl .faq-q { text-align: right; }
.faq-item.open .faq-q { color: var(--teal); background: var(--teal-xlight); }
.faq-icon {
  flex-shrink: 0; font-size: 13px; color: var(--teal);
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p {
  padding: 0 28px 24px;
  font-size: 15px; color: var(--gray); line-height: 1.85;
}

/* ── Animations ───────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .08s; }
.fade-up:nth-child(3) { transition-delay: .16s; }
.fade-up:nth-child(4) { transition-delay: .24s; }
.fade-up:nth-child(5) { transition-delay: .32s; }
.fade-up:nth-child(6) { transition-delay: .40s; }

/* Success toast */
.toast {
  position: fixed; bottom: 32px; right: 32px;
  background: var(--dark); color: var(--white);
  padding: 16px 24px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  border-left: 4px solid var(--teal);
  transform: translateX(120%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  z-index: 9999;
}
body.rtl .toast { right: auto; left: 32px; border-left: none; border-right: 4px solid var(--teal); transform: translateX(-120%); }
.toast.show { transform: translateX(0); }
.toast i { color: var(--teal); font-size: 18px; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 0; padding: 120px 0 80px; }
  .hero-subtitle { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .about-preview-grid { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual-side { display: none; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 130px 0 70px; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section { padding: 60px 0; }

  /* Navbar */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-logo img { height: 42px; }

  /* Hero */
  .hero-content { padding: 100px 0 60px; }
  .hero-title { font-size: clamp(30px, 8vw, 44px); }
  .hero-subtitle { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 0; border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 0; }
  .stat { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 16px 12px; }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
  body.rtl .stat:nth-child(odd) { border-right: none; border-left: 1px solid rgba(255,255,255,.08); }
  .stat-num { font-size: 28px; }

  /* Page hero (inner pages) */
  .page-hero { padding: 110px 0 56px; }
  .page-hero-title { font-size: clamp(28px, 7vw, 44px); }
  .page-hero-sub { font-size: 14px; }

  /* Section headings */
  .section-title { font-size: clamp(24px, 6vw, 36px); }
  .section-subtitle { font-size: 15px; }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .form-grid { grid-template-columns: 1fr; }

  /* Why cards */
  .why-card { padding: 28px 20px; }
  .why-icon { width: 52px; height: 52px; font-size: 20px; }

  /* Service cards */
  .service-card { padding: 28px 20px; }
  .service-icon { width: 54px; height: 54px; font-size: 22px; }

  /* About */
  .about-vm { grid-template-columns: 1fr; gap: 16px; }
  .about-features { grid-template-columns: 1fr; }
  .about-text-side { padding: 0; }

  /* Contact */
  .contact-wrapper { grid-template-columns: 1fr; gap: 28px; }
  .contact-info { padding: 28px 20px; }
  .contact-form { padding: 28px 20px; }
  .contact-truck { max-width: 180px; margin-top: 24px; }
  .contact-item { gap: 14px; }
  .contact-item-icon { width: 40px; height: 40px; font-size: 16px; flex-shrink: 0; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  #footer { padding: 56px 0 0; }

  /* Buttons */
  .btn { padding: 13px 26px; font-size: 14px; }

  /* Toast */
  .toast { right: 16px; left: 16px; bottom: 20px; max-width: none; width: auto; }
  body.rtl .toast { transform: translateX(0); left: 16px; right: 16px; }

  /* Mobile nav */
  .mobile-nav a { font-size: 16px; padding: 14px 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section { padding: 50px 0; }

  /* Navbar */
  .nav-logo img { height: 36px; }

  /* Hero */
  .hero-content { padding: 90px 0 50px; }

  /* Page hero */
  .page-hero { padding: 100px 0 48px; }
  .page-hero-title { font-size: clamp(24px, 8vw, 36px); }
  .page-hero-sub { font-size: 13px; }

  /* Headings */
  .section-title { font-size: clamp(22px, 7vw, 32px); }

  /* Cards */
  .service-card, .why-card, .vm-card { padding: 22px 16px; }

  /* Contact */
  .contact-info, .contact-form { padding: 22px 16px; border-radius: var(--radius-sm); }

  /* Footer */
  .footer-col h4 { font-size: 14px; }
  .footer-col li a { font-size: 13px; }

  /* Buttons */
  .btn { padding: 12px 22px; font-size: 13px; }
  .hero-actions .btn { max-width: 100%; }

  /* About preview */
  .about-preview-content { padding: 0; }
}
