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

:root {
  --maroc-red: #C41E3A;
  --maroc-green: #006233;
  --gold: #D4AF37;
  --navy: #0a1628;
  --navy-light: #111d32;
  --text: #1f2937;
  --text-light: #6b7280;
  --bg: #f8fafc;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

/* Header */
.site-header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  letter-spacing: 0.3px;
}

.brand-suffix {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 1px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

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

.btn-nav {
  background: var(--maroc-red);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
}

.btn-nav:hover {
  background: #a01830;
}

.lang-switcher {
  position: relative;
}

.lang-btn {
  background: var(--bg);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}

.lang-menu {
  position: absolute;
  right: 0;
  top: 110%;
  min-width: 160px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  list-style: none;
  padding: 6px;
  display: none;
  z-index: 10000;
}

.lang-menu.open {
  display: block;
}

.lang-menu li button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
}

.lang-menu li button:hover {
  background: var(--bg);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--navy);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.4) 0%, rgba(10,22,40,0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.star {
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-desc {
  font-size: 1.2rem;
  opacity: 0.92;
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--maroc-red);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(196,30,58,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #a01830;
  box-shadow: 0 14px 40px rgba(196,30,58,0.45);
}

.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
}

/* Sections */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  color: var(--maroc-red);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

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

.section-lead {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Fleet */
.fleet {
  background: var(--white);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fleet-card {
  background: var(--bg);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.1);
}

.fleet-image {
  height: 200px;
  overflow: hidden;
}

.fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.fleet-card:hover .fleet-image img {
  transform: scale(1.06);
}

.fleet-body {
  padding: 22px;
}

.fleet-tag {
  display: inline-block;
  background: rgba(0,98,51,0.1);
  color: var(--maroc-green);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.fleet-tag--premium {
  background: rgba(212,175,55,0.12);
  color: #9a7b1a;
}

.fleet-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}

.fleet-body p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.fleet-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.fleet-price {
  font-weight: 800;
  color: var(--maroc-red);
  font-size: 0.95rem;
}

.fleet-cta {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}

.fleet-cta:hover {
  color: var(--maroc-red);
}

/* Services */
.services {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.services-media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.services-media img {
  width: 100%;
  height: auto;
  display: block;
}

.services-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 16px 0 28px;
  color: var(--navy);
}

.services-list {
  list-style: none;
}

.services-list li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.services-list li strong {
  font-size: 1.05rem;
  color: var(--navy);
}

.services-list li span {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Advantages */
.advantages {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon-bg {
  width: 64px;
  height: 64px;
  background: rgba(196,30,58,0.08);
  color: var(--maroc-red);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 18px;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}

.testimonials .section-label {
  color: var(--gold);
}

.testimonials h2 {
  color: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px;
}

.stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 18px;
  opacity: 0.95;
}

.testimonial footer {
  font-weight: 600;
  opacity: 0.8;
}

/* Contact */
.contact {
  background: var(--bg);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-info {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid rgba(0,0,0,0.04);
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 12px 0 16px;
  color: var(--navy);
}

.contact-lead {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-big {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--navy);
  color: var(--white);
  padding: 22px 26px;
  border-radius: 16px;
  text-decoration: none;
  transition: transform 0.2s;
}

.contact-big:hover {
  transform: translateX(4px);
}

.contact-big--whatsapp {
  background: #25D366;
  color: #05422b;
}

.contact-big-label {
  font-size: 0.85rem;
  opacity: 0.85;
  font-weight: 600;
}

.contact-big-value {
  font-size: 1.4rem;
  font-weight: 800;
}

.contact-details-card {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.detail-row {
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 6px;
}

.detail-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.6;
}

.detail-value a {
  color: var(--navy);
  text-decoration: none;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 28px 0;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.1);
  }
  .main-nav.mobile-open {
    display: flex;
  }
  .nav-toggle { display: block; }
  .fleet-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .hero-content { padding-top: 90px; padding-bottom: 60px; }
  .contact-info, .contact-details-card { padding: 28px; }
}
