/* =========================================================
   IBMS WEBSITE
   MAIN DESIGN SYSTEM
========================================================= */

:root {
    --navy-950: #010a18;
    --navy-900: #021329;
    --navy-850: #041a34;
    --navy-800: #06213f;

    --blue: #087cff;
    --blue-light: #25a5ff;
    --green: #19d873;

    --white: #ffffff;

    --light-bg: #f3f8ff;
    --dark-text: #071528;
    --body-text: #617289;
}


/* =========================================================
   RESET
========================================================= */

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


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Inter", Arial, sans-serif;
    background: #ffffff;
    color: var(--dark-text);
    overflow-x: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font: inherit;
}


img {
    display: block;
    max-width: 100%;
}


.page-container {
    width: min(1460px, calc(100% - 64px));
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    position: relative;
    overflow: hidden;

    color: white;

    background: #03162d;
}


.hero-background {
    position: absolute;
    inset: 0;

    background-image:
        url("/static/images/ibms-hero-bg.bd82f9588620.png");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


.hero-overlay {
    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(1, 12, 29, 0.78) 0%,
            rgba(2, 20, 43, 0.60) 33%,
            rgba(3, 31, 64, 0.28) 66%,
            rgba(2, 18, 40, 0.38) 100%
        );
}


.hero-network {
    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 90% 26%,
            rgba(41, 159, 255, 0.18),
            transparent 25%
        );

    opacity: 0.72;
}


/* =========================================================
   NAVIGATION
========================================================= */

.site-header {
    position: relative;
    z-index: 50;

    min-height: 72px;

    display: flex;
    align-items: center;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.07);

    background:
        rgba(2, 21, 46, 0.66);

    backdrop-filter: blur(14px);
}


.nav-wrapper {
    display: flex;
    align-items: center;

    gap: 22px;
}


/* =========================================================
   IBMS LOGO
========================================================= */

.brand {
    flex-shrink: 0;

    display: flex;
    align-items: center;

    gap: 10px;

    color: white;
}


.ibms-logo-mark {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 3px;

    border-radius: 11px;

    background:
        linear-gradient(
            145deg,
            #35b8ff,
            #0873ff
        );

    box-shadow:
        0 8px 26px rgba(0, 116, 255, 0.34);
}


.logo-i {
    width: 7px;
    height: 25px;

    border-radius: 2px;

    background: white;
}


.logo-b {
    display: flex;
    flex-direction: column;

    gap: 3px;
}


.logo-b span {
    width: 16px;
    height: 11px;

    border-radius:
        2px 7px 7px 2px;

    background: white;
}


.brand-name {
    display: flex;
    flex-direction: column;
}


.brand-name strong {
    font-size: 23px;
    line-height: 1;
}


.brand-name > span {
    margin-top: 4px;

    color: #d6e5f4;

    font-size: 7px;
    line-height: 1.25;
}


/* =========================================================
   DESKTOP NAV
========================================================= */

.desktop-nav {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 22px;
}


.desktop-nav a {
    position: relative;

    color: rgba(255, 255, 255, 0.82);

    font-size: 10px;
    font-weight: 500;

    white-space: nowrap;
}


.desktop-nav a:hover,
.desktop-nav a.active {
    color: white;
}


.desktop-nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -16px;

    height: 2px;

    background: var(--blue-light);

    border-radius: 10px;
}


.nav-cta {
    flex-shrink: 0;

    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 20px;

    border-radius: 8px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #22a1ff,
            #0874f5
        );

    font-size: 11px;
    font-weight: 700;

    box-shadow:
        0 10px 28px rgba(0, 105, 255, 0.28);
}


.mobile-menu-button {
    display: none;

    border: 0;

    color: white;
    background: transparent;

    font-size: 30px;

    cursor: pointer;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: relative;
    z-index: 10;

    display: grid;

    grid-template-columns:
        minmax(400px, 0.82fr)
        minmax(620px, 1.18fr);

    align-items: center;

    gap: 48px;

    padding-top: 48px;
    padding-bottom: 42px;
}


.hero-badge {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    padding: 8px 13px;

    border:
        1px solid rgba(74, 175, 255, 0.40);

    border-radius: 999px;

    color: #9ed3ff;

    background:
        rgba(8, 78, 160, 0.24);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.09em;

    text-transform: uppercase;

    backdrop-filter: blur(8px);
}


