/* =========================================================
   LABOUR LAWS LICENSING
   MD CONSULTANCY
   BLUE PROFESSIONAL THEME
========================================================= */

:root {

    --blue-dark: #062c57;
    --blue: #0b5ed7;
    --blue-light: #eaf3ff;
    --blue-soft: #f5f9ff;

    --gold: #d4af37;

    --white: #ffffff;

    --text: #172033;
    --muted: #667085;

    --border: #dbe5f0;

}


/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    margin: 0;

    font-family: 'Lato', sans-serif;

    color: var(--text);

    background: #ffffff;

    overflow-x: hidden;

}


.container {

    width: min(1180px, 92%);

    margin: auto;

}


.section-pad {

    padding: 90px 0;

}


.section-pad-sm {

    padding: 75px 0;

}


.text-center {

    text-align: center;

}


.center-text {

    max-width: 720px;

    margin-left: auto;
    margin-right: auto;

}


.section-label {

    display: inline-block;

    color: var(--blue);

    font-family: 'Cinzel', serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 12px;

}


.section-title {

    font-family: 'Playfair Display', serif;

    font-size: clamp(32px, 4vw, 46px);

    line-height: 1.15;

    margin: 0 0 18px;

    color: var(--blue-dark);

}


.section-subtitle {

    color: var(--muted);

    line-height: 1.8;

    font-size: 16px;

}


.text-blue {

    color: var(--blue);

}


.blue-divider {

    width: 65px;

    height: 3px;

    background: var(--blue);

    margin: 20px 0 25px;

}


.blue-divider.center {

    margin: 20px auto 25px;

}



/* =========================================================
   HERO
   IMPORTANT:
   Uses your EXISTING service-hero.css
========================================================= */

.service-hero {

    position: relative;

}



/* =========================================================
   INTRO BAND
========================================================= */

#intro-band {

    background: var(--blue-dark);

    border-top: 1px solid rgba(255,255,255,.1);

    border-bottom: 1px solid rgba(255,255,255,.1);

}


.intro-band-inner {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    min-height: 76px;

    align-items: center;

}


.intro-band-item {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    color: #ffffff;

    font-size: 13px;

    font-weight: 600;

    border-right:
        1px solid rgba(255,255,255,.16);

}


.intro-band-item:last-child {

    border-right: none;

}


.dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #72b4ff;

}



/* =========================================================
   GRID
========================================================= */

.grid-2 {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: center;

}


.grid-3 {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


.grid-4 {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;

}



/* =========================================================
   BADGES
========================================================= */

.badge-row {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 25px;

}


.badge {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 9px 14px;

    background: var(--blue-light);

    border: 1px solid #cfe1f8;

    border-radius: 30px;

    color: var(--blue-dark);

    font-size: 12px;

    font-weight: 700;

}



/* =========================================================
   IMAGE
========================================================= */

.image-card {

    position: relative;

    border-radius: 18px;

    overflow: hidden;

    min-height: 440px;

    box-shadow:
        0 25px 60px rgba(4,42,82,.16);

}


.image-card img {

    width: 100%;

    height: 440px;

    object-fit: cover;

    display: block;

}


.image-card-overlay {

    position: absolute;

    left: 22px;

    right: 22px;

    bottom: 22px;

    padding: 18px 20px;

    display: flex;

    align-items: center;

    gap: 14px;

    background:
        rgba(5,35,70,.92);

    color: #ffffff;

    border-radius: 12px;

    backdrop-filter: blur(10px);

}


.image-card-overlay i {

    font-size: 28px;

    color: #75b6ff;

}


.image-card-overlay strong {

    display: block;

    font-size: 15px;

    margin-bottom: 4px;

}


.image-card-overlay span {

    font-size: 12px;

    color: rgba(255,255,255,.7);

}



/* =========================================================
   SERVICE CARDS
========================================================= */

.service-card {

    position: relative;

    background: #ffffff;

    border: 1px solid var(--border);

    padding: 32px 28px;

    border-radius: 14px;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

    overflow: hidden;

}


.service-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 4px;

    height: 0;

    background: var(--blue);

    transition: height .35s ease;

}


