/* =========================================================
   MS INSURANCE - ABOUT PAGE
   COMPLETE MATCHING CSS
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f7fa;
    color: #17324d;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input {
    font-family: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    background: #031f3d;
    color: #d7e3ee;
    font-size: 11px;
}

.top-inner {
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-separator {
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,.25);
}

.top-right a,
.top-right button {
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 11px;
}

.top-right a:hover,
.top-right button:hover {
    color: #dfb744;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid #e3eaf0;
    box-shadow: 0 4px 20px rgba(0,35,70,.07);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
}

.lic-logo {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
}

.lic-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-line {
    width: 1px;
    height: 43px;
    background: #dce4eb;
}

.ms-logo {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #063b78;
    color: #fff;

    border: 3px solid #d5a932;

    font-size: 13px;
    font-weight: 900;
}

.brand-name strong {
    display: block;
    color: #063b78;
    font-size: 18px;
    letter-spacing: .4px;
}

.brand-name small {
    display: block;
    color: #7b8c9d;
    font-size: 9px;
    margin-top: 2px;
}


/* =========================================================
   DESKTOP NAV
========================================================= */

.desktop-nav {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 20px;
}

.desktop-nav a {
    position: relative;

    padding: 31px 0;

    color: #40556a;

    font-size: 11px;
    font-weight: 800;

    white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: #063b78;
}

.desktop-nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 21px;

    height: 2px;

    background: #d5a932;
}


/* =========================================================
   HEADER BUTTON
========================================================= */

.header-btn {
    padding: 11px 17px;

    background: #063b78;
    color: #fff;

    font-size: 10px;
    font-weight: 900;

    white-space: nowrap;

    transition: .25s;
}

.header-btn:hover {
    background: #d5a932;
    color: #062d55;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.menu-btn {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid #dbe3eb;

    background: #fff;
    color: #063b78;

    font-size: 21px;

    cursor: pointer;
}

.mobile-nav {
    display: none;
    background: #fff;
    border-top: 1px solid #e8edf2;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav a {
    display: block;

    padding: 14px 5%;

    border-bottom: 1px solid #e9eef3;

    color: #203c56;

    font-size: 13px;
    font-weight: 700;
}

.mobile-nav a:hover {
    background: #f5f8fb;
    color: #063b78;
}


/* =========================================================
   ABOUT HERO
========================================================= */

.about-hero {
    position: relative;

    min-height: 570px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #032b54;
}


/*
=========================================================
 HERO IMAGE CHANGE OPTION

 YAHAN IMAGE CHANGE KAR SAKTE HO:

 images/about/about-hero.jpg

=========================================================
*/

.about-hero-background {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(2,31,60,.98) 0%,
            rgba(3,51,94,.88) 45%,
            rgba(3,64,110,.55) 100%
        ),
        url("images/about/about-hero.jpg")
        center center / cover no-repeat;

    transform: scale(1.03);
}

.about-hero-background::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 82% 25%,
            rgba(219,178,61,.18),
            transparent 28%
        );
}

.about-hero-content {
    position: relative;
    z-index: 2;

    padding: 90px 0;
}

.hero-label {
    color: #dfb744;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 3px;
}

.about-hero h1 {
    max-width: 800px;

    margin-top: 17px;

    color: #fff;

    font-size: clamp(44px, 7vw, 76px);

    line-height: 1;

    font-weight: 500;

    letter-spacing: -2px;
}

.about-hero h1 span {
    color: #dfb744;
    font-weight: 800;
}

.about-hero p {
    max-width: 620px;

    margin-top: 24px;

    color: #d4e1ed;

    font-size: 14px;

    line-height: 1.9;
}

.hero-actions {
    display: flex;

    gap: 12px;

    margin-top: 31px;
}

.btn-primary,
.btn-outline {
    min-width: 155px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 20px;

    font-size: 10px;
    font-weight: 900;

    transition: .3s;
}

.btn-primary {
    background: #d6aa35;
    color: #062d55;
}

.btn-outline {
    border: 1px solid rgba(255,255,255,.5);
    color: #fff;
}

.btn-primary:hover,
.btn-outline:hover {
    transform: translateY(-4px);
}

.btn-outline:hover {
    background: #fff;
    color: #063b78;
}


/* =========================================================
   AGENT SECTION
========================================================= */

