/*
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 : 6 mai 2026, 23:27:28
    Author     : Mathias keita <openwebarts.com>
*/

/* ════════════════════════════════════════════
    DESIGN TOKENS
════════════════════════════════════════════ */
:root {
    --c:          #22B3C1;   /* primary */
    --c-d:        #1a8f9b;   /* primary dark */
    --c-dd:       #116b75;   /* primary deeper */
    --c-p:        #eaf8fa;   /* primary pale */
    --c-m:        #b8edf2;   /* primary mid */

    /* domain accent colours */
    --etudes:     #519cff;
    --immo:       #ec8a56;
    --emplois:    #438f40;
    --voyages:    #162a4f;

    --ink:        #0b1a22;
    --ink-2:      #1c3040;
    --slate:      #546e7a;
    --mist:       #8fa8b2;
    --silver:     #eef3f5;
    --line:       #d6e4e8;
    --white:      #ffffff;

    --f:          'Inter', 'Roboto', sans-serif;
    --r:          12px;
    --r-lg:       20px;
    --sh:         0 2px 12px rgba(11,26,34,.07);
    --sh-m:       0 8px 32px rgba(11,26,34,.10);
    --sh-l:       0 20px 64px rgba(11,26,34,.13);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--f); color: var(--ink); background: var(--white); overflow-x: hidden; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ════════════════════════════════════════════
    TOP BAR
════════════════════════════════════════════ */
.topbar { background: var(--c); padding: .38rem 0; font-size: .73rem; color: var(--white); letter-spacing: .01em; }
.tb-wrap { max-width: 1280px; margin: auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.tb-left { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.tb-left a { display: flex; align-items: center; gap: .35rem; color: inherit; transition: color .2s; }
.tb-left a:hover { color: var(--c); }
.tb-right { display: flex; gap: .8rem; align-items: center; }
.tb-lang { display: flex; gap: .25rem; }
.tb-lang a { font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.35); padding: .15rem .4rem; border-radius: 3px; transition: .2s; }
.tb-lang a.on, .tb-lang a:hover { color: #fff; background: rgba(34,179,193,.25); }
.tb-soc { display: flex; gap: .35rem; }
.tb-soc a { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--c-m); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.38); font-size: .62rem; transition: .2s; }
.tb-soc a:hover { background: var(--c); border-color: var(--white); color: #fff; }

/* ════════════════════════════════════════════
    NAVBAR
════════════════════════════════════════════ */
.nav { background: var(--white); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 300; box-shadow: var(--sh); }
.nav-wrap { max-width: 1280px; margin: auto; padding: 0 2rem; height: 66px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: .7rem; }
.nav-logo-mark { display: flex; align-items: center; justify-content: center; }
.nav-logo-mark svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.nav-logo-text strong { display: block; font-size: 1.05rem; font-weight: 700; color: var(--ink); letter-spacing: -.01em; line-height: 1.1; }
.nav-logo-text span { font-size: .62rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--slate); }
.nav-links { display: flex; gap: .1rem; list-style: none; align-items: center; }
.nav-links a { display: block; padding: .45rem .88rem; font-size: .84rem; font-weight: 500; color: var(--slate); border-radius: 8px; transition: .2s; }
.nav-links a:hover { color: var(--c); background: var(--c-p); }
.nav-links a.active { color: var(--c); background: var(--c-p); font-weight: 600; }
.nav-links .nav-cta { background: var(--c) !important; color: #fff !important; margin-left: .35rem; box-shadow: 0 3px 10px rgba(34,179,193,.3); font-weight: 600; }
.nav-links .nav-cta:hover { background: var(--c-d) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .4rem; border-radius: 8px; transition: background .2s; z-index: 400; }
.hamburger:hover { background: var(--c-p); }
.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; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay + drawer */
.mob-overlay { display: none; position: fixed; inset: 0; background: rgba(11,26,34,.5); z-index: 340; backdrop-filter: blur(2px); }
.mob-overlay.on { display: block; }
.mob-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 88vw); background: var(--white); z-index: 360; display: flex; flex-direction: column; transform: translateX(100%); transition: transform .34s cubic-bezier(.4,0,.2,1); box-shadow: -8px 0 40px rgba(11,26,34,.15); overflow-y: auto; }
.mob-drawer.on { transform: translateX(0); }
.mob-head { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.4rem; border-bottom: 1px solid var(--line); }
.mob-close { background: var(--silver); border: none; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; color: var(--slate); display: flex; align-items: center; justify-content: center; transition: .2s; }
.mob-close:hover { background: var(--c); color: #fff; }
.mob-links { list-style: none; padding: 1rem 0; flex: 1; }
.mob-links li a { display: flex; align-items: center; gap: .75rem; padding: .85rem 1.5rem; font-size: .95rem; font-weight: 500; color: var(--ink); transition: .2s; border-left: 3px solid transparent; }
.mob-links li a:hover, .mob-links li a.active { background: var(--c-p); color: var(--c); border-left-color: var(--c); }
.mob-links .mob-divider { height: 1px; background: var(--line); margin: .5rem 1.5rem; }
.mob-footer { padding: 1.2rem 1.5rem; border-top: 1px solid var(--line); }
.mob-cta { display: block; background: var(--c); color: #fff; text-align: center; padding: .85rem; border-radius: 10px; font-weight: 600; font-size: .92rem; margin-bottom: 1rem; transition: .2s; }
.mob-cta-btn { display: block; background: var(--c); color: #fff; text-align: center; padding: .85rem; border-radius: 10px; font-weight: 600; font-size: .92rem; margin-bottom: 1rem; transition: .2s; }
.mob-cta:hover { background: var(--c-d); }
.mob-cta-btn:hover { background: var(--c-d); }
.mob-contacts { display: flex; flex-direction: column; gap: .5rem; }
.mob-contacts a { font-size: .8rem; color: var(--slate); display: flex; align-items: center; gap: .5rem; }
.mob-contacts a:hover { color: var(--c); }

/* ════════════════════════════════════════════
   HERO SLIDER
════════════════════════════════════════════ */
.hero { position: relative; height: 500px; overflow: hidden; background: var(--ink); }
.slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity 1s ease; }
.slide.on { opacity: 1; pointer-events: all; }
.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.06); transition: transform 9s ease; }
.slide.on .slide-bg { transform: scale(1); }
.slide-ov { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(11,26,34,.88) 0%, rgba(11,26,34,.5) 55%, rgba(11,26,34,.1) 100%); }
.hero::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 72px; background: var(--white); clip-path: polygon(0 100%, 100% 15%, 100% 100%); z-index: 2; }
.slide-body { position: relative; z-index: 1; height: 100%; max-width: 1280px; margin: auto; padding: 0 2rem; display: flex; flex-direction: column; justify-content: center; padding-bottom: 60px; }

