/* ===== RESET DE BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
:root{--blue:#0A2342;--gold:#F5B700;}

/* ===== HEADER PRO FOUNDWELL ===== */
.header { /* J'AI ENLEVÉ 1 POINT ICI */
  background: var(--blue);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo img { 
  height: 65px;
  width: auto;
}
.navbar ul { 
  display: flex; 
  list-style: none; 
  gap: 30px; 
}
.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: 0.3s;
}
.navbar a:hover { color: var(--gold); }

.header-right { display: flex; align-items: center; gap: 20px; } /* AJOUTÉ */

.social-icons { display: flex; gap: 15px; } /* AJOUTÉ */
.social-icons i { font-size: 22px; color: white; } /* AJOUTÉ */
.social-icons i:hover { color: var(--gold); } /* AJOUTÉ */

.lang-switcher {
  display: flex;
  gap: 8px;
}
.lang-switcher button {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 10px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.3s;
}
.lang-switcher button:hover { 
  background: var(--gold);
  color: var(--blue);
  border-color: var(--gold);
}
.lang-switcher button img {
  width: 22px;
  height: 16px;
} /* J'AI FERMÉ L'ACCOLADE ICI */

.menu-toggle { display: none; color: white; font-size: 28px; cursor: pointer; } /* AJOUTÉ */

/* ===== SLIDER 1920x800 ===== */ /* AJOUTÉ TOUT CE BLOC */
.hero-slider {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  aspect-ratio: 1920 / 800;
  overflow: hidden;
  background: #000;
}
.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide.active { opacity: 1; z-index: 2; }
.overlay {
  position: absolute;
  width: 100%; height: 100%;
  background: rgba(10,35,66,0.55);
  z-index: 1;
}
.prev,.next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 3;
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  font-size: 32px;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 50%;
}
.prev { left: 30px; }
.next { right: 30px; }
.hero-content {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}
.btn { background: var(--gold); color: var(--blue); padding: 18px 45px; text-decoration: none; border-radius: 5px; font-weight: 800; font-size: 20px; display: inline-block; }
.btn-small { background: var(--blue); color: white; padding: 10px 20px; border-radius: 5px; text-decoration: none; font-weight: 700; }

/* ===== SERVICES ===== */ /* AJOUTÉ TOUT CE BLOC */
.section { padding: 60px 0; text-align: center; }
.section-subtitle { color: #666; margin-bottom: 40px; }
.services-list { display: flex; flex-direction: column; gap: 60px; margin-top: 50px; }
.service-row {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 40px;
  align-items: center;
  text-align: left;
}
.service-row.reverse .service-img { order: 2; }
.service-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.service-info h3 { font-size: 28px; color: var(--blue); margin-bottom: 12px; }
.service-info p { font-size: 16px; color: #555; line-height: 1.7; margin-bottom: 20px; }

/* ===== FOOTER PRO ===== */
.footer {
  background: var(--blue);
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: left; } /* AJOUTÉ */
.footer h4 { color: var(--gold); margin-bottom: 15px; } /* AJOUTÉ */
.footer a { color: white; text-decoration: none; display: block; margin-bottom: 10px; } /* MODIFIÉ */
.footer a:hover { color: var(--gold); text-decoration: none; } /* MODIFIÉ */
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.2); padding-top: 20px; margin-top: 20px; text-align: center; } /* AJOUTÉ */
.footer-social { display: flex; gap: 15px; margin-top: 15px; } /* AJOUTÉ */
.footer-social i { font-size: 26px; color: white; } /* AJOUTÉ */
.footer p i { color: var(--gold); margin-right: 8px; } /* AJOUTÉ */

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 30px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 999;
}

