/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 5 mai 2026, 20:15:07
    Author     : Mathias keita <openwebarts.com>
*/
/* ═══════════════════════════════════════════
       DESIGN SYSTEM
    ═══════════════════════════════════════════ */
    :root {
      --teal:         #519cff;
      --teal-deep:    #178898;
      --teal-pale:    #e8f8fa;
      --teal-mid:     #c2edf1;
      --gold:         #D4A03A;
      --gold-pale:    #fdf6e8;
      --ink:          #0e1e2a;
      --ink-mid:      #1d3344;
      --slate:        #5a7180;
      --silver:       #edf2f5;
      --white:        #ffffff;
      --line:         #d5e3e8;
      --radius:       14px;
      --shadow-sm:    0 2px 10px rgba(14,30,42,.06);
      --shadow-md:    0 8px 30px rgba(14,30,42,.09);
      --shadow-lg:    0 20px 60px rgba(14,30,42,.12);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: 'Inter', Roboto, sans-serif, sans-serif;
      color: var(--ink);
      background: var(--white);
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* ═══════════════════════════════════════════
       TOP BAR
    ═══════════════════════════════════════════ */
    .topbar { background: var(--teal); padding: .38rem 0; font-size: .73rem; color: var(--white); letter-spacing: .01em;  }
    .topbar-inner { max-width: 1260px; margin: auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
    .topbar-left { display: flex; gap: 1rem; }
    .topbar-left a { color: inherit; text-decoration: none; display: flex; align-items: center; gap: .35rem; transition: color .2s; }
    .topbar-left a:hover { color: var(--teal); }
    .topbar-right { display: flex; gap: .8rem; align-items: center; }
    .lang-btn { font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4); text-decoration: none; padding: .2rem .45rem; border-radius: 3px; transition: .2s; }
    .lang-btn.on, .lang-btn:hover { color: #fff; background: rgba(34,179,193,.2); }
    .t-socials { display: flex; gap: .4rem; }
    .t-socials a { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--white); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: .65rem; text-decoration: none; transition: .2s; }
    .t-socials a:hover { background: var(--teal); border-color: var(--white); color:  var(--white); border: 1px solid var(--gold)}

    /* ═══════════════════════════════════════════
       GLOBAL NAV
    ═══════════════════════════════════════════ */
    .gnav {
      background: var(--white);
      border-bottom: 1px solid var(--line);
      position: sticky; top: 0; z-index: 300;
    }
    .gnav-inner {
      max-width: 1260px; margin: auto; padding: 0 2rem;
      height: 68px; display: flex; align-items: center; justify-content: space-between;
    }
    .glogo { display: flex; align-items: center; gap: .65rem; text-decoration: none; }
    .glogo-mark {
      width: 42px; height: 42px; border-radius: 11px;
      background: linear-gradient(135deg, var(--teal), var(--teal-deep));
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 12px rgba(34,179,193,.28);
    }
    .glogo-mark svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; }
    .glogo-name strong { display: block; font-family: 'Libre Baskerville', serif; font-size: 1.1rem; color: var(--ink); line-height: 1.1; }
    .glogo-name span { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--white); }
    .gnav-links { display: flex; gap: .05rem; list-style: none; align-items: center; }
    .gnav-links a { display: block; padding: .45rem .85rem; font-size: .83rem; font-weight: 500; color: var(--slate); text-decoration: none; border-radius: 8px; transition: .2s; }
    .gnav-links a:hover { color: var(--teal); background: var(--teal-pale); }
    .gnav-links .cta { background: var(--teal) !important; color: #fff !important; margin-left: .4rem; box-shadow: 0 3px 10px rgba(34,179,193,.28); }
    .gnav-links .cta:hover { background: var(--teal-deep) !important; }
    .gnav-links .login-btn { border: 1px solid var(--line); color: var(--ink) !important; }
    .gnav-links .login-btn:hover { border-color: var(--teal); color: var(--teal) !important; background: var(--teal-pale) !important; }

    /* ═══════════════════════════════════════
       BREADCRUMB
    ═══════════════════════════════════════ */
    .bc{background:var(--silver);border-bottom:1px solid var(--line);padding:.7rem 0}
    .bc-i{max-width:1260px;margin:auto;padding:0 2rem;display:flex;align-items:center;gap:.5rem;font-size:.78rem;color:var(--slate)}
    .bc-i a{color:var(--slate);text-decoration:none;transition:.2s}
    .bc-i a:hover{color:var(--teal)}
    .bc-sep{color:var(--line)}
    .bc-cur{color:var(--teal);font-weight:500}
    
    /* ═══════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════ */
    footer { background: var(--teal); color: var(--white); padding: 2rem 0 0; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; }
    .footer-about { font-size: .83rem; line-height: 1.75; color: var(--white); margin: 1rem 0 1.3rem; }
    .fcontacts { display: flex; flex-direction: column; gap: .5rem; font-size: .81rem; }
    .fcontacts a { color: var(--white); text-decoration: none; display: flex; align-items: center; gap: .4rem; transition: .2s; }
    .fcontacts a:hover { color: var(--white); }
    .fsocials { display: flex; gap: .5rem; margin-top: 1.2rem; }
    .fsocials a { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--white); color: rgba(255,255,255,.45); font-size: .72rem; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: .2s; }
    .fsocials a:hover { background: var(--teal); border-color: var(--white); color: #fff; }
    .footer-col h4 { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.88); margin-bottom: 1.2rem; padding-bottom: .55rem; border-bottom: 1px solid rgba(255,255,255,.06); }
    .flinks { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
    .flinks a { color: rgba(255,255,255,.48); text-decoration: none; font-size: .83rem; display: flex; align-items: center; gap: .4rem; transition: .2s; }
    .flinks a::before { content: '›'; color: var(--teal); font-size: 1rem; }
    .flinks a:hover { color: var(--teal); padding-left: .3rem; }
    .fnl p { font-size: .82rem; color: var(--white); line-height: 1.65; margin-bottom: .8rem; }
    .fnl-row { display: flex; gap: .5rem; }
    .fnl input, .fnl select { flex: 1; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09); border-radius: 8px; padding: .65rem .9rem; color: #fff; font-size: .82rem; font-family: inherit; outline: none; transition: .2s;margin-top: 2px;margin-bottom: 2px; }
    .fnl input::placeholder { color: rgba(255,255,255,.25); }
    .fnl input:focus { border-color: var(--teal); }
    .fnl button { background: var(--teal); color: #fff; border: none; border-radius: 8px; padding: .65rem 1.1rem; font-size: .82rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: .2s; white-space: nowrap; margin-top: 2px;margin-bottom: 2px;}
    .fnl button:hover { background: var(--teal-deep); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding: 1.2rem 0; display: flex; justify-content: space-between; font-size: .74rem; color: var(--white); flex-wrap: wrap; gap: .5rem; }
    .footer-bottom a { color: inherit; text-decoration: none; }
    .footer-bottom a:hover { color: var(--white); }
    .fb-links { display: flex; gap: 1rem; }

    /* scroll top */
    #toTop { position: fixed; bottom: 1.8rem; right: 1.8rem; width: 42px; height: 42px; background: var(--teal-deep); color: #fff; border: none; border-radius: 50%; cursor: pointer; z-index: 999; box-shadow: 0 4px 16px rgba(34,179,193,.4); display: none; align-items: center; justify-content: center; font-size: 1rem; transition: .2s; }
    #toTop:hover { background: var(--teal-deep); transform: translateY(-2px); }
    #toTop.show { display: flex; }

    .antispam-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.3rem; }
    .antispam-q { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; padding: .7rem 1.1rem; font-size: .86rem; color: var(--teal); display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
    .antispam-q strong { color: var(--teal); font-size: 1rem; font-weight: 700; }
    .antispam-inp { width: 90px; background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.13); border-radius: 10px; padding: .72rem 1rem; font-size: .88rem; font-family: var(--f); color: #fff; outline: none; transition: .2s; }
    .antispam-inp:focus { border-color: var(--teal); background: rgba(34,179,193,.1); box-shadow: 0 0 0 3px rgba(34,179,193,.15); }
    .antispam-hint { font-size: .74rem; color: red; }
    .form-error { display: block; background: rgba(192,57,43,.18); border: 1px solid rgba(192,57,43,.3); border-radius: 9px; padding: .75rem 2rem; font-size: .82rem; color: #fcc; margin-bottom: 10px;}

    /* ═══════════════════════════════════════════
       HAMBURGER MENU
    ═══════════════════════════════════════════ */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: .4rem;
      border-radius: 8px;
      transition: background .2s;
      z-index: 400;
    }
    .hamburger:hover { background: var(--teal-pale); }
    .hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: var(--ink);
      border-radius: 2px;
      transition: transform .3s, opacity .3s;
      transform-origin: center;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile drawer */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: var(--white);
      z-index: 350;
      flex-direction: column;
      padding: 5rem 2rem 2rem;
      overflow-y: auto;
      transform: translateX(100%);
      transition: transform .35s cubic-bezier(.4,0,.2,1);
    }
    .mobile-menu.open {
      display: flex;
      transform: translateX(0);
    }
    .mobile-menu-logo {
      position: absolute;
      top: 1rem; left: 2rem;
      display: flex; align-items: center; gap: .6rem;
      text-decoration: none;
    }
    .mobile-close {
      position: absolute;
      top: 1.1rem; right: 1.5rem;
      background: var(--silver); border: none;
      width: 36px; height: 36px;
      border-radius: 50%; cursor: pointer;
      font-size: 1.2rem; color: var(--slate);
      display: flex; align-items: center; justify-content: center;
      transition: .2s;
    }
    .mobile-close:hover { background: var(--teal); color: #fff; }
    .mobile-nav-links {
      list-style: none;
      display: flex; flex-direction: column;
      gap: .3rem; margin-bottom: 1.8rem;
    }
    .mobile-nav-links a {
      display: block;
      padding: .85rem 1rem;
      font-size: 1rem; font-weight: 500;
      color: var(--ink); text-decoration: none;
      border-radius: 10px; transition: .2s;
      border-left: 3px solid transparent;
    }
    .mobile-nav-links a:hover,
    .mobile-nav-links a.active {
      background: var(--teal-pale);
      color: var(--teal);
      border-left-color: var(--teal);
    }
    .mobile-nav-links a.active { font-weight: 600; }
    .mobile-nav-divider { height: 1px; background: var(--line); margin: .8rem 0; }
    .mobile-nav-cta {
      display: block;
      background: var(--teal); color: #fff;
      text-align: center; text-decoration: none;
      padding: .9rem; border-radius: 10px;
      font-weight: 600; font-size: .95rem;
      margin-bottom: 1.5rem; transition: .2s;
    }
    .mobile-nav-cta:hover { background: var(--teal-deep); }
    .mobile-contacts {
      border-top: 1px solid var(--line);
      padding-top: 1.4rem;
      display: flex; flex-direction: column; gap: .7rem;
    }
    .mobile-contacts a {
      display: flex; align-items: center; gap: .6rem;
      font-size: .85rem; color: var(--slate); text-decoration: none;
      transition: .2s;
    }
    .mobile-contacts a:hover { color: var(--teal); }
    .mobile-socials {
      display: flex; gap: .5rem; margin-top: 1rem;
    }
    .mobile-socials a {
      width: 34px; height: 34px; border-radius: 50%;
      border: 1px solid var(--line);
      display: flex; align-items: center; justify-content: center;
      color: var(--slate); font-size: .75rem; text-decoration: none;
      transition: .2s;
    }
    .mobile-socials a:hover { background: var(--teal); border-color: var(--teal); color: #fff; }

    /* overlay */
    .menu-overlay {
      display: none;
      position: fixed; inset: 0;
      background: rgba(14,30,42,.5);
      z-index: 340;
      backdrop-filter: blur(2px);
    }
    .menu-overlay.open { display: block; }
    

    /* ═══════════════════════════════════════════
       Floating Social Bar
    ═══════════════════════════════════════════ */
.icon-bar {
  position: fixed;
  top: 55%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 50;
}

.icon-bar a {
  display: block;
  text-align: center;
  padding: 16px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
}

.icon-bar a:hover {
  background-color: #000;
}

.facebook {
  background: #3B5998;
  color: white;
}

.twitter {
  background: #55ACEE;
  color: white;
}

.google {
  background: #dd4b39;
  color: white;
}

.instagram {
  background: #9E3CA3;
  color: white;
}

.linkedin {
  background: #007bb5;
  color: white;
}

.youtube {
  background: #bb0000;
  color: white;
}

.whatsapp {
  background: green;
  color: white;
}

@media only screen and (max-width: 768px) {
  .icon-bar{
      display:none;
  }
}
@media only screen and  (max-width: 360px) {
  
  .icon-bar{
      display:none;
  }
}