:root{
  /* Extracted from your logo vibe */
  --wdl-navy:#060D33;      /* deep navy */
  --wdl-navy-2:#0A2156;    /* secondary navy */
  --wdl-blue:#175DA2;      /* logo blue */
  --wdl-green:#48A153;     /* logo green */
  --wdl-light:#F6F8FB;
  --wdl-text:#24313B;
}

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  color: var(--wdl-text);
}

a{ text-decoration:none; }

/* Topbar */
.topbar{
  background: linear-gradient(90deg, var(--wdl-navy), var(--wdl-navy-2));
  color:#EAF2F7;
  font-size:.9rem;
}
.topbar a{ color:#EAF2F7; }
.topbar .sep{ opacity:.35; margin: 0 .6rem; }

/* Language pill */
.lang-pill{
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  padding:.35rem .6rem;
  font-size:.85rem;
  display:flex; gap:.4rem; align-items:center;
}
.lang-pill a{ color:#EAF2F7; font-weight:800; }
.lang-pill a.active{ color: #D7F2E5; }
.lang-pill .pipe{ opacity:.45; }

/* Navbar */
.navbar-brand img{ height:46px; width:auto; }
.nav-link{
  font-weight:700;
  color:#1D2B34 !important;
  padding: 1.3rem 1rem;
}
.nav-link:hover{ color: var(--wdl-blue) !important; }
.nav-link.active{
  color:#1D2B34 !important;
  position: relative;
}
.nav-link.active::after{
  content:"";
  position:absolute;
  left: 20%;
  right: 20%;
  bottom: .6rem;
  height:3px;
  background: linear-gradient(90deg, var(--wdl-green), var(--wdl-blue));
  border-radius: 99px;
}

/* Hero */
.hero{ position: relative; background: #0b2433; }
.hero .hero-item{
  height: 540px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero .overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg,
    rgba(6,13,51,.90) 0%,
    rgba(10,33,86,.62) 38%,
    rgba(10,33,86,.15) 75%,
    rgba(10,33,86,0) 100%);
}
.hero .caption{
  position:absolute; inset:0;
  display:flex; align-items:center;
  padding: 0 6vw;
  color:#fff;
}
.hero h1{
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.05;
  text-transform: uppercase;
}
.hero p{ max-width: 560px; opacity:.92; }

.badge-mode{
  display:inline-flex; align-items:center; gap:.45rem;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:.78rem;
  color:#E7FFF2;
  margin-bottom: .75rem;
}
.badge-mode i{ color: var(--wdl-green); }

/* Hero caption animation */
.hero-caption-anim{ opacity: 0; transform: translateX(-16px); }
.hero-caption-anim.is-anim{
  animation: heroIn .75s ease-out both;
}
@keyframes heroIn{
  0%{ opacity:0; transform: translateX(-18px); }
  100%{ opacity:1; transform: translateX(0); }
}

/* CTA buttons in hero */
.btn-cta{
  background: linear-gradient(90deg, var(--wdl-blue), #0f79d0);
  border: none;
  color:#fff;
  font-weight:900;
  border-radius: 999px;
  padding: .7rem 1.15rem;
  box-shadow: 0 12px 26px rgba(15, 121, 208, .25);
}
.btn-cta:hover{ opacity:.95; color:#fff; }

.btn-cta-outline{
  border:2px solid rgba(255,255,255,.6);
  color:#fff;
  border-radius: 999px;
  padding: .68rem 1.1rem;
  font-weight:900;
}
.btn-cta-outline:hover{ background:#fff; color: var(--wdl-navy); }

/* CEO strip */
.ceo-strip{
  background: linear-gradient(90deg, var(--wdl-navy-2), var(--wdl-navy));
  color:#EAF2F7;
  padding: 18px 0;
}

/* Buttons */
.btn-outline-soft{
  border:2px solid rgba(255,255,255,.6);
  color:#fff;
  border-radius: 999px;
  padding: .55rem 1.1rem;
  font-weight:800;
}
.btn-outline-soft:hover{
  background:#fff; color: var(--wdl-navy);
  border-color:#fff;
}
.btn-primary-soft{
  background: linear-gradient(90deg, var(--wdl-blue), #0f79d0);
  border: none;
  color:#fff;
  font-weight:900;
  border-radius: 999px;
  padding: .7rem 1.25rem;
}
.btn-primary-soft:hover{ opacity:.94; color:#fff; }

.btn-soft-outline{
  border: 2px solid rgba(23,93,162,.25);
  color: var(--wdl-blue);
  font-weight: 900;
  border-radius: 999px;
  padding: .6rem 1.05rem;
  background: #fff;
}
.btn-soft-outline:hover{
  background: rgba(23,93,162,.06);
}

/* Titles / Cards */
.section-title{
  font-weight: 900;
  letter-spacing:.02em;
}
.soft-card{
  border:1px solid #E8EEF5;
  border-radius: 14px;
  overflow:hidden;
  background:#fff;
  box-shadow: 0 10px 22px rgba(16, 24, 40, .06);
}

/* Hover / micro animations */
.hover-lift{
  transition: transform .25s ease, box-shadow .25s ease;
}
.hover-lift:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(16, 24, 40, .12);
}

/* Split dark section */
.split-dark{
  background: linear-gradient(180deg, var(--wdl-navy-2), var(--wdl-navy));
  color:#EAF2F7;
  padding: 64px 0;
}
.split-dark h2{ font-weight: 900; }
.split-dark p{ opacity:.92; }

.news-card{
  background:#fff;
  color:#0f172a;
  border-radius: 12px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.15);
}

/* Our Clients marquee */
.clients-strip .marquee{
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #E8EEF5;
  background: #fff;
  padding: 18px 0;
  box-shadow: 0 10px 22px rgba(16, 24, 40, .06);
}
.marquee__track{
  display:flex;
  align-items:center;
  gap: 34px;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee__track img{
  height: 42px;
  width:auto;
  opacity: .9;
  filter: grayscale(100%);
  transition: all .2s ease;
}
.marquee__track img:hover{
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-2px) scale(1.04);
}
@keyframes marquee{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

/* Quote block */
.quote-wrap{ background:#fff; }
.quote-left{ padding: 56px 0; background:#fff; }
.quote-right{
  background: linear-gradient(180deg, var(--wdl-navy-2), var(--wdl-navy));
  padding: 56px 0;
  color:#fff;
}

/* Bigger services boxes */
.svc-mini{
  display:flex; gap:16px; align-items:flex-start;
  margin-bottom: 6px;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #E8EEF5;
  background: #fff;
}
.svc-mini .icon{
  width:72px; height:72px;
  border-radius: 18px;
  border: 1px solid rgba(72,161,83,.22);
  display:flex; align-items:center; justify-content:center;
  background: rgba(72,161,83,.06);
  color: var(--wdl-green);
  flex: 0 0 auto;
}
.svc-mini .icon i{
  font-size: 34px;
  animation: iconFloat 2.6s ease-in-out infinite;
}
@keyframes iconFloat{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-4px); }
}
.svc-mini h6{
  margin:0;
  font-weight: 950;
  text-transform: uppercase;
  font-size: 1.02rem;
  letter-spacing: .04em;
}
.svc-mini small{
  opacity:.95;
  font-size: .95rem;
}

/* Form style */
.quote-right .form-control, .quote-right .form-select{
  border-radius: 8px;
  border: none;
  padding: .8rem .95rem;
  background: #fff;
}
.btn-submit{
  border-radius: 999px;
  border: 2px solid var(--wdl-blue);
  color:#fff;
  background: transparent;
  font-weight: 950;
  padding: .7rem 1.2rem;
  min-width: 230px;
  transition: .2s ease;
}
.btn-submit:hover{
  background: var(--wdl-blue);
  box-shadow: 0 14px 28px rgba(23,93,162,.25);
}

/* Featured News */
.featured-news .news-feature-card{
  display:block;
  border:1px solid #E8EEF5;
  border-radius: 16px;
  overflow:hidden;
  background:#fff;
  color: inherit;
  box-shadow: 0 10px 22px rgba(16, 24, 40, .06);
}
.news-feature-card .thumb{
  height: 180px;
  background-size: cover;
  background-position: center;
}
.news-feature-card .meta{
  display:flex; gap:10px; align-items:center;
  font-size:.85rem;
}
.news-feature-card .tag{
  font-weight: 950;
  color: #fff;
  background: linear-gradient(90deg, var(--wdl-green), var(--wdl-blue));
  padding: .2rem .55rem;
  border-radius: 999px;
}
.news-feature-card .date{
  color:#64748b;
  font-weight: 800;
}

/* Footer */
footer{
  background: linear-gradient(180deg, var(--wdl-navy-2), var(--wdl-navy));
  color:#EAF2F7;
  padding: 60px 0 22px;
}
footer a{ color:#EAF2F7; opacity:.9; }
footer a:hover{ color:#fff; opacity:1; }
.footer-title{
  font-weight: 950;
  text-transform: uppercase;
  font-size:.9rem;
  letter-spacing:.08em;
  opacity:.95;
}
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 28px;
  padding-top: 16px;
  font-size: .92rem;
  opacity:.9;
}

/* Cookie */
.cookie-box{
  position: fixed;
  left: 18px;
  bottom: 18px;
  width: min(360px, 92vw);
  background: #0d1023;
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 14px;
  z-index: 9999;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  display: none;
}
.cookie-box p{ font-size:.86rem; opacity:.9; margin: 0 0 10px; }
.cookie-box .btn{
  border-radius: 10px;
  font-weight: 900;
  padding: .45rem .85rem;
  font-size: .85rem;
}
.cookie-box .btn-accept{ background: #6c63ff; border:none; color:#fff; }
.cookie-box .btn-policy{ border:1px solid rgba(255,255,255,.4); color:#fff; }

/* WhatsApp floating */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#25D366;
  color:#fff;
  font-size: 26px;
  z-index: 9999;
  box-shadow: 0 14px 32px rgba(0,0,0,.22);
}

/* Responsive */
@media (max-width: 991px){
  .nav-link{ padding: .8rem 1rem; }
  .hero .hero-item{ height: 460px; }
  .svc-mini{ padding: 14px; }
  .svc-mini .icon{ width:66px; height:66px; }
}
/* Hide Google Translate bar */
.goog-te-banner-frame.skiptranslate { display: none !important; }
body { top: 0px !important; }

/* Hide the default translate widget */
.goog-te-gadget { font-size: 0 !important; }
.goog-te-gadget span { display: none !important; }
.goog-logo-link { display: none !important; }
/* About dropdown style (like screenshot) */
.navbar .dropdown-menu{
  border: 0;
  background: #0b2a45; /* bleu foncé */
  padding: .55rem;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
  min-width: 220px;
}

.navbar .dropdown-item{
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  padding: .65rem .85rem;
  transition: .18s ease;
}

.navbar .dropdown-item:hover{
  background: rgba(255,255,255,.12);
  color: #fff;
}

.navbar .dropdown-item.active{
  background: rgba(72,161,83,.22); /* vert (ajuste selon ton logo) */
  color: #fff;
}
/* =========================
   INNER PAGES (hero + layout)
========================= */

:root{
  /* Couleurs approx depuis ton logo (ajuste si tu veux) */
  --wdl-blue: #003070;
  --wdl-green: #70D050;
  --wdl-ink: #0b2a45;
  --wdl-soft: #f6f9ff;
}

/* Hero style like "red banner" but with brand overlay */
.inner-hero{
  position: relative;
  min-height: 320px;
  display:flex;
  align-items:center;
  background-size: cover;
  background-position: center;
  overflow:hidden;
}

.inner-hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(0,48,112,.86) 0%,
                         rgba(0,48,112,.66) 45%,
                         rgba(112,208,80,.18) 100%);
  mix-blend-mode: normal;
}

.inner-hero::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(60% 60% at 70% 50%, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 70%);
  pointer-events:none;
}

.inner-hero .hero-content{
  position:relative;
  padding: 70px 0;
  color:#fff;
  text-align:center;
}

.inner-hero .hero-title{
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  margin: 0 0 .6rem 0;
}

.inner-hero .hero-breadcrumb{
  opacity:.92;
  font-weight: 700;
  font-size: .92rem;
}

.inner-hero .hero-breadcrumb a{
  color:#fff;
  opacity:.95;
  text-decoration:none;
}

.inner-hero .hero-breadcrumb span{
  opacity:.85;
  margin: 0 .45rem;
}

/* Page layout like screenshot 2 */
.page-wrap{
  background:#fff;
  padding: 42px 0;
}

.content-card{
  border:1px solid #e8eef5;
  border-radius: 18px;
  background:#fff;
  box-shadow: 0 14px 30px rgba(16,24,40,.06);
  padding: 22px;
}

.content-card + .content-card{ margin-top: 18px; }

.h2-title{
  font-weight: 950;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #7b1b1b; /* style "title brown/red" like example */
}

.h2-title.brand{
  color: #0b2a45;
}

.lead-muted{
  color:#5c6b7a;
  line-height:1.7;
}

.img-frame{
  border-radius: 18px;
  overflow:hidden;
  border:1px solid #e8eef5;
  box-shadow: 0 12px 26px rgba(16,24,40,.08);
}

.img-frame img{ width:100%; height:auto; display:block; }

.inline-gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.inline-gallery img{
  width:100%;
  height: 120px;
  object-fit: cover;
  border-radius: 14px;
  border:1px solid #e8eef5;
  transition:.18s ease;
}

.inline-gallery img:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(16,24,40,.10);
}

/* Video box */
.video-card{
  border-radius: 18px;
  overflow:hidden;
  border:1px solid #e8eef5;
  box-shadow: 0 14px 30px rgba(16,24,40,.06);
}

/* Sidebar */
.sidebar-card{
  border-radius: 18px;
  border:1px solid #e8eef5;
  background:#fff;
  box-shadow: 0 14px 30px rgba(16,24,40,.06);
  padding: 18px;
}

.sidebar-card + .sidebar-card{ margin-top: 16px; }

.sidebar-title{
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing:.04em;
  font-size: .95rem;
  margin-bottom: 12px;
  color: var(--wdl-ink);
}

.sidebar-search{
  border-radius: 999px;
  padding: .7rem 1rem;
}

.quick-links a{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  border: 2px solid rgba(23,93,162,.25);
  color: var(--wdl-ink);
  text-decoration:none;
  font-weight: 900;
  border-radius: 999px;
  padding: .75rem 1rem;
  margin-bottom: 10px;
  transition:.18s ease;
  background:#fff;
}

.quick-links a:hover{
  background: rgba(0,48,112,.06);
  transform: translateY(-2px);
}

.services-panel{
  border:1px solid rgba(0,48,112,.18);
  border-radius: 16px;
  overflow:hidden;
}

.services-panel .head{
  background: rgba(0,48,112,.06);
  padding: 14px 16px;
  font-weight: 950;
  letter-spacing:.06em;
  text-transform: uppercase;
  color: var(--wdl-ink);
}

.services-panel ul{
  list-style:none;
  margin:0;
  padding: 12px 16px;
}

.services-panel li{
  padding: 10px 0;
  border-bottom: 1px dashed rgba(16,24,40,.12);
  font-weight: 700;
  color:#2a3b4e;
}

.services-panel li:last-child{ border-bottom:none; }

/* Vision / Mission blocks */
.vm{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.vm .item{
  border:1px solid #e8eef5;
  border-radius: 16px;
  padding: 14px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
  background:#fff;
}

.vm .ico{
  width:54px;
  height:54px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(112,208,80,.12);
  border: 1px solid rgba(112,208,80,.18);
  color: var(--wdl-ink);
  flex: 0 0 auto;
}

.vm h6{
  margin:0;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing:.04em;
}

.vm p{
  margin: .35rem 0 0 0;
  color:#5c6b7a;
  line-height:1.65;
}

/* Core values flow (simple timeline) */
.values-flow{
  position: relative;
  padding-left: 24px;
}

.values-flow::before{
  content:"";
  position:absolute;
  left: 10px;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: rgba(0,48,112,.18);
  border-radius: 99px;
}

.value-box{
  position: relative;
  border:1px solid rgba(0,48,112,.20);
  border-radius: 14px;
  padding: 14px;
  margin: 12px 0;
  background:#fff;
}

.value-box::before{
  content:"";
  position:absolute;
  left: -18px;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--wdl-green);
  box-shadow: 0 0 0 6px rgba(112,208,80,.18);
}

.value-box .t{
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing:.05em;
  color: var(--wdl-ink);
}

@media (max-width: 991px){
  .inner-hero{ min-height: 260px; }
  .inline-gallery{ grid-template-columns: repeat(2, 1fr); }
  .inline-gallery img{ height: 110px; }
}
/* Dropdown always visible over hero/sections */
.navbar.sticky-top { z-index: 2000; }
.navbar .dropdown-menu { z-index: 2100; }

/* Avoid clipping (some layouts clip dropdown) */
.navbar,
.navbar .container,
.navbar-collapse,
.navbar-nav {
  overflow: visible !important;
}
@media (min-width: 992px){
  .navbar .dropdown:hover .dropdown-menu{
    display:block;
    margin-top:.25rem;
  }
}
/* Right side: 3-image background slider */
.quote-right.quote-image-slider{
  position: relative;
  min-height: 540px;
  overflow: hidden;
  display:flex;
  align-items:flex-end;
  padding: 28px;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}

/* each background layer */
.quote-right .qbg{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 900ms ease, transform 6500ms ease;
  will-change: opacity, transform;
}

/* active background */
.quote-right .qbg.active{
  opacity: 1;
  transform: scale(1.14); /* slow zoom (ken burns effect) */
}

/* overlay for contrast */
.quote-image-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(70% 70% at 70% 20%, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 65%),
    linear-gradient(0deg, rgba(11,42,69,.84) 0%, rgba(11,42,69,.42) 55%, rgba(11,42,69,.20) 100%);
  pointer-events:none;
}

/* content card */
.quote-image-content{
  position:relative;
  color:#fff;
  max-width: 480px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 18px 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(0,0,0,.20);
}

/* dots */
.q-dots{
  display:flex;
  gap: 8px;
  align-items:center;
}

.q-dots .dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(255,255,255,.35);
  cursor: pointer;
  transition: .18s ease;
}

.q-dots .dot.active{
  width: 26px;
  background: rgba(112,208,80,.95);
  border-color: rgba(112,208,80,.95);
}

/* mobile */
@media (max-width: 991px){
  .quote-right.quote-image-slider{
    min-height: 380px;
    border-radius: 20px;
  }
  .quote-image-content{ max-width: 100%; }
}
/* ===== Gallery page ===== */

.gallery-filters .g-filter{
  border-radius: 999px;
  padding: .55rem .9rem;
  font-weight: 900;
  border: 2px solid rgba(0,48,112,.18);
  background: #fff;
  color: #0b2a45;
  transition: .18s ease;
  margin: 2px;
}

.gallery-filters .g-filter:hover{
  transform: translateY(-2px);
  background: rgba(0,48,112,.05);
}

.gallery-filters .g-filter.active{
  background: rgba(112,208,80,.18);
  border-color: rgba(112,208,80,.60);
}

.g-card{
  display:block;
  position:relative;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid #e8eef5;
  box-shadow: 0 14px 30px rgba(16,24,40,.06);
  text-decoration:none;
  transform: translateZ(0);
}

.g-thumb{
  width:100%;
  height: 170px;
  background-size: cover;
  background-position:center;
  transition: transform 650ms ease;
}

.g-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding: 14px;
  background: linear-gradient(0deg, rgba(11,42,69,.80) 0%, rgba(11,42,69,.18) 70%, rgba(11,42,69,0) 100%);
  opacity: .98;
}

.g-title{
  color:#fff;
  font-weight: 950;
  letter-spacing:.01em;
}

.g-meta{
  color: rgba(255,255,255,.85);
  font-weight: 800;
  font-size: .85rem;
}

.g-card:hover .g-thumb{
  transform: scale(1.08);
}

.g-mini{
  width:74px;
  height:54px;
  object-fit: cover;
  border-radius:12px;
  border:1px solid #e8eef5;
}

/* Sidebar filter links */
.services-panel ul li a.g-side-link{
  color:#2a3b4e;
  font-weight:800;
  text-decoration:none;
}
.services-panel ul li a.g-side-link:hover{
  text-decoration:underline;
}

/* Modal */
.g-modal{
  background: #0b2a45;
  border: 0;
  border-radius: 18px;
  overflow:hidden;
}

.g-modal-img{
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
}

.g-modal-cat{
  display:inline-block;
  background: rgba(112,208,80,.20);
  border:1px solid rgba(112,208,80,.35);
  color:#fff;
  padding: .25rem .6rem;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 6px;
  font-size: .85rem;
}

@media (max-width: 575px){
  .g-thumb{ height: 145px; }
}
/* Contact page small cards */
.contact-mini{
  display:flex;
  gap:12px;
  align-items:flex-start;
  border:1px solid #e8eef5;
  border-radius: 16px;
  padding: 14px 14px;
  background:#fff;
  box-shadow: 0 14px 30px rgba(16,24,40,.05);
}
.contact-mini .ico{
  width:44px;height:44px;
  display:grid;place-items:center;
  border-radius: 14px;
  background: rgba(112,208,80,.16);
  border: 1px solid rgba(112,208,80,.25);
  color:#0b2a45;
  font-size: 1.2rem;
}
.contact-mini .t{ font-weight:950; }
.contact-mini .d{ color:#5b6b7c; font-weight:600; font-size:.95rem; }

/* Map */
.map-card{
  border-radius: 18px;
  overflow:hidden;
  border:1px solid #e8eef5;
  box-shadow: 0 14px 30px rgba(16,24,40,.06);
}
.map-card iframe{
  width:100%;
  height: 380px;
  display:block;
}

/* Chips */
.chip{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding: .45rem .75rem;
  border-radius: 999px;
  border:1px solid rgba(0,48,112,.16);
  background: rgba(0,48,112,.04);
  font-weight: 850;
  color:#0b2a45;
}

/* Contact form */
.contact-form .form-label{
  font-weight: 900;
  color:#213447;
}
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  z-index: 9999;
  color: #fff;
  font-size: 1.5rem;
  background: #25D366;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  transition: .18s ease;
}
.wa-float:hover{
  transform: translateY(-2px) scale(1.03);
  color:#fff;
}
.topbar-phone{
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  opacity: .95;
}
.topbar-phone:hover{
  text-decoration: underline;
  opacity: 1;
}
