:root {
  color-scheme: light;
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top 15% 15%, rgba(59,130,246,0.18), transparent 22%), radial-gradient(circle at 90% 18%, rgba(16,185,129,0.12), transparent 24%), #f4f7fb;
  color: #111827;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  line-height: 1.6;
  background: url('https://image.shutterstock.com/image-photo/bab-mansour-meknes-morocco-on-260nw-2650555551.jpg') center/cover fixed no-repeat;
  color: #111827;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  background: #ffffffee;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.header-clock {
  color: #0f172a;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(148,163,184,0.35);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
  color: white;
  font-size: 1.25rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.brand h1 {
  margin: 0;
  font-size: 1.2rem;
}

.brand p {
  margin: 0.15rem 0 0;
  color: #475569;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #334155;
  font-weight: 500;
}

.nav-links a:hover {
  color: #1d4ed8;
}

.hero {
  padding: 3.5rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  color: #1d4ed8;
  font-weight: 700;
}

.hero-text h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
}

.hero-copy {
  color: #475569;
  max-width: 40rem;
  margin: 1rem 0 1.75rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.75rem;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
}

.btn-primary {
  background: #1d4ed8;
  color: #fff;
}

.btn-secondary {
  background: #e2e8f0;
  color: #0f172a;
}

.hero-text h2 {
  animation: slideIn 1s ease-out both;
}

.hero-copy {
  color: #475569;
  max-width: 40rem;
  margin: 1rem 0 1.75rem;
  animation: pulseText 3.5s ease-in-out infinite alternate;
}

.hero-actions .btn {
  animation: glowBtn 4s ease-in-out infinite;
}

.hero-location {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: 1.5rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 16px 45px rgba(59, 130, 246, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-location:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}

.hero-location a {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #0f172a;
}

.location-badge {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #ffffff;
  font-size: 1.25rem;
  box-shadow: 0 8px 18px rgba(59, 130, 246, 0.25);
}

.hero-location strong {
  display: block;
  color: #0f172a;
}

.hero-location p {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
}

.hero-image {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.12);
  min-height: 420px;
  position: relative;
  display: grid;
  place-items: end;
  transform: translateY(0);
  animation: float 7s ease-in-out infinite;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 40%, rgba(255,255,255,0.02));
  pointer-events: none;
}

.hero-person {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #ffffff;
  border-radius: 1.75rem;
  padding: 1rem;
  margin-top: 1.75rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  animation: float 6s ease-in-out infinite;
}

.hero-person img {
  width: 100px;
  height: 100px;
  border-radius: 1.25rem;
  object-fit: cover;
  flex-shrink: 0;
}

.hero-person h4 {
  margin: 0 0 0.35rem;
  color: #0f172a;
}

.hero-person p {
  margin: 0;
  color: #475569;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stats div {
  background: #ffffff;
  padding: 1.2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.hero-stats strong {
  display: block;
  font-size: 1.25rem;
  color: #0f172a;
}

.hero-person {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #ffffff;
  border-radius: 1.75rem;
  padding: 1rem;
  margin-top: 1.75rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.hero-person img {
  width: 100px;
  height: 100px;
  border-radius: 1.25rem;
  object-fit: cover;
  flex-shrink: 0;
}

.hero-person h4 {
  margin: 0 0 0.35rem;
  color: #0f172a;
}

.hero-person p {
  margin: 0;
  color: #475569;
}

.hero-stats span {
  color: #64748b;
}

.hero-image {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.12);
  min-height: 420px;
  position: relative;
  display: grid;
  place-items: center;
  transform: translateY(0);
  animation: float 7s ease-in-out infinite;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.08));
  z-index: 1;
}

.hero-image-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}

.hero-image .hero-clock {
  position: relative;
  z-index: 2;
}

.hero-clock-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(241, 245, 249, 0.84));
  border: 1px solid rgba(148, 163, 184, 0.22);
  backdrop-filter: blur(12px);
}

.hero-clock {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
}

.hero-clock-time {
  display: block;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.05em;
}

.hero-clock-date {
  display: block;
  margin-top: 1rem;
  color: #475569;
  font-size: 1.1rem;
}

.section {
  padding: 3rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.gallery-note {
  margin: 0.6rem auto 0;
  color: #1d4ed8;
  font-size: 1rem;
  font-weight: 600;
}

.section-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: #1d4ed8;
  font-weight: 700;
}

.section-head h3 {
  margin: 0;
  font-size: 2rem;
  color: #0f172a;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  color: white;
}

