/* ============================================
   ADS4CAR - CUSTOM CSS
   Design Philosophy: Charte Graphique Rouge & Moderne
   ============================================ */

:root {
  /* Mode Sombre (par défaut) */
  --primary-color: #dc2626;
  --primary-dark: #991b1b;
  --primary-light: #ef4444;
  --bg-dark: #0f172a;
  --bg-secondary: #1e293b;
  --text-light: #ffffff;
  --text-muted: #fcfcfc;
  --border-color: #334155;
  --accent-color: #dc2626;
  --bg-hover: rgba(30, 41, 59, 0.6);
  --bg-hover-secondary: rgba(30, 41, 59, 0.9);
}

/* Mode Clair */
:root[data-theme="light"] {
  --primary-color: #dc2626;
  --primary-dark: #991b1b;
  --primary-light: #ef4444;
  --bg-dark: #0f172a;
  --bg-secondary: #f8fafc;
  --text-light: #ffffff;
  --text-muted: #fcfcfc;
  --border-color: #cbd5e1;
  --accent-color: #dc2626;
  --bg-hover: rgba(248, 250, 252, 0.8);
  --bg-hover-secondary: rgba(248, 250, 252, 0.95);
}



* {
  font-family: "Poppins", sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  transition: all 0.3s ease;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar-glass {
  background-color: #0f172a !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(51, 65, 85, 0.3);
  transition: all 0.3s ease;
}

.navbar-glass:hover {
  background: rgba(15, 23, 42, 0.95) !important;
}



.logo-navbar {
  height: 40px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.logo-navbar:hover {
  transform: scale(1.05);
}

.brand-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: 1px;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

#themeToggle {
  transition: all 0.3s ease;
}

#themeToggle:hover {
  transform: rotate(20deg);
}

/* ============================================
HERO SECTION WITH CAROUSEL
   ============================================ */
      .hero-pro-slider {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.hero-pro-slider .row {
  align-items: stretch;
}

.hero-pro-slider .carousel,
.hero-pro-slider .carousel-inner,
.hero-pro-slider .carousel-item,
.hero-pro-slider .slide-wrapper {
  height: 100%;
}

.hero-pro-slider .slide-wrapper {
  position: relative;
  min-height: 320px;
  height: 72vh;
  max-height: 760px;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
}

.hero-pro-slider .slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.hero-pro-slider .carousel-item.active .slide-img {
  transform: scale(1);
}

.hero-pro-slider .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 10%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 1;
}

.hero-pro-slider .slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  color: #fff;
}

.hero-pro-slider .slide-content h1 {
  font-size: clamp(1.8rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  max-width: 900px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.hero-pro-slider .slide-content p {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-pro-slider .slide-content .btn {
  padding: 0.85rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(220, 53, 69, 0.25);
}

.hero-pro-slider .carousel-control-prev,
.hero-pro-slider .carousel-control-next {
  width: 56px;
  opacity: 1;
}

.hero-pro-slider .carousel-control-prev-icon,
.hero-pro-slider .carousel-control-next-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.45);
  background-size: 45% 45%;
  backdrop-filter: blur(4px);
}

.hero-pro-slider .side-img {
  height: calc(36vh - 0.25rem);
  min-height: 155px;
  overflow: hidden;
  border-radius: 18px;
  background: #f4f4f4;
}

.hero-pro-slider .side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.hero-pro-slider .side-img:hover img {
  transform: scale(1.04);
}

/* Tablet */
@media (max-width: 991.98px) {
  .hero-pro-slider .slide-wrapper {
    height: 58vh;
    min-height: 300px;
  }

  .hero-pro-slider .side-img {
    height: 240px;
  }

  .hero-pro-slider .slide-content {
    padding: 1.5rem;
  }

  .hero-pro-slider .slide-content h1 {
    font-size: clamp(1.6rem, 5vw, 2.8rem);
  }

  .hero-pro-slider .slide-content p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .hero-pro-slider .slide-wrapper {
    height: 48vh;
    min-height: 260px;
    border-radius: 14px;
  }

  .hero-pro-slider .slide-content {
    justify-content: end;
    padding: 1.25rem;
    padding-bottom: 2rem;
  }

  .hero-pro-slider .slide-content h1 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .hero-pro-slider .slide-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .hero-pro-slider .slide-content .btn {
    width: auto;
    min-width: 140px;
    padding: 0.75rem 1.4rem;
    font-size: 0.95rem;
  }

  .hero-pro-slider .carousel-control-prev,
  .hero-pro-slider .carousel-control-next {
    width: 42px;
  }

  .hero-pro-slider .carousel-control-prev-icon,
  .hero-pro-slider .carousel-control-next-icon {
    width: 34px;
    height: 34px;
  }

  .hero-pro-slider .side-img {
    height: 180px;
    border-radius: 14px;
  }
}

/* Small mobile */
@media (max-width: 575.98px) {
  .hero-pro-slider .slide-wrapper {
    height: 42vh;
    min-height: 240px;
  }

  .hero-pro-slider .slide-content h1 {
    font-size: 1.25rem;
  }

  .hero-pro-slider .slide-content p {
    font-size: 0.9rem;
  }

  .hero-pro-slider .side-img {
    height: 150px;
  }
}
   
   
   
   
   
  /* ============================================ */

.slide-content {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

@media (max-width: 576px) {
  .carousel-indicators {
    display: none;
  }
}

@media (max-width: 768px) {
  .carousel-content h1 {
    font-size: 1.8rem;
  }

  .carousel-content p {
    font-size: 1rem;
  }
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9) 0%,
    rgba(30, 41, 59, 0.8) 100%
  );
}

