/* =====================================================
   RESET
===================================================== */

* {
    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: min(92%, 1200px);
    margin: 0 auto;
}


/* =====================================================
   TOP BAR
===================================================== */

.top-bar {
    background: #031f3d;
    color: #d7e3ee;
    font-size: 11px;
}

.top-inner {
    min-height: 36px;

    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-divider {
    opacity: .4;
}

.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: 10px;

    flex-shrink: 0;
}

.lic-logo {
    width: 62px;
    height: 62px;
    flex-shrink: 0;
}

.lic-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.brand-line {
    width: 1px;
    height: 44px;

    background: #dce4eb;
}

.ms-logo {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #063b78;
    color: #fff;

    border: 3px solid #d5a932;

    font-size: 14px;
    font-weight: 900;

    flex-shrink: 0;
}

.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: 21px;
}

.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 16px;

    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: 20px;

    cursor: pointer;
}

.mobile-nav {
    display: none;

    background: #fff;

    border-top: 1px solid #e8edf2;
}

.mobile-nav a {
    display: block;

    padding: 14px 5%;

    border-bottom: 1px solid #e9eef3;

    color: #203c56;

    font-size: 13px;
    font-weight: 700;
}

.mobile-nav.open {
    display: block;
}


/* =====================================================
   SEARCH
===================================================== */

.search-area {
    padding: 20px 0;

    background: #f1f5f9;
}

.search-box {
    max-width: 700px;
    height: 52px;

    margin: auto;

    display: flex;
    align-items: center;

    background: #fff;

    border: 1px solid #dce5ed;

    box-shadow: 0 7px 25px rgba(0,40,80,.06);

    overflow: hidden;
}

.search-icon {
    padding-left: 17px;

    color: #063b78;

    font-size: 18px;
}

.search-box input {
    flex: 1;

    min-width: 0;

    height: 100%;

    border: 0;
    outline: 0;

    padding: 0 12px;

    color: #213b54;

    font-size: 13px;
}

.search-box button {
    height: 100%;

    padding: 0 19px;

    border: 0;

    background: #063b78;
    color: #fff;

    cursor: pointer;

    font-size: 10px;
    font-weight: 800;
}

.search-box button:hover {
    background: #d5a932;
    color: #062d55;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;

    min-height: 590px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #032b54;
}


/* =====================================================
   HERO IMAGE
   ================================================

   ⭐ PHOTO CHANGE OPTION ⭐

   बस नीचे वाली image बदलना है:

   url("images/services/hero.jpg")

===================================================== */

.hero-background {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            90deg,
            rgba(2,31,60,.97) 0%,
            rgba(3,51,94,.88) 45%,
            rgba(3,64,110,.55) 100%
        ),
        url("images/services/hero.jpg");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    transform: scale(1.03);
}


/* HERO IMAGE OVERLAY */

.hero-background::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(219,178,61,.18),
            transparent 28%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    padding: 80px 0;
}

.hero-label {
    color: #dfb744;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 3px;
}

.hero h1 {
    max-width: 800px;

    margin-top: 16px;

    color: #fff;

    font-size: clamp(44px, 7vw, 78px);

    line-height: .99;

    font-weight: 500;

    letter-spacing: -2px;
}

.hero h1 span {
    color: #dfb744;
    font-weight: 800;
}

.hero p {
    max-width: 650px;

    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 {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-width: 155px;

    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;
}


/* =====================================================
   HERO STATS
===================================================== */

.hero-stats {
    display: flex;

    margin-top: 58px;

    max-width: 600px;
}

.hero-stats div {
    min-width: 175px;

    padding: 0 25px;

    border-left: 1px solid rgba(255,255,255,.2);
}

.hero-stats div:first-child {
    padding-left: 0;
    border-left: 0;
}

.hero-stats strong {
    display: block;

    color: #fff;

    font-size: 27px;
}

.hero-stats span {
    display: block;

    margin-top: 2px;

    color: #aebfd0;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =====================================================
   INTRO
===================================================== */

.intro {
    padding: 90px 0 55px;

    background: #fff;
}

.intro-content {
    max-width: 780px;

    text-align: center;
}

.section-label {
    color: #b28724;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2.5px;
}

.section-label.light {
    color: #e1b94d;
}

.intro h2 {
    margin-top: 13px;

    color: #063b78;

    font-size: clamp(31px, 5vw, 46px);

    line-height: 1.15;
}

.intro h2 span {
    color: #b28724;
}

.intro p {
    margin-top: 17px;

    color: #758799;

    font-size: 13px;

    line-height: 1.8;
}


/* =====================================================
   INSURANCE SERVICES
===================================================== */

.insurance-services {
    padding: 35px 0 100px;

    background: #fff;
}

.section-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 32px;
}

.section-top h2 {
    margin-top: 9px;

    color: #063b78;

    font-size: 38px;

    line-height: 1.1;
}

.section-top > p {
    max-width: 350px;

    color: #758799;

    font-size: 12px;

    line-height: 1.8;
}


/* =====================================================
   7 SERVICE CARDS
===================================================== */

.service-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 22px;
}

