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

:root {
  --red: #CC0000;
  --red-dark: #990000;
  --red-bright: #FF2222;
  --black: #0a0a0a;
  --dark: #111111;
  --card: #181818;
  --card-hover: #202020;
  --border: #2a2a2a;
  --text: #f0f0f0;
  --text-muted: #888;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cairo', sans-serif;
  background-color: var(--black);
  color: var(--text);
  direction: rtl;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--red);
}

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh;
  background-image:
    linear-gradient(to left, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.75) 45%, rgba(0,0,0,0.95) 100%),
    url('car.png');
  background-size: 100% auto;
  background-position: center 90%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}

.hero-bg-text {
  display: none;
}

.hero-content {
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: calc(100vh - 64px);
}

.hero-text {
  max-width: 540px;
}


.hero-tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  border-right: 3px solid var(--red);
  padding-right: 12px;
}

.hero-text h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.hero-sub {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  font-weight: 600;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(204, 0, 0, 0.4);
}

.btn-red:hover {
  background: var(--red-bright);
  box-shadow: 0 6px 28px rgba(204, 0, 0, 0.6);
}

.btn-whatsapp {
  background: #1a1a1a;
  color: #25D366;
  border: 2px solid #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.15);
}

.btn-whatsapp:hover {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.35);
}

/* Red line below hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to left, transparent, var(--red), transparent);
}

/* ===========================
   SECTION HEADER
=========================== */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
}

.underline {
  width: 60px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: 0 auto;
}

/* ===========================
   SERVICES
=========================== */
.services {
  padding: 100px 0;
  background: var(--dark);
}

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

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: 0 8px 30px rgba(204, 0, 0, 0.2);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(204, 0, 0, 0.12);
  border: 2px solid rgba(204, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.25s, border-color 0.25s;
}

.service-card:hover .service-icon {
  background: rgba(204, 0, 0, 0.25);
  border-color: var(--red);
}

.service-icon i {
  font-size: 1.6rem;
  color: var(--red);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===========================
   CONTACT
=========================== */
.contact {
  padding: 100px 0;
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 24px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(204, 0, 0, 0.15);
  border-color: var(--red);
}

.contact-card i {
  font-size: 1.8rem;
  color: var(--red);
  min-width: 36px;
}

.contact-card.whatsapp i   { color: #25D366; }
.contact-card.instagram i  { color: #E1306C; }
.contact-card.facebook i   { color: #1877F2; }
.contact-card.location i   { color: #f97316; }

.contact-card.whatsapp:hover   { border-color: #25D366; box-shadow: 0 6px 24px rgba(37,211,102,0.15); }
.contact-card.instagram:hover  { border-color: #E1306C; box-shadow: 0 6px 24px rgba(225,48,108,0.15); }
.contact-card.facebook:hover   { border-color: #1877F2; box-shadow: 0 6px 24px rgba(24,119,242,0.15); }
.contact-card.location:hover   { border-color: #f97316; box-shadow: 0 6px 24px rgba(249,115,22,0.15); }

.contact-card div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.contact-value {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 700;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer-social a:hover {
  color: var(--white);
  border-color: var(--red);
  background: rgba(204, 0, 0, 0.15);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {
  .hero {
    background-size: cover;
    background-position: center center;
    background-image:
      linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.85) 100%),
      url('car.png');
  }

  .hero-content {
    text-align: center;
    justify-content: center;
  }

  .hero-tag {
    border-right: none;
    padding-right: 0;
    border-bottom: 2px solid var(--red);
    padding-bottom: 8px;
    display: inline-block;
  }

  .hero-btns {
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .nav-links {
    gap: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}