/* domain pill */
.slide-domain { display: inline-flex; align-items: center; gap: .5rem; border: 1px solid; border-radius: 20px; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: .3rem .9rem; width: fit-content; margin-bottom: 1.3rem; backdrop-filter: blur(6px); opacity: 0; transform: translateY(12px); transition: opacity .5s .2s, transform .5s .2s; }
.slide.on .slide-domain { opacity: 1; transform: translateY(0); }
.slide-domain span { width: 6px; height: 6px; border-radius: 50%; display: block; }
.slide-title { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; color: #fff; line-height: 1.12; letter-spacing: -.02em; max-width: 640px; margin-bottom: 1rem; opacity: 0; transform: translateY(16px); transition: opacity .55s .38s, transform .55s .38s; }
.slide.on .slide-title { opacity: 1; transform: translateY(0); }
.slide-sub { font-size: .95rem; color: rgba(255,255,255,.7); max-width: 480px; line-height: 1.7; margin-bottom: 2rem; opacity: 0; transform: translateY(16px); transition: opacity .55s .55s, transform .55s .55s; }
.slide.on .slide-sub { opacity: 1; transform: translateY(0); }
.slide-btn { display: inline-flex; align-items: center; gap: .5rem; color: #fff; font-weight: 600; font-size: .9rem; padding: .82rem 1.8rem; border-radius: 10px; width: fit-content; opacity: 0; transform: translateY(16px); transition: opacity .55s .7s, transform .55s .7s, background .2s; }
.slide.on .slide-btn { opacity: 1; transform: translateY(0); }
.slide-btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: #fff; font-size: 1.1rem; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px); transition: .2s; }
.hero-arrow:hover { background: var(--c); border-color: var(--c); }
.hero-arrow.prev { left: 1.5rem; }
.hero-arrow.next { right: 1.5rem; }
.hero-dots { position: absolute; bottom: 5rem; left: 50%; transform: translateX(-50%); display: flex; gap: .45rem; z-index: 10; }
.hdot { width: 7px; height: 7px; border-radius: 4px; background: rgba(255,255,255,.35); border: none; cursor: pointer; transition: .25s; }
.hdot.on { width: 24px; background: var(--c); }

/* ════════════════════════════════════════════
   SECTION HELPERS
════════════════════════════════════════════ */
.sec { padding: 5rem 0; }
.sec-alt { background: var(--silver); }
.wrap { max-width: 1280px; margin: auto; padding: 0 2rem; }
.sec-label { display: inline-block; font-size: .67rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--c); background: var(--c-p); padding: .25rem .85rem; border-radius: 20px; margin-bottom: .85rem;border:1px solid var(--c); }
.sec-title { font-size: clamp(1.6rem, 2.8vw, 2.1rem); font-weight: 800; color: var(--ink); line-height: 1.2; letter-spacing: -.02em; }
.sec-sub { font-size: .9rem; color: var(--slate); line-height: 1.7; margin-top: .6rem; max-width: 540px; }
.sec-rule { width: 36px; height: 3px; background: var(--c); border-radius: 2px; margin-top: .9rem; }
.centered { text-align: center; }
.centered .sec-sub, .centered .sec-rule { margin-left: auto; margin-right: auto; }

/* ════════════════════════════════════════════
    ABOUT STRIP
════════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--sh-l); display: block; background: var(--c-p); }
.about-badge { position: absolute; bottom: -1.2rem; right: -1.2rem; background: var(--c); color: #fff; border-radius: 14px; padding: 1.2rem 1.5rem; box-shadow: 0 8px 24px rgba(34,179,193,.4); text-align: center; }
.about-badge-n { font-size: 1.9rem; font-weight: 800; line-height: 1; letter-spacing: -.02em; }
.about-badge-l { font-size: .72rem; font-weight: 500; opacity: .85; margin-top: .25rem; }
.about-text p { font-size: .9rem; color: var(--slate); line-height: 1.78; margin-bottom: .9rem; }
.about-bullets { display: flex; flex-direction: column; gap: .45rem; margin: 1.3rem 0 1.8rem; }
.about-bullet { display: flex; align-items: center; gap: .65rem; font-size: .87rem; font-weight: 500; color: var(--ink-2); }
.ab-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c); flex-shrink: 0; }
.btn-primary { display: inline-flex; align-items: center; gap: .45rem; background: var(--c); color: #fff; padding: .78rem 1.7rem; border-radius: 9px; font-weight: 600; font-size: .88rem; transition: .2s; box-shadow: 0 4px 14px rgba(34,179,193,.3); }
.btn-primary:hover { background: var(--c-d); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(34,179,193,.38); }
.btn-primary svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; }

/* SECTION HELPERS */
.section { padding: 3rem 0; }
.container { max-width: 1240px; margin: auto; padding: 0 2rem; }
.s-label { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--c); background: var(--primary-light); padding: .28rem .85rem; border-radius: 20px; margin-bottom: .8rem; }
.s-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--dark); line-height: 1.2; }
.s-sub { color: var(--gray); font-size: .9rem; margin-top: .6rem; max-width: 540px; line-height: 1.65; }
.s-bar { width: 44px; height: 3px; background: var(--c); border-radius: 2px; margin-top: .9rem; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .s-bar { margin: .9rem auto 0; }
.section-header .s-sub { margin-left: auto; margin-right: auto; }

/* ABOUT */
.about { background: var(--silver); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.about-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--dark); line-height: 1.3; margin-bottom: 1.1rem; }
.about-text h2 em { font-style: normal; color: var(--c); }
.about-text p { font-size: .9rem; color: var(--gray); line-height: 1.78; margin-bottom: 1rem; }
.about-link { display: inline-flex; align-items: center; gap: .45rem; color: var(--c); font-weight: 600; font-size: .88rem; text-decoration: none; margin-top: .4rem; border-bottom: 2px solid var(--primary-light); padding-bottom: 1px; transition: border-color .2s; }
.about-link:hover { border-color: var(--c); }
.kpi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.kpi { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem 1.6rem; text-align: center; position: relative; overflow: hidden; }
.kpi::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--c); }
.kpi-n { font-family: 'Cormorant Garamond', serif; font-size: 2.1rem; color: var(--dark); font-weight: 700; }
.kpi-n em { font-style: normal; color: var(--c); font-size: 1.3rem; }
.kpi-l { font-size: .78rem; color: var(--gray); margin-top: .3rem; }

