

 /* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f7fb;
    color: #222;
}


/* HEADER GLOBAL */
.site-header {
    background: linear-gradient(135deg, #071b4d, #0a2a7a);
    padding: 12px 0;
}

.header-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    height: 42px;
    gap: 10px;
}

.header-logo img {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
}

.header-nav {
    display: flex;
    gap: 22px;
}

.header-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

/* OVERRIDE FORMULAIRE (si nÃ©cessaire) */

.site-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;

    line-height: 42px;          /* ðŸ”‘ mÃªme hauteur que le logo */
    display: flex;
    align-items: center;

    white-space: nowrap;
}



/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 10px;
    }

    .header-nav {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ===== FOOTER FINAL PROPRE ===== */

.site-footer a {
    display: block;
}

/* ===== FOOTER GLOBAL â€“ PLEINE LARGEUR ===== */

/* ===== FOOTER FULL WIDTH ===== */
.site-footer {
    width: 100%;
    background: linear-gradient(135deg, #071b4d, #0a2a7a);
    color: #ffffff;
    margin-top: 30px;
    padding: 0;
}

/* ===== CONTENU FOOTER ===== */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 24px;
    display: flex;
    justify-content: space-between;
-   align-items: flex-start;
+   align-items: center;   /* âœ… CENTRAGE VERTICAL */
    gap: 40px;
}


/* Colonnes */
.footer-section {
    flex: 1;
    min-width: 220px;
}

.site-footer h3 {
    margin-bottom: 10px;
    border-bottom: 2px solid #4d7cff;
    display: inline-block;
}

.site-footer p,
.site-footer a {
    font-size: 14px;
    line-height: 1.5;
    color: #d6e4ff;
    margin-bottom: 6px;
    text-decoration: none;
}

.site-footer a:hover {
    color: #ffffff;
}


/* Bas du footer */
.footer-bottom {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* ===== FOOTER â€“ FIX LIENS NAVIGATION ===== */
.site-footer .footer-section a {
    display: block;
    color: #d6e4ff;
    margin-bottom: 6px;
    text-decoration: none;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
}

/* FOOTER BRAND */
.footer-brand {
    display: flex;
    flex-direction: column;      /* ðŸ”‘ logo AU-DESSUS, texte EN DESSOUS */
    align-items: center;         /* ðŸ”‘ centrage horizontal */
    text-align: center;
    gap: 8px;
}

.footer-section.footer-brand {
    align-self: center;   /* âœ… CENTRAGE VERTICAL RÃ‰EL */
}


.footer-brand p {
    margin-top: 4px;
}

/* LOGO FOOTER */
.footer-brand img {
    height: 60px;                /* ajuste si besoin */
    width: auto;
    display: block;
}

/* TEXTE AISSA Ã‰NERGIE */
.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

/* TEXTE DESCRIPTION */
.footer-brand p {
    font-size: 14px;
    color: #dce3ff;
    max-width: 260px;
}


/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }
}

/* ===== PAGE INSCRIPTION ===== */

.section-page {
    padding: 50px 20px; /* avant 80px */
}

.section-page h1 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: #003E9C;
}

/* ===== CONTENEUR PAGE ACCUEIL ===== */
.page-content,
.main-content,
.section-accueil {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}
/* ===== PAGE ACCUEIL ===== */

.page-content {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}

/* HERO */
.section-hero {
    text-align: center;
    margin-bottom: 80px;
}

.section-hero h1 {
    font-size: 38px;
    color: #0a2a7a;
    margin-bottom: 15px;
}