.agent-section {
    padding: 100px 0;
    background: #fff;
}

.agent-grid {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 75px;

    align-items: center;
}


/* AGENT IMAGE */

.agent-image-wrapper {
    position: relative;
}

.agent-image {
    width: 100%;
    min-height: 530px;

    overflow: hidden;

    background: #dbe5ee;

    box-shadow:
        0 25px 60px rgba(0,40,80,.12);
}

.agent-image img {
    width: 100%;
    height: 530px;

    object-fit: cover;
}

.agent-badge {
    position: absolute;

    left: 25px;
    bottom: 25px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 15px 18px;

    background: rgba(3,31,60,.94);

    color: #fff;
}

.agent-badge strong {
    color: #dfb744;
    font-size: 25px;
}

.agent-badge span {
    font-size: 9px;

    line-height: 1.4;

    letter-spacing: 1px;
}


/* AGENT CONTENT */

.agent-content .section-label {
    color: #b28724;
}

.agent-content h2 {
    margin-top: 13px;

    color: #063b78;

    font-size: clamp(34px, 5vw, 47px);

    line-height: 1.12;
}

.agent-content h2 span {
    color: #b28724;
}

.agent-content > p {
    max-width: 650px;

    margin-top: 17px;

    color: #758799;

    font-size: 13px;

    line-height: 1.85;
}

.agent-content .lead {
    color: #405d76;

    font-size: 15px;

    font-weight: 600;
}


/* AGENT POINTS */

.agent-points {
    margin-top: 28px;
}

.agent-point {
    display: grid;

    grid-template-columns: 35px 1fr;

    gap: 12px;

    padding: 16px 0;

    border-bottom: 1px solid #dce5ec;
}

.agent-point > span {
    width: 28px;
    height: 28px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #063b78;

    color: #fff;

    font-size: 12px;
    font-weight: 900;
}

.agent-point strong {
    display: block;

    color: #183650;

    font-size: 14px;
}

.agent-point small {
    display: block;

    margin-top: 4px;

    color: #758799;

    font-size: 11px;
}


/* =========================================================
   STATS
========================================================= */

.stats-section {
    padding: 55px 0;

    background: #f5f7fa;
}

.stats-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.stat-box {
    padding: 30px 20px;

    text-align: center;

    background: #fff;

    border: 1px solid #e0e8ef;

    transition: .3s;
}

.stat-box:hover {
    transform: translateY(-6px);

    border-color: #d6aa35;

    box-shadow:
        0 15px 35px rgba(0,40,80,.08);
}

.stat-box strong {
    display: block;

    color: #063b78;

    font-size: 31px;
}