.service-card {
    min-width: 0;

    overflow: hidden;

    background: #fff;

    border: 1px solid #e0e8ef;

    transition:
        transform .35s,
        box-shadow .35s,
        border-color .35s;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: #d6aa35;

    box-shadow: 0 20px 45px rgba(0,40,80,.13);
}


/* =====================================================
   SERVICE IMAGE
===================================================== */

.service-image {
    position: relative;

    width: 100%;
    height: 235px;

    overflow: hidden;

    background: #dbe5ee;
}

.service-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform .65s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-image::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            transparent 40%,
            rgba(2,31,60,.78)
        );
}

.service-number {
    position: absolute;

    top: 15px;
    right: 17px;

    z-index: 2;

    color: rgba(255,255,255,.9);

    font-size: 24px;
    font-weight: 900;
}

.service-category {
    position: absolute;

    left: 16px;
    bottom: 15px;

    z-index: 2;

    padding: 6px 9px;

    background: #d6aa35;
    color: #062d55;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1px;
}


/* =====================================================
   SERVICE BODY
===================================================== */

.service-body {
    padding: 24px;
}

.service-body h3 {
    color: #063b78;

    font-size: 20px;
}

.service-body p {
    min-height: 62px;

    margin-top: 10px;

    color: #758799;

    font-size: 12px;

    line-height: 1.7;
}

.service-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 15px;

    color: #063b78;

    font-size: 10px;
    font-weight: 900;
}

.service-link span {
    transition: .25s;
}

.service-link:hover {
    color: #b28724;
}

.service-link:hover span {
    transform: translateX(5px);
}


/* =====================================================
   NAVIGATOR
===================================================== */

.navigator {
    padding: 0 0 95px;

    background: #fff;
}

.navigator-box {
    position: relative;

    padding: 43px 48px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    background:
        linear-gradient(
            115deg,
            #062f5c,
            #07538b
        );

    overflow: hidden;
}

.navigator-box::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -100px;
    top: -150px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.1);
}

.navigator-title {
    position: relative;
    z-index: 2;
}

.navigator-title span {
    color: #dfb744;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 2px;
}

.navigator-title h2 {
    margin-top: 7px;

    color: #fff;

    font-size: 27px;
}

.navigator-options {
    position: relative;
    z-index: 2;

    display: flex;

    gap: 8px;
}

.navigator-options button {
    padding: 12px 19px;

    border: 1px solid rgba(255,255,255,.3);

    background: transparent;
    color: #fff;

    cursor: pointer;

    font-size: 10px;
    font-weight: 800;

    transition: .25s;
}

.navigator-options button:hover,
.navigator-options button.active {
    background: #d6aa35;

    border-color: #d6aa35;

    color: #062d55;
}


/* =====================================================
   CAREER
===================================================== */

.career-section {
    position: relative;

    padding: 105px 0;

    background: #031c35;

    overflow: hidden;
}

.career-glow {
    position: absolute;

    width: 550px;
    height: 550px;

    right: -250px;
    top: -220px;

    border-radius: 50%;

    background: rgba(214,170,53,.08);

    filter: blur(5px);
}

.career-heading {
    position: relative;
    z-index: 2;

    max-width: 700px;
}

.career-heading h2 {
    margin-top: 12px;

    color: #fff;

    font-size: clamp(37px, 5vw, 55px);

    line-height: 1.05;
}

.career-heading h2 span {
    color: #dfb744;
}

.career-heading p {
    max-width: 650px;

    margin-top: 15px;

    color: #aebfd0;

    font-size: 13px;

    line-height: 1.8;
}


/* =====================================================
   CAREER GRID
===================================================== */

.career-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 24px;

    margin-top: 48px;
}


/* =====================================================
   CAREER MAIN
===================================================== */