.section-hero p {
    font-size: 18px;
    color: #444;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    background: #0057D8;
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.btn-primary:hover {
    background: #003E9C;
}

/* VIDEO */
.video-section {
    text-align: center;
    margin-bottom: 80px;
}

.video-section h2 {
    font-size: 26px;
    color: #003E9C;
    margin-bottom: 20px;
}

.video-section video {
    width: 100%;
    max-width: 720px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* FEATURES */
.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.feature {
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    font-size: 20px;
    font-weight: 600;
    color: #003E9C;
    min-width: 200px;
}

/* MOBILE */
@media (max-width: 768px) {
    .section-hero h1 {
        font-size: 28px;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }
}
/* ===== POURQUOI AISSA Ã‰NERGIE â€“ BLOG (PC + MOBILE) ===== */

.why-aissa {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.why-aissa h2 {
    text-align: center;
    font-size: 32px;
    color: #003E9C;
    margin-bottom: 50px;
}

/* GRILLE */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* CARTE */
.why-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #003E9C;
}

.why-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}



/* ===== POURQUOI AISSA Ã‰NERGIE â€“ BLOG PC & MOBILE ===== */

.why-aissa .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.why-aissa .why-card {
    display: block !important;
    width: auto !important;
    float: none !important;
}
/* CTA APRES POURQUOI AISSA */
.cta-center {
    text-align: center;
    margin: 70px 0;
}
/* ===== PAGE CONTACT ===== */
.contact-section {
    max-width: 700px;
    margin: 80px auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.contact-section h1 {
    text-align: center;
    color: #003E9C;
    margin-bottom: 15px;
}

.contact-section p {
    text-align: center;
    margin-bottom: 30px;
    color: #555;
}

.contact-form label {
    font-weight: 600;
    margin-top: 18px;
    display: block;
    color: #003E9C;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-size: 15px;
}

.contact-form button {
    margin-top: 30px;
    width: 100%;
}
.contact-section {
    max-width: 700px;
    margin: 60px auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.contact-section h1 {
    text-align: center;
    color: #003E9C;
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-section p {
    text-align: center;
    margin-bottom: 30px;
    color: #555;
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #003E9C;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #cfd8ff;
    font-size: 16px;
    margin-bottom: 20px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    font-size: 18px;
    border-radius: 12px;
}
.contact-section,
.contact-form,
.contact-form input,
.contact-form textarea,
.contact-form button {
    font-family: Arial, sans-serif;
}
 
 /* ===== A PROPOS ===== */
.about-section {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;   /* âœ… AJOUT IMPORTANT */
}

.about-text {
    flex: 1;
}

.about-text h1 {
    font-size: 34px;
    color: #003E9C;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .about-text h1 {
        font-size: 28px;
    }
}

/* TITRES FOOTER */
.site-footer h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    border-bottom: 2px solid #4d7cff;
    display: inline-block;
    padding-bottom: 4px;
}

/* TEXTES */
.site-footer p {
    font-size: 14px;
    color: #e2e8ff;
    line-height: 1.5;
    margin-bottom: 6px;
}

/* LIENS NAVIGATION */
.footer-section a {
    font-size: 14px;
    color: #d6e4ff;
    text-decoration: none;
    display: block;        /* âœ” un lien par ligne */
    margin-bottom: 6px;
}

.footer-section a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* CONTACT (email / tel) */
.site-footer .footer-section span,
.site-footer .footer-section a {
    font-weight: 500;
}
/* ===== FORCE FOOTER FULL WIDTH ===== */
.site-footer {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: linear-gradient(135deg, #071b4d, #0a2a7a);
    color: #fff;
    padding: 0;
}

/* Contenu centrÃ© mais footer Ã©talÃ© */
.site-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 22px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

/* Bas footer */
.site-footer .footer-bottom {
    text-align: center;
    padding: 8px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 13px;
}


.btn.resend{
    background:#ff9800;
    color:#fff;
    padding:6px 10px;
    border-radius:6px;
    font-weight:600;
}
.btn.resend:hover{
    background:#e68900;
}

.admin-table td,
.admin-table a {
    position: relative;
    z-index: 9999 !important;
    pointer-events: auto !important;
}

/* ===== FIX INTERACTION BOUTONS LICENCES ===== */

/* DÃ©sactiver toute couche invisible sur les lignes */
.admin-table tr::before,
.admin-table tr::after {
    display: none !important;
    content: none !important;
}

/* Autoriser les clics dans la cellule Actions */
.admin-table td.actions {
    position: relative;
    z-index: 10;
    pointer-events: auto !important;
}

/* Autoriser les clics sur les boutons */
.admin-table td.actions a {
    pointer-events: auto !important;
    cursor: pointer !important;
}

 /* ===== SECTION VIDEO ===== */
.video-section {
    padding: 80px 20px;
    background: #f7f9ff;
    text-align: center;
}

.video-section h2 {
    font-size: 32px;
    margin-bottom: 35px;
    color: #0a1a4a;
}

/* Conteneur contrÃ´lÃ© */
.video-wrapper {
     max-width: 1400px;    /* ðŸ‘ˆ largeur PRO sur PC */
     margin: 0 auto; 
}

/* VidÃ©o responsive */
.video-wrapper video {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
    background: black;
}

/* ðŸ“± Mobile */
@media (max-width: 768px) {
    .video-wrapper video {
        max-height: 260px;
    }
}

 .admin-link-hidden {
    display: none !important;
}


.btn.unblock {
    background:#0d6efd;
    color:white;
}
.btn.unblock:hover {
    background:#0a58ca;
}

/* Corrige largeur PC */
.iti {
    width: 100%;
}

/* ===== intl-tel-input CLEAN ===== */

.iti { width:100%; }
.iti input { width:100%; height:48px; padding-left:60px; }


.phone-group {
  display: flex;
  gap: 10px;
}

.phone-group select {
  width: 170px;
  height: 48px;
  border: 1px solid #cfd8ea;
  border-radius: 8px;
  padding: 0 10px;
  background: #fff;
  font-size: 14px;
}

.phone-group input {
  flex: 1;
  height: 48px;
  border: 1px solid #cfd8ea;
  border-radius: 8px;
  padding: 0 12px;
  font-size: 15px;
}

/* Mobile */
@media (max-width: 600px) {
  .phone-group {
    flex-direction: column;
  }

  .phone-group select {
    width: 100%;
  }
}


.country-filter {
  width: 100%;
  height: 42px;
  margin-bottom: 8px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #cfd8ea;
}

.phone-group {
  display: flex;
  gap: 10px;
}

.phone-group select,
.phone-group input {
  height: 48px;
  border-radius: 8px;
  border: 1px solid #cfd8ea;
  padding: 0 12px;
}

.phone-group select {
  width: 200px;
}

.phone-group input {
  flex: 1;
}

.error-msg {
  color: #d93025;
  font-size: 13px;
  margin-top: 4px;
}

.phone-error {
    color: #d93025;
    font-size: 13px;
    margin-top: 4px;
    min-height: 16px; /* pour garder la place même sans message */
}

.input-error {
  border: 1px solid #d93025;
}

.input-error {
    border: 1px solid #d93025;
}


/* =======================================
   BLOC FORMULAIRE INSCRIPTION
   ======================================= */
.inscription-wrapper {
    max-width: 520px;          /* largeur de la "carte" */
    margin: 40px auto 60px;    /* centrage + marges haut/bas */
    background: #ffffff;
    padding: 30px 26px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* structure du formulaire */
.form-inscription {
    display: flex;
    flex-direction: column;
}

/* labels des champs */
.form-inscription label {
    display: block;
    margin-top: 14px;
    margin-bottom: 4px;
    font-weight: 600;
    color: #1f2933;
}

/* champs texte + listes */
.form-inscription input,
.form-inscription select {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #cfd8ea;
    font-size: 14px;
    outline: none;
}

/* effet focus propre */
.form-inscription input:focus,
.form-inscription select:focus {
    border-color: #0057D8;
    box-shadow: 0 0 0 2px rgba(0,87,216,0.15);
}

/* bouton principal */
.btn-primary {
    margin-top: 22px;
    width: 100%;
    padding: 12px 18px;
    border: none;
    border-radius: 10px;
    background: #0057D8;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.btn-primary:hover {
    background: #003E9C;
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
}

/* léger ajustement mobile */
@media (max-width: 600px) {
    .inscription-wrapper {
        margin: 20px auto 40px;
        padding: 22px 18px;
        box-shadow: none; /* plus léger sur petit écran */
    }
}


/* HEADER */
.site-header {
  background: linear-gradient(135deg, #071b4d, #0a2a7a);
}

.site-header,
.site-header span,
.site-header a {
  color: #ffffff;
}

/* ===== FORMULAIRE INSCRIPTION ===== */

.form-inscription {
  max-width: 720px;
  margin: 0 auto;
}

/* chaque champ sur une ligne */
.form-inscription label {
  display: block;
  margin-top: 16px;
  margin-bottom: 6px;
  font-weight: 600;
  color: #0a2a7a;
}

.form-inscription input,
.form-inscription select {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  border: 1px solid #cfd8ea;
  padding: 0 12px;
  font-size: 15px;
  background: #fff;
}

/* bouton */
.form-inscription .btn-primary {
  margin-top: 24px;
  height: 48px;
  font-size: 16px;
}

/* ===== TELEPHONE ALIGNEMENT FIX ===== */

.phone-group {
    display: flex;
    gap: 12px;
    width: 100%;
}

.phone-group select {
    width: 200px;          /* largeur fixe indicatif */
    min-width: 200px;
}

.phone-group input {
    flex: 1;               /* prend TOUT l’espace restant */
    min-width: 0;
}

@media (max-width: 600px) {
    .phone-group {
        flex-direction: column;
    }

    .phone-group select,
    .phone-group input {
        width: 100%;
    }
}

.badge.PENDING {
    background: #ff9800;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
}

.skype-link {
    color:#00aff0;
    text-decoration:none;
    font-weight:600;
}
.skype-link:hover {
    text-decoration:underline;
}