/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --pale-purple-pantone: hsl(262, 63%, 92%);
  --medium-sea-green: hsl(152, 63%, 43%);
  --lavender-blush: hsl(336, 35%, 92%);
  --carolina-blue: hsl(204, 91%, 53%);
  --columbia-blue: hsl(204, 92%, 90%);
  --alice-blue-1: hsl(216, 38%, 95%);
  --alice-blue-2: hsl(216, 75%, 97%);
  --alice-blue-3: hsl(216, 38%, 95%);
  --alice-blue-4: hsl(217, 33%, 92%);
  --independence: hsl(219, 21%, 39%);
  --deep-cerise: hsl(329, 63%, 52%);
  --eerie-black: hsl(210, 11%, 15%);
  --space-cadet: hsl(240, 22%, 25%);
  --blue-jeans: hsl(140, 100%, 15%);
  --slate-blue: hsl(262, 60%, 57%);
  --beau-blue: hsl(208, 86%, 92%);
  --honey-dew: hsl(152, 48%, 89%);
  --mimi-pink: hsl(329, 63%, 90%);
  --red-salsa: hsl(0, 79%, 63%);
  --sapphire: hsl(211, 100%, 35%);
  --manatee: hsl(219, 14%, 60%);
  --white: hsl(0, 0%, 100%);
  --medium-sea-green: hsl(152, 63%, 43%);

  --gradient: linear-gradient(to top, var(--alice-blue-2), var(--alice-blue-3));

  /**
   * typography
   */

  --ff-nunito: 'Nunito', sans-serif;
  --ff-open-sans: 'Open Sans', sans-serif;

  --fs-1: 2.125rem;
  --fs-2: 1.875rem;
  --fs-3: 1.5rem;
  --fs-4: 1.375rem;
  --fs-5: 1.125rem;
  --fs-6: 0.875rem;
  --fs-7: 0.625rem;

  --fw-400: 400;
  --fw-600: 600;

  /**
   * transition
   */

  --transition: 0.5s ease;

  /**
   * spacing
   */

  --section-padding: 50px;

  /**
   * radius
   */

  --radius-10: 10px;
  --radius-14: 14px;
  --radius-18: 18px;

  /**
   * shadow
   */

  --shadow-1: 3px 3px 9px hsla(240, 14%, 69%, 0.2);
  --shadow-2: 3px 3px 9px hsla(204, 92%, 59%, 0.3);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

li { 
  list-style: none;
 }

a { text-decoration: none; }

a,
img,
span,
label,
input,
button,
ion-icon { display: block; }

button,
input {
  background: none;
  border: none;
  font: inherit;
}

button { cursor: pointer; }

input { width: 100%; }

ion-icon { pointer-events: none; }

html {
  font-family: Helvetica, sans-serif !important;;
  color: var(--eerie-black);
  font-size: 1rem;
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  background: var(--alice-blue-1);
  overflow-x: hidden;
}

html,
body {
  max-width: 100%;
}

#services {
  pointer-events: auto;
}
::-webkit-scrollbar {
  width: 15px;
  height: 10px;
}

::-webkit-scrollbar-track { background: var(--white); }

::-webkit-scrollbar-thumb {
  background: hsla(219, 14%, 60%, 0.3);
  border: 2px solid var(--white);
}

::-webkit-scrollbar-thumb:hover { background: hsla(219, 14%, 60%, 0.5); }





/*-----------------------------------*\
   #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 15px; }

button, a { transition: var(--transition); }

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.btn {
  position: relative;
  background: var(--background, var(--medium-sea-green));
  color: var(--color, var(--white));
  min-width: var(--width, 40px);
  min-height: var(--height, 40px);
  padding: 5px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-14);
  font-family: var(--ff-nunito);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn ion-icon {
  font-size: 22px;
  --ionicon-stroke-width: 40px;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsla(0, 0%, 100%, 0.4), transparent);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.btn:is(:hover, :focus) {
  box-shadow: var(--shadow-2);
  transform: translateY(-2px);
}

.btn:is(:hover, :focus)::before { opacity: 1; }

/* ===== FILTER BUTTONS STYLES ===== */
.filter-buttons-container {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  margin-top: 15px;
  padding: 15px;
  overflow-x: auto;
  overflow-y: hidden;
  background: linear-gradient(135deg, hsla(216, 100%, 97%, 0.6), hsla(216, 100%, 95%, 0.4));
  border-radius: 16px;
  border: 1px solid rgba(34, 193, 102, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.filter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  background: linear-gradient(135deg, var(--white), hsla(216, 100%, 98%, 0.8));
  color: var(--independence);
  border: 2px solid var(--medium-sea-green);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(34, 193, 102, 0.1);
}

.filter-btn span:first-child {
  font-size: 18px;
  display: flex;
  align-items: center;
}

.filter-btn:hover {
  background: linear-gradient(135deg, var(--medium-sea-green), hsla(160, 60%, 45%, 0.95));
  color: var(--white);
  border-color: var(--medium-sea-green);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(34, 193, 102, 0.3);
}

.filter-btn:active {
  background: linear-gradient(135deg, hsla(160, 70%, 40%, 1), hsla(160, 70%, 35%, 1));
  color: var(--white);
  border-color: var(--independence);
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 6px 20px rgba(34, 193, 102, 0.4);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--medium-sea-green), hsla(160, 60%, 40%, 1));
  color: var(--white);
  border-color: var(--independence);
  box-shadow: 0 8px 25px rgba(34, 193, 102, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.2);
}

.filter-btn.active::after {
  content: "✓";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  animation: checkMarkPulse 0.4s ease;
}

/* Different filter types with accent colors */
.price-filter {
  border-color: var(--carolina-blue);
}

.price-filter:hover {
  background: linear-gradient(135deg, var(--carolina-blue), hsla(216, 100%, 35%, 0.95));
}

.price-filter.active {
  background: linear-gradient(135deg, var(--carolina-blue), hsla(216, 100%, 30%, 1));
  border-color: var(--carolina-blue);
}

.fuel-filter {
  border-color: #FF6B6B;
}