.career-main {
    position: relative;

    min-height: 440px;

    padding: 40px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(7,67,112,.95),
            rgba(3,38,72,.95)
        ),
        url("images/services/career.jpg") center/cover no-repeat;

    border: 1px solid rgba(255,255,255,.09);
}

.career-main::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            transparent 30%,
            rgba(0,0,0,.5)
        );
}

.career-main > * {
    position: relative;
    z-index: 2;
}

.career-icon {
    position: absolute;

    top: 35px;
    left: 38px;

    font-size: 36px;
}

.career-main > span {
    color: #dfb744;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 2px;
}

.career-main h3 {
    margin-top: 10px;

    color: #fff;

    font-size: 37px;

    line-height: 1.05;
}

.career-main p {
    max-width: 350px;

    margin-top: 12px;

    color: #b8c9d8;

    font-size: 11px;
}

.career-main a {
    display: inline-block;

    margin-top: 24px;

    color: #fff;

    font-size: 10px;
    font-weight: 900;
}

.career-main a:hover {
    color: #dfb744;
}


/* =====================================================
   CAREER LIST
===================================================== */

.career-list {
    display: grid;

    gap: 10px;
}

.career-item {
    display: grid;

    grid-template-columns: 54px minmax(0,1fr) 30px;

    align-items: center;

    gap: 17px;

    padding: 23px 25px;

    background: rgba(255,255,255,.045);

    border: 1px solid rgba(255,255,255,.08);

    transition: .3s;
}

.career-item:hover {
    background: rgba(255,255,255,.09);

    border-color: rgba(214,170,53,.5);

    transform: translateX(6px);
}

.career-item-icon {
    width: 49px;
    height: 49px;

    display: grid;
    place-items: center;

    background: rgba(214,170,53,.12);

    font-size: 21px;
}

.career-item span {
    color: #dfb744;

    font-size: 8px;
    font-weight: 900;
}

.career-item h3 {
    margin-top: 2px;

    color: #fff;

    font-size: 16px;
}

.career-item p {
    margin-top: 3px;

    color: #8fa4b8;

    font-size: 10px;
}

.career-item > a {
    color: #dfb744;

    font-size: 20px;

    transition: .25s;
}

.career-item:hover > a {
    transform: translateX(4px);
}


/* =====================================================
   WHY
===================================================== */

.why-section {
    padding: 100px 0;

    background: #f5f7fa;
}

.why-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.why-grid > div:first-child h2 {
    margin-top: 13px;

    color: #063b78;

    font-size: 43px;

    line-height: 1.1;
}

.why-grid > div:first-child h2 span {
    color: #b28724;
}

.why-grid > div:first-child p {
    max-width: 570px;

    margin-top: 18px;

    color: #758799;

    font-size: 13px;

    line-height: 1.8;
}

.why-points {
    display: grid;

    gap: 18px;
}

.why-point {
    display: grid;

    grid-template-columns: 42px 1fr;

    gap: 16px;

    padding: 20px 0;

    border-bottom: 1px solid #dce5ec;
}

.why-point b {
    color: #b28724;

    font-size: 12px;
}

.why-point h3 {
    color: #183650;

    font-size: 15px;
}

.why-point p {
    margin-top: 5px;

    color: #758799;

    font-size: 11px;
}


/* =====================================================
   CTA
===================================================== */

