*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --teal: #b0bcaf;
    --teal-dark: #7e897f;
    --teal-light: #cedfcf;
    --teal-mid:#c1d1c2;
    --navy: #3b3b33;
    --orange: #ff6b35;
    --orange-light: #fff0eb;
    --yellow: #ffd166;
    --bg: #f7f9fa;
    --white: #ffffff;
    --text: #3b3b33;
    --muted: #3b3b33;
    --border: #e4eaed;
    --radius: 16px;
    --radius-sm: 10px;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Nunito Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden
}

/* ── TOPBAR ── */
.topbar {
    background: var(--teal);
    padding: 8px 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.topbar a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px
}

.topbar-sep {
    opacity: 0.35;
    font-size: 1rem
}

/* ── NAV ── */
nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.nav-logo {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--teal-dark);
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 10px;

}

.nav-logo a {
    text-decoration: none;
    color: var(--teal-dark);
}

.nav-logo-icon {
    width: 200px;
    border-radius: 10px;
    /* background:var(--teal); */
    display: flex;
    align-items: center;
    justify-content: center;
}

/*.nav-logo-icon svg{width:20px;height:20px;fill:white}*/

.nav-logo-icon img {
    width: 160px;
    margin-top: 10px;
}

.nav-links {
    display: flex;
    gap: 0.25rem;
    list-style: none;

}

.nav-links a {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
    transition: all 0.2s;
}

.nav-links a:hover, .nav-links a.active{
    background: var(--teal-light);
    color: var(--teal-dark)
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem
}

.nav-btn {
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    transition: all 0.2s;
}

.nav-btn-outline {
    border: 2px solid var(--teal);
    color: var(--teal);
    background: transparent
}

.nav-btn-outline:hover {
    background: var(--teal-light)
}

.nav-btn-filled {
    background: var(--orange);
    color: white;
    border: 2px solid var(--orange)
}

.nav-btn-filled:hover {
    opacity: 0.88
}

/* ── header ── */
.header {
    background: linear-gradient(135deg, var(--navy) 0%, #1e3d50 60%, #1a4a45 100%);
    padding: 4rem 2rem 0;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 500px;
    overflow: hidden;
    position: relative;
}

.header::after {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -60px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 168, 150, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.header-content {
    padding-bottom: 3rem;
    position: relative;
    z-index: 1
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.25rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.header-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0
}

.header-title {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: white;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.header-title em {
    font-style: normal;
    background: linear-gradient(90deg, var(--teal) 0%, #4dd9ca 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 400px;
    margin-bottom: 2rem;
}

.header-ctas {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap
}

.badge-link{
    background: var(--bg);
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    width: 80px;
    padding:  10px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

.btn-header-main {
    background: var(--teal);
    color: white;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(0, 168, 150, 0.4);
}

.btn-header-main:hover {
    background: #00bfab;
    transform: translateY(-1px)
}

.btn-header-ghost {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-header-ghost:hover {
    border-color: rgba(255, 255, 255, 0.7)
}

/* header SERVICES RAPIDES */
.header-services {
    position: relative;
    z-index: 1;
    align-self: flex-end;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 12px;
    padding-bottom: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.25s;
    /* cursor:pointer; */
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px)
}

.service-card.accent {
    background: var(--teal);
    border-color: var(--teal);
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.sc-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sc-icon svg {
    width: 22px;
    height: 22px;
    stroke: white;
    fill: none;
    stroke-width: 2
}

.sc-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em
}

.sc-title {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: white
}

/* ── MARQUEE ── */
.marquee-strip {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    overflow: hidden;
}

.marquee-inner {
    display: flex;
    gap: 3.5rem;
    animation: scroll 25s linear infinite;
    width: max-content
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.marquee-sep {
    color: var(--teal);
    font-size: 1.2rem;
    line-height: 1
}

@keyframes scroll {
    0% {
        transform: translateX(0)
    }
    100% {
        transform: translateX(-50%)
    }
}

/* ── SERVICES SECTION ── */
.services-section {
    background: var(--white);
    padding: 4rem 2rem
}

.section-head {
    text-align: center;
    margin-bottom: 3rem
}

.section-tag {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal-dark);
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.section-sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 500px;
    margin: 0 auto
}

.services-grid {
    display: grid;
    grid-template-columns:repeat(5, 1fr);
    gap: 16px
}

.svc {
    background: var(--bg);
    border: 2px solid transparent;
    border-radius: var(--radius);
    padding: 1.75rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.svc:hover {
    border-color: var(--teal);
    background: var(--teal-light);
    transform: translateY(-4px)
}

.svc-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.svc-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--teal-dark);
    fill: none;
    stroke-width: 2
}

.svc-label {
    font-family: 'Nunito', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--navy)
}

/* ── PROMOTIONS ── */
.promos-section {
    background: var(--bg);
    padding: 4rem 2rem
}

.promos-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem
}

.see-all {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--teal-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px
}

.promos-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 16px
}

.promo-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.2s;
    cursor: pointer;
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1)
}