.service-card:hover {

    transform: translateY(-8px);

    border-color: #a8c9ee;

    box-shadow:
        0 20px 45px rgba(11,94,215,.12);

}


.service-card:hover::before {

    height: 100%;

}


.service-icon {

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--blue);

    background: var(--blue-light);

    border-radius: 12px;

    font-size: 24px;

    margin-bottom: 22px;

}


.service-card h3 {

    font-family: 'Playfair Display', serif;

    font-size: 21px;

    color: var(--blue-dark);

    margin: 0 0 12px;

}


.service-card p {

    color: var(--muted);

    font-size: 14px;

    line-height: 1.75;

    margin-bottom: 20px;

}


.service-card a {

    color: var(--blue);

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    letter-spacing: .5px;

}


.service-card a i {

    margin-left: 5px;

}



/* =========================================================
   PROCESS
========================================================= */

.process-grid {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 16px;

    margin-top: 45px;

}


.process-item {

    padding: 25px 20px;

    border: 1px solid var(--border);

    border-radius: 13px;

    background: #ffffff;

}


.process-number {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--blue);

    color: #ffffff;

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 18px;

}


.process-item h3 {

    font-size: 17px;

    color: var(--blue-dark);

    margin: 0 0 10px;

}


.process-item p {

    font-size: 13px;

    color: var(--muted);

    line-height: 1.7;

    margin: 0;

}


.process-callout {

    margin-top: 35px;

    padding: 25px 30px;

    background: var(--blue-dark);

    border-radius: 14px;

    display: flex;

    align-items: center;

    gap: 18px;

    color: #ffffff;

}


.process-callout-icon {

    width: 52px;

    height: 52px;

    min-width: 52px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255,255,255,.1);

    color: #73b5ff;

    font-size: 23px;

}


.process-callout strong {

    display: block;

    font-family: 'Playfair Display', serif;

    font-size: 20px;

    margin-bottom: 5px;

}


.process-callout p {

    margin: 0;

    color: rgba(255,255,255,.72);

    line-height: 1.6;

    font-size: 13px;

}



/* =========================================================
   WHY CHOOSE
========================================================= */

.why-grid {

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 70px;

    align-items: center;

}


.why-image-wrap {

    position: relative;

}


.why-image {

    width: 100%;

    height: 540px;

    object-fit: cover;

    border-radius: 18px;

    display: block;

}


.why-content {

    max-width: 620px;

}


.why-item {

    display: flex;

    gap: 17px;

    padding: 18px 0;

    border-bottom: 1px solid var(--border);

}


.why-icon {

    width: 45px;

    height: 45px;

    min-width: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: var(--blue-light);

    color: var(--blue);

    font-size: 20px;

}


.why-item h4 {

    margin: 0 0 6px;

    color: var(--blue-dark);

    font-size: 16px;

}


.why-item p {

    margin: 0;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;

}



/* =========================================================
   COVERAGE
========================================================= */

.coverage-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    margin-top: 40px;

}


.coverage-card {

    padding: 28px;

    border: 1px solid var(--border);

    background: #ffffff;

    border-radius: 13px;

    transition: .3s ease;

}


.coverage-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(11,94,215,.1);

}


.coverage-card > i {

    font-size: 28px;

    color: var(--blue);

    display: block;

    margin-bottom: 18px;

}


.coverage-card h4 {

    margin: 0 0 9px;

    color: var(--blue-dark);

    font-size: 17px;

}


.coverage-card p {

    margin: 0;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;

}



/* =========================================================
   FAQ
========================================================= */

.faq-container {

    max-width: 860px;

    margin: auto;

}


.faq-item {

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 10px;

    margin-bottom: 12px;

    overflow: hidden;

}


.faq-q {

    width: 100%;

    border: none;

    background: transparent;

    padding: 20px 22px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    text-align: left;

    cursor: pointer;

    color: var(--blue-dark);

    font-size: 15px;

    font-weight: 700;

}


.faq-q i {

    color: var(--blue);

    transition: transform .3s ease;

}


.faq-item.open .faq-q i {

    transform: rotate(180deg);

}


