/* =====================================================
   ARIEL CIKA AUTO
   STYLE PRINCIPAL
===================================================== */

:root {

    --black: #050505;

    --dark: #101010;

    --orange: #ff6500;

    --green: #e96f0b;

    --white: #4d4747;

    --gray: #fefeff;

    --text: #333333;

    --border: #ec1b1b;

    --shadow:
        0 15px 40px rgba(0,0,0,.08);

}


* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);

    line-height: 1.7;

    background: #fdfdfd;

}


img {

    max-width: 100%;

    display: block;

}


a {

    text-decoration: none;

    color: inherit;

}


.container {

    width: 90%;

    max-width: 1200px;

    margin: auto;

}


.section {

    padding: 100px 0;

}


/* =====================================================
   HEADER
===================================================== */

.header {

    position: fixed;

    width: 100%;

    top: 0;

    left: 0;

    z-index: 1000;

    background:
        rgba(0,0,0,.95);

    border-bottom:
        2px solid var(--orange);

}


.nav-container {

    height: 80px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.logo {

    display: flex;

    align-items: center;

    gap: 12px;

    color: white;

    font-weight: 800;

    letter-spacing: 1px;

}


.logo img {

    width: 52px;

    height: 52px;

    object-fit: contain;

    border-radius: 50%;

}


.logo strong {

    color: var(--orange);

}


nav {

    display: flex;

    gap: 30px;

}


nav a {

    color: white;

    font-size: 14px;

    font-weight: 600;

    transition: .3s;

}


nav a:hover {

    color: var(--orange);

}


.menu-toggle {

    display: none;

    background: none;

    border: none;

    color: white;

    font-size: 28px;

}


/* =====================================================
   HERO
===================================================== */

.hero {

    min-height: 100vh;

    display: flex;

    align-items: center;

    position: relative;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.95),
            rgba(0,0,0,.65),
            rgba(0,0,0,.25)
        ),
        url("../images/voiture.jpg");

    background-size: cover;

    background-position: center;

}


.hero-content {

    position: relative;

    z-index: 2;

}


.hero-text {

    max-width: 700px;

    color: white;

    padding-top: 80px;

}


.badge {

    display: inline-block;

    color: var(--orange);

    border:
        1px solid var(--orange);

    padding: 8px 18px;

    border-radius: 50px;

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 25px;

}


.hero h1 {

    font-size:
        clamp(42px, 7vw, 76px);

    line-height: 1.05;

    margin-bottom: 25px;

}


.hero h1 span {

    color: var(--orange);

    display: block;

}


.hero p {

    font-size: 18px;

    max-width: 620px;

    color: #ddd;

    margin-bottom: 35px;

}


.hero-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

}


/* =====================================================
   BOUTONS
===================================================== */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 28px;

    border-radius: 5px;

    font-weight: 700;

    transition: .3s;

    cursor: pointer;

}


.btn-primary {

    background: var(--orange);

    color: white;

}


.btn-primary:hover {

    background: #e95600;

    transform: translateY(-3px);

}


.btn-outline {

    border: 2px solid white;

    color: white;

}


.btn-outline:hover {

    background: white;

    color: black;

}


.btn-light {

    background: white;

    color: black;

}


.btn-light:hover {

    transform: translateY(-3px);

}


/* =====================================================
   TITRES
===================================================== */

.section-title {

    text-align: center;

    max-width: 750px;

    margin:
        0 auto 60px;

}


.section-title span {

    color: var(--orange);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

}


.section-title h2 {

    font-size:
        clamp(32px, 5vw, 48px);

    line-height: 1.2;

    color: var(--black);

    margin: 10px 0 15px;

}


.section-title p {

    color: #666;

}


/* =====================================================
   ABOUT
===================================================== */

.about {

    background: white;

}


.about-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: center;

}


.about-image img {

    width: 100%;

    height: 480px;

    object-fit: cover;

    border-radius: 12px;

    box-shadow: var(--shadow);

}


.about-content h3 {

    font-size: 34px;

    margin-bottom: 20px;

    color: var(--black);

}


.about-content p {

    margin-bottom: 20px;

    color: #666;

}


.about-list {

    display: grid;

    gap: 12px;

    margin-top: 25px;

}


.about-list div {

    display: flex;

    align-items: center;

    gap: 12px;

    font-weight: 600;

}


.about-list span {

    color: var(--green);

    font-size: 20px;

}


/* =====================================================
   SERVICES
===================================================== */

.services {

    background: var(--gray);

}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


.service-card {

    background: white;

    padding: 35px;

    border-radius: 12px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.05);

    border-bottom:
        4px solid transparent;

    transition: .3s;

}


.service-card:hover {

    transform:
        translateY(-8px);

    border-color:
        var(--orange);

    box-shadow:
        0 20px 40px rgba(0,0,0,.1);

}


.service-icon {

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: #fff2e9;

    font-size: 30px;

    margin-bottom: 20px;

}


.service-card h3 {

    font-size: 21px;

    margin-bottom: 12px;

    color: var(--black);

}


.service-card p {

    color: #666;

    margin-bottom: 15px;

}


.service-card ul {

    list-style: none;

}


.service-card li {

    margin: 8px 0;

    font-size: 14px;

}


.service-card li::before {

    content: "✓";

    color: var(--green);

    font-weight: bold;

    margin-right: 8px;

}