:root[data-theme="light"] .hero-section {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(248, 250, 252, 0.9) 100%
  );
}

 Carousel Styles 
#heroCarousel {
  height: 100%;
}

.carousel-inner {
  height: 100%;
}

.carousel-item {
  height: 100vh;
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.carousel-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  color: white;
  animation: fadeInUp 1s ease-out;
}

.carousel-content h1 {
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-content .lead {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

 Carousel Indicators 
.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.carousel-indicators button {
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 8px;
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  background-color: #dc2626;
  width: 30px;
  border-radius: 6px;
}

 Carousel Controls 
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 30px;
  height: 30px;
}

 Carousel Fade Effect 
.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("https://images.unsplash.com/photo-1552820728-8ac41f1ce891?w=1200&h=800&fit=crop");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

.hero-section h1 {
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

:root[data-theme="light"] .hero-section h1 {
  -webkit-text-fill-color: #dc2626;
  color: #dc2626;
}

.hero-section .lead {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 30px;
  opacity: 0.9;
}

/* slide branding models */
/* ===================================== */

.hero-main-title {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: white;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.carousel-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
/* ==================================== */
 /*slide branding models */

 /*HERO PRO SLIDER */

.hero-pro-slider .slide-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.hero-pro-slider .row {
  display: flex;
}

.hero-pro-slider .col-lg-8,
.hero-pro-slider .col-lg-4 {
  display: flex;
  flex-direction: column;
}

#heroCarousel {
  height: 520px;
  border-radius: 14px;
  overflow: hidden;
}

.slide-wrapper {
  height: 100%;
}

.slide-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.8s ease;
  overflow: hidden;
}

 Zoom effect 
.carousel-item.active .slide-img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
}

.slide-content h1 {
  font-size: 42px;
  font-weight: 800;
}

.side-img {
  overflow: hidden;
  border-radius: 14px;
}

.side-img img {
  width: 100%;
  height: 254px;
  object-fit: cover;
  transition: 0.4s;
}

.side-img:hover img {
  transform: scale(1.07);
}
 /*END SLIDER PRO */

/* ============================================
   SECTIONS
   ============================================ */

section {
  transition: all 0.3s ease;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
  border-radius: 2px;
}
/*============================================= */

/*============================================= */
/* ============================================
   CONCEPT CARDS
   ============================================ */

.concept-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.concept-card:nth-child(1) {
  animation-delay: 0.1s;
}
.concept-card:nth-child(2) {
  animation-delay: 0.2s;
}
.concept-card:nth-child(3) {
  animation-delay: 0.3s;
}

.concept-card:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: #dc2626;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

:root[data-theme="light"] .concept-card {
  background: rgba(248, 250, 252, 0.6);
  border: 1px solid rgba(220, 38, 38, 0.2);
}

:root[data-theme="light"] .concept-card:hover {
  background: rgba(248, 250, 252, 0.95);
  border-color: #dc2626;
}

.concept-icon {
  font-size: 3rem;
  color: #dc2626;
  margin-bottom: 20px;
}

.concept-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-light);
}

.concept-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   ADS EXAMPLES
   ============================================ */