.fuel-filter:hover {
  background: linear-gradient(135deg, #FF6B6B, #FF5252);
  border-color: #FF6B6B;
}

.fuel-filter.active {
  background: linear-gradient(135deg, #FF6B6B, #E63946);
  border-color: #FF6B6B;
}

.transmission-filter {
  border-color: #FFB703;
}

.transmission-filter:hover {
  background: linear-gradient(135deg, #FFB703, #FB8500);
  border-color: #FFB703;
}

.transmission-filter.active {
  background: linear-gradient(135deg, #FFB703, #FB8500);
  border-color: #FFB703;
}

.type-filter {
  border-color: #8338EC;
}

.type-filter:hover {
  background: linear-gradient(135deg, #8338EC, #6A0572);
  border-color: #8338EC;
}

.type-filter.active {
  background: linear-gradient(135deg, #8338EC, #5E0B6A);
  border-color: #8338EC;
}

.reset-filter {
  background: linear-gradient(135deg, #5f6670, #3f4650);
  color: #ffffff;
  border-color: #6C757D;
}

.reset-filter:hover {
  background: linear-gradient(135deg, #6C757D, #495057);
  border-color: #6C757D;
}

.reset-filter.active {
  background: linear-gradient(135deg, #6C757D, #495057);
  border-color: #6C757D;
}

@keyframes checkMarkPulse {
  0% {
    transform: translateY(-50%) scale(0);
    opacity: 0;
  }
  50% {
    transform: translateY(-50%) scale(1.3);
  }
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .filter-buttons-container {
    gap: 8px;
    padding: 10px;
    margin-bottom: 20px;
  }

  .filter-btn {
    padding: 8px 12px;
    font-size: 13px;
  }

  .filter-btn span:first-child {
    font-size: 16px;
  }

  .reset-filter {
    margin-left: 0;
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .filter-buttons-container {
    flex-direction: row;
    gap: 6px;
  }

  .filter-btn {
    width: auto;
    padding: 10px 12px;
    justify-content: center;
  }

  .reset-filter {
    margin-left: 0;
    width: auto;
  }
}

.section {
  padding-block: var(--section-padding);
  animation: fadeIn 0.8s ease-out;
}

.h1,
.h2,
.h3 {
  color: var(--space-cadet);
  font-family: var(--ff-nunito);
  line-height: 1.4;
}

.h1 {
  font-size: var(--fs-1);
  text-transform: uppercase;
}



.h2,
.h3 { font-weight: var(--fw-400); }

.h2 { font-size: var(--fs-2); }

.h3 { font-size: var(--fs-4); }

.w-100 { width: 100%; }




/*-----------------------------*\
  #pop up
\*-----------------------------------*/
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}



.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}
/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header-contact { display: none; }

.header {
  background: rgba(240, 245, 251, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  z-index: 4;
  border-bottom: 1px solid rgba(13, 75, 120, 0.10);
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--medium-sea-green) 0%, var(--carolina-blue) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.header.active {
  background: rgba(235, 242, 250, 0.97);
  box-shadow: 0 4px 24px rgba(13, 75, 120, 0.13);
}

.header.active::after { opacity: 1; }

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-actions .btn span { display: none; }

.user-btn {
  --color: var(--independence);
  --background: var(--white);
  --shadow-2: var(--shadow-1);
  box-shadow: var(--shadow-1);
}

.header .logo {
  flex-shrink: 1;
  min-width: 0;
}

.header .logo img {
  height: 46px;
  width: auto;
  max-width: 140px;
  display: block;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.header .logo:hover img {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 8px rgba(13, 75, 120, 0.18));
}

.nav-toggle-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: linear-gradient(145deg, #ffffff, #e9f1f8);
  box-shadow: 0 8px 18px rgba(13, 75, 120, 0.14);
  flex-shrink: 0;
}

.nav-toggle-btn span {
  background: #16344a;
  width: 100%;
  height: 2.5px;
  border-radius: 999px;
  margin: 0;
  transform-origin: center;
  transition: transform 0.28s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.nav-toggle-btn span.two { width: 75%; }

.nav-toggle-btn span.three { width: 55%; }

.nav-toggle-btn:is(:hover, :focus-visible) {
  box-shadow: 0 10px 22px rgba(13, 75, 120, 0.2);
  transform: translateY(-1px);
}

.nav-toggle-btn:is(:hover, :focus-visible) span { background: var(--carolina-blue); }

.nav-toggle-btn.active span {
  width: 100%;
  background: var(--carolina-blue);
}

.nav-toggle-btn.active .one {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle-btn.active .two {
  opacity: 0;
  transform: scaleX(0.2);
}

.nav-toggle-btn.active .three {
  transform: translateY(-7.5px) rotate(-45deg);
}

.navbar {
  background: rgba(238, 245, 252, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  width: 100%;
  padding: 20px 25px 28px;
  border-top: 1px solid rgba(13, 75, 120, 0.08);
  border-bottom: 2px solid var(--columbia-blue);
  box-shadow: 0 14px 32px rgba(13, 75, 120, 0.13);
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top center;
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.51, 0.03, 0.64, 0.28),
              opacity 0.22s ease,
              visibility 0.28s;
  z-index: 5;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}

.navbar.active {
  visibility: visible;
  transform: scaleY(1);
  opacity: 1;
  transition: transform 0.42s cubic-bezier(0.33, 0.85, 0.56, 1.02),
              opacity 0.35s ease,
              visibility 0.42s;
}
}

.navbar-link {
  color: var(--space-cadet);
  font-family: var(--ff-nunito);
  font-size: 16px;
  font-weight: var(--fw-600);
  padding-block: 5px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--medium-sea-green), var(--carolina-blue));
  border-radius: 999px;
  transition: width 0.3s ease;
}

.navbar-link:is(:hover, :focus) { color: var(--carolina-blue); }

.navbar-link:is(:hover, :focus)::after { width: 100%; }

.overlay {
  position: fixed;
  top: 70px;
  background: hsla(216, 38%, 10%, 0.5);
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 4;
}

.overlay.active {
  opacity: 0.7;
  pointer-events: all;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}





/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero { padding-top: 120px; }

.hero-title {
  text-align: center;
  color: var(--medium-sea-green);
  -webkit-text-stroke: 1px rgba(246, 250, 247, 0.863); /* largeur et couleur du contour */

}

.hero-text {
  color: var(--medium-sea-green);
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero-banner { display: none; }

.hero-form {
  background: var(--gradient);
  border: 1px solid var(--medium-sea-green);
  box-shadow: var(--shadow-1);
  border-radius: var(--radius-18);
  font-family: var(--ff-nunito);
}

.input-wrapper { padding: 15px 20px; }

.input-wrapper:not(:last-of-type) { border-bottom: 1px solid hsla(0, 0%, 0%, 0.08); }

.input-label {
  color: var(--manatee);
  font-size: var(--fs-6);
  margin-bottom: 10px;
}

.input-field {
  color: var(--space-cadet);
  outline: 2px solid transparent;
  outline-offset: 5px;
  border-radius: 4px;
  transition: var(--transition);
}

.input-field:focus { outline-color: var(--carolina-blue); }

.input-field::placeholder { color: var(--independence); }

.hero-form .btn {
  --width: calc(100% - 40px);
  --height: 50px;
  margin: 20px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  position: relative;
  overflow: visible;
}

.hero-form .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 146, 91, 0.4);
}

.hero-form .btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  top: 0;
  left: -100%;
  transition: left 0.5s;
  border-radius: var(--radius-14);
}

.hero-form .btn:hover::after {
  left: 100%;
}


/*-----------------------------------*\
  #BUTTON DELETE FILTER
\*-----------------------------------*/
#remove-tri-button {
  background: linear-gradient(135deg, #5f6670, #3f4650);
  color: #ffffff;
  border: 2px solid #495057;
}

/* contact-time badge in header */
.contact-time {
  display: none;
  background: linear-gradient(135deg, rgba(0,146,91,0.12), rgba(30,162,240,0.10));
  border: 1px solid rgba(0, 146, 91, 0.25);
  border-radius: 10px;
  padding: 4px 10px;
  text-align: center;
  font-size: 11px;
  line-height: 1.5;
  color: var(--space-cadet);
  white-space: nowrap;
}

/*-----------------------------------*\
  #FEATURED CAR
\*-----------------------------------*/
.h2.section-title{
  margin-top: 1cm;
  font-family:  Helvetica;
  text-align: center;
  color: #00925B !important;
}
.featured-car .title-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px 15px;
  margin-bottom: 30px;
  margin-top: 10px;
}

.featured-car-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--medium-sea-green);
  font-size: var(--fs-6);
}

.featured-car-link span { transition: var(--medium-sea-green); }

.featured-car-link:is(:hover, :focus) span { color: var(--medium-sea-green); }

.featured-car-link ion-icon {
  margin-top: 3px;
  transition: var(--transition);
}

.featured-car-link:is(:hover, :focus) ion-icon { color: var(--carolina-blue); }

.featured-car-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
}

.featured-car-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(13, 75, 120, 0.12);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 10px 28px rgba(13, 75, 120, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  transform: translateY(0);
  animation: slideUp 0.6s ease-out both;
  position: relative;
  overflow: hidden;
}

.featured-car-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 146, 91, 0.35);
  box-shadow: 0 18px 38px rgba(13, 75, 120, 0.18);
}

.featured-car-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--medium-sea-green), var(--carolina-blue));
  opacity: 0.85;
}

.featured-car-card .card-banner {
  background: hsla(216, 38%, 18%, 0.12);
  aspect-ratio: 3 / 2;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease;
}

.featured-car-card:hover .card-banner {
  transform: scale(1.03);
}

.featured-car-card .card-banner > img {
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.featured-car-card:hover .card-banner > img {
  transform: scale(1.07);
}

.featured-car-card .card-content { padding: 18px 12px 10px; }

.featured-car-card .card-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5px;
  margin-bottom: 16px;
}

.featured-car-card .card-title { width: calc(100% - 60px); }

.featured-car-card .card-title > a {
  color: inherit;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: var(--fw-600);
}

.featured-car-card .card-title > a:is(:hover, :focus) { color: var(--carolina-blue); }

.featured-car-card .year {
  font-family: var(--ff-nunito);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  color: var(--carolina-blue);
  background: hsla(204, 92%, 90%, 0.5);
  padding: 4px 12px;
  border: 1px solid hsla(204, 91%, 53%, 0.28);
  border-radius: 999px;
}

.featured-car-card .card-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding-bottom: 15px;
  border-bottom: 1px solid hsla(219, 21%, 39%, 0.14);
  margin-bottom: 14px;
}

.featured-car-card .card-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: hsla(216, 75%, 97%, 0.75);
  border: 1px solid hsla(204, 92%, 90%, 0.7);
  border-radius: 10px;
  padding: 7px 9px;
}