.hero-badge span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--blue-light);

    box-shadow:
        0 0 12px var(--blue-light);
}


.hero-copy h1 {
    max-width: 590px;

    margin-top: 20px;

    color: white;

    font-size:
        clamp(44px, 4vw, 62px);

    font-weight: 800;

    line-height: 0.98;

    letter-spacing: -0.055em;

    text-shadow:
        0 8px 30px rgba(0, 0, 0, 0.28);
}


.hero-copy h1 span {
    display: block;

    margin-top: 7px;

    color: #188cff;
}


.hero-description {
    max-width: 590px;

    margin-top: 20px;

    color: #eef6ff;

    font-size: 13px;

    line-height: 1.72;

    text-shadow:
        0 4px 15px rgba(0, 0, 0, 0.40);
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 23px;
}


.button {
    min-height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 0 19px;

    border-radius: 8px;

    font-size: 10px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.button:hover {
    transform: translateY(-2px);
}


.button-primary {
    color: white;

    background:
        linear-gradient(
            135deg,
            #20a2ff,
            #0875ef
        );

    box-shadow:
        0 12px 30px rgba(0, 107, 255, 0.30);
}


.button-secondary {
    color: white;

    border:
        1px solid rgba(144, 205, 255, 0.62);

    background:
        rgba(2, 28, 59, 0.50);

    backdrop-filter: blur(10px);
}


.button-whatsapp {
    color: #4cf094;

    border:
        1px solid rgba(40, 231, 130, 0.78);

    background:
        rgba(0, 53, 32, 0.46);

    backdrop-filter: blur(10px);
}


/* =========================================================
   HERO BENEFITS
========================================================= */

.hero-benefits {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;

    margin-top: 31px;
}


.benefit-item {
    display: flex;
    align-items: flex-start;

    gap: 8px;
}


.benefit-item > i {
    color: #36b5ff;

    font-size: 19px;
}


.benefit-item div {
    display: flex;
    flex-direction: column;
}


.benefit-item strong {
    color: white;

    font-size: 8px;

    white-space: nowrap;
}


.benefit-item span {
    margin-top: 3px;

    color: #cae0f4;

    font-size: 6px;

    white-space: nowrap;
}


/* =========================================================
   DASHBOARD
========================================================= */

.hero-product {
    width: 100%;

    max-width: 820px;

    justify-self: end;
}


.dashboard-window {
    width: 100%;

    overflow: hidden;

    border:
        1px solid rgba(126, 193, 255, 0.60);

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            rgba(10, 38, 70, 0.76),
            rgba(3, 22, 45, 0.66)
        );

    backdrop-filter: blur(18px) saturate(125%);

    box-shadow:
        0 24px 58px rgba(0, 15, 38, 0.27),
        0 0 70px rgba(20, 139, 255, 0.10);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.dashboard-window:hover,
.dashboard-window.dashboard-active {
    transform: translateY(-4px);

    box-shadow:
        0 30px 70px rgba(0, 15, 38, 0.32),
        0 0 85px rgba(20, 139, 255, 0.15);
}


.dashboard-topbar {
    height: 53px;

    display: grid;

    grid-template-columns:
        130px 1fr auto;

    align-items: center;

    padding: 0 15px;

    border-bottom:
        1px solid rgba(123, 178, 241, 0.10);
}


.dashboard-brand {
    display: flex;
    align-items: center;

    gap: 7px;
}


.mini-logo {
    width: 25px;
    height: 25px;

    display: grid;
    place-items: center;

    border-radius: 6px;

    background: #087cff;

    font-size: 9px;
    font-weight: 800;
}


.dashboard-brand strong {
    font-size: 12px;
}


.dashboard-title {
    font-size: 10px;
    font-weight: 600;
}


.dashboard-user {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #b8cade;

    font-size: 7px;
}


.dashboard-user span {
    width: 25px;
    height: 25px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #174d8d;
}


/* DASHBOARD BODY */

.dashboard-body {
    display: grid;

    grid-template-columns:
        130px 1fr;
}


.dashboard-sidebar {
    padding: 11px;

    border-right:
        1px solid rgba(123, 178, 241, 0.10);

    background:
        rgba(7, 31, 58, 0.42);

    backdrop-filter: blur(12px);
}


.sidebar-item {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 3px;

    padding: 7px 8px;

    border-radius: 6px;

    color: #aebfd4;

    font-size: 7px;
}


.sidebar-item.active {
    color: white;

    background:
        linear-gradient(
            90deg,
            #0b72dc,
            #0f559c
        );
}


.dashboard-main {
    padding: 12px;
}


/* KPI */

.dashboard-kpis {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 8px;
}


.dashboard-card {
    border:
        1px solid rgba(99, 162, 229, 0.11);

    border-radius: 9px;

    background:
        linear-gradient(
            145deg,
            rgba(22, 67, 108, 0.72),
            rgba(8, 39, 72, 0.60)
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}


.kpi-card {
    min-height: 81px;

    padding: 11px;
}


.kpi-card span {
    display: block;

    color: #9cb3cb;

    font-size: 7px;
}


.kpi-card strong {
    display: block;

    margin-top: 9px;

    color: white;

    font-size: 17px;
}


.kpi-card small {
    display: block;

    margin-top: 6px;

    font-size: 6px;
}


.positive {
    color: #5fe47e;
}


/* CHARTS */

.dashboard-middle {
    display: grid;

    grid-template-columns:
        1.35fr 0.8fr;

    gap: 8px;

    margin-top: 8px;
}


.chart-card,
.expense-card {
    padding: 11px;
}


.card-heading {
    margin-bottom: 8px;

    color: white;

    font-size: 8px;
    font-weight: 600;
}


.fake-chart {
    position: relative;

    height: 108px;
}


.chart-grid {
    position: absolute;
    inset: 0;

    background:
        repeating-linear-gradient(
            to bottom,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.055) 1px,
            transparent 1px,
            transparent 27px
        );
}


.fake-chart svg {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 100%;
}


.fake-chart polyline {
    fill: none;

    stroke: #20a4ff;

    stroke-width: 3;

    vector-effect: non-scaling-stroke;
}


.chart-months {
    display: flex;
    justify-content: space-between;

    color: #6f89a6;

    font-size: 6px;
}


/* DONUT */

.expense-content {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;
}


.donut-chart {
    width: 96px;
    height: 96px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        conic-gradient(
            #188aff 0 40%,
            #22a8db 40% 65%,
            #16bc86 65% 80%,
            #e7ad26 80% 100%
        );
}


.donut-centre {
    width: 59px;
    height: 59px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background: #071d34;
}


.donut-centre strong {
    font-size: 12px;
}


.donut-centre span {
    color: #9db0c8;

    font-size: 6px;
}


.expense-legend {
    display: flex;
    flex-direction: column;

    gap: 7px;

    color: #c2d0e1;

    font-size: 6px;
}


.expense-legend span {
    display: flex;
    align-items: center;

    gap: 5px;
}


.dot {
    width: 6px;
    height: 6px;

    display: inline-block;

    border-radius: 50%;
}


.dot-one { background: #188aff; }
.dot-two { background: #22a8db; }
.dot-three { background: #16bc86; }
.dot-four { background: #e7ad26; }


/* DASHBOARD BOTTOM */

.dashboard-bottom {
    display: grid;

    grid-template-columns:
        1.55fr 0.65fr;

    gap: 8px;

    margin-top: 8px;
}


.transaction-card,
.approvals-card {
    padding: 10px;
}


.transaction-row {
    display: grid;

    grid-template-columns:
        1fr auto auto;

    gap: 11px;

    align-items: center;

    padding: 6px 0;

    border-top:
        1px solid rgba(255,255,255,0.05);

    color: #aabbd0;

    font-size: 6px;
}


.status {
    padding: 3px 6px;

    border-radius: 999px;

    color: #55e079;

    background:
        rgba(31,192,78,0.12);
}


.approvals-card > div:not(.card-heading) {
    display: flex;

    gap: 8px;

    padding: 6px 0;

    border-top:
        1px solid rgba(255,255,255,0.05);

    color: #aabbd0;

    font-size: 6px;
}


.approvals-card strong {
    color: white;
}


/* =========================================================
   INDUSTRIES SECTION
========================================================= */

.industries-section {
    padding: 82px 0 72px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(58, 157, 255, 0.13),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #edf6ff 0%,
            #f7fbff 55%,
            #ffffff 100%
        );
}


.section-heading {
    max-width: 760px;

    margin: 0 auto 28px;

    text-align: center;
}


.section-heading > span {
    color: var(--blue);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.13em;
}


.section-heading h2 {
    margin-top: 7px;

    color: var(--dark-text);

    font-size:
        clamp(27px, 3vw, 38px);

    line-height: 1.08;

    letter-spacing: -0.04em;
}


.section-heading p {
    max-width: 680px;

    margin: 10px auto 0;

    color: var(--body-text);

    font-size: 10px;

    line-height: 1.6;
}


/* =========================================================
   IMAGE INDUSTRY CARDS
========================================================= */

.industry-grid {
    display: grid;

    grid-template-columns:
        repeat(7, minmax(0, 1fr));

    gap: 10px;

    align-items: stretch;
}


.industry-card {
    min-width: 0;

    overflow: hidden;

    display: flex;
    flex-direction: column;

    border:
        1px solid #dce8f4;

    border-radius: 11px;

    background: #ffffff;

    box-shadow:
        0 10px 28px rgba(46, 95, 146, 0.08);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.industry-card:hover,
.industry-card.industry-card-active {
    transform: translateY(-6px);

    border-color:
        rgba(0, 119, 255, 0.34);

    box-shadow:
        0 22px 42px rgba(24, 91, 157, 0.15);
}


/* IMAGE */

.industry-image {
    position: relative;

    height: 105px;

    overflow: hidden;

    background: #dcecff;
}


.industry-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.4s ease;
}


.industry-card:hover .industry-image img {
    transform: scale(1.05);
}


/* FLOATING ICON */

.industry-icon-floating {
    position: absolute;

    left: 12px;
    bottom: -15px;

    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border:
        3px solid white;

    border-radius: 50%;

    color: white;

    background:
        linear-gradient(
            145deg,
            #1aa2ff,
            #0874ed
        );

    box-shadow:
        0 8px 18px rgba(0, 105, 240, 0.27);

    font-size: 16px;
}


.school-icon {
    background:
        linear-gradient(
            145deg,
            #8756ff,
            #5c28d9
        );
}


.church-icon {
    background:
        linear-gradient(
            145deg,
            #864df7,
            #5f28c9
        );
}


.pharmacy-icon {
    background:
        linear-gradient(
            145deg,
            #30d88b,
            #0dac69
        );
}


.manufacturing-icon {
    background:
        linear-gradient(
            145deg,
            #ff8b37,
            #f05b12
        );
}


.realestate-icon {
    background:
        linear-gradient(
            145deg,
            #28a5ff,
            #0679ee
        );
}


/* CARD BODY */

.industry-card-body {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding:
        24px 13px 13px;
}


.industry-card-body h3 {
    color: #0b1728;

    font-size: 12px;
}


.industry-card-body p {
    margin-top: 7px;

    color: #617289;

    font-size: 8px;

    line-height: 1.5;
}


.industry-card-body a {
    margin-top: auto;

    padding-top: 14px;

    color: var(--blue);

    font-size: 8px;
    font-weight: 700;
}


.industry-card-body a i {
    margin-left: 3px;
}


/* =========================================================
   MORE INDUSTRIES CARD
========================================================= */

.more-industries-card {
    border: 0;

    color: white;

    background:
        linear-gradient(
            155deg,
            #2d95ff 0%,
            #0878f0 48%,
            #0757c8 100%
        );

    box-shadow:
        0 16px 34px rgba(0, 89, 210, 0.23);
}


.more-industries-content {
    flex: 1;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 22px 13px;

    text-align: center;
}


.more-industries-icon {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    margin-bottom: 13px;

    border-radius: 50%;

    color: white;

    background:
        rgba(255,255,255,0.15);

    font-size: 20px;
}


.more-industries-card h3 {
    color: white;

    font-size: 13px;
}


.more-industries-card p {
    margin-top: 9px;

    color:
        rgba(255,255,255,0.86);

    font-size: 8px;

    line-height: 1.5;
}


.more-industries-card a {
    margin-top: 16px;

    min-height: 34px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 5px;

    padding: 0 16px;

    border-radius: 999px;

    color: #0876e8;

    background: white;

    font-size: 8px;
    font-weight: 800;
}


/* =========================================================
   SCROLLED HEADER
========================================================= */

.site-header.header-scrolled {
    background:
        rgba(2, 22, 48, 0.94);

    box-shadow:
        0 10px 35px rgba(0,0,0,0.20);

    backdrop-filter: blur(18px);
}


/* =========================================================
   RESPONSIVE — LARGE LAPTOP
========================================================= */

@media (max-width: 1300px) {

    .desktop-nav {
        gap: 15px;
    }


    .desktop-nav a {
        font-size: 9px;
    }


    .industry-grid {
        grid-template-columns:
            repeat(4, 1fr);
    }
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1050px) {

    .desktop-nav {
        display: none;
    }


    .desktop-nav.mobile-nav-open {
        position: absolute;

        top: 72px;

        left: 16px;
        right: 16px;

        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 14px;

        border:
            1px solid rgba(89,159,235,0.25);

        border-radius: 14px;

        background:
            rgba(3,24,51,0.98);

        box-shadow:
            0 25px 60px rgba(0,0,0,0.30);
    }


    .desktop-nav.mobile-nav-open a {
        padding: 13px 12px;

        border-bottom:
            1px solid rgba(255,255,255,0.06);

        font-size: 12px;
    }


    .desktop-nav.mobile-nav-open a::after {
        display: none;
    }


    .nav-cta {
        margin-left: auto;
    }


    .mobile-menu-button {
        display: block;
    }


    .hero-content {
        grid-template-columns: 1fr;

        padding-top: 50px;
    }


    .hero-product {
        max-width: 850px;

        justify-self: center;
    }


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


    .industry-image {
        height: 150px;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 760px) {

    .page-container {
        width:
            min(100% - 30px, 1460px);
    }


    .brand-name > span {
        display: none;
    }


    .nav-cta {
        display: none;
    }


    .hero-copy h1 {
        font-size: 44px;
    }


    .hero-benefits {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .dashboard-sidebar {
        display: none;
    }


    .dashboard-body {
        grid-template-columns: 1fr;
    }


    .dashboard-kpis {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .dashboard-middle,
    .dashboard-bottom {
        grid-template-columns: 1fr;
    }


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


    .industry-image {
        height: 135px;
    }


    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(2,12,29,0.84),
                rgba(3,20,44,0.70),
                rgba(2,18,40,0.62)
            );
    }
}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 520px) {

    .ibms-logo-mark {
        width: 40px;
        height: 40px;
    }


    .brand-name strong {
        font-size: 20px;
    }


    .hero-copy h1 {
        font-size: 38px;
    }


    .hero-actions {
        flex-direction: column;
    }


    .button {
        width: 100%;
    }


    .hero-benefits {
        grid-template-columns: 1fr;
    }


    .dashboard-kpis {
        grid-template-columns: 1fr;
    }


    .industry-grid {
        grid-template-columns: 1fr;
    }


    .industry-image {
        height: 190px;
    }
}

/* Global marketing hero refinement: brighter text field, crisp visual side. */
.hero-section { background:#083b61; }
.hero-overlay { background:linear-gradient(90deg,rgba(8,59,97,.96) 0%,rgba(8,59,97,.94) 39%,rgba(8,59,97,.56) 45%,rgba(8,59,97,.12) 51%,transparent 56%); }
.hero-content { grid-template-columns:minmax(390px,44fr) minmax(560px,56fr); gap:34px; padding-top:38px; padding-bottom:36px; }
.hero-background { background-position:58% center; }
@media (max-width:1100px) and (min-width:761px) { .hero-content { grid-template-columns:1fr; } .hero-overlay { background:linear-gradient(90deg,rgba(8,59,97,.9),rgba(8,59,97,.45) 52%,transparent 76%); } }
@media (max-width:760px) { .hero-overlay { display:block; background:linear-gradient(90deg,rgba(3,28,51,.94),rgba(3,28,51,.78) 62%,rgba(3,28,51,.48)); } .hero-background { background-position:58% center; } .hero-content { padding-top:42px; padding-bottom:34px; } }


/* =========================================================
   SITE-WIDE WHATSAPP CONTACT
========================================================= */

.whatsapp-contact-button {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 17px;
    border-radius: 999px;
    background: #25d366;
    color: #092b16;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(13, 87, 40, 0.28);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-contact-button:hover,
.whatsapp-contact-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(13, 87, 40, 0.34);
}

.whatsapp-contact-button i {
    font-size: 21px;
}

@media (max-width: 520px) {
    .whatsapp-contact-button {
        right: 14px;
        bottom: 14px;
        width: 50px;
        height: 50px;
        justify-content: center;
        padding: 0;
    }

    .whatsapp-contact-button span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }
}