/* ════════════════════════════════════════════
    DOMAIN CARDS
════════════════════════════════════════════ */
.domains-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.domain-card { border-radius: var(--r-lg); overflow: hidden; position: relative; min-height: 280px; display: flex; flex-direction: column; justify-content: flex-end; text-decoration: none; color: #fff; transition: transform .3s, box-shadow .3s; }
.domain-card:hover { transform: translateY(-6px); box-shadow: var(--sh-l); }
.dc-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .5s ease; }
.domain-card:hover .dc-bg { transform: scale(1.05); }
.dc-ov { position: absolute; inset: 0; transition: opacity .3s; }
.dc-body { position: relative; z-index: 1; padding: 2rem; }
.dc-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.18); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; border: 1px solid rgba(255,255,255,.2); }
.dc-icon svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; }
.dc-title { font-size: 1.4rem; font-weight: 800; letter-spacing: -.02em; line-height: 1.15; margin-bottom: .45rem; }
.dc-sub { font-size: .82rem; color: rgba(255,255,255,.78); line-height: 1.55; margin-bottom: 1.2rem; max-width: 280px; }
.dc-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .78rem; font-weight: 600; background: rgba(255,255,255,.18); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.25); padding: .4rem .9rem; border-radius: 20px; transition: .2s; }
.dc-link:hover { background: rgba(255,255,255,.3); }
.dc-link svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; }