.featured-car-card .card-list-item ion-icon {
  font-size: 20px;
  color: var(--carolina-blue);
  --ionicon-stroke-width: 38px;
}

.featured-car-card .card-list-item div {
  font-size: 20px;
  color: var(--carolina-blue);
  --ionicon-stroke-width: 38px;
}

.featured-car-card .card-item-text {
  color: var(--independence);
  font-size: var(--fs-6);
}

.featured-car-card .card-price-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.featured-car-card .card-price {
  font-family: var(--ff-nunito);
  font-size: var(--fs-6);
  color: var(--independence);
}

.featured-car-card .card-price strong {
  font-size: var(--fs-3);
  font-weight: 700;
  color: var(--medium-sea-green);
}

.featured-car-card .btn:last-child {
  --height: 36px;
  min-width: 100%;
}

.featured-car-card .fav-btn {
  --background: hsla(204, 92%, 90%, 0.5);
  --color: var(--carolina-blue);
  --height: 36px;
  --width: 36px;
  --shadow-2: none;
  border: 1px solid hsla(204, 91%, 53%, 0.25);
}

.featured-car-card .fav-btn ion-icon { font-size: 18px; }

.featured-car-card .fav-btn:is(:hover, :focus) {
  --background: var(--lavender-blush);
  --color: var(--red-salsa);
}





/*-----------------------------------*\
  #GET START
\*-----------------------------------*/

.get-start .section-title { margin-bottom: 25px; }

.get-start-list {
  display: flex;
  flex-direction: column; /* Change this from row to column */
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.get-start-card {
  background: var(--white);
  padding: 20px;
  /*border-radius: var(--radius-18);*/
  border: 1px solid var(--white);
  transition: var(--transition);
  border-radius: 0px;

}

.get-start-card:hover {
  background: var(--alice-blue-2);
  box-shadow: var(--shadow-1);
}

.get-start-card .card-icon {
  background: var(--icon-card-bg, var(--columnia-blue));
  color: var(--icon-card-color, var(--carolina-blue));
  height: 50px;
  width: 50px;
  display: grid;
  place-items: center;
  /*border-radius: var(--radius-14);*/
  border-radius: 0px;
  margin-bottom: 20px;
}

.get-start-card .card-icon ion-icon {
  font-size: 26px;
  --ionicon-stroke-width: 45px;
}

.get-start-card .icon-1 {
  --icon-card-bg: var(--mimi-pink);
  --icon-card-color: var(--deep-cerise);
}

.get-start-card .icon-2 {
  --icon-card-bg: var(--columbia-blue);
  --icon-card-color: var(--carolina-blue);
}

.get-start-card .icon-3 {
  --icon-card-bg: var(--honey-dew);
  --icon-card-color: var(--medium-sea-green);
}

.get-start-card .icon-4 {
  --icon-card-bg: var(--pale-purple-pantone);
  --icon-card-color: var(--slate-blue);
}

.get-start-card .card-title {
  color: var(--space-cadet);
  font-family: var(--ff-nunito);
  font-weight: var(--fw-400);
  margin-bottom: 15px;
}

.get-start-card .card-text { color: var(--independence); }

.get-start-card .card-link {
  position: relative;
  color: var(--carolina-blue);
  width: max-content;
}

.get-start-card .card-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--carolina-blue);
  transition: var(--transition);
}

.get-start-card .card-link:is(:hover, :focus)::before { width: 100%; }





/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog .section-title { 
  margin-bottom: 30px; 
  margin-top: 50px;}

.blog-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(13, 75, 120, 0.12);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(13, 75, 120, 0.1);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  transform: translateY(0);
  animation: slideUp 0.6s ease-out both;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 146, 91, 0.35);
  box-shadow: 0 18px 38px rgba(13, 75, 120, 0.2);
}

.blog-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--medium-sea-green), var(--carolina-blue));
  opacity: 0.85;
  z-index: 2;
}

.blog-card .card-banner {
  aspect-ratio: 3 / 2;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.blog-card .card-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 20%, rgba(0, 0, 0, 0.36) 100%);
  pointer-events: none;
}

.blog-card:hover .card-banner {
  transform: scale(1.03);
}

.blog-card .card-banner a:first-child { height: 100%; }

.blog-card .card-banner img {
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.blog-card:hover .card-banner img {
  transform: scale(1.08);
}

.blog-card .card-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  --height: 32px;
  --width: auto;
  padding-inline: 14px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 146, 91, 0.82);
  z-index: 1;
  transition: all 0.3s ease;
  animation: slideUp 0.6s ease-out 0.3s backwards;
}

.blog-card:hover .card-badge {
  transform: scale(1.06) translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.blog-card .card-content { padding: 22px 20px 20px; }

.blog-card .card-title {
  margin-bottom: 0;
  animation: slideUp 0.6s ease-out 0.2s backwards;
}

.blog-card .card-title > a {
  color: var(--space-cadet);
  transition: all 0.3s ease;
  position: relative;
  font-weight: var(--fw-600);
  line-height: 1.55;
}

.blog-card .card-title > a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--medium-sea-green);
  transition: width 0.3s ease;
}

.blog-card:hover .card-title > a::after {
  width: 100%;
}

.blog-card .card-title > a:is(:hover, :focus) {
  color: var(--carolina-blue);
  transform: translateX(3px);
}

.blog-card .card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-card :is(.publish-date, .comments) {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--fs-6);
  color: var(--independence);
}

.blog-card :is(.publish-date, .comments) ion-icon {
  font-size: 15px;
  --ionicon-stroke-width: 50px;
}

.blog .has-scrollbar {
  display: flex;
  gap: 20px;
  scroll-snap-type: inline mandatory;
  overflow-x: auto;
  padding-bottom: 20px;
}

.blog .has-scrollbar.auto-scroll {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.blog .has-scrollbar.auto-scroll > li {
  scroll-snap-align: none;
}

.blog .has-scrollbar > li {
  flex-shrink: 0;
  max-width: 330px;
  width: 100%;
  scroll-snap-align: start;
}

.has-scrollbar::-webkit-scrollbar-track {
  background: var(--alice-blue-1);
  outline: 2px solid var(--carolina-blue);
  border-radius: 10px;
}

.has-scrollbar::-webkit-scrollbar-thumb {
  border-color: var(--alice-blue-1);
  background: var(--carolina-blue);
  border-radius: 10px;
}

.has-scrollbar::-webkit-scrollbar-button { width: calc(25% - 40px); }





/*-----------------------------------*\
   #FOOTER
\*-----------------------------------*/

.footer {
  background: linear-gradient(160deg, #0b1f33 0%, #0d2a42 55%, #0a1e30 100%);
  color: hsla(210, 40%, 82%, 0.88);
  padding-top: 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--medium-sea-green), var(--carolina-blue), var(--medium-sea-green));
}

/* subtle decorative glow blobs */
.footer::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 146, 91, 0.09) 0%, transparent 70%);
  pointer-events: none;
}

.footer a {
  color: inherit;
  transition: all 0.3s ease;
}

.footer-top {
  padding-block: 60px 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  row-gap: 44px;
  position: relative;
}

.footer-top .logo {
  margin-bottom: 16px;
}

/* logo ima geinversion sur fond sombre */
.footer-top .logo img {
  filter: brightness(0) invert(1);
  opacity: 0.90;
  height: 38px;
  width: auto;
  transition: opacity 0.28s ease;
}

.footer-top .logo:hover img { opacity: 1; }

.footer-text {
  font-size: var(--fs-6);
  line-height: 1.85;
  color: hsla(210, 35%, 72%, 0.82);
  max-width: 300px;
}

.footer-list {
  font-family: var(--ff-nunito);
}

.footer-list:not(:last-of-type) { width: 50%; }

.footer-list:last-of-type {
  width: 100%;
  column-count: 1;
}

.footer-list-title {
  color: #ffffff;
  font-weight: var(--fw-600);
  font-size: var(--fs-5);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 10px;
}

.footer-list-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--medium-sea-green), var(--carolina-blue));
  border-radius: 999px;
}

.footer-link {
  font-size: var(--fs-6);
  padding-block: 6px;
  position: relative;
  color: hsla(210, 35%, 72%, 0.82);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s ease, transform 0.22s ease;
}

.footer-link::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--medium-sea-green);
  transition: width 0.3s ease;
}