.faq-a {

    max-height: 0;

    overflow: hidden;

    transition:
        max-height .4s ease;

}


.faq-a-inner {

    padding: 0 22px 22px;

    color: var(--muted);

    line-height: 1.8;

    font-size: 14px;

}


.faq-item.open .faq-a {

    max-height: 300px;

}



/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonial-card {

    padding: 30px;

    border: 1px solid var(--border);

    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 8px 25px rgba(10,45,80,.05);

}


.stars {

    color: #e6b83f;

    letter-spacing: 3px;

    margin-bottom: 15px;

}


.testimonial-card p {

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;

    min-height: 105px;

}


.testimonial-card strong {

    display: block;

    color: var(--blue-dark);

    margin-top: 18px;

}


.testimonial-card span {

    display: block;

    margin-top: 5px;

    color: #8a94a6;

    font-size: 12px;

}



/* =========================================================
   RELATED
========================================================= */

.related-card {

    display: block;

    padding: 27px 22px;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 13px;

    text-decoration: none;

    transition: .3s ease;

}


.related-card:hover {

    transform: translateY(-6px);

    border-color: #9ec5ef;

    box-shadow:
        0 15px 35px rgba(11,94,215,.1);

}


.related-card > i {

    font-size: 28px;

    color: var(--blue);

    margin-bottom: 15px;

}


.related-card h4 {

    color: var(--blue-dark);

    margin: 0 0 8px;

    font-size: 16px;

}


.related-card p {

    color: var(--muted);

    font-size: 12px;

    line-height: 1.65;

    margin: 0;

}



/* =========================================================
   CLIENTS
========================================================= */

.clients-section {

    background: #f8fbff;

    padding: 60px 0;

    overflow: hidden;

}


.clients-label {

    text-align: center;

    font-family: 'Cinzel', serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--blue-dark);

    margin-bottom: 35px;

}


.clients-track-wrap {

    overflow: hidden;

    margin: 13px 0;

}


.clients-track {

    display: flex;

    width: max-content;

    gap: 45px;

    animation:
        clientsMove 35s linear infinite;

}


.clients-track.reverse {

    animation:
        clientsReverse 40s linear infinite;

}


.client-item {

    white-space: nowrap;

    color: #617086;

    font-size: 13px;

    font-weight: 600;

}


@keyframes clientsMove {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


@keyframes clientsReverse {

    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }

}



/* =========================================================
   CTA
========================================================= */

#final-cta {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #031d3a,
            #0755a0
        );

}


.cta-content {

    text-align: center;

}


.cta-content .section-label {

    color: #8dc7ff;

}


.cta-content h2 {

    color: #ffffff;

    font-family: 'Playfair Display', serif;

    font-size: clamp(34px, 4vw, 54px);

    line-height: 1.15;

    margin: 0 0 20px;

}


.cta-content h2 span {

    color: #72b5ff;

}


.cta-content p {

    max-width: 650px;

    margin: 0 auto 30px;

    color: rgba(255,255,255,.75);

    line-height: 1.8;

}


.cta-content small {

    display: block;

    color: rgba(255,255,255,.45);

    margin-top: 25px;

}


.btn-whatsapp {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 14px 24px;

    border-radius: 5px;

    text-decoration: none;

    background: #25d366;

    color: #ffffff;

    font-weight: 700;

}



/* =========================================================
   BLOG
========================================================= */

.blog-card {

    border: 1px solid var(--border);

    border-radius: 14px;

    overflow: hidden;

    background: #ffffff;

    transition: .3s ease;

}


.blog-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 18px 40px rgba(10,45,80,.1);

}


.blog-img {

    width: 100%;

    height: 210px;

    object-fit: cover;

    display: block;

}


.blog-body {

    padding: 25px;

}


.blog-tag {

    font-family: 'Cinzel', serif;

    font-size: 9px;

    letter-spacing: 1.5px;

    color: var(--blue);

    font-weight: 700;

}


.blog-body h4 {

    color: var(--blue-dark);

    line-height: 1.5;

    margin: 12px 0;

    font-family: 'Playfair Display', serif;

}


