* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

:root {
  --primary: #ff6b00;
  --primary-dark: #e55a00;
  --secondary: #1a1a2e;
  --accent: #16213e;
  --whatsapp: #25d366;
  --light: #f8f9fa;
  --gray: #6c757d;
  --dark: #212529;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #ff6b00 0%, #ff8c42 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  --shadow: 0 10px 30px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

body.rtl { font-family: 'Cairo', sans-serif; direction: rtl; text-align: right; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Top Bar */
.top-bar { background: var(--gradient-dark); color: white; padding: 10px 0; font-size: 14px; }
.top-bar-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.top-info { display: flex; gap: 20px; flex-wrap: wrap; }
.lang-switcher { display: flex; gap: 5px; }
.lang-btn {
  background: transparent; border: 1px solid rgba(255,255,255,0.3);
  color: white; padding: 5px 12px; border-radius: 20px;
  cursor: pointer; font-size: 12px; font-weight: 600; transition: all 0.3s;
}
.lang-btn:hover, .lang-btn.active { background: var(--primary); border-color: var(--primary); }

/* Header */
.header {
  background: white; padding: 15px 0; position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.header-content { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 26px; font-weight: 800; color: var(--secondary); }
.logo i { color: var(--primary); font-size: 32px; animation: truckMove 3s infinite ease-in-out; }
@keyframes truckMove { 0%,100% { transform: translateX(0); } 50% { transform: translateX(5px); } }
.logo em { color: var(--primary); font-style: normal; }
.nav { display: flex; gap: 30px; }
.nav a { font-weight: 500; color: var(--dark); position: relative; transition: color 0.3s; }
.nav a:hover { color: var(--primary); }
.nav a::after {
  content: ''; position: absolute; bottom: -5px; left: 0;
  width: 0; height: 2px; background: var(--primary); transition: width 0.3s;
}
.nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 15px; }
.btn-call {
  background: var(--gradient); color: white; padding: 12px 22px;
  border-radius: 50px; font-weight: 600; display: flex; align-items: center; gap: 8px;
  box-shadow: 0 5px 15px rgba(255,107,0,0.4); transition: transform 0.3s;
}
.btn-call:hover { transform: translateY(-2px); }
.menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--secondary); }