.footer-link:is(:hover, :focus) {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-link:is(:hover, :focus)::before {
  width: 100%;
}

.footer-list:last-child > li:first-child { column-span: all; }

/* Divider between top and bottom */
.footer-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10) 30%, rgba(255,255,255,0.10) 70%, transparent);
  margin: 0;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.28);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.social-list {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  color: hsla(210, 35%, 72%, 0.7);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: hsla(210, 35%, 82%, 0.85);
  transition: all 0.28s ease;
}

.social-link ion-icon { --ionicon-stroke-width: 40px; }

/* hover brand colors */
.social-link[href*="facebook"]:is(:hover, :focus) {
  background: #1877F2;
  border-color: #1877F2;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(24, 119, 242, 0.4);
}

.social-link[href*="instagram"]:is(:hover, :focus) {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(220, 39, 67, 0.35);
}

.social-link[href*="wa.me"]:is(:hover, :focus) {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.social-link[href*="mailto"]:is(:hover, :focus) {
  background: var(--carolina-blue);
  border-color: var(--carolina-blue);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(30, 162, 240, 0.4);
}

.copyright {
  font-size: var(--fs-6);
  color: hsla(210, 30%, 65%, 0.65);
  text-align: center;
}

.copyright > a {
  display: inline-block;
  position: relative;
  color: hsla(210, 60%, 75%, 0.85);
}

.copyright > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--medium-sea-green);
  transition: width 0.3s ease;
}

.copyright > a:is(:hover, :focus) {
  color: var(--carolina-blue);
}

.copyright > a:is(:hover, :focus)::after {
  width: 100%;
}





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 350px screen
 */

@media (min-width: 300px) {
  
  #summaryContent {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    width: min(100%, 600px);
    max-width: 600px;
    margin: 0 auto 24px;
    padding: 0;
    overflow: hidden;
  }
  
  /**
   * FEATURED CAR
   */

  .featured-car-card .card-list { grid-template-columns: 1fr 1fr; }

  .featured-car-card .card-price { margin-right: auto; }

  .featured-car-card .btn:last-child {
    min-width: max-content;
    padding-inline: 15px;
  }

 .modal-content {
    width: min(100%, 600px);
    max-width: calc(100vw - 20px);
  }

}





/**
 * responsive for large than 580px screen
 */

@media (min-width: 580px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 540px;
    margin-inline: auto;
  }



  /**
   * HEADER
   */

  .header-actions .btn span {
    display: block;
    font-weight: var(--fw-400);
    padding-inline: 15px;
  }

  .header-actions .btn:first-of-type ion-icon { display: none; }

}





/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 2.625rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 720px; }



  /**
   * HEADER
   */

  

  .header-contact {
    display: block;
    text-align: center;
  }

  .header-contact .contact-link {
    color: var(--space-cadet);
    font-family: var(--ff-nunito);
    font-size: var(--fs-5);
    line-height: 1.3;
  }

  .header-contact .contact-link:is(:hover, :focus) { color: var(--carolina-blue); }

  .header-contact .contact-time {
    color: var(--independence);
    font-size: var(--fs-7);
  }



  /**
   * HERO
   */

  .hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: left;
    z-index: 1;
  }

  .hero-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 0.8fr;
  }

  .input-wrapper:not(:last-of-type) {
    border-bottom: none;
    border-right: 1px solid hsla(0, 0%, 0%, 0.08);
  }

  .input-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  @keyframes changeBackground {
    0% {
      background-image: url("../images/background/hero-banner_9.svg");
    }
    22% {
      background-image: url("../images/background/airport.jpg");
    }
    33% {
      background-image: url("../images/background/sahra.png");
    }
    66% {
      background-image: url("../images/background/hero-banner_3.png");
    }
    88% {
      background-image: url("../images/background/notre_dame_dafrique2.jpg");
    }
    100% {
      background-image: url("../images/background/hero-banner.jpg");
    }
  }

  .hero-banner {
    display: block;
    background-size: cover;
    background-position: left;
    position: absolute;
    top: 100px;
    bottom: 50px;
    width: 1145px;
    border-radius: 0px;
    z-index: -1;
    padding-top: 3cm;
    padding-bottom: 4.5cm;
    animation: changeBackground 30s infinite;
  }

  /**
   * CSS ENTREPRISE
   */
  .hero-banner-pro {
    display: block;
    background: url("../images/logo_service_pro_1.png") no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    top: -5mm;
    bottom: 10px;
    width: 1145px;
    border-radius: 0px;
    z-index: -1;
    padding-top: 3cm;
    padding-bottom: 4.5cm;

  }

  .hero-banner-private {
    display: block;
    background: url("../images/background/hero-banner_particulier.jpg") no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    top: -5mm;
    bottom: 10px;
    width: 1145px;
    border-radius: 0px;
    z-index: -1;
    padding-top: 3cm;
    padding-bottom: 4.5cm;
  }

  .hero-banner-vtc {
    display: block;
    background: url("../images/background/hero-banne_vtc.jpg") no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    top: -5mm;
    bottom: 10px;
    width: 1145px;
    border-radius: 0px;
    z-index: -1;
    padding-top: 3cm;
    padding-bottom: 4.5cm;
  }

  .hero-banner-conditions {
    display: block;
    background: url("../images/background/hero_banner_conditions.jpeg") no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    top: -5mm;
    bottom: 10px;
    width: 1145px;
    border-radius: 0px;
    z-index: -1;
    padding-top: 3cm;
    padding-bottom: 4.5cm;
  }

  .title-2-h2 {
    font-family:  Helvetica;
    text-align: center;
    color: #00925B !important;
    margin-top: -2cm;
    margin-bottom: 1cm;
  }


  .title-2-h3 {
    font-family:  Helvetica;
    text-align: center;
    color: #00925B !important;
    margin-top: 1cm;
    margin-bottom: 35px;
  }


  .title-h2 {
    font-family:  Helvetica;
    text-align: center;
    color: #00925B !important;
    margin-top: -2cm;
    margin-bottom: 35px;
  }
 .container-pro {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  padding: 0;
  } 
  
  .block {
    padding: 25px 40px 25px 40px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    /*background: #f0f0f0f5 !important;*/
    background: white !important;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: Helvetica, sans-serif;
    border:1px solid #00925B;
  }

  .block:not(:last-child) {
    margin-right: 20px;
  }


  .bloc-title {
    margin-top: 10px;
    font-family: Helvetica, sans-serif !important;
    text-align: left;
    color: #535755 !important;
    margin-bottom: 10px;
  }

.bloc-text {
  margin-top: relative; 
  width: 160px !important;
  color: black;
  margin-top: 10px;
  text-align: center;
  margin-bottom: 1.6em; /* This will be equal to the height of one line of text */
  font-family: Helvetica, sans-serif !important;

}

.bloc-title, .bloc-text {
  margin-top: 1cm;
}

  /**
   * FIN CSS ENTREPRISE
   */

  /**
   * DEBUT FEATURED CAR
   */

  .featured-car-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }



  /**
   * GET START
   */

  .get-start-list { grid-template-columns: 1fr 1fr; }



  /**
   * FOOTER
   */

  .footer-brand { width: 100%; }

  .footer-text { max-width: 400px; }

  .footer-bottom {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding-block: 22px;
    gap: 0;
  }

  .social-list { margin-bottom: 0; }

}





/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 960px; }



  /**
   * HERO
   */

  .hero .container { 
    width: 100%; 

  }



  /**
   * BLOG
   */

  .blog .has-scrollbar { padding-bottom: 50px; }

  .blog .has-scrollbar > li { max-width: 450px; }



  /**
   * FOOTER
   */

  .footer-list:not(:last-of-type) { width: 25%; }

  .footer-list:last-of-type { width: 50%; }

}





/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 2.875rem;
    --fs-2: 2rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1170px; }




  /**
   * HEADER
   */

  .overlay,
  .nav-toggle-btn { display: none; }

  .navbar,
  .navbar.active { all: unset; }

  .navbar-link {
    margin-bottom: 0;
    font-weight: var(--fw-600);
  }

  .navbar-list {
    display: flex;
    gap: 50px;
  }


  /**
   * HERO
   */

  .hero { min-height: 10vh; }


  /*
  *style de la barre
  */

  .hero-form { 
    max-width: 1000px; 
    margin: 0 auto;
    
  }

  .hero-form .btn {
    --width: calc(100% - 40px);
    --height: 50px;
    margin: 20px;
    text-transform: uppercase;
  }



  /**
   * FEATURED CAR 
   */

  .featured-car-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }



  /**
   * GET START
   */

  .get-start-list { grid-template-columns: repeat(4, 1fr); }



  /**
   * BLOG
   */

  .blog .has-scrollbar > li {
    max-width: 340px;
    scroll-snap-align: center;
  }



  /**
   * FOOTER
   */

  .footer-brand { width: 33.33%; }

  .footer-text { max-width: 35ch; }

  .footer-list:not(:last-of-type) { width: 16.66%; }

  .footer-list:last-of-type { width: 33.33%; }


  figure {
    position: relative;
}

