*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: #f5f5f7;
  color: #111827;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top bar */
.top-bar {
  background: #0f172a;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 0.85rem;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem 0;
  color: #e5e7eb;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-item {
  opacity: 0.85;
}

.top-bar-separator {
  opacity: 0.4;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-link {
  color: #e5e7eb;
  opacity: 0.9;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.top-bar-link:hover {
  color: #38bdf8;
  opacity: 1;
}

.top-bar-dot {
  color: #64748b;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(209, 213, 219, 0.9);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.lang-btn {
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 600;
  color: #4b5563;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lang-btn.active {
  background: #111827;
  color: #f9fafb;
  border-color: #111827;
}

.lang-btn:not(.active):hover {
  border-color: #d1d5db;
  background: #f3f4f6;
}

.navbar-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: contain;
  display: block;
}

.navbar-text {
  display: flex;
  flex-direction: column;
}

.navbar-title-ar {
  font-weight: 700;
  font-size: 0.95rem;
}

.navbar-title-en {
  font-size: 0.75rem;
  color: #6b7280;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
}

.navbar-links a {
  color: #1f2933;
  opacity: 0.9;
  position: relative;
  padding-bottom: 0.25rem;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.navbar-links a::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1d4ed8, #059669);
  transform-origin: center;
  transform: scaleX(0);
  transition: transform 0.2s ease-out;
}

.navbar-links a:hover {
  color: #1d4ed8;
  opacity: 1;
}

.navbar-links a:hover::after {
  transform: scaleX(1);
}

/* Hero */
.hero {
  padding: 3.5rem 0 3rem;
  background: radial-gradient(circle at top, #e5f0ff 0, #ffffff 45%, #ffffff 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #2563eb;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(1.8rem, 2.4vw + 1.4rem, 2.6rem);
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.hero-title span {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #6b7280;
  margin-top: 0.4rem;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: #4b5563;
  margin-bottom: 1.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s,
    border-color 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #1d4ed8, #059669);
  color: #f9fafb;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.23);
}

.btn-outline {
  border-color: rgba(156, 163, 175, 0.8);
  color: #111827;
  background: #ffffff;
}

.btn-outline:hover {
  border-color: #2563eb;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-highlight {
  border-radius: 0.9rem;
  background: #ffffff;
  border: 1px solid rgba(209, 213, 219, 0.9);
  padding: 0.7rem 0.75rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.highlight-label {
  font-size: 0.75rem;
  color: #6b7280;
}

.highlight-value {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hero-main-image {
  min-height: 210px;
  border-radius: 1.1rem;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 1.1rem;
}

.hero-secondary-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-img-small {
  width: 100%;
  height: 100%;
  min-height: 90px;
  object-fit: cover;
  display: block;
  border-radius: 1.1rem;
}

.image-placeholder {
  border-radius: 1.1rem;
  border: 1px dashed rgba(148, 163, 184, 0.8);
  background: radial-gradient(circle at top left, #0b1120, #020617);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 0.9rem;
  padding: 1.25rem;
  text-align: center;
}

.image-placeholder.small {
  min-height: 90px;
}

.image-placeholder.tall {
  min-height: 180px;
}

.image-placeholder.truck {
  min-height: 140px;
}

.about-truck-img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
  border-radius: 1.1rem;
}

.truck-img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
  display: block;
  border-radius: 1.1rem;
}

/* Sections */
.section {
  padding: 3rem 0;
  background: #ffffff;
}

.section-alt {
  padding: 3rem 0;
  background: #f3f4f6;
}

.section-inner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 1.05rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.3rem;
}

.section-subtitle-en {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #2563eb;
  margin-bottom: 0.5rem;
}

.section-badge {
  display: inline-flex;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.75rem;
  color: #4b5563;
  margin-bottom: 0.6rem;
}

.section-text {
  font-size: 0.96rem;
  color: #4b5563;
  margin-bottom: 0.45rem;
}

.section-text.center {
  text-align: center;
  max-width: 720px;
  margin: 0.1rem auto 0.8rem;
}

.muted {
  color: #6b7280;
}

.muted.small {
  font-size: 0.78rem;
}

.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.85rem;
  align-items: flex-start;
}

.section-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 0.9rem;
}

.about-features {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 1.4rem;
  font-size: 0.9rem;
  color: #111827;
}

.about-features li::before {
  content: "• ";
  color: #059669;
}

.section-header {
  text-align: center;
}

/* Cards & Grids */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.trucks-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.country-card {
  text-align: center;
}

.country-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #111827;
}

.country-card p {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.6;
}

