:root {
  --primary: #2D3561;
  --secondary: #4A5578;
  --dark: #1A1A2E;
  --light: #F5F7FA;
  --white: #FFFFFF;
  --text: #2D3748;
  --text-light: #718096;
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* Navigation */
/* ========================================
   NAVIGATION - VERSION MISE À JOUR
   Identique à site-internet.css
   ======================================== */

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--white);
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.logo-container {
  display: flex;
  align-items: center;
  z-index: 999;
}

.logo-container img {
  height: 85px;
  width: auto;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: var(--primary);
  transition: all 0.3s;
  border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-cta {
  background: #062f66;
  color: white !important;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(45, 53, 97, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(45, 53, 97, 0.4);
  background: #232A4D;
}

/* Dropdown Menu Desktop */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  min-width: 900px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dropdown-column-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}

.dropdown-item {
  padding: 1rem 1.5rem;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s;
  border-radius: 8px;
}

.dropdown-item:hover {
  background: rgba(45, 53, 97, 0.05);
  color: var(--primary);
  transform: translateX(5px);
}

.dropdown-item-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(45, 53, 97, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.dropdown-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.dropdown-item-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
}

.dropdown-item-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
}

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

@media (max-width: 768px) {
  nav {
    padding: 1rem 5%;
  }

  .logo-container img {
    height: 70px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: center;
    padding: 100px 2rem 2rem;
    gap: 0;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  /* Logo dans le menu hamburger (mobile uniquement) */
  .nav-links::before {
    content: '';
    display: block;
    width: 120px;
    height: 80px;
    background-image: url('photo/acceuil/lelogo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 2rem;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links > li > a {
    display: block;
    padding: 1rem 0;
    width: 100%;
    text-align: center;
  }

  .nav-cta {
    margin-top: 1rem;
    text-align: center;
    display: inline-block;
    width: auto;
  }

  /* Dropdown Mobile */
  .dropdown-menu {
    position: static;
    left: auto;
    right: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: auto;
    width: 100%;
    box-shadow: none;
    padding: 0;
    margin: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    background: #F8F9FA;
  }

  .nav-dropdown:hover .dropdown-menu {
    display: none;
  }

  .nav-dropdown.active .dropdown-menu {
    display: grid;
  }

  .dropdown-column {
    padding: 1rem 0;
  }

  .dropdown-column-title {
    font-size: 0.75rem;
    padding: 0 1rem;
    text-align: left;
  }

  .dropdown-item {
    padding: 1rem;
    border-bottom: 1px solid #E9ECEF;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
  }

  .dropdown-item-content {
    text-align: left;
    flex: 1;
  }

  .dropdown-item-title {
    text-align: left;
  }

  .dropdown-item-desc {
    text-align: left;
  }

  .dropdown-item:hover {
    transform: none;
  }

  .nav-links {
    overflow-x: hidden;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown .dropdown-menu {
    position: static !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    display: none;
  }

  .nav-dropdown.active .dropdown-menu {
    display: block;
  }
}

/* Hero Contact */
.hero-contact {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12rem 5% 6rem;
  background: #062f66;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(74, 85, 120, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(45, 53, 97, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  max-width: 800px;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.highlight {
  background: #ffffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.95;
  font-weight: 400;
}

/* Contact Section */
.contact-section {
  padding: 6rem 5%;
  background: var(--light);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Formulaire */
.contact-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-header {
  margin-bottom: 2.5rem;
}

.form-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.form-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem 1.25rem;
  border: 2px solid #E9ECEF;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--text);
  transition: all 0.3s;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(45, 53, 97, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 0.3rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary);
}

.form-checkbox label {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
  cursor: pointer;
}

.btn {
  padding: 1rem 2.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #062f66;
  color: white;
  box-shadow: 0 4px 15px rgba(45, 53, 97, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45, 53, 97, 0.4);
  background: #232A4D;
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
}

.btn-white {
  background: white;
  color: var(--primary);
}

.btn-white:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.5rem;
}

/* Info Cards */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card,
.hours-card,
.social-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-info-card h3,
.hours-card h4,
.social-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(45, 53, 97, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.info-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.info-content a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.info-content a:hover {
  color: #232A4D;
}

.info-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Hours Card */
.hours-card h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #E9ECEF;
}

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

.hours-item span:first-child {
  font-weight: 600;
  color: var(--dark);
}

.hours-item span:last-child {
  color: var(--text-light);
}

/* Social Card */
.social-card h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: #062f66;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}



/* CTA Section */
.cta-section {
  padding: 6rem 5%;
  background: var(--light);
}

.cta-box {
  background: #062f66;
  padding: 4rem;
  border-radius: 30px;
  text-align: center;
  color: white;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(45, 53, 97, 0.3);
}

.cta-box h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-box p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

/* Footer */
.footer {
  background: #062f66;
  color: white;
  padding: 4rem 5% 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-top: 1rem;
}

.footer-section h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 5%;
  }

  .logo-container img {
    height: 70px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.5rem 0;
  }

  .nav-cta {
    margin-top: 1rem;
  }

  .hero-contact {
    padding: 10rem 5% 4rem;
    min-height: 50vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

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

  .contact-section {
    padding: 3rem 5%;
  }

  .contact-grid {
    gap: 2rem;
  }

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }

  .form-header h2 {
    font-size: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info-card,
  .hours-card,
  .social-card {
    padding: 2rem 1.5rem;
  }

  .faq-section {
    padding: 3rem 5%;
  }

  .faq-header h2 {
    font-size: 2rem;
  }

  .faq-question {
    padding: 1.25rem 1.5rem;
  }

  .faq-question h4 {
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 1.5rem 1.5rem;
  }

  .cta-section {
    padding: 3rem 5%;
  }

  .cta-box {
    padding: 2.5rem 1.5rem;
  }

  .cta-box h2 {
    font-size: 1.75rem;
  }

  .cta-box p {
    font-size: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .pricing-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .pricing-card-header {
    padding: 2rem 1.5rem;
  }

  .plan-name {
    font-size: 1.4rem;
  }

  .amount {
    font-size: 3rem;
  }

  .pricing-card-body {
    padding: 2rem 1.5rem;
  }

  .feature-content strong {
    font-size: 0.9rem;
  }

  .feature-desc {
    font-size: 0.8rem;
  }
}
/* Container des icônes sociales */
.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    align-items: center;
}

/* Style pour chaque lien d'icône */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Image à l'intérieur de l'icône */
.social-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

/* Effet hover sur le cercle */
.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Effet hover sur l'image */
.social-icon:hover img {
    transform: scale(1.1);
}

/* Effet de brillance au hover */
.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.social-icon:hover::before {
    left: 100%;
}

/* Variantes de couleurs pour chaque réseau (optionnel) */
.social-icon:nth-child(1):hover {
    /* Instagram - Dégradé rose/violet */
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon:nth-child(2):hover {
    /* Facebook - Bleu */
    background: #1877f2;
}

.social-icon:nth-child(3):hover {
    /* TikTok - Noir */
    background: #000000;
}

.social-icon:nth-child(4):hover {
    /* YouTube - Rouge */
    background: #ff0000;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .footer-social-icons {
        gap: 12px;
        margin-top: 15px;
        justify-content: flex-start;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon img {
        width: 20px;
        height: 20px;
    }
}

/* Extra petit écran */
@media (max-width: 480px) {
    .footer-social-icons {
        gap: 10px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
    }
}