figure img {
    position: absolute;
    width: 100%;
    height: auto;
    display: none;
}

figure img:first-child {
    display: block;
}
}

#essence-button, #diesel-button, #manuelle-button, #automatic-button {
  margin: 0;
}
/* rendre le bouton brillant pour attirer l'attention
cela se fait avec @keyframes et animation dans le
*/

@keyframes glowing {
  0% { background-color: #00968700; box-shadow: 0 0 5px #00968700, 0 0 10px #00968700, 0 0 15px #00968700, 0 0 20px #00968700; }
  50% { background-color: #00E676; box-shadow: 0 0 10px #00E676, 0 0 20px #00E676, 0 0 30px #00E676, 0 0 40px #00E676; }
  100% { background-color: #00968700; box-shadow: 0 0 5px #00968700, 0 0 10px #00968700, 0 0 15px #00968700, 0 0 20px #00968700; }
}
#whatsapp-button {
  position: fixed;
  bottom: 1cm;
  right: 1cm;
  background-color: transparent;
  color: #fff;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  z-index: 1000;
  animation: glowing 2s infinite;
  transition: all 0.3s ease;
}

#whatsapp-button:hover {
  transform: scale(1.1) rotate(5deg);
}

#whatsapp-button img {
  width: 30px;
  height: auto;
  margin-right: 5px;
}

/*
*
*/



select {
  appearance: none;
  background-color: transparent;
  border: none;
  padding: 0 1em 0 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  line-height: inherit;
  z-index: 1;
}



/*
click sur le bouton vérifier la dispo
*/




.modal {
  border-radius: 0px;
  margin: 0%;
  overflow-y: auto;
  pointer-events: auto;
  width: 100%;
  z-index: inherit;
  outline: none;
  box-shadow: 0 11px 15px -7px rgba(0,0,0,.2), 0 24px 38px 3px rgba(0,0,0,.14), 0 9px 46px 8px rgba(0,0,0,.12);
}



/*-----------------------------------*\
  #TITRE DU POP UP
\*-----------------------------------*/
#popupTitle {
    font-size: 1em;
    margin: 0; /* Removes default margins */
  }






#overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Noir semi-transparent */
  z-index: 9999; /* Z-index élevé pour superposer la page */
}


  

body.noScroll {
  overflow: hidden; /* Bloque le défilement */
}

.blue-btn {
  background-color: blue;
  color: white;
}

.insta-btn {
  background-color: #833ab4;
  color: white; /* Purple */
}

.mail-btn {
  background-color: #cc162e;
  color: white; /* Purple */
}
/*
*afficher le titre du pop up en MAJUSCULE
*/
/*body {
  margin: 0;
  font-family: Arial, sans-serif;
  height: 150vh;
  
  /* Add some content to scroll */
/*}*/

.dropdown {
  position: relative;
  display: list-item;
}

.dropdown-content {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background: rgba(240, 246, 253, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  min-width: 200px;
  box-shadow: 0 12px 32px rgba(13, 75, 120, 0.18), 0 2px 8px rgba(13, 75, 120, 0.10);
  border: 1px solid rgba(13, 75, 120, 0.10);
  border-top: 2px solid var(--medium-sea-green);
  border-radius: 0 0 14px 14px;
  padding: 10px 0;
  z-index: 100;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.dropdown:hover .dropdown-content,
.dropdown.open .dropdown-content {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
  color: var(--space-cadet);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  font-family: var(--ff-nunito);
  line-height: 1;
  display: block;
  padding: 10px 20px;
  transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
}

.dropdown-content a:hover {
  background: rgba(0, 146, 91, 0.07);
  color: var(--carolina-blue);
  padding-left: 26px;
}

#summaryModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  padding: 16px;
  box-sizing: border-box;
}

#summaryContent {
  display: block;
  max-height: none;
  overflow: visible;
  width: min(100%, 600px);
  max-width: calc(100vw - 20px);
  word-break: break-word;
  overflow-wrap: anywhere;
}

#summaryContent *,
#reservationModal .modal-content * {
  max-width: 100%;
}

#summaryTitle, #checkAvailabilityPopUp {
  position: static;
  background: #fff;
  z-index: 2;
  border-bottom: 2px solid darkgreen;
  margin: 0;
  padding: 14px 16px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

#popupTitle {
    font-size: 0.85em;
    margin: 0;
    flex: 1;
    line-height: 1.3;
    min-width: 0;
    word-break: break-word;
}

.summary-intro {
  margin: 0;
  padding: 0 16px;
  line-height: 1.5;
}

/* Table responsive */
.my-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.my-table {
  border-collapse: collapse;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  min-width: 0;
  table-layout: fixed;
}

.my-td {
  border: 1px solid green;
  border-left-color: transparent;
  border-right-color: transparent;
  padding: 10px 12px;
  height: auto;
  width: auto;
  font-size: 0.88em;
  overflow-wrap: anywhere;
}

/* Boutons du popup — toujours visibles, marges raisonnables */
#summaryContent .button-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  gap: 10px;
  background: #fff;
}

#summaryContent .button-container:last-child {
  position: static;
  border-top: 1px solid #e8e8e8;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.06);
  padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
}

#summaryContent .button-container button,
#summaryContent .button-container .btn {
  margin: 0 !important;
  flex: 1;
  max-width: 48%;
  min-height: 44px;
  min-width: 0;
}

/* Formulaire client */
#customerFormContainer {
  background-color: white;
  padding: 16px;
  width: 100%;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
}




/*-----------------------------------*\
  #bouton du pop up verifier la dispo
\*-----------------------------------*/



/*-----------------------------------*\
  #bouton du pop up verifier la dispo
\*-----------------------------------*/

.button-container span {
  display: inline-block;
}

#customerFormContainer form {
  display: flex;
  flex-direction: column;
}

#customerFormContainer label {
  font-weight: bold;
  margin-top: 10px;
}

#customerFormContainer input {
  padding: 10px;
  border: 1px solid green; /* Change the border color to green */
  margin-top: auto;
  width: 100%;
  max-width: 100%;
}
#customerFormContainer select {
  padding: 10px;
  border: 1px solid green; /* Change the border color to green */
  margin-top: auto;
  width: 100%;
  max-width: 100%;
}

.conditions-link {
  margin: 0;
  padding: 0;
}


.checkbox-custom {
  opacity: 0;
  position: absolute;
}
.checkbox-custom,
.checkbox-custom-label,
.checkbox-custom-label a,
.conditions-link {
  display: inline-block;
  vertical-align: middle;


  cursor: pointer;
}

.checkbox-custom + .checkbox-custom-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.checkbox-custom + .checkbox-custom-label:before {
  content: '';
  display: inline-block;
  background: #fff;
  border-radius: 5px;
  border: 2px solid #161515;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  min-width: 30px;
  flex: 0 0 30px;
  padding: 2px;
  margin-right: 0;
  text-align: center;
}

.checkbox-custom:checked + .checkbox-custom-label:before {
  width: 20px;
  height: 20px;
  border: solid rgb(23, 24, 23);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  border-radius: 0px;
  margin: 0px 15px 5px 5px;
  background: green;
}

input[type="date"]
{
    display:block;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    min-height: 1.2em;
}

/*-----------------------------------*\
  #FLATPICKR CUSTOM THEME
\*-----------------------------------*/

.flatpickr-calendar {
  font-family: var(--ff-nunito);
  border-radius: var(--radius-14);
  box-shadow: 0 12px 36px rgba(13, 75, 120, 0.18);
  border: 1px solid var(--columbia-blue);
}

.flatpickr-calendar .flatpickr-day.selected,
.flatpickr-calendar .flatpickr-day.selected:hover {
  background: var(--medium-sea-green);
  border-color: var(--medium-sea-green);
}

.flatpickr-calendar .flatpickr-day:hover {
  background: var(--honey-dew);
}

.flatpickr-calendar .flatpickr-monthDropdown-months,
.flatpickr-calendar .flatpickr-current-month input.cur-year {
  font-family: var(--ff-nunito);
  font-weight: var(--fw-600);
}