.promo-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    background:linear-gradient(135deg, #cedfcf,#c1d1c2)
}

.promo-img img{
    max-height: 150px;
    object-fit:cover;
    border-radius: var(--radius);
}

.promo-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--orange);
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    padding: 4px 10px;
    border-radius: 8px;
    text-align: center;
}

.promo-body {
    padding: 1rem
}

.promo-labo {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px
}

.promo-name {
    font-family: 'Nunito', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3
}

.promo-desc {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 4px
}

/* ── ENGAGEMENTS ── */
.eng-section {
    background: var(--white);
    padding: 4rem 2rem
}

.eng-grid {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 24px;
    margin-top: 3rem
}

.eng-card {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: border-color 0.2s;
}

.eng-card:hover {
    border-color: var(--teal)
}

.eng-card.featured {
    background: var(--navy);
    border-color: var(--navy);
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
}

.eng-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    flex-shrink: 0;
    background: var(--teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.eng-card.featured .eng-icon-wrap {
    background: rgba(0, 168, 150, 0.25)
}

.eng-icon-wrap svg {
    width: 26px;
    height: 26px;
    stroke: var(--teal-dark);
    fill: none;
    stroke-width: 2
}

.eng-card.featured .eng-icon-wrap svg {
    stroke: var(--teal)
}

.eng-title {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 0.4rem
}

.eng-card.featured .eng-title {
    color: white;
    font-size: 1.1rem
}

.eng-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.6
}

.eng-card.featured .eng-desc {
    color: rgba(255, 255, 255, 0.6)
}

.eng-bullets {
    list-style: none;
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.eng-bullets li {
    font-size: 1rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px
}

.eng-bullets li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0
}

.eng-card.featured .eng-bullets li {
    color: rgba(255, 255, 255, 0.55)
}

/* ── STATS ── */
.stats-banner {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--navy) 100%);
    padding: 3.5rem 2rem;
    display: flex;
    justify-content: center;
    gap: 0;
}

.stat-block {
    flex: 1;
    max-width: 200px;
    text-align: center;
    padding: 0 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.15)
}

.stat-block:last-child {
    border-right: none
}

.stat-num {
    font-family: 'Nunito', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem
}

.stat-num span {
    color: var(--teal);
    font-size: 1.8rem
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase
}

/* ── PHARMACIES ── */
.pharma-section {
    background: var(--bg);
    padding: 4rem 2rem
}

.pharma-layout {
    display: grid;
    grid-template-columns:1fr 2fr;
    gap: 2rem;
    margin-top: 2.5rem;
    align-items: start;
}

.pharma-intro {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    overflow-y: scroll;
}

.pharma-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pharma-item {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 12px;
    text-decoration: none;
}

a.badge-link:hover, .pharma-item.active {
    border-color: var(--teal);
    background: var(--teal-light)
}

.pharma-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0
}

.pharma-city {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--teal-dark)
}

.pharma-name {
    font-family: 'Nunito', sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--navy)
}

.pharma-addr {
    font-size: 0.75rem;
    color: var(--muted)
}

.pharma-map {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.map-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(var(--teal-light) 1px, transparent 1px), linear-gradient(90deg, var(--teal-light) 1px, transparent 1px);
    background-size: 40px 40px;
     opacity: 0.7;
}

.map-pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px
}