.blog-body p {

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;

}


.blog-body a {

    color: var(--blue);

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;

}



/* =========================================================
   FLOATING BUTTONS
========================================================= */

.floating-wa {

    position: fixed;

    right: 22px;

    bottom: 100px;

    z-index: 9998;

}


.floating-wa-btn {

    width: 55px;

    height: 55px;

    border-radius: 50%;

    background: #25d366;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    font-size: 28px;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(0,0,0,.2);

}


.floating-call {

    position: fixed;

    right: 22px;

    bottom: 35px;

    z-index: 9998;

}


.floating-call-btn {

    width: 55px;

    height: 55px;

    border-radius: 50%;

    background: var(--blue);

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 20px;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(0,0,0,.2);

}



/* =========================================================
   BACK TOP
========================================================= */

.back-top {

    position: fixed;

    right: 22px;

    bottom: 170px;

    width: 43px;

    height: 43px;

    border: none;

    border-radius: 8px;

    background: var(--blue-dark);

    color: #ffffff;

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transition: .3s;

    z-index: 9997;

}


.back-top.show {

    opacity: 1;

    visibility: visible;

}



/* =========================================================
   STICKY CONSULTATION
========================================================= */

.sticky-consultation {

    position: fixed;

    left: 0;

    bottom: 0;

    z-index: 9990;

}


.sticky-consultation a {

    display: block;

    padding: 13px 22px;

    background: var(--blue);

    color: #ffffff;

    text-decoration: none;

    border-radius: 0 8px 0 0;

    font-size: 12px;

    font-weight: 700;

    box-shadow:
        0 -5px 20px rgba(0,0,0,.12);

}



/* =========================================================
   CONSULTATION POPUP
========================================================= */

.consultation-popup {

    position: fixed;

    inset: 0;

    background:
        rgba(2,20,40,.72);

    backdrop-filter: blur(5px);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    z-index: 10000;

    opacity: 0;

    visibility: hidden;

    transition: .3s ease;

}


.consultation-popup.show {

    opacity: 1;

    visibility: visible;

}


.consultation-box {

    width: min(850px, 100%);

    max-height: 90vh;

    overflow-y: auto;

    background: #ffffff;

    border-radius: 16px;

    padding: 38px;

    position: relative;

}


.close-consultation {

    position: absolute;

    right: 22px;

    top: 15px;

    font-size: 30px;

    color: #667085;

    cursor: pointer;

}


.form-title {

    font-family: 'Playfair Display', serif;

    color: var(--blue-dark);

    font-size: 28px;

    font-weight: 700;

}


.form-subtitle {

    color: var(--muted);

    font-size: 13px;

    margin: 7px 0 25px;

}


.form-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 17px;

}


.form-group.full,
.form-submit-wrap {

    grid-column: 1 / -1;

}


.form-group label {

    display: block;

    font-size: 12px;

    font-weight: 700;

    color: var(--blue-dark);

    margin-bottom: 7px;

}


.form-group label span {

    color: #e33;

}


.form-input {

    width: 100%;

    padding: 13px 14px;

    border: 1px solid var(--border);

    border-radius: 7px;

    outline: none;

    font-family: inherit;

    font-size: 13px;

    transition: .2s;

}


.form-input:focus {

    border-color: var(--blue);

    box-shadow:
        0 0 0 3px rgba(11,94,215,.08);

}


textarea.form-input {

    resize: vertical;

}


.form-submit {

    width: 100%;

    padding: 14px;

    border: none;

    border-radius: 7px;

    background: var(--blue);

    color: #ffffff;

    font-weight: 700;

    cursor: pointer;

}


.form-privacy {

    text-align: center;

    color: #8a94a6;

    font-size: 11px;

    margin: 12px 0 0;

}



/* =========================================================
   ANIMATION
========================================================= */

.fade-up {

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity .7s ease,
        transform .7s ease;

}


.fade-up.visible {

    opacity: 1;

    transform: translateY(0);

}



/* =========================================================
                         TABLET
========================================================= */