.card {
  border-radius: 1.1rem;
  background: #ffffff;
  border: 1px solid rgba(209, 213, 219, 0.9);
  padding: 1rem 1.1rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.service-card p {
  font-size: 0.9rem;
  color: #4b5563;
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.info-metrics {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.metric-label {
  display: block;
  font-size: 0.75rem;
  color: #6b7280;
}

.metric-value {
  font-size: 0.88rem;
  font-weight: 600;
}

.stats-card h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.stats-list {
  font-size: 0.88rem;
  color: #4b5563;
  display: grid;
  gap: 0.25rem;
}

.stats-list li::before {
  content: "– ";
  color: #2563eb;
}

.partners-placeholder {
  margin-top: 0.9rem;
  padding-top: 0.7rem;
  border-top: 1px dashed rgba(148, 163, 184, 0.5);
  font-size: 0.78rem;
  color: #6b7280;
}

.partners-placeholder span {
  display: block;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

/* Why Us */
.why-list {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #4b5563;
  margin-top: 0.8rem;
}

.why-list strong {
  display: block;
  color: #111827;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.8rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.9rem;
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.phone-list {
  display: grid;
  gap: 0.2rem;
  font-size: 0.9rem;
}

.phone-list a {
  color: #111827;
  transition: color 0.2s ease;
}

.phone-list a:hover {
  color: #059669;
}

.social-links {
  margin-top: 1rem;
  display: flex;
  align-items: center;
}

.btn-facebook {
  background: #1877f2;
  color: #ffffff;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s;
  box-shadow: 0 10px 25px rgba(24, 119, 242, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-facebook:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(24, 119, 242, 0.23);
  background: #166fe5;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.btn-whatsapp {
  background: #059669;
  color: #ecfdf5;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
}

.btn-whatsapp:hover {
  transform: translateY(-1px);
}

.email-placeholder {
  font-family: "Cairo", system-ui, sans-serif;
  font-size: 0.9rem;
  color: #111827;
  margin-top: 0.3rem;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(209, 213, 219, 0.9);
  background: #f9fafb;
  padding: 1rem 0 1.2rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
}

.footer-meta {
  font-size: 0.78rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 60;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
  background: #059669;
  color: #ecfdf5;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.22);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.26);
  background: #047857;
}

/* Responsive */
@media (max-width: 960px) {
  body {
    font-size: 15px;
  }

  .container {
    padding: 0 1.25rem;
  }

  .navbar-inner {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .navbar-links {
    gap: 1.1rem;
    font-size: 0.9rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .hero-media {
    order: -1;
  }

  .two-columns,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .trucks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .countries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-text {
    font-size: 0.98rem;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
    line-height: 1.8;
  }

  .container {
    padding: 0 1rem;
  }

  .top-bar {
    font-size: 0.9rem;
  }

  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 0.5rem 0;
  }

  .navbar-inner {
    align-items: flex-start;
    padding: 0.85rem 0;
  }

  .navbar-links {
    flex-wrap: wrap;
    justify-content: flex-start;
    font-size: 0.9rem;
    gap: 0.9rem;
  }

  .hero {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hero-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    line-height: 1.4;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-kicker {
    font-size: 0.8rem;
  }

  .section {
    padding: 2rem 0;
  }

  .section-alt {
    padding: 2rem 0;
  }

  .section-title {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .section-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .hero-highlights {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.6rem;
  }

  .highlight-value {
    font-size: 0.9rem;
  }

  .about-grid,
  .about-features,
  .contact-cards,
  .cards-grid,
  .trucks-grid,
  .countries-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .card {
    padding: 1.1rem 1.2rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .btn {
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
  }

  .phone-list {
    font-size: 1rem;
  }

  .contact-card h3 {
    font-size: 1.1rem;
  }

  .why-list {
    font-size: 1rem;
    line-height: 1.7;
  }

  .why-list strong {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
  }

  .country-card h3 {
    font-size: 1.1rem;
  }

  .country-card p {
    font-size: 0.95rem;
  }

  .floating-whatsapp {
    bottom: 1rem;
    left: 1rem;
    right: auto;
    width: 48px;
    height: 48px;
    font-size: 0.78rem;
  }
}

/* Footer dev credit */
.footer-dev {
  font-size: 0.78rem;
  color: #6b7280;
}

.dev-link {
  color: #2563eb;
  font-weight: 700;
  margin-right: 0.25rem;
  position: relative;
  text-decoration: none;
}

.dev-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  opacity: 0.8;
}

.dev-link:hover {
  animation: dev-glow 0.6s ease-in-out forwards;
}

@keyframes dev-glow {
  0% {
    text-shadow: 0 0 0 rgba(59, 130, 246, 0);
  }
  50% {
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.8);
  }
  100% {
    text-shadow: 0 0 4px rgba(59, 130, 246, 0.6);
  }
}