/* =====================================================
   STATS
===================================================== */

.stats {

    background: var(--black);

    padding: 60px 0;

    color: white;

}


.stats-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 30px;

    text-align: center;

}


.stat strong {

    display: block;

    font-size: 45px;

    color: var(--orange);

}


.stat span {

    color: #ddd;

}


/* =====================================================
   AVANTAGES
===================================================== */

.advantages {

    background: white;

}


.advantages-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;

}


.advantage {

    padding: 30px;

    border:
        1px solid var(--border);

    border-radius: 10px;

}


.advantage-number {

    color: var(--orange);

    font-weight: 900;

    font-size: 30px;

    margin-bottom: 15px;

}


.advantage h3 {

    margin-bottom: 10px;

}


.advantage p {

    color: #666;

    font-size: 14px;

}


/* =====================================================
   GALERIE
===================================================== */

.gallery {

    background: var(--gray);

}


.gallery-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.gallery-item {

    height: 350px;

    overflow: hidden;

    border-radius: 12px;

}


.gallery-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

}


.gallery-item:hover img {

    transform: scale(1.08);

}


SECTION CONTACT
================================ */

.contact-section {
  position: relative;
  padding: 100px 20px;
  background:
    radial-gradient(circle at 10% 20%, rgba(220, 38, 38, 0.12), transparent 35%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.05), transparent 30%),
    #0b0f14;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

/* Cadre général */

.contact-container {
  max-width: 1150px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

/* ================================
   CONTENU GAUCHE
================================ */

.contact-content {
  max-width: 520px;
}

.contact-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 16px;

  color: #141414;
  background: rgba(220, 38, 38, 0.10);
  border: 1px solid rgba(7, 7, 7, 0.3);

  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.contact-content h2 {
  margin: 0 0 20px;

  color: #ffffff;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  font-weight: 800;
}

.contact-content h2 span {
  color: #070707;
}

.contact-content p {
  margin: 0 0 32px;

  color: #aeb6c1;
  font-size: 16px;
  line-height: 1.8;
}

/* Bouton */

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 15px 24px;

  color: #f5b2b2;
  background: #1d1d1d;

  border-radius: 10px;
  text-decoration: none;

  font-size: 15px;
  font-weight: 700;

  box-shadow: 0 10px 30px rgba(3, 3, 3, 0.25);

  transition: all 0.3s ease;
}

.contact-btn span {
  font-size: 18px;
}

.contact-btn:hover {
  transform: translateY(-3px);
  background: #0716ec;
  box-shadow: 0 15px 35px rgba(1, 21, 51, 0.35);
}


/* ================================
   CARTE CONTACT
================================ */

.contact-card {
  position: relative;

  padding: 32px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.10);

  border-radius: 22px;

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(15px);

  overflow: hidden;
}

/* Ligne décorative */

.contact-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: linear-gradient(
    90deg,
    #0e0d0d,
    #1a1818,
    #0f0f0f
  );
}


/* ================================
   HEADER CARTE
================================ */

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 18px;

  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-icon {
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  background: rgba(227, 52, 52, 0.12);
  border: 1px solid rgba(227, 52, 52, 0.25);

  border-radius: 15px;

  font-size: 27px;
}

.contact-card-header h3 {
  margin: 0 0 6px;

  color: #030303;
  font-size: 20px;
  font-weight: 800;
}

.contact-card-header p {
  margin: 0;

  color: #8f99a6;
  font-size: 14px;
}


/* ================================
   INFORMATIONS
================================ */

.contact-info {
  padding: 25px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;

  padding: 16px;

  color: inherit;
  text-decoration: none;

  background: rgba(255, 255, 255, 0.035);

  border: 1px solid transparent;
  border-radius: 12px;

  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(227, 52, 52, 0.08);
  border-color: rgba(17, 13, 13, 0.25);
  transform: translateX(5px);
}

.info-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  background: hsl(0, 0%, 6%);
  border-radius: 10px;

  font-size: 17px;
}

.contact-item small {
  display: block;

  margin-bottom: 4px;

  color: #7f8995;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-item strong {
  display: block;

  color: #070707;
  font-size: 14px;
  font-weight: 600;

  word-break: break-word;
}


/* ================================
   FOOTER CARTE
================================ */

.contact-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  color: #0e0d0d;
  font-size: 12px;
}

.status-dot {
  width: 9px;
  height: 9px;

  background: #034b1d;

  border-radius: 50%;

  box-shadow: 0 0 12px rgba(2, 66, 26, 0.8);

  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.25);
  }
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 800px) {

  .contact-section {
    padding: 70px 18px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-content {
    max-width: 100%;
    text-align: center;
  }

  .contact-content h2 {
    font-size: 36px;
  }

  .contact-content p {
    font-size: 15px;
  }

  .contact-btn {
    justify-content: center;
  }

  .contact-card {
    padding: 24px;
  }
}


@media (max-width: 480px) {

  .contact-content h2 {
    font-size: 30px;
  }

  .contact-card-header {
    align-items: flex-start;
  }

  .contact-card-header h3 {
    font-size: 17px;
  }

  .contact-card-header p {
    font-size: 12px;
  }

  .contact-item strong {
    font-size: 13px;
  }

  .contact-card-footer {
    font-size: 10px;
  }

  .gallery-item {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

}
</style>