/* ====================================== */
/* GLOBAL                                 */
/* ====================================== */
body {
    margin: 0;
    padding: 0;
    background-color: #222222;
    font-family: "Montserrat", sans-serif;
    color: #FFF;
}

a {
    text-decoration: none;
}

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

.navbar {
    width: 100%;
    background: #222222; /* FOND ROUGE */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.navbar .container {
    max-width: 1250px;
    padding: 0 20px;
    margin: auto;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 55px;
}

/* Desktop nav */
.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links li a {
    color: white;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links li a:hover {
    opacity: 0.7;
}

.btn-nav {
    background: rgb(252, 181, 0);
    color: #222222 !important;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
}

/* ============================ */
/* MOBILE */
/* ============================ */

.mobile-menu {
    background: #222222;
    display: none;
    flex-direction: column;
    padding: 20px;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    padding: 12px 0;
    font-size: 18px;
}

.btn-mobile {
    background: white;
    color: #222222 !important;
    padding: 10px 0;
    margin-top: 10px;
    border-radius: 6px;
    font-weight: 700;
}

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

@media(max-width: 900px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}


/* ====================================== */
/* HERO                                    */
/* ====================================== */
.hero {
    background: #222222; /* Rouge premium */
    padding: 120px 5% 80px 5%; /* 120px top pour laisser de l'espace au-dessus */
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: auto;
    flex-wrap: nowrap; /* texte et image restent sur la même ligne */
}

/* TEXTE */
.hero-text {
    flex: 1;
    max-width: 550px;
    color: #fff;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;      
    font-family: "Montserrat", sans-serif;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #f2f2f2;
    font-weight: 400;
}

.hero-btn {
    display: inline-block;
    background: #ffb700;
    color: #222222;
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: 0.3s;
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
}

.hero-btn:hover {
    background: #ff0000;
    color: #000;
}

/* IMAGE */
.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 90%;
    max-width: 1600px;
    object-fit: contain;
    border-radius: 30px;
}

/* RESPONSIVE : IMAGE EN BAS SUR MOBILE */
@media(max-width: 900px) {
    .hero-container {
        flex-direction: column; /* texte en haut, image en bas */
        text-align: center;
    }

    .hero-text {
        order: 1; /* texte reste en haut */
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero-image-wrapper {
        order: 2; /* image descend en bas */
        width: 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-btn {
        font-size: 16px;
        padding: 12px 30px;
    }
}



/* ====================================== */
/* SERVICES                               */
/* ====================================== */

/* Section Container */
.services-section {
    padding: 80px 20px;
    background: #f8f9fc;
    font-family: "Montserrat", sans-serif;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-title {
    font-size: 36px;
    font-weight: 700; /* Montserrat Bold propre */
    font-family: "Montserrat", sans-serif;
    margin-bottom: 60px;
    color: #f60000;
    letter-spacing: -0.3px; /* plus premium */
}


/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Cards */
.service-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    border: 1px solid #eee;  /* plus premium que l’ombre */
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: #ff0000;
}

/* Icons */
.service-card i {
    font-size: 40px;
    color: #ff0000;
    margin-bottom: 20px;
}

/* Titles */
.service-card h3 {
    font-size: 20px;
    font-weight: 700; /* Montserrat Bold */
    margin-bottom: 12px;
    color: #111;
    letter-spacing: -0.2px;
}

/* Text */
.service-card p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    font-weight: 400;
}



/* ====================================== */
/* Pourquoi nous choisir – version icônes  */
/* ====================================== */
.why-choose-section {
    padding: 80px 20px;
    background: #f8f9fc; /* Même fond que la section services */
    color: #000000;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.why-choose-title {
    font-size: 36px;
    font-weight: 700; /* Montserrat Bold propre */
    margin-bottom: 60px;
    color: #FF0000; /* Accent rouge premium */
}

/* Grid Layout simple */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

/* Item unique – icône + texte */
.why-item {
    text-align: center;
}

/* Icones Font Awesome */
.why-item i {
    font-size: 50px;
    color: #FF0000; /* Rouge premium */
    margin-bottom: 20px;
}

/* Titres */
.why-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000000;
}

/* Texte descriptif */
.why-item p {
    font-size: 15px;
    color: #555555; /* Gris foncé pour contraste */
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .why-choose-title {
        font-size: 28px;
    }

    .why-item h3 {
        font-size: 18px;
    }

    .why-item p {
        font-size: 14px;
    }
}