.stat-box span {
    display: block;

    margin-top: 4px;

    color: #758799;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =========================================================
   MISSION SECTION
========================================================= */

.mission-section {
    padding: 100px 0;

    background: #fff;
}

.section-heading {
    max-width: 720px;

    margin-bottom: 45px;
}

.section-heading .section-label {
    color: #b28724;
}

.section-heading h2 {
    margin-top: 12px;

    color: #063b78;

    font-size: clamp(32px, 5vw, 45px);

    line-height: 1.15;
}

.section-heading h2 span {
    color: #b28724;
}

.section-heading > p {
    max-width: 650px;

    margin-top: 15px;

    color: #758799;

    font-size: 13px;

    line-height: 1.8;
}


/* MISSION GRID */

.mission-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.mission-card {
    position: relative;

    min-height: 320px;

    padding: 35px 28px;

    background: #f7f9fb;

    border: 1px solid #e1e8ee;

    overflow: hidden;

    transition: .3s;
}

.mission-card:hover {
    transform: translateY(-8px);

    border-color: #d6aa35;

    box-shadow:
        0 20px 40px rgba(0,40,80,.1);
}

.mission-number {
    position: absolute;

    top: 15px;
    right: 17px;

    color: #dbe3ea;

    font-size: 28px;

    font-weight: 900;
}

.mission-icon {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    background: #063b78;

    color: #fff;

    font-size: 24px;
}

.mission-card h3 {
    margin-top: 24px;

    color: #063b78;

    font-size: 20px;
}

.mission-card p {
    margin-top: 10px;

    color: #758799;

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   WHY SECTION
========================================================= */

.why-section {
    padding: 100px 0;

    background: #f5f7fa;
}

.why-grid {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 70px;

    align-items: start;
}

.why-content h2 {
    margin-top: 13px;

    color: #063b78;

    font-size: clamp(34px, 5vw, 48px);

    line-height: 1.1;
}

.why-content h2 span {
    color: #b28724;
}

.why-content > p {
    max-width: 550px;

    margin-top: 18px;

    color: #758799;

    font-size: 13px;

    line-height: 1.85;
}

.why-button {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 28px;

    padding: 14px 22px;

    background: #063b78;

    color: #fff;

    font-size: 10px;

    font-weight: 900;

    transition: .3s;
}

.why-button:hover {
    background: #d6aa35;

    color: #062d55;

    transform: translateY(-3px);
}


/* WHY LIST */

.why-list {
    display: grid;

    gap: 0;

    background: #fff;

    border: 1px solid #e0e7ed;
}

.why-item {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 18px;

    padding: 24px;

    border-bottom: 1px solid #e1e8ee;
}

.why-item:last-child {
    border-bottom: 0;
}

.why-icon {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    background: #063b78;

    color: #dfb744;

    font-size: 12px;

    font-weight: 900;
}

.why-item h3 {
    color: #063b78;

    font-size: 16px;
}

.why-item p {
    margin-top: 5px;

    color: #758799;

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    padding: 100px 0;

    background: #031c35;

    color: #fff;
}

.section-heading.light .section-label {
    color: #dfb744;
}

.section-heading.light h2 {
    color: #fff;
}

.section-heading.light h2 span {
    color: #dfb744;
}

.process-grid {
    display: grid;

    grid-template-columns: 1fr 50px 1fr 50px 1fr;

    align-items: center;

    gap: 15px;
}

.process-item {
    padding: 30px;

    border: 1px solid rgba(255,255,255,.12);

    background: rgba(255,255,255,.04);
}

.process-number {
    color: #dfb744;

    font-size: 13px;

    font-weight: 900;

    letter-spacing: 2px;
}

.process-item h3 {
    margin-top: 15px;

    color: #fff;

    font-size: 21px;
}

.process-item p {
    margin-top: 8px;

    color: #aebfd0;

    font-size: 11px;

    line-height: 1.75;
}

.process-line {
    height: 1px;

    background: rgba(223,183,68,.5);
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 80px 0;

    background: #fff;
}

.cta-box {
    padding: 45px 50px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    background:
        linear-gradient(
            110deg,
            #063b78,
            #07538b
        );
}

.cta-content .section-label {
    color: #dfb744;
}

.cta-box h2 {
    margin-top: 8px;

    color: #fff;

    font-size: 31px;
}

.cta-box h2 span {
    color: #dfb744;
}

.cta-box p {
    max-width: 600px;

    margin-top: 7px;

    color: #c4d4e2;

    font-size: 11px;
}

.cta-actions {
    display: flex;

    gap: 9px;

    flex-shrink: 0;
}

.cta-call,
.cta-whatsapp {
    min-width: 130px;

    min-height: 45px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 13px 18px;

    font-size: 10px;

    font-weight: 900;

    white-space: nowrap;

    transition: .3s;
}

.cta-call {
    background: #d6aa35;

    color: #062d55;
}

.cta-whatsapp {
    border: 1px solid rgba(255,255,255,.45);

    background: rgba(255,255,255,.04);

    color: #fff;
}

.cta-call:hover,
.cta-whatsapp:hover {
    transform: translateY(-3px);
}

.cta-whatsapp:hover {
    background: #25d366;

    border-color: #25d366;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 58px 0 0;

    background: #021b34;

    color: #9fb2c4;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1fr;

    gap: 45px;
}

.footer-logo {
    color: #fff;

    font-size: 17px;
}

.footer-grid > div:first-child > p {
    margin-top: 4px;

    font-size: 10px;
}

.footer-text {
    max-width: 240px;

    margin-top: 15px !important;

    line-height: 1.7;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 9px;
}

.footer-column strong {
    margin-bottom: 6px;

    color: #fff;

    font-size: 11px;
}

.footer-column a,
.footer-column span {
    color: #9fb2c4;

    font-size: 10px;
}

.footer-column a:hover {
    color: #dfb744;
}

.footer-bottom {
    margin-top: 45px;

    padding: 18px 0;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid rgba(255,255,255,.09);

    font-size: 8px;
}


/* =========================================================
   FLOATING WHATSAPP / CALL
========================================================= */

.floating-contact {
    position: fixed;

    right: 18px;
    bottom: 18px;

    z-index: 99999;

    display: flex;

    flex-direction: column;

    gap: 10px;
}

.floating-contact a {
    width: 52px;
    height: 52px;

    min-width: 52px;
    min-height: 52px;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;
    margin: 0 !important;

    border-radius: 50% !important;

    text-decoration: none !important;

    line-height: 1 !important;

    font-size: 12px !important;

    font-weight: 900 !important;

    box-shadow:
        0 7px 22px rgba(0,0,0,.22);

    transition: transform .25s ease;
}

.floating-contact a:hover {
    transform: scale(1.1);
}

.float-whatsapp {
    background: #25d366 !important;

    color: #fff !important;
}

.float-call {
    background: #063b78 !important;

    color: #fff !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .desktop-nav {
        gap: 12px;
    }

    .desktop-nav a {
        font-size: 9px;
    }

    .header-btn {
        padding: 10px 12px;
    }

    .agent-grid,
    .why-grid {
        gap: 40px;
    }

    .mission-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .container {
        width: 92%;
    }


    /* TOP BAR */

    .top-inner {
        min-height: 32px;
    }

    .top-left span:first-child,
    .top-separator {
        display: none;
    }

    .top-right {
        margin-left: auto;
    }


    /* HEADER */

    .desktop-nav,
    .header-btn {
        display: none;
    }

    .menu-btn {
        display: grid;

        place-items: center;

        margin-left: auto;
    }

    .header-inner {
        min-height: 70px;

        gap: 8px;
    }

    .lic-logo {
        width: 45px;
        height: 45px;
    }

    .brand-line {
        height: 34px;
    }

    .ms-logo {
        width: 42px;
        height: 42px;

        font-size: 11px;
    }

    .brand-name strong {
        font-size: 13px;
    }

    .brand-name small {
        font-size: 8px;
    }


    /* HERO */

    .about-hero {
        min-height: 560px;
    }

    .about-hero-content {
        padding: 70px 0;
    }

    .about-hero h1 {
        font-size: 43px;

        letter-spacing: -1px;
    }

    .about-hero p {
        font-size: 12px;
    }

    .hero-actions {
        flex-direction: column;

        width: 100%;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;

        min-width: 0;
    }


    /* AGENT */

    .agent-section {
        padding: 70px 0;
    }

    .agent-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .agent-image {
        min-height: 400px;
    }

    .agent-image img {
        height: 400px;
    }

    .agent-content h2 {
        font-size: 34px;
    }


    /* STATS */

    .stats-section {
        padding: 45px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 12px;
    }

    .stat-box {
        padding: 25px 12px;
    }

    .stat-box strong {
        font-size: 26px;
    }


    /* MISSION */

    .mission-section {
        padding: 70px 0;
    }

    .mission-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .mission-card {
        min-height: auto;

        padding: 28px 22px;
    }


    /* WHY */

    .why-section {
        padding: 70px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .why-content h2 {
        font-size: 35px;
    }

    .why-item {
        grid-template-columns: 48px 1fr;

        padding: 20px 16px;
    }


    /* PROCESS */

    .process-section {
        padding: 70px 0;
    }

    .process-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .process-line {
        display: none;
    }

    .process-item {
        padding: 25px;
    }


    /* CTA */

    .cta-section {
        padding: 55px 0;
    }

    .cta-box {
        display: block;

        padding: 32px 25px;
    }

    .cta-box h2 {
        font-size: 27px;
    }

    .cta-actions {
        margin-top: 25px;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 8px;
    }

    .cta-call,
    .cta-whatsapp {
        width: 100%;

        min-width: 0;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }


    /* FLOATING BUTTONS */

    .floating-contact {
        right: 14px;

        bottom: 14px;

        gap: 8px;
    }

    .floating-contact a {
        width: 48px !important;
        height: 48px !important;

        min-width: 48px !important;
        min-height: 48px !important;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .brand-name {
        display: none;
    }

    .about-hero {
        min-height: 520px;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .agent-image {
        min-height: 330px;
    }

    .agent-image img {
        height: 330px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-content h2 {
        font-size: 32px;
    }

    .cta-actions {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .floating-contact {
        right: 12px;
        bottom: 12px;
    }

    .floating-contact a {
        width: 46px !important;
        height: 46px !important;

        min-width: 46px !important;
        min-height: 46px !important;
    }
}


/* =========================================================
   EXTRA SAFETY
   PREVENT HORIZONTAL BREAKING
========================================================= */

.about-hero,
.agent-section,
.stats-section,
.mission-section,
.why-section,
.process-section,
.cta-section,
.footer {
    max-width: 100%;
    overflow: hidden;
}

h1,
h2,
h3,
p,
a,
span {
    overflow-wrap: break-word;
}
/* =====================================================
   FINAL FLOATING WHATSAPP + CALL
===================================================== */

.floating-contact {
    position: fixed !important;

    right: 22px !important;
    bottom: 22px !important;

    width: auto !important;
    height: auto !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;

    gap: 12px !important;

    z-index: 999999 !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* =========================
   WHATSAPP BUTTON
========================= */

.floating-contact .float-whatsapp {
    width: 205px !important;
    height: 58px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    flex-direction: row !important;

    gap: 10px !important;

    margin: 0 !important;
    padding: 0 22px !important;

    background: #25D366 !important;
    color: #ffffff !important;

    border: none !important;
    border-radius: 30px !important;

    text-decoration: none !important;

    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;

    line-height: 1 !important;

    box-shadow: 0 8px 24px rgba(0,0,0,.18) !important;

    transition: transform .25s ease,
                background .25s ease,
                box-shadow .25s ease !important;
}


/* WHATSAPP SVG */

.floating-contact .float-whatsapp svg {
    width: 30px !important;
    height: 30px !important;

    min-width: 30px !important;
    max-width: 30px !important;

    display: block !important;

    fill: #ffffff !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* TEXT */

.floating-contact .float-whatsapp span {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #ffffff !important;

    white-space: nowrap !important;

    font-size: 15px !important;
    font-weight: 700 !important;

    line-height: 1 !important;
}


/* WHATSAPP HOVER */

.floating-contact .float-whatsapp:hover {
    background: #1ebe5d !important;

    transform: translateY(-3px) !important;

    box-shadow: 0 12px 28px rgba(0,0,0,.22) !important;
}


/* =========================
   CALL BUTTON
========================= */

.floating-contact .float-call {
    width: 58px !important;
    height: 58px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 0 !important;

    background: #063b78 !important;
    color: #ffffff !important;

    border: none !important;
    border-radius: 50% !important;

    text-decoration: none !important;

    box-shadow: 0 8px 24px rgba(0,0,0,.18) !important;

    transition: transform .25s ease,
                background .25s ease !important;
}


.floating-contact .float-call span {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #ffffff !important;

    font-size: 23px !important;

    line-height: 1 !important;
}


.floating-contact .float-call:hover {
    background: #07539c !important;

    transform: translateY(-3px) !important;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 760px) {

    .floating-contact {
        right: 14px !important;
        bottom: 14px !important;

        gap: 10px !important;
    }


    .floating-contact .float-whatsapp {
        width: 180px !important;
        height: 52px !important;

        padding: 0 18px !important;

        border-radius: 27px !important;

        font-size: 13px !important;
    }


    .floating-contact .float-whatsapp svg {
        width: 27px !important;
        height: 27px !important;

        min-width: 27px !important;
        max-width: 27px !important;
    }


    .floating-contact .float-whatsapp span {
        font-size: 13px !important;
    }


    .floating-contact .float-call {
        width: 52px !important;
        height: 52px !important;
    }


    .floating-contact .float-call span {
        font-size: 21px !important;
    }

}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 430px) {

    .floating-contact {
        right: 12px !important;
        bottom: 12px !important;
    }


    .floating-contact .float-whatsapp {
        width: 165px !important;
        height: 50px !important;

        padding: 0 16px !important;
    }


    .floating-contact .float-whatsapp svg {
        width: 25px !important;
        height: 25px !important;

        min-width: 25px !important;
        max-width: 25px !important;
    }


    .floating-contact .float-whatsapp span {
        font-size: 12px !important;
    }


    .floating-contact .float-call {
        width: 50px !important;
        height: 50px !important;
    }

}