.icon-rent { background: linear-gradient(135deg, #0ea5e9, #2563eb); }
.icon-shield { background: linear-gradient(135deg, #34d399, #10b981); }
.icon-price { background: linear-gradient(135deg, #f97316, #fb923c); }

.service-card h4 {
  margin: 0 0 0.8rem;
}

.service-card p {
  margin: 0;
  color: #64748b;
}

.fleet-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fleet-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  background: white;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 75px rgba(15, 23, 42, 0.16);
}

.fleet-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(59,130,246,0.08), transparent 24%);
  pointer-events: none;
}

.fleet-card-content {
  padding: 1.25rem;
}

.fleet-card h4 {
  margin: 0 0 0.65rem;
}

.fleet-card p {
  margin: 0;
  color: #475569;
}

.gallery-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.gallery-card {
  border-radius: 1.75rem;
  overflow: hidden;
  background: white;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 65px rgba(15, 23, 42, 0.14);
}

.gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent 30%);
  pointer-events: none;
}

.gallery-card img {
  width: 100%;
  display: block;
  height: 220px;
  object-fit: cover;
  animation: drive 8s ease-in-out infinite alternate;
  transform-origin: center;
  transition: transform 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

@media screen and (max-width: 1024px) {
  .gallery-card img {
    height: 200px;
  }
}

@media screen and (max-width: 640px) {
  .gallery-card img {
    height: 180px;
  }
}

@keyframes drive {
  0% { transform: translateX(0) scale(1); }
  50% { transform: translateX(-10px) scale(1.02); }
  100% { transform: translateX(0) scale(1); }
}

.gallery-card-caption {
  padding: 1rem;
  font-weight: 600;
  color: #0f172a;
}

.reactions-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reactions-section {
  position: relative;
  overflow: hidden;
}

.reactions-section::before,
.reactions-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  pointer-events: none;
}

.reactions-section::before {
  width: 260px;
  height: 260px;
  background: rgba(59, 130, 246, 0.24);
  top: -40px;
  right: -60px;
  animation: driftLight 12s ease-in-out infinite;
}

.reactions-section::after {
  width: 180px;
  height: 180px;
  background: rgba(236, 72, 153, 0.20);
  bottom: -30px;
  left: -40px;
  animation: driftLight 10s ease-in-out infinite reverse;
}

.reaction-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 245, 255, 0.96));
  border: 1px solid rgba(166, 90, 255, 0.18);
  border-radius: 2rem;
  padding: 1.75rem;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.reaction-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.12), transparent 28%),
              radial-gradient(circle at bottom right, rgba(236, 72, 153, 0.10), transparent 22%);
  pointer-events: none;
}

.reaction-card::after {
  content: '';
  position: absolute;
  width: 140%;
  height: 22px;
  top: 12px;
  left: -20px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.28), rgba(236, 72, 153, 0.18), rgba(34, 211, 238, 0.24));
  opacity: 0.7;
  transform: rotate(4deg);
  filter: blur(10px);
  pointer-events: none;
}

.reaction-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 90px rgba(59, 130, 246, 0.18);
  border-color: rgba(59, 130, 246, 0.4);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 244, 255, 1));
}

.reaction-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.reaction-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(59, 130, 246, 0.22);
}

.reaction-header h4 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  color: #0f172a;
}

.reaction-header span {
  color: #475569;
  font-size: 0.95rem;
}

.reaction-stars {
  margin-bottom: 1rem;
  color: #f59e0b;
  letter-spacing: 0.08em;
  font-size: 1rem;
  text-shadow: 0 0 4px rgba(245, 158, 11, 0.5);
}

.reaction-card p {
  margin: 0 0 1rem;
  color: #334155;
  line-height: 1.8;
}

.reaction-card strong {
  display: block;
  color: #0f172a;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseText {
  from { opacity: 0.92; }
  to { opacity: 1; }
}

@keyframes glowBtn {
  0%, 100% { box-shadow: 0 10px 30px rgba(59,130,246,0.24); }
  50% { box-shadow: 0 14px 40px rgba(59,130,246,0.32); }
}

@keyframes driftLight {
  0%, 100% { transform: translate(0, 0); opacity: 0.55; }
  50% { transform: translate(-18px, 12px); opacity: 0.72; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}


.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-details {
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
  color: white;
  border-radius: 2rem;
  padding: 2.5rem;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.15);
}

.contact-details h3 {
  margin-top: 0;
}

.contact-details p {
  color: #dbeafe;
}

.whatsapp-note {
  margin: 1rem 0 0;
  color: #1d4ed8;
  font-size: 0.95rem;
  font-weight: 600;
}

.whatsapp-contact {
  margin: 1.5rem 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.5rem;
  padding: 1rem;
}

.whatsapp-contact a {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

.whatsapp-contact img {
  width: 42px;
  height: 42px;
}

.whatsapp-contact strong {
  font-size: 1.05rem;
  display: block;
}

.whatsapp-contact p {
  margin: 0.25rem 0 0;
  color: #e2e8f0;
}

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  background: #25d366;
  color: white;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 16px 35px rgba(37, 211, 102, 0.25);
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

.contact-details ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1rem;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  background: #ffffff;
  padding: 2rem;
  border-radius: 2rem;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
  color: #0f172a;
}

.contact-form input {
  width: 100%;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  font-size: 1rem;
}

.site-footer {
  padding: 1.5rem 0;
  background: #ffffff;
}

.footer-content {
  display: flex;
  justify-content: center;
  color: #64748b;
}

@media (max-width: 900px) {
  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .services-grid,
  .fleet-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 550px) {
  .hero {
    padding-top: 2rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}