.ads-example-card {
  background: var(--bg-secondary);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.ads-example-card:nth-child(1) {
  animation-delay: 0.1s;
}
.ads-example-card:nth-child(2) {
  animation-delay: 0.2s;
}
.ads-example-card:nth-child(3) {
  animation-delay: 0.3s;
}

.ads-example-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.ads-example-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.ads-example-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ads-example-card:hover .ads-example-image img {
  transform: scale(1.1);
}

.ads-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ads-example-card:hover .ads-overlay {
  opacity: 1;
}

.ads-badge {
  background: #dc2626;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

.ads-example-content {
  padding: 20px;
}

.ads-example-content h4 {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-light);
}

.ads-example-content p {
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   OPTIONS CARDS
   ============================================ */

.option-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 15px;
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.option-card:nth-child(1) {
  animation-delay: 0.1s;
}
.option-card:nth-child(2) {
  animation-delay: 0.2s;
}
.option-card:nth-child(3) {
  animation-delay: 0.3s;
}

.option-card:hover {
  transform: translateY(-10px);
  border-color: #dc2626;
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.option-card.featured {
  border: 2px solid #dc2626;
  transform: scale(1.05);
}

.option-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.option-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #dc2626;
  color: white;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.option-badge.featured-badge {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.option-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-light);
}

.option-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 30px;
}

.option-price .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #dc2626;
}