@media(max-width:1000px) {

    .grid-4 {

        grid-template-columns:
            repeat(2,1fr);

    }


    .process-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .coverage-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .why-grid {

        grid-template-columns:
            1fr;

    }


    .why-content {

        max-width: none;

    }


    .intro-band-inner {

        grid-template-columns:
            repeat(3,1fr);

    }


    .intro-band-item {

        padding: 15px 8px;

    }

}



/* =========================================================
                         MOBILE
========================================================= */

@media(max-width:768px) {


    .container {

        width: 92%;

    }


    .section-pad {

        padding: 60px 0;

    }


    .section-pad-sm {

        padding: 55px 0;

    }


    .grid-2,
    .grid-3,
    .grid-4 {

        grid-template-columns: 1fr;

        gap: 18px;

    }


    .intro-band-inner {

        grid-template-columns:
            repeat(2,1fr);

    }


    .intro-band-item {

        border-right: none;

        font-size: 10px;

    }


    .image-card {

        min-height: 350px;

    }


    .image-card img {

        height: 350px;

    }


    .process-grid {

        grid-template-columns: 1fr;

    }


    .coverage-grid {

        grid-template-columns: 1fr;

    }


    .process-callout {

        align-items: flex-start;

        padding: 22px;

    }


    .why-image {

        height: 380px;

    }


    .testimonial-card p {

        min-height: auto;

    }


    .form-grid {

        grid-template-columns: 1fr;

    }


    .form-group.full,
    .form-submit-wrap {

        grid-column: auto;

    }


    .consultation-box {

        padding: 28px 20px;

    }


    .floating-wa {

        right: 15px;

        bottom: 85px;

    }


    .floating-call {

        right: 15px;

        bottom: 20px;

    }


    .floating-wa-btn,
    .floating-call-btn {

        width: 48px;

        height: 48px;

    }


    .sticky-consultation a {

        padding: 11px 16px;

        font-size: 11px;

    }

}
/* =========================================================
   CALL NOW BUTTON
========================================================= */

.flex-gap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 13px 26px;

    background: linear-gradient(
        135deg,
        #0b5ed7,
        #084298
    );

    color: #ffffff;
    text-decoration: none;

    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 7px;

    box-shadow:
        0 8px 20px rgba(8, 66, 152, 0.22);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

/* Phone Icon */
.btn-primary i {
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

/* Hover */
.btn-primary:hover {
    background: linear-gradient(
        135deg,
        #084298,
        #062e6f
    );

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 12px 28px rgba(8, 66, 152, 0.32);
}

/* Icon Animation */
.btn-primary:hover i {
    transform: translateX(2px);
}

/* Click */
.btn-primary:active {
    transform: translateY(-1px);
}

/* Focus */
.btn-primary:focus {
    outline: none;

    box-shadow:
        0 0 0 3px rgba(11, 94, 215, 0.20),
        0 8px 20px rgba(8, 66, 152, 0.22);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {

    .flex-gap {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .btn-primary {
        width: 100%;
        padding: 13px 20px;
        font-size: 0.85rem;
    }
}
/* =========================================================
   FINAL CTA SECTION
   LABOUR LAWS LICENSING - BLUE THEME
========================================================= */

#final-cta {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #061a36 0%,
            #0b2f5b 50%,
            #084298 100%
        );

    padding: 90px 20px;
}


/* Decorative background glow */

#final-cta::before {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    top: -220px;
    right: -120px;

    background: rgba(37, 99, 235, 0.18);

    border-radius: 50%;

    filter: blur(10px);

    pointer-events: none;
}


#final-cta::after {
    content: "";
    position: absolute;

    width: 350px;
    height: 350px;

    bottom: -220px;
    left: -120px;

    background: rgba(14, 165, 233, 0.12);

    border-radius: 50%;

    filter: blur(15px);

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

#final-cta .container {
    position: relative;
    z-index: 2;

    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================================
   CTA CONTENT
========================================================= */

.cta-content {
    max-width: 850px;

    margin: 0 auto;

    text-align: center;
}


/* =========================================================
   SECTION LABEL
========================================================= */

