@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@400;500;600&display=swap');

:root {
  --garage-red: #D62828;
  --garage-dark: #1A1A1A;
  --garage-darker: #111111;
  --garage-yellow: #F4A200;
  --garage-light: #F5F5F0;
  --garage-gray: #6B6B6B;
  --garage-border: #2E2E2E;
}

* { box-sizing: border-box; }

body {
  font-family: 'Barlow', sans-serif;
  background-color: #fff;
  color: var(--garage-dark);
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, .display-font {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* ── NAVBAR ── */
.navbar-garage {
  background: var(--garage-darker);
  border-bottom: 3px solid var(--garage-red);
  padding: 0.75rem 0;
}

.navbar-garage .navbar-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: #fff !important;
  letter-spacing: -0.02em;
  line-height: 1;
}

.navbar-garage .navbar-brand span {
  color: var(--garage-red);
}

.navbar-garage .nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.8) !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s;
}

.navbar-garage .nav-link:hover,
.navbar-garage .nav-link.active {
  color: var(--garage-red) !important;
}

.navbar-garage .nav-cta {
  background: var(--garage-red);
  color: #fff !important;
  border-radius: 0;
  padding: 0.5rem 1.4rem !important;
  margin-left: 0.5rem;
  transition: background 0.2s;
}

.navbar-garage .nav-cta:hover {
  background: #b51f1f;
  color: #fff !important;
}

.navbar-toggler {
  border-color: var(--garage-red);
}
.navbar-toggler-icon {
  filter: invert(1);
}

/* ── HERO ── */
.hero {
  background: var(--garage-darker);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?w=1600&q=80') center/cover no-repeat;
  opacity: 0.18;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-stripe {
  position: absolute;
  top: 0; left: 0;
  width: 8px;
  height: 100%;
  background: repeating-linear-gradient(
    180deg,
    var(--garage-red) 0px,
    var(--garage-red) 30px,
    transparent 30px,
    transparent 50px
  );
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  background: var(--garage-red);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.92;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  color: var(--garage-red);
}

.hero h1 .accent-y {
  color: var(--garage-yellow);
}

.hero-lead {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.btn-garage-primary {
  background: var(--garage-red);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  padding: 0.85rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}
.btn-garage-primary:hover {
  background: #b51f1f;
  color: #fff;
  transform: translateY(-1px);
}

.btn-garage-outline {
  background: transparent;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 0;
  padding: 0.85rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-garage-outline:hover {
  border-color: #fff;
  color: #fff;
}

.hero-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.hero-badge i {
  color: var(--garage-yellow);
  font-size: 1.1rem;
}

/* ── URGENCY BANNER ── */
.urgency-banner {
  background: var(--garage-red);
  padding: 1rem 0;
}

.urgency-banner .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  text-align: center;
}

.urgency-banner .pulse-dot {
  width: 10px; height: 10px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.urgency-banner p {
  color: #fff;
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.urgency-banner a {
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  text-decoration: none;
  background: rgba(0,0,0,0.2);
  padding: 0.3rem 1rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ── SECTION TITLES ── */
.section-label {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--garage-red);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1;
  margin-bottom: 0;
}

/* ── SERVICES CARDS ── */
.services-section {
  background: var(--garage-light);
  padding: 6rem 0;
}

.service-card {
  background: #fff;
  border-top: 4px solid var(--garage-dark);
  padding: 2.5rem 2rem;
  height: 100%;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  display: block;
  color: inherit;
}

.service-card:hover {
  border-color: var(--garage-red);
  transform: translateY(-4px);
  color: inherit;
}

.service-card .icon-wrap {
  width: 56px; height: 56px;
  background: var(--garage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--garage-yellow);
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--garage-gray);
  line-height: 1.6;
  margin: 0;
}

.service-card .card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--garage-red);
  margin-top: 1.5rem;
  transition: gap 0.2s;
}

.service-card:hover .card-arrow {
  gap: 0.7rem;
}

/* ── DEPANNAGE HIGHLIGHT ── */
.depannage-highlight {
  background: var(--garage-dark);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.depannage-highlight::before {
  content: 'DÉPANNAGE';
  position: absolute;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(6rem, 18vw, 16rem);
  color: rgba(255,255,255,0.03);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
}

.depannage-highlight h2 {
  color: #fff;
}

.depannage-highlight .lead {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  line-height: 1.7;
}

.depan-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.depan-item:last-child { border-bottom: none; }

.depan-item .depan-icon {
  width: 40px; height: 40px;
  background: var(--garage-red);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.depan-item h5 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.depan-item p {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.5;
}

/* ── ZONE INTERVENTION ── */
.zone-section {
  background: #fff;
  padding: 5rem 0;
}

.zone-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.zone-chip {
  background: var(--garage-light);
  border: 1px solid #ddd;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  color: var(--garage-dark);
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--garage-light);
  padding: 5rem 0;
}

.testi-card {
  background: #fff;
  padding: 2rem;
  height: 100%;
  border-left: 4px solid var(--garage-red);
}

.testi-stars {
  color: var(--garage-yellow);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.testi-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.2rem;
}

.testi-author {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--garage-dark);
}

.testi-location {
  font-size: 0.8rem;
  color: var(--garage-gray);
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--garage-dark);
  color: #fff;
  padding: 0.75rem 1.5rem;
  margin-bottom: 2rem;
}