/* Hero */
.hero {
  position: relative; padding: 80px 0;
  background: linear-gradient(135deg, #fff5ec 0%, #ffe4d0 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(255,107,0,0.15), transparent 70%);
}
.hero-content {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 2;
}
.badge {
  display: inline-block; background: white; color: var(--primary);
  padding: 8px 20px; border-radius: 30px; font-weight: 600;
  font-size: 14px; margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.hero-text h1 {
  font-size: 56px; font-weight: 800; line-height: 1.15;
  color: var(--secondary); margin-bottom: 20px;
}
.hero-text h1 span {
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-text > p { font-size: 18px; color: var(--gray); margin-bottom: 30px; max-width: 550px; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 40px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 50px; font-weight: 600;
  font-size: 16px; transition: all 0.3s; cursor: pointer; border: none;
}
.btn-primary {
  background: var(--gradient); color: white;
  box-shadow: 0 10px 25px rgba(255,107,0,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(255,107,0,0.45); }
.btn-whatsapp {
  background: var(--whatsapp); color: white;
  box-shadow: 0 10px 25px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { transform: translateY(-3px); background: #1eb954; }
.btn-white { background: white; color: var(--primary); box-shadow: var(--shadow); }
.btn-white:hover { transform: translateY(-3px); }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; padding-top: 30px; border-top: 1px solid rgba(0,0,0,0.08);
}
.stat h3 { font-size: 32px; font-weight: 800; color: var(--primary); margin-bottom: 5px; }
.stat p { font-size: 14px; color: var(--gray); }
.hero-image { position: relative; }
.hero-image img {
  border-radius: 30px; box-shadow: var(--shadow-lg);
  width: 100%; height: 500px; object-fit: cover;
}
.floating-card {
  position: absolute; background: white; padding: 15px 20px;
  border-radius: 15px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  animation: float 3s ease-in-out infinite;
}
.floating-card i {
  font-size: 30px; color: var(--primary);
  background: #fff5ec; padding: 12px; border-radius: 12px;
}
.floating-card h4 { font-size: 15px; font-weight: 700; color: var(--secondary); }
.floating-card p { font-size: 12px; color: var(--gray); }
.card-1 { top: 30px; left: -30px; }
.card-2 { bottom: 40px; right: -30px; animation-delay: 1.5s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* Features */
.features { padding: 60px 0; background: white; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.feature-item {
  text-align: center; padding: 30px 20px; border-radius: 20px;
  transition: all 0.3s; border: 1px solid #f0f0f0;
}
.feature-item:hover {
  transform: translateY(-10px); box-shadow: var(--shadow); border-color: var(--primary);
}
.feature-item i {
  font-size: 42px; color: var(--primary); margin-bottom: 15px;
  background: #fff5ec; width: 80px; height: 80px;
  line-height: 80px; border-radius: 50%; display: inline-block;
}
.feature-item h3 { font-size: 20px; font-weight: 700; color: var(--secondary); margin-bottom: 8px; }
.feature-item p { color: var(--gray); font-size: 14px; }

/* Section Header */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; color: var(--primary); font-weight: 700;
  font-size: 14px; letter-spacing: 2px; margin-bottom: 15px;
}
.section-header h2 {
  font-size: 42px; font-weight: 800; color: var(--secondary);
  margin-bottom: 15px; line-height: 1.2;
}
.section-header > p { color: var(--gray); font-size: 17px; max-width: 600px; margin: 0 auto; }

/* Services */
.services { padding: 100px 0; background: #fafbfc; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card {
  background: white; border-radius: 20px; overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06); transition: all 0.4s;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-img { height: 220px; overflow: hidden; position: relative; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-img img { transform: scale(1.1); }
.service-body { padding: 30px 25px; position: relative; }
.service-icon {
  position: absolute; top: -30px; right: 25px;
  width: 60px; height: 60px; background: var(--gradient);
  border-radius: 15px; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 24px; box-shadow: 0 8px 20px rgba(255,107,0,0.35);
}
body.rtl .service-icon { right: auto; left: 25px; }
.service-body h3 { font-size: 22px; font-weight: 700; color: var(--secondary); margin-bottom: 12px; }
.service-body p { color: var(--gray); margin-bottom: 20px; font-size: 15px; }
.service-link {
  color: var(--primary); font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s;
}
.service-link:hover { gap: 15px; }

/* About */
.about { padding: 100px 0; background: white; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; }
.about-image img {
  border-radius: 30px; box-shadow: var(--shadow-lg);
  width: 100%; height: 500px; object-fit: cover;
}
.experience-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gradient); color: white;
  padding: 25px 30px; border-radius: 20px;
  text-align: center; box-shadow: var(--shadow-lg);
}
body.rtl .experience-badge { right: auto; left: -20px; }
.experience-badge h3 { font-size: 42px; font-weight: 800; }
.experience-badge p { font-size: 13px; margin-top: 5px; }
.about-text h2 { margin-bottom: 20px; text-align: left; }
body.rtl .about-text h2 { text-align: right; }
.about-text > p { color: var(--gray); margin-bottom: 25px; font-size: 16px; }
.about-list { margin-bottom: 30px; }
.about-list li {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px; color: var(--dark); font-weight: 500;
}
.about-list li i { color: var(--primary); font-size: 20px; }

/* Zones */
.zones { padding: 100px 0; background: #fafbfc; }
.zones-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.zone-item {
  background: white; padding: 20px 25px; border-radius: 15px;
  display: flex; align-items: center; gap: 12px;
  font-weight: 600; color: var(--secondary);
  transition: all 0.3s; border: 2px solid transparent;
  box-shadow: 0 3px 15px rgba(0,0,0,0.04);
}
.zone-item:hover {
  transform: translateY(-5px); border-color: var(--primary);
  color: var(--primary); box-shadow: var(--shadow);
}
.zone-item i { color: var(--primary); font-size: 20px; }

/* How works */
.how-works { padding: 100px 0; background: white; }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; position: relative;
}
.step {
  text-align: center; padding: 40px 25px;
  background: #fafbfc; border-radius: 20px;
  position: relative; transition: all 0.3s;
}
.step:hover {
  transform: translateY(-10px); background: white;
  box-shadow: var(--shadow-lg);
}
.step-num {
  position: absolute; top: -20px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient); color: white;
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
  box-shadow: 0 10px 20px rgba(255,107,0,0.35);
}
.step i {
  font-size: 48px; color: var(--primary); margin: 20px 0 15px;
}
.step h3 { font-size: 22px; color: var(--secondary); margin-bottom: 10px; }
.step p { color: var(--gray); font-size: 15px; }

/* Testimonials */
.testimonials { padding: 100px 0; background: #fafbfc; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial {
  background: white; padding: 35px 30px; border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06); transition: all 0.3s;
}
.testimonial:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.stars { color: #ffc107; font-size: 20px; margin-bottom: 15px; letter-spacing: 3px; }
.testimonial > p {
  color: var(--dark); font-size: 16px; line-height: 1.7;
  margin-bottom: 25px; font-style: italic;
}
.client { display: flex; align-items: center; gap: 15px; }
.client-avatar {
  width: 55px; height: 55px; border-radius: 50%;
  background: var(--gradient); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 22px;
}
.client h4 { font-size: 17px; color: var(--secondary); }
.client span { font-size: 13px; color: var(--gray); }

/* CTA */
.cta {
  padding: 80px 0; background: var(--gradient-dark);
  color: white; position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,0,0.2), transparent 70%);
  border-radius: 50%;
}
.cta-content {
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px; flex-wrap: wrap; position: relative; z-index: 2;
}
.cta-content h2 { font-size: 36px; font-weight: 800; margin-bottom: 10px; }
.cta-content p { color: rgba(255,255,255,0.85); font-size: 17px; }
.cta-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

/* Contact */
.contact { padding: 100px 0; background: white; }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.contact-card {
  text-align: center; padding: 40px 25px;
  background: #fafbfc; border-radius: 20px;
  transition: all 0.3s; cursor: pointer;
  border: 2px solid transparent;
}
.contact-card:hover {
  transform: translateY(-10px); background: white;
  box-shadow: var(--shadow-lg); border-color: var(--primary);
}
.contact-icon {
  width: 70px; height: 70px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 28px; color: white;
}
.phone-icon { background: var(--gradient); }
.whatsapp-icon { background: var(--whatsapp); }
.location-icon { background: linear-gradient(135deg, #667eea, #764ba2); }
.time-icon { background: linear-gradient(135deg, #f093fb, #f5576c); }
.contact-card h3 { font-size: 20px; color: var(--secondary); margin-bottom: 10px; }
.contact-card p { color: var(--dark); font-weight: 600; font-size: 16px; margin-bottom: 5px; }
.contact-card span { color: var(--gray); font-size: 13px; }

/* Footer */
.footer {
  background: var(--gradient-dark); color: white; padding: 70px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 50px;
}
.footer-logo { color: white; margin-bottom: 20px; }
.footer-col > p {
  color: rgba(255,255,255,0.7); margin-bottom: 20px;
  font-size: 15px; line-height: 1.8;
}
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: white; transition: all 0.3s;
}
.social-links a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-col h4 {
  font-size: 18px; margin-bottom: 20px;
  position: relative; padding-bottom: 12px;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 40px; height: 3px; background: var(--primary); border-radius: 3px;
}
body.rtl .footer-col h4::after { left: auto; right: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.7); transition: all 0.3s;
  display: inline-block;
}
.footer-col ul li a:hover { color: var(--primary); transform: translateX(5px); }
body.rtl .footer-col ul li a:hover { transform: translateX(-5px); }
.contact-list li {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.7);
}
.contact-list li i { color: var(--primary); width: 20px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0; text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.6); font-size: 14px; }

/* Floating Buttons */
.float-whatsapp, .float-call {
  position: fixed; width: 60px; height: 60px;
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  color: white; font-size: 28px; z-index: 999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: all 0.3s;
}
.float-whatsapp {
  bottom: 30px; right: 30px;
  background: var(--whatsapp);
  animation: pulse 2s infinite;
}
.float-call {
  bottom: 100px; right: 30px;
  background: var(--gradient);
}
.float-whatsapp:hover, .float-call:hover {
  transform: scale(1.1);
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
  70% { box-shadow: 0 0 0 20px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-text h1 { font-size: 44px; }
  .section-header h2 { font-size: 34px; }
  .services-grid, .testimonials-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .zones-grid, .contact-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav {
    position: fixed; top: 0; right: -100%;
    width: 280px; height: 100vh; background: white;
    flex-direction: column; padding: 80px 30px;
    gap: 20px; transition: right 0.4s;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1); z-index: 999;
  }
  .nav.active { right: 0; }
  body.rtl .nav { right: auto; left: -100%; }
  body.rtl .nav.active { left: 0; }
  .menu-toggle { display: block; }
  .btn-call span { display: none; }
  .btn-call { padding: 12px 15px; }
  .hero { padding: 50px 0; }
  .hero-content, .about-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-text h1 { font-size: 34px; }
  .hero-text > p { font-size: 16px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-image img { height: 350px; }
  .card-1, .card-2 { display: none; }
  .section-header h2 { font-size: 28px; }
  .section-header { margin-bottom: 40px; }
  .services-grid, .testimonials-grid, .steps,
  .zones-grid, .contact-grid, .features-grid{
    grid-template-columns: 1fr;
  }
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-col h4::after { left: 50%; transform: translateX(-50%); }
  body.rtl .footer-col h4::after { right: 50%; transform: translateX(50%); }
  .social-links { justify-content: center; }
  .cta-content { flex-direction: column; text-align: center; }
  .cta-content h2 { font-size: 26px; }
  .about-image img { height: 350px; }
  .top-info { font-size: 12px; }
  .top-info span { margin-right: 8px; }
  .float-whatsapp, .float-call { width: 55px; height: 55px; font-size: 24px; }
  .float-call { bottom: 95px; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 28px; }
  .section-header h2 { font-size: 24px; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .top-bar-content { flex-direction: column; }
  .logo { font-size: 20px; }
  .logo i { font-size: 26px; }
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-text, .hero-image { animation: fadeInUp 0.8s ease-out; }
.service-card, .feature-item, .zone-item, .testimonial, .step, .contact-card {
  animation: fadeInUp 0.6s ease-out;
}