.cta {
    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-box > div:first-child > span {
    color: #dfb744;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 2px;
}

.cta-box h2 {
    margin-top: 8px;

    color: #fff;

    font-size: 31px;
}

.cta-box p {
    margin-top: 7px;

    color: #c4d4e2;

    font-size: 11px;
}

.cta-actions {
    display: flex;
    gap: 9px;

    flex-shrink: 0;
}

.cta-call,
.cta-whatsapp {
    min-height: 44px;

    padding: 13px 18px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    font-size: 10px;
    font-weight: 900;

    white-space: nowrap;

    transition: .25s;
}

.cta-call {
    background: #d6aa35;
    color: #062d55;
}

.cta-whatsapp {
    background: #25d366;
    color: #fff;
}

.cta-call:hover,
.cta-whatsapp:hover {
    transform: translateY(-3px);
}


/* =====================================================
   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 CONTACT
===================================================== */

.floating-contact {
    position: fixed;

    right: 18px;
    bottom: 18px;

    z-index: 9999;

    display: flex;
    flex-direction: column;

    gap: 10px;
}

.floating-contact a {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    box-shadow: 0 7px 20px rgba(0,0,0,.20);

    font-size: 9px;
    font-weight: 900;

    transition: .25s;
}

.float-whatsapp {
    background: #25d366;
    color: #fff;
}

.float-call {
    background: #063b78;
    color: #fff;

    font-size: 18px !important;
}

.floating-contact a:hover {
    transform: scale(1.08);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

    .desktop-nav {
        gap: 12px;
    }

    .desktop-nav a {
        font-size: 9px;
    }

    .header-btn {
        padding: 10px 12px;
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .career-grid {
        grid-template-columns: 1fr;
    }

    .career-main {
        min-height: 350px;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 760px) {

    .top-inner {
        min-height: 31px;
    }

    .top-left span:first-child,
    .top-separator {
        display: none;
    }

    .top-left,
    .top-right {
        gap: 7px;
    }

    .desktop-nav,
    .header-btn {
        display: none;
    }

    .menu-btn {
        display: block;

        margin-left: auto;
    }

    .header-inner {
        min-height: 70px;

        gap: 8px;
    }

    .lic-logo {
        width: 48px;
        height: 48px;
    }

    .brand-line {
        height: 35px;
    }

    .ms-logo {
        width: 42px;
        height: 42px;

        font-size: 11px;
    }

    .brand-name strong {
        font-size: 13px;
    }

    .brand-name small {
        font-size: 8px;
    }


    /* SEARCH */

    .search-area {
        padding: 14px 0;
    }

    .search-box {
        height: 48px;
    }

    .search-box button {
        padding: 0 13px;
    }


    /* HERO */

    .hero {
        min-height: auto;
    }

    .hero-background {
        background-position: 65% center;
    }

    .hero-content {
        padding: 65px 0;
    }

    .hero h1 {
        font-size: 43px;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 12px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
    }

    .hero-stats {
        margin-top: 45px;

        display: grid;

        grid-template-columns: repeat(3, 1fr);
    }

    .hero-stats div {
        min-width: 0;

        padding: 0 10px;
    }

    .hero-stats strong {
        font-size: 20px;
    }

    .hero-stats span {
        font-size: 7px;
    }


    /* INTRO */

    .intro {
        padding: 65px 0 40px;
    }

    .intro h2 {
        font-size: 32px;
    }


    /* SERVICES */

    .insurance-services {
        padding-bottom: 70px;
    }

    .section-top {
        display: block;
    }

    .section-top h2 {
        font-size: 33px;
    }

    .section-top > p {
        margin-top: 12px;
    }

    .service-grid {
        grid-template-columns: 1fr;

        gap: 17px;
    }

    .service-image {
        height: 230px;
    }


    /* NAVIGATOR */

    .navigator {
        padding-bottom: 70px;
    }

    .navigator-box {
        padding: 32px 23px;

        display: block;
    }

    .navigator-title h2 {
        font-size: 24px;
    }

    .navigator-options {
        margin-top: 22px;

        display: grid;

        grid-template-columns: repeat(2, 1fr);
    }

    .navigator-options button {
        width: 100%;
    }


    /* CAREER */

    .career-section {
        padding: 75px 0;
    }

    .career-heading h2 {
        font-size: 39px;
    }

    .career-grid {
        margin-top: 35px;
    }

    .career-main {
        min-height: 350px;

        padding: 28px;
    }

    .career-main h3 {
        font-size: 31px;
    }

    .career-item {
        grid-template-columns: 45px minmax(0,1fr) 20px;

        padding: 18px;

        gap: 12px;
    }

    .career-item-icon {
        width: 43px;
        height: 43px;
    }

    .career-item h3 {
        font-size: 13px;
    }


    /* WHY */

    .why-section {
        padding: 70px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .why-grid > div:first-child h2 {
        font-size: 34px;
    }


    /* CTA */

    .cta {
        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;
    }

    .cta-call,
    .cta-whatsapp {
        width: 100%;

        text-align: center;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }


    /* FLOATING BUTTONS */

    .floating-contact {
        right: 12px;
        bottom: 12px;

        gap: 8px;
    }

    .floating-contact a {
        width: 48px;
        height: 48px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 430px) {

    .brand-name {
        display: none;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-stats {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .hero-stats div {
        padding: 0;

        border: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .search-box button {
        padding: 0 11px;
    }

    .service-image {
        height: 215px;
    }

    .cta-actions {
        grid-template-columns: 1fr;
    }

}
/* =====================================================
   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;
    }

}
/* =====================================================
   JOB APPLICATION FORM - FIXED
===================================================== */

.job-application {
    padding: 90px 20px;
    background: #f5f8fc;
}

.job-form-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

/* HEADING */

.job-form-heading {
    margin-bottom: 35px;
}

.job-form-heading .section-label {
    color: #c99718;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.job-form-heading h2 {
    margin: 0 0 12px;
    color: #123f6d;
    font-size: 36px;
    line-height: 1.2;
}

.job-form-heading p {
    margin: 0;
    color: #52657a;
    font-size: 17px;
    line-height: 1.6;
}


/* =====================================================
   FORM BOX
===================================================== */

.job-form {
    width: 100%;
    box-sizing: border-box;
    background: #ffffff;
    padding: 45px;
    border: 1px solid #dce4ed;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(16, 52, 82, 0.08);
}


/* =====================================================
   FORM GRID
===================================================== */

.job-form-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}


/* =====================================================
   FORM GROUP
===================================================== */

.job-form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.job-form-group.full-width {
    grid-column: 1 / -1;
}


/* =====================================================
   LABEL
===================================================== */

.job-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #123f6d;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.job-form-group label span {
    color: #d32f2f;
}


/* =====================================================
   INPUT / SELECT / TEXTAREA
===================================================== */

.job-form-group input,
.job-form-group select,
.job-form-group textarea,

.job-form input,
.job-form select,
.job-form textarea {
    width: 100%;
    max-width: 100%;
    min-height: 48px;
    box-sizing: border-box;

    padding: 13px 15px;

    border: 1px solid #cfd9e4;
    border-radius: 8px;

    background: #ffffff;
    color: #183b5d;

    font-family: inherit;
    font-size: 15px;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


/* =====================================================
   INPUT FOCUS
===================================================== */

.job-form-group input:focus,
.job-form-group select:focus,
.job-form-group textarea:focus,

.job-form input:focus,
.job-form select:focus,
.job-form textarea:focus {
    border-color: #d9aa28;
    box-shadow: 0 0 0 3px rgba(217, 170, 40, 0.13);
    background: #fffdf7;
}


/* =====================================================
   PLACEHOLDER
===================================================== */

.job-form input::placeholder,
.job-form textarea::placeholder {
    color: #8b98a8;
}


/* =====================================================
   SELECT
===================================================== */

.job-form select {
    cursor: pointer;
}


/* =====================================================
   TEXTAREA
===================================================== */

.job-form textarea {
    min-height: 130px;
    resize: vertical;
    line-height: 1.6;
}


/* =====================================================
   FILE UPLOAD
===================================================== */

.job-form input[type="file"] {
    min-height: auto;
    padding: 10px;
    background: #f8fafc;
    cursor: pointer;
}

.job-form input[type="file"]::file-selector-button {
    border: none;
    padding: 9px 15px;
    margin-right: 12px;

    background: #123f6d;
    color: #ffffff;

    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}


/* =====================================================
   FILE NOTE
===================================================== */

.job-form .file-note {
    margin-top: 7px;
    color: #7a8796;
    font-size: 12px;
}


/* =====================================================
   SUBMIT BUTTON
===================================================== */

.job-submit {
    width: 100%;
    margin-top: 30px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.job-submit button,
.job-form button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-width: 190px;
    min-height: 50px;

    padding: 14px 28px;

    border: none;
    border-radius: 7px;

    background: #d9aa28;
    color: #123f6d;

    font-family: inherit;
    font-size: 15px;
    font-weight: 800;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.job-submit button:hover,
.job-form button[type="submit"]:hover {
    background: #123f6d;
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(18, 63, 109, 0.18);
}


/* =====================================================
   FORM NOTE
===================================================== */

.job-form-note {
    margin-top: 20px;

    text-align: center;

    color: #7a8796;
    font-size: 13px;
    line-height: 1.6;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .job-application {
        padding: 60px 15px;
    }

    .job-form-heading h2 {
        font-size: 30px;
    }

    .job-form-heading p {
        font-size: 15px;
    }

    .job-form {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .job-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .job-form-group.full-width {
        grid-column: auto;
    }

    .job-submit button,
    .job-form button[type="submit"] {
        width: 100%;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .job-form-heading h2 {
        font-size: 26px;
    }

    .job-form {
        padding: 20px 15px;
    }

    .job-form-group input,
    .job-form-group select,
    .job-form-group textarea,
    .job-form input,
    .job-form select,
    .job-form textarea {
        min-height: 46px;
        padding: 12px 13px;
        font-size: 14px;
    }

}