.rating-badge .score {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--garage-yellow);
}

.rating-badge .details {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* ── PAGE HEADER ── */
.page-header {
  background: var(--garage-darker);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?w=1400&q=80') center/cover no-repeat;
  opacity: 0.12;
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.page-header .breadcrumb {
  background: none;
  padding: 0;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  text-decoration: none;
}

.page-header .breadcrumb-item.active {
  color: rgba(255,255,255,0.8);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.3);
}

/* ── SERVICE PAGE ── */
.service-detail {
  padding: 5rem 0;
}

.service-detail .feature-list {
  list-style: none;
  padding: 0;
}

.service-detail .feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
  color: #444;
}

.service-detail .feature-list li:last-child {
  border-bottom: none;
}

.service-detail .feature-list li i {
  color: var(--garage-red);
  font-size: 0.85rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.cta-sidebar {
  background: var(--garage-dark);
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.cta-sidebar h4 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.cta-sidebar p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.cta-sidebar .phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--garage-red);
  color: #fff;
  text-decoration: none;
  padding: 1rem 1.2rem;
  margin-bottom: 0.75rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}

.cta-sidebar .phone:hover {
  background: #b51f1f;
}

.cta-sidebar .whatsapp {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}

.cta-sidebar .whatsapp:hover {
  background: #1da851;
}

.cta-sidebar .hours {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.cta-sidebar .hours h6 {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.cta-sidebar .hours p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.3rem;
  font-size: 0.875rem;
}

/* ── OTHER SERVICES ── */
.other-services {
  background: var(--garage-light);
  padding: 4rem 0;
}

.mini-service-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  padding: 1.2rem 1.5rem;
  text-decoration: none;
  color: var(--garage-dark);
  border-top: 3px solid var(--garage-dark);
  transition: border-color 0.2s, transform 0.2s;
  height: 100%;
}

.mini-service-card:hover {
  border-color: var(--garage-red);
  color: var(--garage-dark);
  transform: translateY(-2px);
}

.mini-service-card .icon {
  font-size: 1.5rem;
  color: var(--garage-yellow);
  flex-shrink: 0;
}

.mini-service-card h5 {
  margin: 0;
  font-size: 1.1rem;
}

.mini-service-card span {
  font-size: 0.8rem;
  color: var(--garage-gray);
}

/* ── CONTACT ── */
.contact-section {
  padding: 5rem 0;
}

.contact-info-block {
  background: var(--garage-dark);
  padding: 3rem 2.5rem;
  height: 100%;
}

.contact-info-block h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.contact-item .ci-icon {
  width: 44px; height: 44px;
  background: var(--garage-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item h6 {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.contact-item p, .contact-item a {
  color: #fff;
  font-size: 1rem;
  margin: 0;
  text-decoration: none;
}

.contact-item a:hover { color: var(--garage-yellow); }

.form-garage .form-control,
.form-garage .form-select {
  border-radius: 0;
  border: 2px solid #e0e0e0;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-garage .form-control:focus,
.form-garage .form-select:focus {
  border-color: var(--garage-red);
  box-shadow: none;
}

.form-garage label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.map-container {
  height: 300px;
  background: #ddd;
  overflow: hidden;
  margin-top: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.3) contrast(1.05);
}

/* ── FOOTER ── */
.footer {
  background: var(--garage-darker);
  border-top: 3px solid var(--garage-red);
  padding: 3.5rem 0 1.5rem;
}

.footer .brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.footer .brand span { color: var(--garage-red); }

.footer p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  margin-top: 0.75rem;
  line-height: 1.6;
}

.footer h6 {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0;
  transition: color 0.2s;
}

.footer ul li a:hover { color: var(--garage-red); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ── MISC ── */
.btn-red {
  background: var(--garage-red);
  color: #fff;
  border: none;
  border-radius: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  transition: background 0.2s;
}

.btn-red:hover {
  background: #b51f1f;
  color: #fff;
}

.divider-red {
  width: 48px;
  height: 4px;
  background: var(--garage-red);
  display: block;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .hero { min-height: 70vh; }
  .hero h1 { font-size: 3rem; }
  .urgency-banner .inner { flex-direction: column; gap: 0.5rem; }
  .cta-sidebar { position: static; margin-top: 2rem; }
}