.map-pin-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--teal);
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 168, 150, 0.5)
}

.map-pin-label {
    background: white;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 3px 8px;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1)
}

.map-overlay {
    position: relative;
    z-index: 1;
    text-align: center
}

.map-count {
    font-family: 'Nunito', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--teal-dark);
    line-height: 1;
    display: inline;
}

.map-sub {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 600
}

/* ── PARTENAIRES ── */
.partners-section {
    background: var(--white);
    padding: 4rem 2rem
}

.partners-cats {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap
}

.pcat {
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 2px solid var(--border);
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s
}

.pcat.active, .pcat:hover {
    border-color: var(--teal);
    color: var(--teal-dark);
    background: var(--teal-light)
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.partner-logo {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--muted);
    letter-spacing: 0.02em;
    min-width: 100px;
    text-align: center;
    transition: all 0.2s;
    cursor: default;
}

.partner-logo:hover {
    border-color: var(--teal);
    color: var(--teal-dark);
    background: var(--teal-light)
}

/* ── CONTACT ── */
.contact-section {
    background: var(--navy);
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 4rem;
    align-items: center
}

.contact-section .section-title {
    color: white
}

.contact-section .section-tag {
    background: rgba(0, 168, 150, 0.2);
    color: var(--teal)
}

.contact-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 1rem 0 2rem
}

.contact-infos {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.ci {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7)
}

.ci-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.ci-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 2
}

.form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.form-card div.check{
    display: flex;justify-content: space-around; align-items: center;
}

.form-card div.check input[type="checkbox"] {
    width: 20px;
    height: 20px;
}
.form-card div.check div.w-10{
    width: 10%;

}


.fc-title {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 0.25rem
}

.fc-sub {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 0.75rem
}

.frow {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 12px
}

.fg {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.fg label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
}

.fg input, .fg textarea, .fg select {
    border: 1.5px solid var(--border);
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-family: 'Nunito Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    width: 80%;
    outline: none;
    transition: border-color 0.2s;
    resize: vertical;
}

.fg input:focus, .fg textarea:focus {
    border-color: var(--teal)
}

.fg input::placeholder, .fg textarea::placeholder {
    color: #b0bec5
}

.btn-submit {
    background: var(--teal);
    color: white;
    padding: 13px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-submit:hover {
    background: var(--teal-dark)
}

.turbo-progress-bar {
    height: 8px;
    background-color: var(--orange);
}

form.form-login{
    margin:100px  auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 40%;
    label{
        display: inline;
        margin-bottom: 0.8rem;
        margin-top: 0.8rem;
    }
    .btn-submit{
        width: 80%;
    }
}

.mt-50{
    margin-top: 50px;
}

/* ── FOOTER ── */
footer {
    background: #5a5b4e;
    padding: 3rem 2rem 2rem
}

.footer-inner {
    display: grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem
}

.footer-brand p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.7;
    max-width: 260px;
    margin-top: 1rem
}

.footer-col h4 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    color: white;
    margin-bottom: 1rem
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem
}

.footer-col a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s
}

.footer-col a:hover {
    color: var(--teal)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6)
}

.social-links {
    display: flex;
    gap: 10px
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 700
}

.social-btn:hover {
    background: var(--teal);
    color: white
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .topbar {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 8px 1rem;
        justify-content: center
    }

    nav {
        padding: 0 1rem
    }

    .nav-links {
        display: none
    }

    .header {
        grid-template-columns:1fr;
        padding: 2rem 1rem 0
    }

    .header-services {
        grid-template-columns:1fr 1fr
    }

    .services-grid {
        grid-template-columns:repeat(3, 1fr)
    }

    .promos-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .eng-grid {
        grid-template-columns:1fr
    }

    .eng-card.featured {
        grid-column: span 1;
        flex-direction: column
    }

    .stats-banner {
        flex-wrap: wrap;
        gap: 1.5rem
    }

    .stat-block {
        border-right: none;
        max-width: none;
        flex: 1 1 40%
    }

    .pharma-layout {
        grid-template-columns:1fr
    }

    .contact-section {
        grid-template-columns:1fr
    }

    .footer-inner {
        grid-template-columns:1fr 1fr
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center
    }
}