.flatpickr-calendar .flatpickr-time input {
  font-size: 1.1rem;
  font-weight: var(--fw-600);
  color: var(--space-cadet);
}

.flatpickr-calendar .flatpickr-time .flatpickr-am-pm {
  display: none;
}

.flatpickr-input[readonly] {
  cursor: pointer;
  background: transparent;
  color: var(--space-cadet);
}

@media (max-width: 480px) {
  #summaryModal {
    padding: 10px;
  }

  #summaryContent {
    max-height: none;
    width: 100%;
    max-width: calc(100vw - 20px);
  }

  #summaryTitle,
  #checkAvailabilityPopUp {
    padding: 12px !important;
  }

  #popupTitle {
    font-size: 0.78em;
  }

  #summaryContent .button-container {
    padding: 10px 12px;
    gap: 8px;
    flex-wrap: wrap;
  }

  #summaryContent .button-container button,
  #summaryContent .button-container .btn {
    max-width: 100%;
    width: 100%;
    flex: 1 1 100%;
  }

  .my-td {
    padding: 8px;
    font-size: 0.82em;
  }

  .checkbox-custom + .checkbox-custom-label {
    font-size: 0.92em;
    gap: 8px;
  }

  .checkbox-custom + .checkbox-custom-label:before {
    width: 24px;
    height: 24px;
    min-width: 24px;
    flex-basis: 24px;
  }
}

@media (max-width: 767px) {
  .header .container {
    gap: 6px;
  }

  .header .logo img {
    height: 34px;
    max-width: 110px;
  }

  .header-actions {
    gap: 4px;
    flex-shrink: 0;
  }

  .header-actions .btn {
    --width: 32px;
    --height: 32px;
    border-radius: 10px;
  }

  .header-actions .contact-time {
    display: none;
  }

  .dropdown-content {
    position: static;
    min-width: 100%;
    box-shadow: none;
    border: none;
    border-top: none;
    border-radius: 0;
    border-left: 2px solid var(--medium-sea-green);
    background: rgba(13, 75, 120, 0.04);
    padding: 4px 0 4px 10px;
    margin-top: 4px;
    opacity: 1;
    pointer-events: all;
    transform: none;
    backdrop-filter: none;
  }

  .dropdown-content a {
    line-height: 1.8;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {

  .header .logo img {
    height: 28px;
    max-width: 90px;
  }

  .header-actions {
    gap: 3px;
    flex-shrink: 0;
  }

  .header-actions .btn {
    --width: 30px;
    --height: 30px;
    border-radius: 8px;
    padding: 0;
  }

  .header-actions .btn span[height] {
    height: 20px !important;
    width: 20px !important;
  }

  .header-actions .contact-time {
    display: none;
  }
}

/*-----------------------------------*\
   #PRIVATE CUSTOMER PAGE (particulier.html)
\*-----------------------------------*/

.private-hero-copy {
  background: var(--alice-blue-1);
  padding-block: 40px;
  text-align: center;
}

.private-eyebrow {
  color: var(--medium-sea-green);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.private-title {
  color: var(--space-cadet);
  font-size: var(--fs-1);
  font-weight: var(--fw-600);
  margin-bottom: 20px;
  line-height: 1.3;
}

.private-subtitle {
  color: var(--independence);
  font-size: var(--fs-5);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.private-quick-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.private-chip {
  background: var(--medium-sea-green);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
}

.private-offers {
  background: var(--alice-blue-1);
  padding-block: 50px;
}

.private-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 30px;
}

.private-offer-card {
  background: var(--white);
  border: 2px solid var(--medium-sea-green);
  border-radius: var(--radius-18);
  padding: 30px;
  box-shadow: var(--shadow-1);
  transition: var(--transition);
  position: relative;
}

.private-offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 146, 91, 0.2);
}

.private-offer-card.popular {
  transform: scale(1.02);
  border-color: var(--carolina-blue);
  box-shadow: 0 8px 24px rgba(0, 146, 91, 0.3);
}

.private-offer-card .private-badge {
  position: absolute;
  top: -12px;
  left: 30px;
  background: var(--medium-sea-green);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 12px;
  font-weight: var(--fw-600);
  font-size: var(--fs-6);
}

.private-offer-card h3 {
  color: var(--space-cadet);
  font-size: var(--fs-3);
  margin: 20px 0 15px;
}

.private-offer-card p {
  color: var(--independence);
  margin-bottom: 20px;
  line-height: 1.6;
}

.private-offer-card ul {
  list-style: none;
  padding: 0;
}

.private-offer-card ul li {
  color: var(--independence);
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.5;
}

.private-offer-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--medium-sea-green);
  font-weight: bold;
}

.private-journey {
  background: var(--alice-blue-1);
  padding-block: 50px;
}

.private-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

.private-step {
  text-align: center;
}

.private-step span {
  background: var(--medium-sea-green);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-2);
  font-weight: var(--fw-600);
  margin: 0 auto 20px;
}

.private-step h3 {
  color: var(--space-cadet);
  font-size: var(--fs-4);
  margin-bottom: 15px;
}

.private-step p {
  color: var(--independence);
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

.private-cta {
  background: linear-gradient(135deg, var(--medium-sea-green), var(--carolina-blue));
  color: var(--white);
  padding-block: 60px;
}

.private-cta-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.private-cta-box h2 {
  color: var(--white);
  font-size: var(--fs-1);
  margin-bottom: 20px;
}

.private-cta-box p {
  color: hsla(0, 0%, 100%, 0.8);
  font-size: var(--fs-5);
  margin-bottom: 30px;
  line-height: 1.6;
}

.private-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
}

.private-cta-actions a {
  --background: var(--white);
  --color: var(--medium-sea-green);
  --height: 48px;
  font-weight: var(--fw-600);
}

/*-----------------------------------*\
   #FAQ PAGE (faq.html)
\*-----------------------------------*/

.faq-hero {
  background: linear-gradient(135deg, var(--medium-sea-green), var(--carolina-blue));
  color: var(--white);
  padding-block: 60px;
  text-align: center;
}

.faq-hero-card {
  max-width: 700px;
  margin: 0 auto;
}