#final-cta .section-label {
    display: inline-block;

    margin-bottom: 16px;

    color: #93c5fd;

    font-family: 'Poppins', sans-serif;

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


/* =========================================================
   CTA HEADING
========================================================= */

#final-cta h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-family: 'Playfair Display', serif;

    font-size: clamp(2rem, 4vw, 3.2rem);

    font-weight: 700;

    line-height: 1.2;
}


#final-cta h2 span {
    color: #60a5fa;

    position: relative;
}


/* =========================================================
   BLUE DIVIDER
========================================================= */

.blue-divider {
    width: 70px;
    height: 3px;

    margin-top: 18px;
    margin-bottom: 24px;

    background: linear-gradient(
        90deg,
        #60a5fa,
        #2563eb
    );

    border-radius: 10px;
}


.blue-divider.center {
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   CTA DESCRIPTION
========================================================= */

#final-cta .cta-content > p {
    max-width: 680px;

    margin: 0 auto 30px;

    color: rgba(255, 255, 255, 0.78);

    font-family: 'Poppins', sans-serif;

    font-size: 1rem;

    line-height: 1.8;
}


/* =========================================================
   BUTTON WRAPPER
========================================================= */

#final-cta .flex-gap {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 14px;

    flex-wrap: wrap;

    margin-bottom: 26px;
}


/* =========================================================
   CALL NOW BUTTON
========================================================= */

#final-cta .btn-primary {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-width: 145px;

    padding: 13px 25px;

    background: linear-gradient(
        135deg,
        #2563eb,
        #084298
    );

    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 7px;

    text-decoration: none;

    font-family: 'Poppins', sans-serif;

    font-size: 0.88rem;

    font-weight: 600;

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.22);

    transition: all 0.3s ease;
}


#final-cta .btn-primary i {
    font-size: 0.9rem;

    transition: transform 0.3s ease;
}


#final-cta .btn-primary:hover {
    background: linear-gradient(
        135deg,
        #3b82f6,
        #2563eb
    );

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 14px 30px rgba(37, 99, 235, 0.35);
}


#final-cta .btn-primary:hover i {
    transform: translateX(2px);
}


/* =========================================================
   WHATSAPP BUTTON
========================================================= */

#final-cta .btn-whatsapp {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-width: 155px;

    padding: 13px 25px;

    background: rgba(255, 255, 255, 0.06);

    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.28);

    border-radius: 7px;

    text-decoration: none;

    font-family: 'Poppins', sans-serif;

    font-size: 0.88rem;

    font-weight: 600;

    backdrop-filter: blur(8px);

    transition: all 0.3s ease;
}


#final-cta .btn-whatsapp i {
    font-size: 1rem;

    color: #25D366;

    transition: transform 0.3s ease;
}


#final-cta .btn-whatsapp:hover {
    background: rgba(37, 211, 102, 0.12);

    border-color: rgba(37, 211, 102, 0.55);

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 12px 28px rgba(37, 211, 102, 0.15);
}


#final-cta .btn-whatsapp:hover i {
    transform: scale(1.15);
}


/* =========================================================
   BOTTOM SMALL TEXT
========================================================= */

#final-cta small {
    display: block;

    color: rgba(255, 255, 255, 0.48);

    font-family: 'Poppins', sans-serif;

    font-size: 0.78rem;

    line-height: 1.6;

    letter-spacing: 0.03em;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    #final-cta {
        padding: 70px 18px;
    }

    #final-cta h2 {
        font-size: 2rem;

        line-height: 1.25;
    }

    #final-cta .cta-content > p {
        font-size: 0.9rem;

        line-height: 1.7;
    }

    #final-cta .flex-gap {
        flex-direction: column;

        width: 100%;

        gap: 12px;
    }

    #final-cta .btn-primary,
    #final-cta .btn-whatsapp {
        width: 100%;

        max-width: 280px;
    }

    #final-cta small {
        font-size: 0.72rem;
    }
}


@media (max-width: 480px) {

    #final-cta {
        padding: 60px 16px;
    }

    #final-cta h2 {
        font-size: 1.75rem;
    }

    #final-cta .section-label {
        font-size: 0.66rem;
    }
}