.option-price .period {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.option-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.option-features li {
  padding: 10px 0;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.option-features i {
  color: #dc2626;
  font-size: 1.1rem;
}

/* ============================================
   BENEFITS
   ============================================ */

.benefit-item {
  background: var(--bg-secondary);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.benefit-item:nth-child(1) {
  animation-delay: 0.1s;
}
.benefit-item:nth-child(2) {
  animation-delay: 0.2s;
}
.benefit-item:nth-child(3) {
  animation-delay: 0.3s;
}
.benefit-item:nth-child(4) {
  animation-delay: 0.4s;
}
.benefit-item:nth-child(5) {
  animation-delay: 0.5s;
}
.benefit-item:nth-child(6) {
  animation-delay: 0.6s;
}

.benefit-item:hover {
  transform: translateY(-10px);
  border-color: #dc2626;
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.benefit-icon {
  font-size: 2.5rem;
  color: #dc2626;
  margin-bottom: 15px;
}

.benefit-item h4 {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-light);
}

.benefit-item p {
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  padding: 60px 0;
  margin: 60px 0;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
}

.cta-section p {
  margin: 0;
}

/* ============================================
   CONTACT CARDS
   ============================================ */

.contact-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.contact-card:nth-child(1) {
  animation-delay: 0.1s;
}
.contact-card:nth-child(2) {
  animation-delay: 0.2s;
}
.contact-card:nth-child(3) {
  animation-delay: 0.3s;
}
.contact-card:nth-child(4) {
  animation-delay: 0.4s;
}

.contact-card:hover {
  transform: translateY(-10px);
  border-color: #dc2626;
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.contact-icon {
  font-size: 2rem;
  color: #dc2626;
  margin-bottom: 15px;
}

.contact-card h4 {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-light);
}

.contact-card p {
  color: var(--text-muted);
  margin: 0;
}

.contact-card a {
  color: #dc2626;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(220, 38, 38, 0.2);
  padding: 40px 0 20px;
  margin-top: 60px;
}

footer h5 {
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 20px;
}

footer p {
  color: var(--text-muted);
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #dc2626;
}

/* ============================================
   MODALS
   ============================================ */

.modal-content {
  background-color: var(--bg-secondary) !important;
  border: 1px solid rgba(220, 38, 38, 0.2) !important;
}

.modal-header {
  border-bottom: 1px solid rgba(220, 38, 38, 0.2) !important;
}

.modal-footer {
  border-top: 1px solid rgba(220, 38, 38, 0.2) !important;
}

.modal-title {
  color: var(--text-light) !important;
  font-weight: 700;
}

:root[data-theme="light"] .modal-content {
  background-color: #f8fafc !important;
  border: 1px solid rgba(220, 38, 38, 0.2) !important;
}

:root[data-theme="light"] .modal-header {
  border-bottom: 1px solid rgba(220, 38, 38, 0.2) !important;
}

:root[data-theme="light"] .modal-footer {
  border-top: 1px solid rgba(220, 38, 38, 0.2) !important;
}

:root[data-theme="light"] .modal-title {
  color: #1e293b !important;
}

/* ============================================
   FORMS
   ============================================ */

.form-control {
  background-color: rgba(30, 41, 59, 0.5) !important;
  border: 1px solid rgba(220, 38, 38, 0.2) !important;
  color: var(--text-light) !important;
  transition: all 0.3s ease;
}

.form-control:focus {
  background-color: rgba(30, 41, 59, 0.8) !important;
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
  color: var(--text-light) !important;
}

.form-select {
  background-color: rgba(30, 41, 59, 0.5) !important;
  border: 1px solid rgba(220, 38, 38, 0.2) !important;
  color: var(--text-light) !important;
}

.form-select:focus {
  background-color: rgba(30, 41, 59, 0.8) !important;
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
  color: var(--text-light) !important;
}

.form-label {
  color: var(--text-light);
  font-weight: 600;
}

.form-check-label {
  color: var(--text-light);
}

:root[data-theme="light"] .form-control {
  background-color: #f8fafc !important;
  border: 1px solid #cbd5e1 !important;
  color: #1e293b !important;
}

:root[data-theme="light"] .form-control:focus {
  background-color: #ffffff !important;
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
  color: #1e293b !important;
}

:root[data-theme="light"] .form-select {
  background-color: #f8fafc !important;
  border: 1px solid #cbd5e1 !important;
  color: #1e293b !important;
}

:root[data-theme="light"] .form-select:focus {
  background-color: #ffffff !important;
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
  color: #1e293b !important;
}

:root[data-theme="light"] .form-label {
  color: #1e293b;
}

:root[data-theme="light"] .form-check-label {
  color: #1e293b;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-danger {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-danger:hover {
  background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.btn-outline-danger {
  border: 2px solid #dc2626;
  color: #dc2626;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-danger:hover {
  background: #dc2626;
  border-color: #dc2626;
  color: white;
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 2px solid var(--text-light);
  color: var(--text-light);
  font-weight: 600;
  transition: all 0.3s ease;
}



:root[data-theme="light"] .btn-outline-light {
  color: #1e293b !important;
  border-color: #1e293b !important;
}

s
.btn-secondary {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: var(--text-light);
}

.btn-secondary:hover {
  background-color: rgba(30, 41, 59, 0.8);
  border-color: #dc2626;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

/* ============================================
   SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
  width: 10px;
}

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

::-webkit-scrollbar-thumb {
  background: #dc2626;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #991b1b;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .carousel-content h1 {
    font-size: 1.8rem;
  }

  .carousel-content .lead {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .option-card.featured {
    transform: scale(1);
  }

  .option-card.featured:hover {
    transform: scale(1) translateY(-10px);
  }

  .cta-section {
    text-align: center;
  }

  .cta-section .col-lg-4 {
    margin-top: 20px;
  }

  .cta-section .col-lg-4.text-lg-end {
    text-align: center !important;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    min-height: 80vh;
  }

  .carousel-item {
    height: 80vh;
  }

  .hero-section h1 {
    font-size: 1.5rem;
  }

  .carousel-content h1 {
    font-size: 1.3rem;
  }

  .carousel-content .lead {
    font-size: 0.9rem;
  }

  .hero-section .lead {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .concept-card,
  .ads-example-card,
  .option-card,
  .benefit-item,
  .contact-card {
    padding: 20px;
  }

  .option-price .price {
    font-size: 2rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  .btn-lg {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 35px;
    height: 35px;
  }

  .carousel-indicators button {
    width: 10px;
    height: 10px;
    margin: 0 5px;
  }

  .carousel-indicators button.active {
    width: 25px;
  }

  .carousel-content {
    padding: 0 20px;
  }

  .carousel-content .d-flex {
    flex-direction: column;
  }

  .carousel-content .btn {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* ============================================
   ENHANCED MOBILE OPTIMIZATIONS
   ============================================ */

@media (max-width: 576px) {
  /* Additional Mobile Enhancements */

  /* Typography Improvements */
  body {
    font-size: 14px;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  h4 {
    font-size: 1.1rem;
  }

  /* Cards & Sections */
  .form-card,
  .summary-card,
  .benefits-card {
    padding: 15px;
    margin-bottom: 15px;
  }

  /* Button Improvements */
  .btn {
    width: 100%;
    margin-bottom: 10px;
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
  }

  .btn-lg {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    width: 100%;
  }

  .btn-sm {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }

  .d-flex.gap-3 {
    flex-direction: column;
    gap: 0.5rem !important;
  }

  .d-flex.gap-3 .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  /* Navbar Mobile */
  .navbar {
    padding: 0.5rem 0;
  }

  .navbar-brand {
    font-size: 1rem;
  }

  .logo-navbar {
    height: 30px;
  }

  .navbar-toggler {
    padding: 0.25rem 0.5rem;
  }

  /* Form Improvements */
  .form-label {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
  }

  .form-control,
  .form-select {
    font-size: 14px;
    padding: 0.5rem 0.75rem;
  }

  .form-section {
    margin-bottom: 1.5rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  /* Summary Improvements */
  .summary-item {
    margin-bottom: 1rem;
  }

  .summary-item small {
    font-size: 0.75rem;
  }

  .summary-item p {
    font-size: 0.95rem;
  }

  /* Alert Improvements */
  .alert {
    padding: 0.75rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .alert ul {
    margin-bottom: 0;
    padding-left: 1.2rem;
  }

  .alert li {
    margin-bottom: 0.3rem;
  }

  /* Footer Mobile */
  footer {
    padding: 2rem 0 1rem;
  }

  footer h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  footer p {
    font-size: 0.9rem;
  }

  .footer-links li {
    margin-bottom: 0.5rem;
  }

  /* Container Mobile */
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  /* Row & Columns */
  .row.g-4 {
    gap: 1rem;
  }

  .row.g-3 {
    gap: 0.75rem;
  }

  /* Spacing Mobile */
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .mb-5 {
    margin-bottom: 1.5rem !important;
  }

  .mt-5 {
    margin-top: 1.5rem !important;
  }

  /* Breadcrumb Mobile */
  .breadcrumb {
    font-size: 0.85rem;
    padding: 0.5rem 0;
  }

  /* Images Mobile */
  img {
    max-width: 100%;
    height: auto;
  }

  .ads-example-image {
    height: 150px;
  }

  /* Prevent Horizontal Scroll */
  body,
  html {
    overflow-x: hidden;
    max-width: 100vw;
  }

  /* Carousel Mobile Improvements */
  .carousel-indicators {
    bottom: 15px;
  }

  .carousel-indicators button {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }

  .carousel-indicators button.active {
    width: 20px;
  }

  .carousel-content {
    padding: 0 15px;
  }

  .carousel-content h1 {
    margin-bottom: 10px;
  }

  .carousel-content .lead {
    margin-bottom: 15px;
  }

  /* Touch-friendly Elements */
  button,
  a,
  input[type="button"],
  input[type="submit"] {
    min-height: 44px;
    min-width: 44px;
  }

  /* Text Selection */
  .carousel-content {
    user-select: none;
    -webkit-user-select: none;
  }

  /* Viewport Meta */
  @supports (padding: max(0px)) {
    body {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }
  }
}

/* ============================================
   EXTRA SMALL DEVICES (< 360px)
   ============================================ */

@media (max-width: 360px) {
  .carousel-content h1 {
    font-size: 1.1rem;
  }

  .carousel-content .lead {
    font-size: 0.8rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }

  .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 30px;
    height: 30px;
  }
}

/* ============================================
   LANDSCAPE MODE OPTIMIZATION
   ============================================ */

@media (max-height: 500px) and (orientation: landscape) {
  .hero-section,
  .carousel-item {
    min-height: 100vh;
  }

  .carousel-content {
    padding: 1rem;
  }

  .carousel-content h1 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .carousel-content .lead {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }

  .carousel-content .d-flex {
    gap: 0.5rem;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .navbar,
  .carousel-control-prev,
  .carousel-control-next,
  .carousel-indicators,
  #themeToggle,
  .btn,
  footer {
    display: none;
  }

  body {
    background: white;
    color: black;
  }
}

/* ============================================
   SOCIAL SHARE BUTTONS
   ============================================ */

.btn-social {
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  white-space: nowrap;
}

.btn-social:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-social:active {
  transform: translateY(0);
}

/* Facebook Button */
.btn-facebook {
  background-color: #1877f2;
  color: white;
}

.btn-facebook:hover {
  background-color: #0a66c2;
  color: white;
}

/* Twitter Button */
.btn-twitter {
  background-color: #1da1f2;
  color: white;
}

.btn-twitter:hover {
  background-color: #1a8cd8;
  color: white;
}

/* LinkedIn Button */
.btn-linkedin {
  background-color: #0a66c2;
  color: white;
}

.btn-linkedin:hover {
  background-color: #084595;
  color: white;
}

/* Copy Link Button */
.btn-copy {
  background-color: #6366f1;
  color: white;
}

.btn-copy:hover {
  background-color: #4f46e5;
  color: white;
}

/* Responsive Social Share */

/*================*/


/*==================*/











@media (max-width: 768px) {
  .btn-social {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    flex: 1;
    min-width: calc(50% - 0.5rem);
  }
}

@media (max-width: 576px) {
  .btn-social {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
    flex: 1;
    min-width: calc(50% - 0.5rem);
  }

  .btn-social i {
    margin-right: 0.3rem !important;
  }

  .btn-social span {
    display: none;
  }
}
  
  .glow-h2 {
  font-family: sans-serif;
  color: #EC2227; /* Texte blanc */
  /*background-color: #fff;  Fond sombre pour contraste */
  padding: 20px;
  text-align: center;
  /* Effet de brillance (glow) */
  text-shadow: 
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px #00aaff,
    0 0 30px #00aaff,
    0 0 40px #00aaff;
}

  