.faq-eyebrow {
  color: var(--medium-sea-green);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.faq-title {
  color: var(--white);
  font-size: var(--fs-1);
  font-weight: var(--fw-600);
  margin-bottom: 20px;
  line-height: 1.3;
}

.faq-subtitle {
  color: hsla(0, 0%, 100%, 0.85);
  font-size: var(--fs-5);
  line-height: 1.6;
  margin-bottom: 30px;
}

.faq-chip-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.faq-chip {
  background: hsla(0, 0%, 100%, 0.2);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  border: 1px solid hsla(0, 0%, 100%, 0.4);
}

.faq-content {
  background: var(--alice-blue-1);
  padding-block: 50px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.faq-column {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-18);
  box-shadow: var(--shadow-1);
}

.faq-column h2 {
  color: var(--medium-sea-green);
  font-size: var(--fs-3);
  margin-bottom: 25px;
  border-bottom: 3px solid var(--medium-sea-green);
  padding-bottom: 15px;
}

.faq-item {
  border-bottom: 1px solid hsla(0, 0%, 0%, 0.1);
  padding: 20px 0;
}

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

.faq-item summary {
  color: var(--space-cadet);
  font-weight: var(--fw-600);
  cursor: pointer;
  padding: 10px 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-item summary:hover {
  color: var(--medium-sea-green);
}

.faq-item summary::marker {
  color: var(--medium-sea-green);
}

.faq-item p {
  color: var(--independence);
  line-height: 1.7;
  margin-top: 15px;
  padding-left: 20px;
}

.faq-grid-bottom {
  margin-top: 0;
}

/*-----------------------------------*\
   #BLOG PAGE (blog.html)
\*-----------------------------------*/

.blog-page-hero {
  background: linear-gradient(135deg, var(--medium-sea-green), var(--carolina-blue));
  color: var(--white);
  text-align: center;
  padding-block: 70px;
}

.blog-eyebrow {
  color: hsla(0, 0%, 100%, 0.86);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.blog-main-title {
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.25;
}

.blog-main-subtitle {
  max-width: 820px;
  margin: 0 auto;
  color: hsla(0, 0%, 100%, 0.9);
  font-size: var(--fs-5);
  line-height: 1.7;
}

.blog-chip-list {
  margin-top: 26px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.blog-chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid hsla(0, 0%, 100%, 0.38);
  background: hsla(0, 0%, 100%, 0.16);
  color: var(--white);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
}

.blog-page-topics {
  background: var(--alice-blue-1);
  padding-block: 55px;
}

.blog-topic-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.blog-topic-card {
  background: var(--white);
  border: 1px solid hsla(204, 91%, 53%, 0.15);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(13, 75, 120, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.blog-topic-card:hover {
  transform: translateY(-6px);
  border-color: hsla(152, 63%, 43%, 0.4);
  box-shadow: 0 16px 30px rgba(13, 75, 120, 0.16);
}

.blog-topic-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: hsla(152, 63%, 43%, 0.13);
  color: var(--medium-sea-green);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
}

.blog-topic-card h3 {
  color: var(--space-cadet);
  font-size: var(--fs-4);
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-topic-card p {
  color: var(--independence);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-read-link {
  color: var(--carolina-blue);
  font-weight: var(--fw-600);
}

.blog-read-link:hover,
.blog-read-link:focus {
  color: var(--medium-sea-green);
}

.blog-article-section {
  background: var(--alice-blue-1);
  padding-block: 16px;
}

.blog-article-card {
  background: var(--white);
  border: 1px solid hsla(204, 91%, 53%, 0.15);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(13, 75, 120, 0.08);
}

.blog-article-card h2 {
  color: var(--space-cadet);
  font-size: var(--fs-2);
  margin-bottom: 14px;
}

.blog-article-card p {
  color: var(--independence);
  line-height: 1.8;
  margin-bottom: 14px;
}

.blog-tip-box,
.blog-highlight-box,
.blog-checklist {
  margin-top: 18px;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid hsla(204, 91%, 53%, 0.2);
  background: linear-gradient(135deg, hsla(216, 75%, 97%, 0.95), hsla(216, 38%, 95%, 0.9));
}

.blog-tip-box strong,
.blog-highlight-box h3,
.blog-checklist h3 {
  color: var(--space-cadet);
  display: block;
  margin-bottom: 8px;
}

.blog-checklist ul {
  margin: 0;
  padding-left: 18px;
}

.blog-checklist li {
  color: var(--independence);
  margin-bottom: 8px;
}

.blog-cta-section {
  background: linear-gradient(135deg, var(--medium-sea-green), var(--carolina-blue));
  color: var(--white);
  margin-top: 25px;
}

.blog-cta-box {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.blog-cta-box h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.blog-cta-box p {
  color: hsla(0, 0%, 100%, 0.88);
  margin-bottom: 24px;
  line-height: 1.7;
}

.blog-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.blog-cta-actions .btn {
  --background: var(--white);
  --color: var(--medium-sea-green);
  --height: 48px;
  font-weight: var(--fw-600);
}

@media (min-width: 768px) {
  .blog-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-cta-actions {
    flex-direction: row;
  }

  .blog-cta-actions .btn {
    min-width: 230px;
  }
}

/*-----------------------------------*\
   #BLOG ARTICLE ELEMENTS
\*-----------------------------------*/

.blog-article-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.blog-article-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--carolina-blue), var(--medium-sea-green));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(13, 75, 120, 0.22);
}

.blog-article-icon .iconify {
  font-size: 30px;
  color: var(--white);
}

.blog-article-alt {
  background: var(--white);
}

.blog-article-compare {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}

.blog-compare-col {
  flex: 1;
  background: linear-gradient(135deg, hsla(216, 75%, 97%, 0.95), hsla(216, 38%, 95%, 0.9));
  border: 1px solid hsla(204, 91%, 53%, 0.2);
  border-radius: 14px;
  padding: 20px;
}

.blog-compare-col h3 {
  color: var(--space-cadet);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  margin-bottom: 12px;
}

.blog-compare-col ul {
  padding-left: 18px;
  margin: 0;
}

.blog-compare-col li {
  color: var(--independence);
  margin-bottom: 8px;
  line-height: 1.6;
}

.blog-food-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.blog-food-item {
  background: linear-gradient(135deg, hsla(216, 75%, 97%, 0.95), hsla(216, 38%, 95%, 0.9));
  border: 1px solid hsla(204, 91%, 53%, 0.2);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
}

.blog-food-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 10px;
}

.blog-food-item h3 {
  color: var(--space-cadet);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  margin-bottom: 8px;
}

.blog-food-item p {
  color: var(--independence);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 0;
}

.blog-infraction-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  font-size: 14px;
  border-radius: 12px;
  overflow: hidden;
}

.blog-infraction-table th {
  background: linear-gradient(90deg, var(--carolina-blue), var(--medium-sea-green));
  color: var(--white);
  padding: 11px 14px;
  text-align: left;
  font-weight: var(--fw-600);
}

.blog-infraction-table td {
  padding: 10px 14px;
  border-bottom: 1px solid hsla(204, 91%, 53%, 0.15);
  color: var(--independence);
  line-height: 1.5;
  vertical-align: top;
}

.blog-infraction-table tr:nth-child(even) td {
  background: hsla(216, 75%, 97%, 0.6);
}

@media (min-width: 576px) {
  .blog-article-compare {
    flex-direction: row;
  }

  .blog-food-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*-----------------------------------*\
   #VTC PAGE (vtc.html)
\*-----------------------------------*/

.vtc-hero-copy {
  background: var(--alice-blue-1);
  padding-block: 40px;
  text-align: center;
}

.vtc-eyebrow {
  color: var(--medium-sea-green);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.vtc-title {
  color: var(--space-cadet);
  font-size: var(--fs-1);
  font-weight: var(--fw-600);
  margin-bottom: 20px;
  line-height: 1.3;
}

.vtc-subtitle {
  color: var(--independence);
  font-size: var(--fs-5);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.vtc-chip-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.vtc-chip {
  background: var(--carolina-blue);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
}

.vtc-offers {
  background: var(--alice-blue-1);
  padding-block: 50px;
}

.vtc-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 30px;
}

.vtc-offer-card {
  background: var(--white);
  border: 2px solid var(--carolina-blue);
  border-radius: var(--radius-18);
  padding: 30px;
  box-shadow: var(--shadow-1);
  transition: var(--transition);
  position: relative;
}

.vtc-offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(52, 152, 219, 0.2);
}

.vtc-offer-card.vtc-highlight {
  transform: scale(1.02);
  border-color: var(--medium-sea-green);
  box-shadow: 0 8px 24px rgba(52, 152, 219, 0.3);
}

.vtc-offer-card .vtc-badge {
  position: absolute;
  top: -12px;
  left: 30px;
  background: var(--carolina-blue);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 12px;
  font-weight: var(--fw-600);
  font-size: var(--fs-6);
}

.vtc-offer-card h3 {
  color: var(--space-cadet);
  font-size: var(--fs-3);
  margin: 20px 0 15px;
}

.vtc-offer-card p {
  color: var(--independence);
  margin-bottom: 20px;
  line-height: 1.6;
}

.vtc-offer-card ul {
  list-style: none;
  padding: 0;
}

.vtc-offer-card ul li {
  color: var(--independence);
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.5;
}

.vtc-offer-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--carolina-blue);
  font-weight: bold;
}

.vtc-how {
  background: var(--alice-blue-1);
  padding-block: 50px;
}

.vtc-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

.vtc-step {
  text-align: center;
}

.vtc-step span {
  background: var(--carolina-blue);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-2);
  font-weight: var(--fw-600);
  margin: 0 auto 20px;
}

.vtc-step h3 {
  color: var(--space-cadet);
  font-size: var(--fs-4);
  margin-bottom: 15px;
}

.vtc-step p {
  color: var(--independence);
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

.vtc-cases {
  background: var(--gradient);
  padding-block: 50px;
}

.vtc-cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 30px;
}

.vtc-case-item {
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius-18);
  box-shadow: var(--shadow-1);
  border-left: 4px solid var(--carolina-blue);
}

.vtc-case-item h3 {
  color: var(--space-cadet);
  font-size: var(--fs-4);
  margin-bottom: 15px;
}

.vtc-case-item p {
  color: var(--independence);
  line-height: 1.6;
}

.vtc-cta {
  background: linear-gradient(135deg, var(--carolina-blue), var(--medium-sea-green));
  color: var(--white);
  padding-block: 60px;
}

.vtc-cta-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.vtc-cta-box h2 {
  color: var(--white);
  font-size: var(--fs-1);
  margin-bottom: 20px;
}

.vtc-cta-box p {
  color: hsla(0, 0%, 100%, 0.8);
  font-size: var(--fs-5);
  margin-bottom: 30px;
  line-height: 1.6;
}

