

    :root{
      --blue:#0a2a66; /* heavy blue */
      --blue-dark:#071f4a;
      --gray:#f5f6f8;
      --text:#1f2937;
    }
    *{box-sizing:border-box;margin:0;padding:0;font-family:Arial, Helvetica, sans-serif}
    body{color:var(--text);background:#fff}
    a{text-decoration:none;color:inherit}

    header{background:#fff;position:sticky;top:0;z-index:50}

    /* TOP BAR */
    .topbar{background:var(--blue);color:#fff;font-size:13px}
    .topbar .inner{max-width:1200px;margin:auto;display:flex;justify-content:space-between;padding:8px 16px}
    .topbar a{color:#fff;margin-right:16px}

    /* CHICAGO NAV */
    .main-nav{border-bottom:1px solid #e5e7eb;position:relative}
    .nav-inner{max-width:1200px;margin:auto;display:flex;justify-content:space-between;align-items:center;padding:22px 16px;position:relative}
    .nav-inner ul{list-style:none;display:flex;gap:28px;font-size:14px}

/* HAMBURGER */
.hamburger{display:none;flex-direction:column;gap:4px;cursor:pointer}
.hamburger span{width:24px;height:3px;background:var(--blue);display:block}

@media(max-width:900px){
  .nav-inner ul{display:none;position:absolute;top:100%;left:0;right:0;background:#fff;flex-direction:column;padding:16px;border-top:1px solid #e5e7eb}
  .nav-inner ul.active{display:flex}
  .hamburger{display:flex}

}
/* MOBILE MENU FIX */
.mobile-menu {
  display: none;
}

@media (max-width: 900px) {
  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e5e7eb;
  }

  }
  .mobile-menu.active {
    display: block;
  }

  .mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
    list-style: none;
  }

.desktop-menu {
  display: flex;
}
 
    /* CARTOUCHE (SCALLOPED / BRACKET STYLE) */
    .cartouche{
      position:absolute;
      left:50%;
      top:-42px;
      transform:translateX(-50%);
      background:transparent;
      padding:0;
      text-align:center;
      border:none;
      clip-path:none;
    }
    .cartouche img{
      height:70px;
      display:block;
      margin:0 auto 4px auto; /* force centered above text */
    }
    .cartouche .title{
      margin-top:0;
      font-weight:700;
      letter-spacing:1px;
      color:var(--blue);
      white-space:nowrap;
      text-align:center;
    }

    /* HERO */
    .hero{
      background:linear-gradient(rgba(7,31,74,.65),rgba(7,31,74,.65)), url('https://images.unsplash.com/photo-1524995997946-a1c2e315a42f');
      background-size:cover;background-position:center;color:#fff
    }
    .hero-inner{max-width:1200px;margin:auto;padding:100px 16px 60px;text-align:center}
    .hero h2{font-size:40px;margin-bottom:12px}
    .hero p{max-width:700px;margin:0 auto 26px}

    .hero-actions{display:flex;gap:16px;justify-content:center;flex-wrap:wrap}
    .btn{padding:12px 18px;border-radius:4px;border:1px solid transparent;cursor:pointer;font-size:14px}
    .btn-primary{background:var(--blue);color:#fff}
    .btn-outline{background:transparent;border-color:#fff;color:#fff}

    /* APPLY FLOW */
    .apply-section{background:var(--gray);padding:60px 16px}
    .apply-box{max-width:900px;margin:auto;background:#fff;border-radius:8px;padding:40px}
    .options{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:20px;margin-top:30px}
    .option{border:1px solid #e5e7eb;padding:26px;text-align:center;cursor:pointer}
    .option:hover{border-color:var(--blue)}

    /* MODAL */
    .modal{position:fixed;inset:0;background:rgba(0,0,0,.6);display:none;align-items:center;justify-content:center}
    .modal.active{display:flex}
    .modal-box{background:#fff;width:100%;max-width:420px;border-radius:8px;padding:26px}
    label{display:block;margin-top:14px;font-size:13px}
    input{width:100%;padding:10px;margin-top:6px;border:1px solid #d1d5db;border-radius:4px}

    @media(max-width:768px){
      .cartouche{top:-30px;padding:14px 22px}
      .cartouche img{height:56px}
      .hero h2{font-size:28px}
    }
  .section {
  padding: 80px 30px;
  text-align: center;
}

.section.light {
  background: #f4f6ff;
}

.section h2 {
  font-size: 34px;
  margin-bottom: 20px;
  color: #0f172a;
}

@media (max-width: 768px) {
    .about-content p {
        text-align: left;
        word-spacing: normal;
        letter-spacing: normal;
    }
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 40px auto 0;
  color: #fff;
}

.card {
  background: #0f172a;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  font-weight: 600;
  cursor: pointer;
}
.card:hover{
    color: #0f172a;
    background-color: #fff;
    border-radius: 15px;
}
.card ul {
  padding-left: 20px;   /* controls alignment */
  margin: 0;
}

/* List items */
.card ul li {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;

  text-align: left;     /* IMPORTANT */
  list-style-type: decimal;
}

/* FOOTER */
.footer {
  background: #0f172a;
  color: #cbd5f5;
  padding: 60px 30px;
}
.footerb {
  background: #0f172a;
  color: #cbd5f5;
  padding: 10px 10px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer h3, .footer h4 {
  color: #fff;
  margin-bottom: 10px;
}

.footer p {
  margin-bottom: 6px;
}

.copyright {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
}
.footer a {
  color: #cbd5f5;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 6px;
  transition: 0.3s;
}

.footer a:hover {
  color: #ffffff;
  transform: translateX(3px);
}
.appointment-section {
  padding: 80px 20px;
  background: #f8fafc;
  text-align: center;
}

.appointment-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
color: #0f172a;
}

.appointment-subtitle {
  color: #64748b;
  margin-bottom: 40px;
}

/* Cartes */
.appointment-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.person-card {
  background: #0f172a;
  border-radius: 20px;
  padding: 25px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.person-card:hover {
  transform: translateY(-6px);
}

.person-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;

}
.person-card h3{
  color: #cbd5e1;
}
.person-card p{
  color: red;
}

/* Formulaire */
.appointment-form {
  max-width: 500px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  font-size: 15px;
}

.appointment-form button {
  background: red;
  color: white;
  padding: 14px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.appointment-form button:hover {
  background: #0f172a;
}
.appointment-form h3{
 background: #cbd5e1;
}
/* État caché */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 0.8s ease;
}

/* État visible */
.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Texte À propos – effet plus fort */
#about.reveal.active {
  animation: popText 0.8s ease;
}

@keyframes popText {
  0% { transform: scale(0.9); }
  60% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.status-wrapper {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  text-align: center;
}

.status-wrapper h2 {
  font-size: 28px;
  margin-bottom: 6px;
}

.status-subtitle {
  color: #64748b;
  margin-bottom: 40px;
  font-size: 15px;
}

/* Conteneur principal */
.status-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

/* Item */
.status-item {
  background: white;
  border-radius: 20px;
  padding: 22px 18px;
  width: 180px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.status-item:hover {
  transform: translateY(-6px);
}

/* Cercle */
.status-item .circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 20px;
  color: white;
}

/* États */
.status-item.done .circle {
  background: #16a34a;
}

.status-item.active .circle {
  background: #f97316;
}

.status-item.pending .circle {
  background: #94a3b8;
}

.status-item p {
  font-size: 14px;
  font-weight: 500;
}

.timeline-section {
  padding: 40px 20px;
  max-width: 700px;
  margin: auto;
}

.timeline {
  list-style: none;
  padding-left: 0;
}

.timeline .step {
  background: #ffffff;
  padding: 16px;
  margin-bottom: 14px;
  border-radius: 12px;
  border-left: 6px solid #cbd5e1;
  font-size: 15px;
  transition: 0.4s;
}

/* États */
.timeline .done {
  border-color: #16a34a;
  background: #ecfdf5;
}

.timeline .pending {
  border-color: #f97316;
  background: #fff7ed;
}

/* ===== Scroll To Top Button ===== */
#scrollTopBtn {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background-color: #0b3c5d;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, transform 0.3s;
}

#scrollTopBtn:hover {
  background-color: #08304a;
  transform: translateY(-3px);
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

/* ===== Mobile Adjustment ===== */
@media (max-width: 768px) {
  #scrollTopBtn {
    right: 15px;
    bottom: 90px;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 25px;
  }
}
.export-card {
  margin-top: 40px;
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  font-family: "Segoe UI", sans-serif;
}

.export-header {
  margin-bottom: 15px;
}

.export-header h4 {
  margin: 0;
  font-weight: 600;
  color: #2d3748;
}

/* DataTable */
table.dataTable thead th {
  background: #f7f9fc;
  font-weight: 600;
  color: #333;
  border-bottom: 2px solid #e2e8f0;
}

table.dataTable tbody td {
  padding: 12px;
  color: #2d3748;
}

/* BUTTONS DESIGN */
.dt-buttons {
  margin-bottom: 15px;
}

.dt-button {
  border-radius: 20px !important;
  padding: 6px 14px !important;
  border: none !important;
  color: #fff !important;
  font-size: 13px;
  margin-right: 6px;
}

/* Individual colors */
.buttons-copy { background: #4a5568 !important; }
.buttons-csv { background: #38a169 !important; }
.buttons-excel { background: #2f855a !important; }
.buttons-pdf { background: #e53e3e !important; }
.buttons-print { background: #6b46c1 !important; }

.dt-button:hover {
  opacity: 0.9;
}


/* Contact Page - Design */
.contact-header {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #1e90ff, #ffcc00, #ff0000);
    color: white;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 20px;
}

/* Container flex */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

/* Contact Info Box */
.contact-info {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 20px;
}

.contact-info h2 {
    color: #1e90ff;
    margin-bottom: 20px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 18px;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background: #0f172a;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #ff0000;
    transform: translateY(-3px);
}

.btn.secondary {
    background: #ffcc00;
    color: #333;
}

.btn.secondary:hover {
    background: #ff9900;
}

/* Map Section */
.map {
    flex: 1;
    min-width: 300px;
    margin: 20px;
}

.map h2 {
    color: #1e90ff;
    margin-bottom: 20px;
    text-align: center;
}

.map iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 15px;
    margin-bottom: 15px;
}

.map-btn {
    display: block;
    width: 100%;
    text-align: center;
}

/* Responsive */
@media(max-width: 900px){
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
}
.dropdown-menu-mobile {
    display: none;
    list-style: none;
    margin: 10px 0 0 0;
    padding: 10px 0;
    background: #0f172a;
    border-radius: 8px;
    box-shadow: 0 10px rgb(0,0,0.25);
    list-style: none;
}

.has-dropdown-mobile.open .dropdown-menu-mobile {
    display: block;
}
.dropdown-menu-mobile li{
  padding: 0;
 
}
 .dropdown-menu-mobile li a {
  display: block;
  padding: 12px 20px;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
 }
 .dropdown-menu-mobile li a:hover{
  background-color: #0f172a;
  padding-left: 28px;
 }
  .dropdown-menu-mobile li:not(:last-child) a {
    border-bottom: 1px solid rgba (255,255,255,0.15);
  }
/* Desktop hover still works */
@media (min-width: 992px) {
    .has-dropdown-mobile:hover .dropdown-menu-mobile {
        display: block;
    }
}
.dropdown-toggle-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown-toggle-mobile .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.has-dropdown-mobile.open .arrow {
    transform: rotate(180deg);
}
@media (max-width: 768px) {
    .dropdown-menu-mobile {
        width: 100%;
    }
}