/* ===== RESPONSIVE MOBILE ===== */
@media(max-width: 900px){
  .navbar { display: none; flex-direction: column; position: absolute; top: 90px; left: 0; width: 100%; background: var(--blue); padding: 20px; }
  .navbar ul { flex-direction: column; }
  .header-right { display: none; }
  .menu-toggle { display: block; }
  .hero-slider { aspect-ratio: 16 / 9; }
  .btn { padding: 14px 30px; font-size: 16px; }
  .service-row, .service-row.reverse { grid-template-columns: 1fr; }
  .service-row.reverse .service-img { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}


/* SERVICES GRID 3 + 2 */
.services-grid-page { padding: 80px 0; background: #f8f9fa; }
.services-grid-page.page-title { text-align: center; font-size: 42px; color: #003366; margin-bottom: 15px; }
.services-grid-page.page-subtitle { text-align: center; font-size: 18px; color: #666; margin-bottom: 60px; }

.services-grid-layout {
  display: flex;
  flex-wrap: wrap; /* permet de passer à la ligne */
  justify-content: center; /* centre les lignes */
  gap: 35px;
}

.service-box {
  background: #fff;
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: left;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  
  /* LA CLÉ: 3 cartes par ligne sur PC */
  flex: 0 1 calc(33.333% - 24px); /* 33% moins le gap */
  max-width: 400px;
}
.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.service-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}
.service-box h3 {
  color: #003366;
  font-size: 22px;
  margin-bottom: 15px;
  min-height: 55px;
}
.service-box ul {
  list-style: disc;
  padding-left: 20px;
  flex-grow: 1;
  margin-bottom: 25px;
}
.service-box li { margin-bottom: 8px; font-size: 15px; }

.btn {
  display: block;
  width: 100%;
  padding: 12px 25px;
  background: #003366;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  margin-top: auto;
  box-sizing: border-box;
}
.btn:hover { background: #00509e; }


/* TABLETTE: 2 colonnes */
@media(max-width: 992px){
.service-box { flex: 0 1 calc(50% - 18px); }
}

/* MOBILE: 1 colonne */
@media(max-width: 600px){
.service-box { flex: 0 1 100%; }
}



/* ====== ABOUT PAGE - VERSION CLEAN ====== */

/* 1. BANNIERE HERO AVEC IMAGE */
.about-hero {
  background: linear-gradient(rgba(0,51,102,0.85), rgba(0,51,102,0.85)),
              url('images/orlando.png') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.about-hero h1 {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 12px;
}

.about-hero p {
  font-size: 18px;
  opacity: 0.9;
  font-style: italic;
  margin: 0;
}

/* 2. CONTENU PRINCIPAL */
.about-content {
  padding: 80px 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* texte un peu plus large */
  gap: 60px;
  align-items: start;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 3. TEXTE */
.about-text h2 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 25px;
}

.about-text h3 {
  font-size: 15px;
  color: #00509e;
  margin-top: 22px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
}

.about-text p {
  font-size: 16.5px;
  line-height: 1.8;
  margin-bottom: 12px;
  color: #333;
}

/* 4. VALEURS PEGCI */
.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.values-list li {
  font-size: 15.5px;
  line-height: 1.5;
}

.values-list li strong { 
  color: #003366; 
}

/* 5. IMAGE */
.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
  display: block;
}

/* 6. RESPONSIVE MOBILE */
@media(max-width: 992px){
  .about-hero { padding: 70px 20px; }
  .about-hero h1 { font-size: 34px; }
  
  .about-grid { 
    grid-template-columns: 1fr; 
    gap: 40px;
  }
  .about-image { order: -1; } /* image au dessus sur mobile */
  
  .values-list { grid-template-columns: 1fr; }
}


/* ====== FIX GRILLE HOME AVEC VRAIES CLASSES ====== */
.services-icons-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important; /* 5 icônes sur ta capture */
  gap: 25px !important;
  margin-top: 40px !important;
}

.service-icon-box {
  background: var(--blue) !important;
  color: white !important;
  padding: 30px 15px !important;
  text-align: center !important;
  border-radius: 10px !important;
  min-height: 180px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  box-shadow: none !important; /* annule l'ombre de service-box */
  transition: transform 0.3s;
}

.service-icon-box:hover {
  transform: translateY(-5px);
}

.service-icon-box img {
  width: 55px !important;   
  height: 55px !important;
  margin-bottom: 15px !important;
  object-fit: contain !important;
}

.service-icon-box h3 {
  font-size: 16px !important;
  font-weight: 700 !important;
  margin: 0 !important;
  line-height: 1.3;
}

/* Mobile */
@media (max-width: 992px) {
  .services-icons-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 600px) {
  .services-icons-grid { grid-template-columns: repeat(2, 1fr) !important; }
}


/* ====== PAGE CONTACT ====== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-top: 40px;
  align-items: start;
}

.contact-form-box h3, .contact-options h3 {
  color: var(--blue);
  margin-bottom: 20px;
  font-size: 22px;
}

.contact-card {
  display: flex;
  gap: 15px;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  border-left: 4px solid var(--blue);
}

.contact-icon {
  font-size: 28px;
}

.contact-card h4 {
  margin: 0 0 5px 0;
  color: var(--blue);
}

.contact-card p {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: #555;
}

.contact-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: 0.3s;
}

.contact-btn.whatsapp { background: #25D366; color: white; }
.contact-btn.email { background: var(--blue); color: white; }
.contact-btn.phone { background: #333; color: white; }
.contact-btn:hover { opacity: 0.85; transform: translateY(-2px); }
.contact-btn.form { background: var(--gold); color: var(--blue); }



@media (max-width: 768px) {
  .contact-wrapper { grid-template-columns: 1fr; }
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  font-family: inherit;
  font-size: 15px;
}

.contact-form button {
  background: var(--blue);
  color: white;
  padding: 14px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: 0.3s;
}



.contact-btn.form { 
  background: var(--gold); 
  color: var(--blue); 
}
.contact-btn.form:hover {
  background: #e6c200;
}


.contact-btn.form-outline {
  background: white;
  color: var(--blue);
  border: 2px solid var(--blue);
  margin-left: 10px;
}
.contact-btn.form-outline:hover {
  background: var(--blue);
  color: white;
}

/* Pour que les 2 boutons soient côte à côte sur PC */
@media (max-width: 600px) {
  .contact-btn.form-outline { margin-left: 0; margin-top: 10px; display: block; }
}