/* per-domain colours */
.dc-etudes  .dc-ov { background: linear-gradient(160deg, rgba(81,156,255,.15) 0%, rgba(81,156,255,.82) 100%); }
.dc-immo    .dc-ov { background: linear-gradient(160deg, rgba(236,138,86,.15) 0%, rgba(236,138,86,.85) 100%); }
.dc-emplois .dc-ov { background: linear-gradient(160deg, rgba(67,143,64,.15) 0%, rgba(67,143,64,.85) 100%); }
.dc-voyages .dc-ov { background: linear-gradient(160deg, rgba(22,42,79,.2) 0%, rgba(22,42,79,.88) 100%); }

/* ════════════════════════════════════════════
    SERVICES GRID (Nos Services)
════════════════════════════════════════════ */
.srv-tabs { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.srv-tab { padding: .42rem 1.1rem; border-radius: 20px; font-size: .8rem; font-weight: 600; border: 1.5px solid var(--line); color: var(--slate); cursor: pointer; transition: .2s; background: var(--white); }
.srv-tab:hover { border-color: var(--c); color: var(--c); }
.srv-tab.on { background: var(--c); color: #fff; border-color: var(--c); }
.srv-panels > div { display: none; }
.srv-panels > div.on { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.srv-item { border: 1px solid var(--line); border-radius: var(--r); padding: 1.2rem; background: var(--white); transition: .25s; text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: .4rem; }
.srv-item:hover { border-color: var(--c); box-shadow: 0 4px 18px rgba(34,179,193,.1); transform: translateY(-2px); }
.srv-item-icon { font-size: 1.4rem; }
.srv-item-name { font-size: .86rem; font-weight: 600; color: var(--ink); }
.srv-item-desc { font-size: .78rem; color: var(--slate); line-height: 1.55; }

/* ════════════════════════════════════════════
    STATS BAND
════════════════════════════════════════════ */
.stats-band { background: linear-gradient(110deg, var(--ink) 0%, var(--ink-2) 100%); padding: 3.5rem 0; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 1.4rem 1rem; border-right: 1px solid rgba(255,255,255,.07); }
.stat:last-child { border: none; }
.stat-n { font-size: 2.4rem; font-weight: 800; color: var(--c); letter-spacing: -.03em; line-height: 1; }
.stat-l { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: .4rem; }

/* ════════════════════════════════════════════
    TESTIMONIALS
════════════════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.3rem; }
.testi { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 1.8rem; position: relative; transition: box-shadow .25s; }
.testi:hover { box-shadow: var(--sh-m); }
.tq { position: absolute; top: .8rem; right: 1.3rem; font-size: 4.5rem; line-height: 1; color: var(--c-p); font-weight: 800; pointer-events: none; }
.testi-stars { color: #f59e0b; font-size: .82rem; margin-bottom: .65rem; }
.testi-txt { font-size: .86rem; color: var(--slate); line-height: 1.72; margin-bottom: 1.2rem; }
.testi-foot { display: flex; align-items: center; gap: .7rem; }
.tav { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--c), var(--c-d)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .88rem; flex-shrink: 0; }
.tname { font-weight: 600; font-size: .86rem; color: var(--ink); }
.trole { font-size: .74rem; color: var(--slate); }

/* ════════════════════════════════════════════
    PARTNERS
════════════════════════════════════════════ */
.partners-lbl { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--mist); text-align: center; margin-bottom: 2rem; }
.partners-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1.2rem 2.5rem; }
.p-logo { height: 44px; max-width: 110px; object-fit: contain; filter: grayscale(1); opacity: .5; transition: .25s; }
.p-logo:hover { filter: none; opacity: 1; transform: scale(1.06); }

/* ════════════════════════════════════════════
    CTA BAND
════════════════════════════════════════════ */
.cta-band { background: linear-gradient(110deg, var(--ink) 0%, var(--ink-2) 100%); padding: 4.5rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: -80px; right: -80px; width: 360px; height: 360px; border-radius: 50%; background: rgba(255,255,255,.05); }
.cta-band::after  { content: ''; position: absolute; bottom: -80px; left: -40px; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,.04); }
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 800; color: #fff; margin-bottom: .8rem; letter-spacing: -.02em; }
.cta-inner p { font-size: .92rem; color: rgba(255,255,255,.78); margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.68; }
.cta-btns { display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--c-dd); font-weight: 700; padding: .82rem 1.9rem; border-radius: 9px; font-size: .9rem; transition: .2s; box-shadow: 0 4px 16px rgba(0,0,0,.1); }
.btn-white:hover { background: var(--c); color: #fff; }
.btn-outline-w { border: 2px solid rgba(255,255,255,.45); color: #fff; font-weight: 600; padding: .82rem 1.9rem; border-radius: 9px; font-size: .9rem; transition: .2s; display: inline-flex; align-items: center; gap: .5rem; }
.btn-outline-w:hover { background: var(--c); border-color: rgba(255,255,255,.7); }

/* ════════════════════════════════════════════
    FOOTER
════════════════════════════════════════════ */
footer { background: var(--c); color: rgba(255,255,255,.6); padding: 4.5rem 0 0; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; }
.foot-about { font-size: .83rem; line-height: 1.75; color: var(--white); margin: .9rem 0 1.2rem; }
.foot-contacts { display: flex; flex-direction: column; gap: .5rem; }
.foot-contacts a { font-size: .8rem; color: var(--white); display: flex; align-items: center; gap: .4rem; transition: .2s; }
.foot-contacts a:hover { color: var(--c-m); }
.foot-soc { display: flex; gap: .45rem; margin-top: 1.1rem; }
.foot-soc a { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--c-m); color: rgba(255,255,255,.4); font-size: .7rem; display: flex; align-items: center; justify-content: center; transition: .2s; }
.foot-soc a:hover { background: var(--c); border-color: var(--white); color: #fff; }
.foot-col h4 { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.88); margin-bottom: 1.1rem; padding-bottom: .55rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.foot-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.foot-links a { color: var(--white); font-size: .82rem; display: flex; align-items: center; gap: .4rem; transition: .2s; }
.foot-links a::before { content: '›'; color: var(--c); font-size: 1rem; }
.foot-links a:hover { color: var(--c-m); padding-left: .25rem; }
.nl p { font-size: .81rem; color: var(--white); line-height: 1.65; margin-bottom: .75rem; }
.nl-row { display: flex; gap: .5rem; }
.nl-row input { flex: 1; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.09); border-radius: 8px; padding: .65rem .9rem; color: #fff; font-size: .82rem; font-family: var(--f); outline: none; transition: .2s; min-width: 0; }
.nl-row input::placeholder { color: rgba(255,255,255,.22); }
.nl-row input:focus { border-color: var(--c); }
.nl-row button { background: var(--white); color: var(--c); border: none; border-radius: 8px; padding: .65rem 1.1rem; font-size: .82rem; font-weight: 600; cursor: pointer; font-family: var(--f); transition: .2s; white-space: nowrap; }
.nl-row button:hover { background: var(--c-d); color: var(--white);border:1px solid var(--c-m)}
.foot-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 1.2rem 0; display: flex; justify-content: space-between; font-size: .73rem; color: var(--white); flex-wrap: wrap; gap: .5rem; align-items: center; }
.foot-bottom a { color: var(--white); }
.foot-bottom a:hover { color: var(--c-m); }
.foot-bl { display: flex; gap: 1.4rem; }

/* scroll top */
#toTop { position: fixed; bottom: 1.8rem; right: 1.8rem; width: 40px; height: 40px; background: var(--c); color: #fff; border: none; border-radius: 50%; cursor: pointer; z-index: 999; box-shadow: 0 4px 14px rgba(34,179,193,.4); display: none; align-items: center; justify-content: center; font-size: .9rem; transition: .2s; }
#toTop:hover { background: var(--c-d); transform: translateY(-2px); }
#toTop.on { display: flex; }

/* 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;
}

 /* ════════════════════════════════════════════
    RESPONSIVE — TABLET  ≤ 1024px
 ════════════════════════════════════════════ */
 @media (max-width: 1024px) {
   .nav-links { display: none; }
   .hamburger { display: flex; }
   .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
   .about-badge { right: 0; bottom: -1rem; }
   .foot-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
   .stats-row { grid-template-columns: repeat(2,1fr); }
   .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
   .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.07); }
   .stat:last-child, .stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }
   .tb-left a:last-child { display: none; }
 }

 /* MOBILE  ≤ 768px */
 @media (max-width: 768px) {
    .phero { padding: 3rem 0 3rem; }
   .hero { height: 500px; }
   .hero::after { height: 50px; }
   .slide-body { padding: 0 1.5rem 50px; }
   .slide-title { font-size: 1.9rem; }
   .slide-sub { font-size: .86rem; }
   .hero-arrow { display: none; }
   .domains-grid { grid-template-columns: 1fr; }
   .srv-panels > div.on { grid-template-columns: 1fr 1fr; }
   .testi-grid { grid-template-columns: 1fr; }
   .team-card { flex-direction: column; text-align: center; padding: 1.5rem; gap: 1.2rem; }
   .sec { padding: 3.5rem 0; }
   .tb-left a:nth-child(2) { display: none; }
   .tb-soc { display: none; }
   .about-img-badge { position: static; margin-top: 1rem; display: inline-flex; gap: .6rem; align-items: center; padding: .8rem 1.2rem; }
   .about-badge-n { font-size: 1.4rem; }
   .cta-band { padding: 3rem 0; }
   .cta-btns { flex-direction: column; align-items: center; }
   .btn-white, .btn-outline-w { width: 100%; text-align: center; max-width: 280px; justify-content: center; }
   .foot-grid { grid-template-columns: 1fr; gap: 1.8rem; }
   .nl-row { flex-direction: column; }
   .foot-bottom { flex-direction: column; text-align: center; }
   .foot-bl { justify-content: center; flex-wrap: wrap; }
   .tb-soc { display: none; }
   .icon-bar{      display:none;  }
 }

 /* SMALL  ≤ 480px */
 @media (max-width: 480px) {
   .wrap { padding: 0 1.2rem; }
   .tb-wrap, .nav-wrap { padding: 0 1.2rem; }
   .nav-wrap { padding: 0 1.2rem; }
   .hero { height: 440px; }
   .slide-title { font-size: 1.65rem; }
   .slide-sub { display: none; }
   .slide-btn { font-size: .82rem; padding: .7rem 1.3rem; }
   .srv-panels > div.on { grid-template-columns: 1fr; }
   .domains-grid { gap: 1rem; }
   .domain-card { min-height: 230px; }
   .stats-row { grid-template-columns: 1fr 1fr; }
   .partners-row { gap: .8rem 1.5rem; }
   .p-logo { height: 32px; max-width: 80px; }
   .sec-title { font-size: 1.5rem; }
   .testi { padding: 1.3rem; }
   .icon-bar{      display:none;  }
 }