.packs-section {
  padding: 80px 20px;
  background: #f8f9fc;
  text-align: center;
}

.packs-container { max-width:1200px; margin:0 auto; }

.packs-title { 
  font-size:36px; 
  font-weight: 700; /* Montserrat Bold propre */
  margin-bottom:20px; 
  color:#FF0000; }
.packs-subtitle { font-size:18px; margin-bottom:60px; color:#000000; }

.packs-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px,1fr));
  gap:30px;
  margin-bottom:50px;
}

.pack-item {
  background:#ffffff;
  padding:30px 25px;
  border-radius:16px;
  text-align:center;
}

.pack-item.popular { border:3px solid #fd0000fd; }

.pack-item h3 { font-size:22px; font-weight:700; margin-bottom:10px; color:#FF0000; }
.pack-item .price { font-weight:800; font-size:18px; color:#050000; margin-bottom:15px; }

.pack-item ul {
  list-style-type:disc;
  margin:0 0 20px 20px;
  padding:0;
  text-align:left;
  color:#000000;
}
.pack-item ul li { margin-bottom:8px; font-size:15px; }

.pack-cta {
  display:inline-block;
  padding:12px 30px;
  background:#FF0000;
  color:#FFFFFF;
  font-weight:700;
  text-decoration:none;
  border-radius:8px;
  font-size:16px;
}

@media(max-width:768px){
  .packs-title{ font-size:28px; }
  .pack-item h3{ font-size:20px; }
  .pack-item .price{ font-size:16px; }
  .pack-item ul li{ font-size:14px; }
  .pack-cta{ font-size:15px; padding:10px 25px; }
}

/* Modal */
.payment-modal {
  display:none;
  position:fixed;
  z-index:9999;
  left:0; top:0;
  width:100%; height:100%;
  overflow:auto;
  background-color:rgba(0,0,0,0.8);
}

.payment-modal-content {
  background-color:#ffffff;
  margin:5% auto;
  padding:30px 25px;
  border-radius:16px;
  max-width:500px;
  text-align:left;
  position:relative;
}

.payment-modal-content h2 { color:#FF0000; margin-bottom:20px; }
.payment-modal-content p { margin-bottom:10px; font-size:16px; color:#000000; }
.payment-modal-content input, .payment-modal-content select {
  width:100%; padding:10px; margin-bottom:15px;
  border-radius:8px; border:1px solid #ccc;
}

#paymentDetails {
  display: none;
  margin-top: 15px;
  background: #f5f5f5;
  padding: 15px;
  border-radius: 10px;
  color: #000000; /* Texte en noir */
}



.finalize-btn {
  display:inline-block;
  padding:12px 25px;
  background:#FF0000;
  color:#FFFFFF;
  font-weight:700;
  border:none;
  border-radius:8px;
  cursor:pointer;
  font-size:16px;
  width:100%;
}

.close-modal {
  position:absolute;
  top:15px;
  right:20px;
  font-size:28px;
  font-weight:bold;
  color:#FF0000;
  cursor:pointer;
}



/* comment sa marche  */

.process-section {
  padding: 80px 5%;
  text-align: center;
  background: #fdfdfd; /* Fond clair */
}

.process-title {
  font-size: 40px;
  font-weight: 700; /* Montserrat Bold propre */
  margin-bottom: 10px;
  color: #D10000;
}

.process-subtitle {
  font-size: 18px;
  margin-bottom: 50px;
  color: #333;
}

.process-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 25px;
  flex-wrap: wrap;
}

/* ---- CONTENEURS ROUGES ---- */
.process-card {
  width: 260px;
  padding: 30px 25px;
  background: #222222;              /* Rouge */
  border-radius: 20px;
  transition: 0.3s;
  color: #ffffff;                   /* Texte blanc */
  border: none;
}

.process-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.process-card p {
  font-size: 15px;
  color: #f2f2f2;
  line-height: 1.4;
}

/* Icône dans carré blanc */
.process-icon {
  width: 75px;
  height: 75px;
  background: #ffffff;
  border-radius: 20px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-icon svg {
  fill: #fd0000;
}

/* ---- HOVER ---- */
.process-card:hover {
  transform: translateY(-5px);
  background: #ff0000; /* Rouge plus foncé élégant */
}

.process-card:hover .process-icon {
  background: #fff;
}

.process-card:hover .process-icon svg {
  fill: #ff0000;
}

/* Responsive */
@media (max-width: 768px) {
  .process-card {
    width: 90%;
  }
}



/* ====================================== */
/* TESTIMONIALS                            */
/* ====================================== */

.testimonials-section {
  background: #ffffff; /* Fond clair pour détacher la section */
  padding: 80px 20px;
  text-align: center;
}

.testimonials-title {
  font-size: 36px;
  font-weight: 700; /* Montserrat Bold propre */
  color: #FF0000; /* Titre rouge */
  margin-bottom: 15px;
}

.testimonials-subtitle {
  font-size: 18px;
  color: #000000;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-item {
  background: #f8f9fc;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: left;
  position: relative;
}

.quote-icon {
  font-size: 28px;
  color: #FF0000; /* Icône rouge */
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 16px;
  color: #000000;
  margin-bottom: 15px;
}

.testimonial-name {
  font-weight: 700;
  color: #FF0000; /* Nom en rouge pour accent */
}

@media(max-width:768px){
  .testimonials-title{ font-size:28px; }
  .testimonial-text{ font-size:15px; }
  .testimonial-name{ font-size:16px; }
}


/* ====================================== */
/* stat                          */
/* ====================================== */
.stats-section {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.stats-title {
  font-size: 36px;
  font-weight: 700; /* Montserrat Bold propre */
  color: #FF0000;
  margin-bottom: 15px;
}

.stats-subtitle {
  font-size: 18px;
  color: #000000;
  margin-bottom: 50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-items: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-icon {
  font-size: 28px;
  color: #ff0000; /* Icône jaune */
  margin-bottom: 15px;
}

.stat-box {
  background: #FF0000; /* Conteneur rouge */
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  width: 180px; /* même dimension pour tous */
  height: 120px; /* même dimension pour tous */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff; /* chiffre blanc */
  display: block;
  margin-bottom: 8px;
}

.stat-text {
  font-size: 16px;
  color: #ffffff; /* texte blanc */
  font-weight: 500;
  margin: 0;
}

/* Responsive */
@media(max-width:1024px){
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width:768px){
  .stats-grid { grid-template-columns: 1fr; }
  .stats-title { font-size:28px; }
  .stat-number { font-size:28px; }
  .stat-icon { font-size:24px; }
  .stat-text { font-size:16px; }
}



/* partenaire */

.partners-section {
  background: #222222; /* même fond que les stats pour harmonie */
  padding: 80px 20px;
  text-align: center;
}

.partners-title {
  font-size: 36px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.partners-subtitle {
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 50px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  align-items: center;
  justify-items: center;
}
.partner-item img {
  max-width: 150px; /* taille normale des logos */
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease; /* transition fluide */
}

.partner-item img:hover {
  transform: scale(1.4); /* zoom au survol */
}


/* Responsive */
@media(max-width:1024px){
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
}

@media(max-width:768px){
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}



/* ====================================== */
/* assistant                          */
/* ====================================== */

.contact-section {
  width: 100%;
  min-height: 700px;
  background-color: #222222;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  padding: 50px 20px;
  box-sizing: border-box;
}

.contact-wrapper {
  width: 90%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Image */
.contact-image {
  width: 45%;
  max-width: 500px;
  border-radius: 40px;
  object-fit: contain;
}

/* Texte */
.contact-text {
  width: 50%;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;

  /* ➤ Ajustement : remonte le bloc de texte */
  margin-top: -40px; 
}

.contact-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
}

.contact-subtitle {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.contact-btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 700;
  color: #FF0000;
  background-color: #FFFFFF;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: #FFD700;
  color: #000000;
  transform: scale(1.05);
}

/* Responsive Mobile */
@media(max-width: 768px){
  .contact-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .contact-text {
    width: 100%;
    margin-top: 20px;  /* Remet normal sur mobile */
  }

  .contact-image {
    width: 80%;
    margin-bottom: 20px;
  }

  .contact-btn {
    padding: 12px 25px;
    font-size: 16px;
  }
}


/* ====================================== */
/* FAQ                                 */
/* ====================================== */

.faq-section {
background: #ffeded;
padding: 60px 20px;
}


.faq-title {
text-align: center;
font-size: 32px;
font-weight: 700; /* Montserrat Bold propre */
margin-bottom: 40px;
color: #ff0000;
}


.faq-container {
max-width: 900px;
margin: 0 auto;
}


.faq-item {
background: #ff0000;
border-radius: 10px;
margin-bottom: 15px;
overflow: hidden;
}


.faq-question {
width: 100%;
background: #222222;
color: white;
padding: 18px;
border: none;
font-size: 18px;
font-weight: 600;
text-align: left;
cursor: pointer;
}


.faq-answer {
background: white;
padding: 18px;
font-size: 16px;
display: none;
color: #000000;
}



/* ====================================== */
/* FOOTER                                */
/* ====================================== */
/* Footer CSS */
.footer-section {
    background: #222222;
    color: white;
    padding: 60px 20px 20px;
    font-family: 'Montserrat', sans-serif;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-img {
    width: 150px;
    margin-bottom: 10px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.footer-column ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
}

@media screen and (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-logo {
        align-items: center;
    }
}


/* ====================================== */
/* image                 */
/* ====================================== */

/* Section Bénéfices */
.benefits-section {
  background-color: #fff0f0; /* fond clair assorti au site */
  padding: 80px 20px;
}

.benefits-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  gap: 40px;
}

.benefits-image {
  flex: 1 1 400px;
  text-align: center;
}

.benefits-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.benefits-text {
  flex: 1 1 400px;
  padding: 0 20px; /* espace intérieur pour éviter que le texte touche les bords */
  box-sizing: border-box;
}

.benefits-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: #b80000; /* rouge site */
  margin-bottom: 20px;
}

.benefits-detail {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000; /* texte lisible noir */
  margin-bottom: 15px;
  line-height: 1.6; /* meilleur espacement */
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.benefits-list li {
  font-size: 18px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
  color: #000;
}

.benefits-list li::before {
  content: '✔';
  color: #b80000; /* icône rouge */
  position: absolute;
  left: 0;
  top: 0;
}

.benefits-cta {
  display: inline-block;
  background-color: #b80000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.benefits-cta:hover {
  background-color: #ffd700; /* jaune site */
  color: #000;
}

/* Responsive */
@media (max-width: 991px) {
  .benefits-container {
    flex-direction: column;
  }

  .benefits-image, .benefits-text {
    flex: 1 1 100%;
  }

  .benefits-text {
    padding: 0 10px; /* padding réduit pour mobile */
  }

  .benefits-title {
    text-align: center;
  }

  .benefits-cta {
    display: block;
    text-align: center;
    margin: 0 auto;
  }
}


/* PORTFOLIO*/

/* Portfolio layout */
.portfolio-section {
  padding: 60px 20px;
  text-align: center;
}

.portfolio-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.portfolio-subtitle {
  font-size: 16px;
  margin-bottom: 40px;
}

/* Catégories */
.portfolio-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.category-btn {
  padding: 10px 18px;
  background: #eee;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
}

.category-btn.active,
.category-btn:hover {
  background: #000;
  color: #fff;
}

/* GRID IMAGES */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* IMAGE CONTAINER (carré) */
.portfolio-item {
  width: 100%;
  aspect-ratio: 1 / 1; /* carré parfait */
  background: #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* IMAGE */
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* très important → pas de coupe */
}

/* TABLETTE */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}



/* ====================================== */
/* SECTION IMAGE ET TEXTE A COTE  */
/* ====================================== */


.services-power {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 40px 0;
}

.card {
    background: #ff0000;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.18);
}

.card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 18px;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.benefits, .objection, .need {
    background: #222222;
    padding: 12px;
    border-left: 4px solid #ff9900;
    border-radius: 6px;
    margin-bottom: 12px;
    font-size: 15px;
}





/* SECTION SHOW REEL */


.showreel-section {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 60px 20px;
    flex-wrap: wrap;
    background: #222222;
}

.showreel-content {
    flex: 1;
    min-width: 320px;
}

.showreel-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.showreel-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.showreel-content .benefits,
.showreel-content .objection,
.showreel-content .need {
    background: #ff0000;
    border-left: 5px solid #ffa200;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 16px;
}

.showreel-content .btn.primary {
    display: inline-block;
    padding: 12px 25px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s ease;
}

.showreel-content .btn.primary:hover {
    background: #0056b3;
}

.showreel-video {
    flex: 1;
    min-width: 320px;
}

.showreel-video video {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