.vtc-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
}

.vtc-cta-actions a {
  --background: var(--white);
  --color: var(--carolina-blue);
  --height: 48px;
  font-weight: var(--fw-600);
}

/*-----------------------------------*\
   #SERVICE PAGE (entreprise.html) - OFFER CARDS
\*-----------------------------------*/

.service-offers {
  background: var(--alice-blue-1);
  padding-block: 50px;
}

.service-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 30px;
}

.service-offer-card {
  background: var(--white);
  border: 2px solid var(--medium-sea-green);
  border-radius: var(--radius-18);
  padding: 30px;
  box-shadow: var(--shadow-1);
  transition: var(--transition);
  position: relative;
}

.service-offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 146, 91, 0.2);
}

.service-offer-card.popular {
  transform: scale(1.02);
  border-color: var(--carolina-blue);
  box-shadow: 0 8px 24px rgba(0, 146, 91, 0.3);
}

.service-offer-card .service-badge {
  position: absolute;
  top: -12px;
  left: 30px;
  background: var(--medium-sea-green);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 12px;
  font-weight: var(--fw-600);
  font-size: var(--fs-6);
}

.service-offer-card h3 {
  color: var(--space-cadet);
  font-size: var(--fs-3);
  margin: 20px 0 15px;
}

.service-offer-card p {
  color: var(--independence);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-offer-card ul {
  list-style: none;
  padding: 0;
}

.service-offer-card ul li {
  color: var(--independence);
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.5;
}

.service-offer-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--medium-sea-green);
  font-weight: bold;
}

.service-benefits {
  background: var(--alice-blue-1);
  padding-block: 50px;
}

.service-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 30px;
}

.service-benefit-item {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-18);
  box-shadow: var(--shadow-1);
  transition: var(--transition);
  text-align: center;
}

.service-benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 146, 91, 0.15);
}

.service-benefit-item img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.service-benefit-item h3 {
  color: var(--space-cadet);
  font-size: var(--fs-3);
  margin-bottom: 15px;
}

.service-benefit-item p {
  color: var(--independence);
  line-height: 1.6;
}

.service-cta {
  background: linear-gradient(135deg, var(--medium-sea-green), var(--carolina-blue));
  color: var(--white);
  padding-block: 60px;
}

.service-cta-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.service-cta-box h2 {
  color: var(--white);
  font-size: var(--fs-1);
  margin-bottom: 20px;
}

.service-cta-box p {
  color: hsla(0, 0%, 100%, 0.8);
  font-size: var(--fs-5);
  margin-bottom: 30px;
  line-height: 1.6;
}

.service-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
}

.service-cta-actions a {
  --background: var(--white);
  --color: var(--medium-sea-green);
  --height: 48px;
  font-weight: var(--fw-600);
}

/*-----------------------------------*\
   #RESPONSIVE STYLES FOR PAGES
\*-----------------------------------*/

@media (min-width: 768px) {

  .service-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .private-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .private-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .private-cta-actions {
    flex-direction: row;
  }

  .private-cta-actions a {
    max-width: 200px;
    margin: 0 auto;
  }

  .service-cta-actions {
    flex-direction: row;
  }

  .service-cta-actions a {
    max-width: 200px;
    margin: 0 auto;
  }

  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid-bottom {
    grid-template-columns: repeat(2, 1fr);
  }

  .vtc-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .vtc-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .vtc-cases-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .vtc-cta-actions {
    flex-direction: row;
  }

  .vtc-cta-actions a {
    max-width: 200px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .service-offer-card {
    padding: 20px;
  }

  .service-offer-card .service-badge {
    left: 20px;
  }

  .private-chip {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .private-offer-card {
    padding: 20px;
  }

  .private-offer-card .private-badge {
    left: 20px;
  }

  .faq-column {
    padding: 20px;
  }

  .faq-column h2 {
    font-size: var(--fs-4);
  }

  .vtc-chip {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .vtc-offer-card {
    padding: 20px;
  }

  .vtc-offer-card .vtc-badge {
    left: 20px;
  }

  .vtc-case-item {
    padding: 20px 15px;
  }
}

/*-----------------------------------*\
    #CONDITIONS PAGE (conditions.html)
  \*-----------------------------------*/

.get-start {
  background: var(--alice-blue-1);
}

.get-start .section-title {
  color: var(--medium-sea-green);
  font-size: var(--fs-2);
  font-weight: var(--fw-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--medium-sea-green);
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.get-start-list {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 25px;
  margin: 0;
}

.get-start-card {
  background: var(--white);
  padding: 30px;
  border: none;
  border-left: 5px solid var(--medium-sea-green);
  border-radius: var(--radius-14);
  box-shadow: 0 2px 12px rgba(0, 146, 91, 0.08);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 400px;
}

.get-start-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--medium-sea-green), var(--carolina-blue));
  opacity: 0;
  transition: opacity var(--transition);
}

.get-start-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(246, 250, 247, 0.95));
  box-shadow: 0 8px 30px rgba(0, 146, 91, 0.15);
  transform: translateY(-5px);
  border-left-color: var(--carolina-blue);
}

.get-start-card:hover::before {
  opacity: 1;
}

.get-start-card .card-icon {
  background: linear-gradient(135deg, var(--icon-card-bg, var(--columbia-blue)), rgba(52, 152, 219, 0.1));
  color: var(--icon-card-color, var(--carolina-blue));
  height: 60px;
  width: 60px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.12);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.get-start-card:hover .card-icon {
  transform: scale(1.08) rotate(5deg);
}

.get-start-card .card-icon ion-icon {
  font-size: 28px;
  --ionicon-stroke-width: 45px;
}

.get-start-card .card-title {
  color: var(--space-cadet);
  font-family: var(--ff-nunito);
  font-weight: var(--fw-600);
  font-size: var(--fs-4);
  margin-bottom: 15px;
  transition: color var(--transition);
  flex-shrink: 0;
}

.get-start-card:hover .card-title {
  color: var(--medium-sea-green);
}

.get-start-card .card-text {
  color: var(--independence);
  line-height: 1.7;
  font-size: 0.95rem;
  flex-grow: 1;
  overflow-y: auto;
}

/* Styles pour les sections de téléchargement */
.get-start .download-section {
  margin-top: 50px;
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.05), rgba(0, 146, 91, 0.05));
  border-radius: var(--radius-18);
  border: 2px dashed var(--medium-sea-green);
}

.get-start .download-section a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--medium-sea-green), var(--carolina-blue));
  color: var(--white);
  padding: 15px 30px;
  border-radius: var(--radius-14);
  font-weight: var(--fw-600);
  font-size: var(--fs-5);
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(0, 146, 91, 0.2);
  margin-top: 20px;
}

.get-start .download-section a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 146, 91, 0.3);
}

.get-start .download-section a i {
  font-size: var(--fs-3);
}

/* Styles pour les conditions CTA */
.conditions-cta {
  background: linear-gradient(135deg, var(--medium-sea-green), var(--carolina-blue));
  color: var(--white);
  padding-block: 60px;
  margin-top: 60px;
}

.conditions-cta-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.conditions-cta-box h2 {
  color: var(--white);
  font-size: var(--fs-1);
  margin-bottom: 20px;
  font-weight: var(--fw-600);
}

.conditions-cta-box p {
  color: hsla(0, 0%, 100%, 0.85);
  font-size: var(--fs-5);
  margin-bottom: 30px;
  line-height: 1.6;
}

.conditions-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
}

.conditions-cta-actions a {
  --background: var(--white);
  --color: var(--medium-sea-green);
  --height: 48px;
  font-weight: var(--fw-600);
}

/* Responsive pour les conditions */
@media (min-width: 768px) {
  .get-start-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .conditions-cta-actions {
    flex-direction: row;
  }

  .conditions-cta-actions a {
    max-width: 200px;
    margin: 0 auto;
  }
}

@media (min-width: 1200px) {
  .get-start-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .get-start-card {
    border-left: none;
    border-top: 5px solid var(--medium-sea-green);
  }

  .get-start-card:hover {
    border-left: none;
    border-top: 5px solid var(--carolina-blue);
  }
}

@media (max-width: 767px) {
  .get-start .section-title {
    font-size: var(--fs-3);
  }

  .get-start-card {
    padding: 20px;
  }

  .conditions-cta {
    padding-block: 40px;
  }

  .conditions-cta-box h2 {
    font-size: var(--fs-2);
  }

  .get-start .download-section {
    padding: 25px;
    margin-top: 30px;
  }
}

