/* =========================================================
   TOP CONTACT BAR + MAIN HEADER
========================================================= */

:root {
    --primary-color: #071b35;
    --primary-light: #0d2b50;

    --secondary-color: #5f8f1f;
    --secondary-dark: #4b7318;
    --secondary-light: #eef5e6;

    --text-color: #122033;
    --white-color: #ffffff;

    --border-color: #e3e8df;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
/* =========================================================
   TOP CONTACT BAR
========================================================= */

.top-contact-bar {
    width: 100%;
    background: var(--primary-color);
    color: #dce5ed;
    font-size: 13px;
    font-weight: 600;
}

.top-contact-inner {
    min-height: 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


/* Location */

.top-location {
    display: flex;
    align-items: center;
    gap: 7px;
}

.top-location i {
    color: var(--secondary-color);
    font-size: 14px;
}


/* Contact Links */

.top-contact-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-contact-links a {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #dce5ed;
    text-decoration: none;

    transition: all 0.25s ease;
}

.top-contact-links a i {
    color: var(--secondary-color);
    font-size: 13px;
}

.top-contact-links a:hover {
    color: var(--white-color);
}


/* =========================================================
   MAIN HEADER
========================================================= */

.main-header {
    position: relative;
    z-index: 1000;

    background: var(--white-color);

    border-bottom: 1px solid rgba(7, 27, 53, 0.08);

    box-shadow:
        0 5px 20px rgba(7, 27, 53, 0.05);
}


/* Navbar */

.main-header .navbar {
    min-height: 82px;
    padding: 8px 0;
}


/* =========================================================
   LOGO
========================================================= */

.site-logo {
    display: flex;
    align-items: center;

    width: 275px;
    height: 65px;

    overflow: hidden;

    margin: 0;
    padding: 0;
}


/*
   Your supplied logo contains the complete banner image.
   We display only the left logo portion inside the header.
*/

.site-logo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: left center;
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-header .navbar-nav {
    gap: 4px;
}

.main-header .nav-link {
    position: relative;

    padding: 10px 13px !important;

    color: var(--primary-color);

    font-size: 14px;
    font-weight: 700;

    transition: all 0.25s ease;
}


/* Hover */

.main-header .nav-link:hover {
    color: var(--secondary-color);
}


/* Active */

.main-header .nav-link.active {
    color: var(--secondary-color);
}


/* Active underline */

.main-header .nav-link::after {
    content: "";

    position: absolute;

    left: 13px;
    right: 13px;
    bottom: 2px;

    height: 2px;

    background: var(--secondary-color);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.25s ease;
}

.main-header .nav-link:hover::after,
.main-header .nav-link.active::after {
    transform: scaleX(1);
}


/* =========================================================
   WHATSAPP BUTTON
========================================================= */

.nav-cta-item {
    margin-left: 8px;
}

.nav-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 11px 18px;

    color: var(--white-color) !important;
    background: var(--secondary-color);

    border: 1px solid var(--secondary-color);d
    border-radius: 10px;

    font-size: 14px;
    font-weight: 800;

    box-shadow:
        0 8px 20px rgba(95, 143, 31, 0.20);

    transition: all 0.25s ease;
}

.nav-whatsapp:hover {
    color: var(--white-color) !important;

    background: var(--secondary-dark);
    border-color: var(--secondary-dark);

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(95, 143, 31, 0.28);
}

.nav-whatsapp i {
    font-size: 17px;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.main-header .navbar-toggler {
    padding: 8px 10px;

    border: 1px solid var(--border-color);
    border-radius: 8px;

    box-shadow: none !important;
}

.main-header .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(95, 143, 31, 0.15) !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199.98px) {

    .site-logo {
        width: 245px;
        height: 60px;
    }

    .main-header .nav-link {
        padding-left: 9px !important;
        padding-right: 9px !important;

        font-size: 13px;
    }

    .nav-whatsapp {
        padding: 10px 14px;
    }
}


/* =========================================================
   MOBILE / TABLET
========================================================= */

/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 991.98px) {

    .top-contact-inner {
        min-height: 38px;
    }

    .main-header {
        position: relative;
        z-index: 9999;
    }

    .main-header .navbar {
        min-height: 75px;
        position: relative;
    }

    .site-logo {
        width: 220px;
        height: 55px;
    }

    /* =========================================
       MOBILE MENU OVERLAY
    ========================================= */

    .main-header .navbar-collapse {
    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;

    margin-top: 0;
    padding: 10px 20px 15px;

    background: var(--white-color);

    border-top: 1px solid var(--border-color);

    box-shadow: 0 10px 25px rgba(7, 27, 53, 0.12);

    z-index: 9999;
}

    .main-header .navbar-nav {
        gap: 0;

        align-items: stretch !important;
    }

    .main-header .nav-link {
        padding: 11px 5px !important;
    }

    .main-header .nav-link::after {
        display: none;
    }

    .nav-cta-item {
        margin: 8px 0 0;
    }

    .nav-whatsapp {
        width: 100%;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .top-contact-bar {
        font-size: 11px;
    }

    .top-contact-inner {
        min-height: 36px;

        justify-content: center;
    }

    .top-location {
        display: none;
    }

    .top-contact-links {
        width: 100%;

        justify-content: center;

        gap: 15px;
    }

    .top-contact-links a {
        font-size: 11px;
    }

    .site-logo {
        width: 195px;
        height: 50px;
    }

    .main-header .navbar {
        min-height: 68px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .top-contact-links {
        gap: 10px;
    }

    .top-contact-links a {
        font-size: 10px;
    }

    .top-contact-links a:last-child {
        display: none;
    }

    .site-logo {
        width: 180px;
        height: 47px;
    }

}


/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {
    padding: 85px 0;
    
    background:
        linear-gradient(
            rgba(7, 27, 53, 0.82),
            rgba(7, 27, 53, 0.82)
        ),
        url("../images/hero-bg.jpg") center center / cover no-repeat;
}


/* =========================================================
   HERO BADGE
========================================================= */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 7px 14px;
    margin-bottom: 18px;

    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.95);

    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   HERO HEADING
========================================================= */

.hero-section h1 {
    margin-bottom: 15px;

    color: #fff;

    font-size: 50px;
    line-height: 1.15;
    font-weight: 800;
}

.hero-section h1 span {
    color: var(--secondary-color);
}


/* =========================================================
   HERO SUB HEADING
========================================================= */

.hero-section h2 {
    margin-bottom: 18px;

    color: #fff;

    font-size: 26px;
    line-height: 1.4;
    font-weight: 700;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-section > .container p {
    max-width: 680px;

    margin-bottom: 25px;

    color: var(--text-color);

    font-size: 16px;
    line-height: 1.7;
}
.leftp{
     color: var(--white-color)!important;

}

/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {
    display: flex;
    gap: 12px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 20px;

    color: #fff;
    background: var(--secondary-color);

    border: 1px solid var(--secondary-color);
    border-radius: 8px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;
}

.hero-btn:hover {
    color: #fff;
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
}


/* WhatsApp Button */

.whatsapp-btn {
    color: var(--primary-color);
    background: #fff;
    border-color: #fff;
}

.whatsapp-btn:hover {
    color: var(--primary-color);
    background: #f1f1f1;
    border-color: #f1f1f1;
}


/* =========================================================
   HERO CARD
========================================================= */

.hero-card {
    padding: 30px;

    background: #fff;

    border-radius: 15px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.20);
}


/* Card Icon */

.hero-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    margin-bottom: 15px;

    color: #fff;
    background: var(--secondary-color);

    border-radius: 12px;

    font-size: 23px;
}


/* Card Heading */

.hero-card h3 {
    margin-bottom: 8px;

    color: var(--primary-color);

    font-size: 24px;
    font-weight: 800;
}


/* Card Text */

.hero-card p {
    margin-bottom: 20px;

    color: #596777;

    font-size: 14px;
    line-height: 1.6;
}


/* Card List */

.hero-card ul {
    padding: 15px 0 0;
    margin: 0;

    border-top: 1px solid var(--border-color);

    list-style: none;
}

.hero-card li {
    margin-bottom: 12px;

    color: var(--text-color);

    font-size: 14px;
    font-weight: 600;
}

.hero-card li i {
    margin-right: 8px;

    color: var(--secondary-color);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .hero-section {
        padding: 55px 0;
    }

    .hero-section h1 {
        font-size: 35px;
    }

    .hero-section h2 {
        font-size: 21px;
    }

    .hero-section > .container p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn {
        justify-content: center;
    }

    .hero-card {
        margin-top: 35px;
    }

}
/* =========================================================
   WHY INDEPENDENT SUPERVISION
========================================================= */

.why-supervision-section {
    padding: 80px 0;
    background: #fff;
}


/* IMAGE */

.why-supervision-image {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(7, 27, 53, 0.12);
}

.why-supervision-image img {
    display: block;
    width: 100%;
    height: 430px;
    object-fit: cover;
}


/* SECTION LABEL */

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 12px;

    color: var(--secondary-color);

    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.section-label i {
    font-size: 14px;
}


/* TITLE */

.section-title {
    margin-bottom: 20px;

    color: var(--primary-color);

    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
}

.section-title span {
    color: var(--secondary-color);
}


/* TEXT */

.section-text {
    margin-bottom: 12px;

    color: #596777;

    font-size: 15px;
    line-height: 1.7;
}


/* CHECKLIST */

.supervision-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 25px;

    margin-top: 22px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 9px;

    color: var(--text-color);

    font-size: 14px;
    font-weight: 600;
}

.check-item i {
    flex-shrink: 0;

    color: var(--secondary-color);

    font-size: 15px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .why-supervision-section {
        padding: 55px 0;
    }

    .why-supervision-image img {
        height: 300px;
    }

    .section-title {
        font-size: 30px;
    }

    .section-text {
        font-size: 14px;
    }

    .supervision-checklist {
        grid-template-columns: 1fr;
        gap: 11px;
    }

}

/* ==========================
   OUR SERVICES
========================== */

.services-section {
    padding: 80px 0;
    background: var(--secondary-light);
}

.services-heading {
    max-width: 750px;
    margin: 0 auto;
}

.services-heading .section-title {
    margin-bottom: 15px;
}

.service-card {
    position: relative;
    height: 100%;
    padding: 30px;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(7, 27, 53, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(95, 143, 31, 0.35);
    box-shadow: 0 15px 35px rgba(7, 27, 53, 0.12);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 22px;
    color: #dfe8d5;
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    margin-bottom: 20px;
    color: var(--white-color);
    background: var(--secondary-color);
    border-radius: 12px;
    font-size: 22px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    transform: scale(1.05);
}

.service-card h3 {
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 19px;
    line-height: 1.35;
    font-weight: 800;
}

.service-card p {
    margin: 0;
    color: #596777;
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 767.98px) {

    .services-section {
        padding: 55px 0;
    }

    .service-card {
        padding: 25px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 13px;
    }
}
/* SERVICES HIGHLIGHT */
.services-heading .service-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 750px;
    margin: 25px auto 0;
    padding: 18px 25px;
    color: var(--primary-color);
    background: var(--white-color);
    border: 1px solid rgba(95, 143, 31, 0.25);
    border-left: 5px solid var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(7, 27, 53, 0.07);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 800;
    text-align: center;
}

.services-heading .service-highlight i {
    flex-shrink: 0;
    color: var(--secondary-color);
    font-size: 22px;
}

@media (max-width: 767.98px) {

    .services-heading .service-highlight {
        padding: 15px 18px;
        font-size: 15px;
    }

    .services-heading .service-highlight i {
        font-size: 18px;
    }
}

/* ==========================
   BENEFITS / WHY CHOOSE
========================== */

.benefit-section {
    padding: 80px 0;
    background: var(--white-color);
}

.benefit-section .section-title {
    margin-bottom: 25px;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    padding: 18px;
    background: var(--secondary-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(7, 27, 53, 0.08);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    color: var(--white-color);
    background: var(--secondary-color);
    border-radius: 10px;
    font-size: 18px;
}

.benefit-item h3,
.why-item h3 {
    margin: 0 0 5px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 800;
}

.benefit-item p,
.why-item p {
    margin: 0;
    color: #596777;
    font-size: 13px;
    line-height: 1.6;
}


/* WHY CHOOSE BOX */

.why-choose-box {
    height: 100%;
    padding: 35px;
    background: var(--primary-color);
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(7, 27, 53, 0.15);
}

.why-choose-box .section-label {
    color: #a8c77a;
}

.why-choose-box .section-title {
    color: var(--white-color);
}

.why-choose-box .section-title span {
    color: var(--secondary-color);
}

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-item {
    display: flex;
    gap: 15px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.why-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.why-number {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    color: var(--secondary-color);
    background: rgba(95, 143, 31, 0.15);
    border: 1px solid rgba(95, 143, 31, 0.35);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
}

.why-item h3 {
    color: var(--white-color);
}

.why-item p {
    color: #c3ccd6;
}


/* MOBILE */

@media (max-width: 767.98px) {

    .benefit-section {
        padding: 55px 0;
    }

    .why-choose-box {
        padding: 25px 20px;
    }

    .benefit-item {
        padding: 15px;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .benefit-item h3,
    .why-item h3 {
        font-size: 15px;
    }

    .benefit-item p,
    .why-item p {
        font-size: 13px;
    }
}

/* ==========================
   ABOUT SANJAY
========================== */

.about-section {
    padding: 80px 0 0;
    background: #f4f7f9;
}

.about-experience {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--secondary-dark);
    font-size: 16px;
}

.about-experience i {
    color: var(--secondary-color);
}

.about-text {
    margin-bottom: 14px;
    color: #596777;
    font-size: 15px;
    line-height: 1.75;
}

.about-focus {
    margin-top: 25px;
    padding: 18px 20px;
    background: var(--white-color);
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(7, 27, 53, 0.05);
}

.about-focus span {
    display: block;
    margin-bottom: 5px;
    color: #596777;
    font-size: 13px;
}

.about-focus strong {
    color: var(--primary-color);
    font-size: 17px;
}

.about-contact {
    margin-top: 20px;
}

.about-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}

.about-contact i {
    font-size: 19px;
}


/* ==========================
   OWNER BOX
========================== */

.owner-box {
    padding: 35px;
    color: var(--white-color);
    background: var(--primary-color);
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(7, 27, 53, 0.15);
}

.owner-box-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    margin-bottom: 20px;
    color: var(--white-color);
    background: var(--secondary-color);
    border-radius: 12px;
    font-size: 22px;
}

.owner-box h3 {
    margin-bottom: 18px;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 800;
}

.owner-box h3 span {
    color: var(--secondary-color);
}

.owner-box p {
    color: #d0d9e2;
    font-size: 14px;
    line-height: 1.7;
}

.owner-divider {
    width: 50px;
    height: 3px;
    margin: 20px 0;
    background: var(--secondary-color);
}

.owner-box .owner-small {
    margin: 0;
    color: #aebbc8;
    font-size: 13px;
}


/* ==========================
   FLEXIBLE SERVICE OPTIONS
========================== */

.service-options {
    padding: 80px 0;
}

.service-options-heading,
.process-heading {
    max-width: 700px;
    margin: 0 auto 40px;
}

.option-card {
    position: relative;
    height: 100%;
    padding: 30px;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(7, 27, 53, 0.06);
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(7, 27, 53, 0.1);
}

.featured-option {
    border: 2px solid var(--secondary-color);
}

.option-number {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #dfe8d5;
    font-size: 30px;
    font-weight: 800;
}

.option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    color: var(--white-color);
    background: var(--secondary-color);
    border-radius: 11px;
    font-size: 20px;
}

.option-card h3 {
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 800;
}

.option-card p {
    margin-bottom: 15px;
    color: #596777;
    font-size: 14px;
    line-height: 1.65;
}

.option-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.option-tags span {
    padding: 6px 9px;
    color: var(--secondary-dark);
    background: var(--secondary-light);
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
}

.option-card ul {
    padding: 0;
    margin: 15px 0 0;
    list-style: none;
}

.option-card li {
    margin-bottom: 9px;
    color: #596777;
    font-size: 13px;
}

.option-card li i {
    margin-right: 7px;
    color: var(--secondary-color);
}

.option-note {
    display: flex;
    gap: 9px;
    padding: 13px;
    margin-top: 18px;
    background: var(--secondary-light);
    border-radius: 8px;
    color: #596777;
    font-size: 12px;
    line-height: 1.6;
}

.option-note i {
    color: var(--secondary-color);
    margin-top: 3px;
}


/* ==========================
   HOW IT WORKS
========================== */

.process-section {
    padding: 0 0 80px;
}

.process-card {
    position: relative;
    height: 100%;
    padding: 28px 22px;
    text-align: center;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(7, 27, 53, 0.08);
}

.process-number {
    position: absolute;
    top: 12px;
    right: 15px;
    color: #d6e2c8;
    font-size: 25px;
    font-weight: 800;
}

.process-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    color: var(--white-color);
    background: var(--secondary-color);
    border-radius: 50%;
    font-size: 19px;
}

.process-card h3 {
    margin-bottom: 9px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 800;
}

.process-card p {
    margin: 0;
    color: #596777;
    font-size: 13px;
    line-height: 1.6;
}


/* ==========================
   FINAL CTA
========================== */

.final-cta-section {
    padding: 45px 0;
    background: var(--primary-color);
}

.final-cta-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.final-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    color: var(--white-color);
    background: var(--secondary-color);
    border-radius: 14px;
    font-size: 27px;
}

.final-cta-text {
    flex: 1;
}

.final-cta-text .section-label {
    margin-bottom: 6px;
    color: #a8c77a;
}

.final-cta-text h2 {
    margin-bottom: 7px;
    color: var(--white-color);
    font-size: 28px;
    font-weight: 800;
}

.final-cta-text p {
    max-width: 700px;
    margin-bottom: 7px;
    color: #c4ced8;
    font-size: 14px;
    line-height: 1.6;
}

.final-cta-text strong {
    color: var(--secondary-color);
    font-size: 14px;
}

.final-cta-action {
    display: flex;
    flex-direction: column;
    gap: 9px;
    min-width: 200px;
}

.cta-whatsapp,
.cta-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

.cta-whatsapp {
    color: var(--white-color);
    background: var(--secondary-color);
}

.cta-whatsapp:hover {
    color: var(--white-color);
    background: var(--secondary-dark);
}

.cta-email {
    color: var(--white-color);
    border: 1px solid rgba(255,255,255,.25);
}

.cta-email:hover {
    color: var(--white-color);
    border-color: var(--secondary-color);
}


/* ==========================
   MOBILE
========================== */

@media (max-width: 767.98px) {

    .about-section {
        padding-top: 55px;
    }

    .service-options {
        padding: 55px 0;
    }

    .process-section {
        padding-bottom: 55px;
    }

    .owner-box {
        padding: 25px 20px;
    }

    .owner-box h3 {
        font-size: 21px;
    }

    .final-cta-section {
        padding: 35px 0;
    }

    .final-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .final-cta-text .section-label {
        justify-content: center;
    }

    .final-cta-text h2 {
        font-size: 24px;
    }

    .final-cta-action {
        width: 100%;
    }

    .about-focus strong {
        font-size: 15px;
    }
}

/* ==========================
   FAQ
========================== */

.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-heading {
    max-width: 700px;
    margin: 0 auto 40px;
}

.faq-accordion .accordion-item {
    margin-bottom: 12px;
    border: 1px solid var(--border-color);
    border-radius: 10px !important;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    padding: 18px 20px;
    color: var(--primary-color);
    background: var(--white-color);
    font-size: 15px;
    font-weight: 800;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--secondary-dark);
    background: var(--secondary-light);
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    background-size: 14px;
}

.faq-accordion .accordion-body {
    padding: 0 20px 20px;
    color: #596777;
    background: var(--secondary-light);
    font-size: 14px;
    line-height: 1.7;
}


/* ==========================
   CONTACT
========================== */

.contact-section {
    padding: 80px 0;
    background: #f4f7f9;
}

.contact-intro {
    max-width: 600px;
    margin-bottom: 30px;
    color: #596777;
    font-size: 15px;
    line-height: 1.7;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-color);
    text-decoration: none;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    color: var(--white-color);
    background: var(--secondary-color);
    border-radius: 9px;
    font-size: 17px;
}

.contact-item span {
    display: block;
    margin-bottom: 2px;
    color: #7a8795;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-item strong {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
}

.contact-item:hover strong {
    color: var(--secondary-dark);
}


/* CONTACT CARD */

.contact-card {
    padding: 40px;
    color: var(--white-color);
    background: var(--primary-color);
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(7, 27, 53, 0.15);
}

.contact-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: var(--white-color);
    background: var(--secondary-color);
    border-radius: 12px;
    font-size: 25px;
}

.contact-card h3 {
    margin-bottom: 15px;
    font-size: 29px;
    line-height: 1.25;
    font-weight: 800;
}

.contact-card h3 span {
    color: var(--secondary-color);
}

.contact-card > p {
    color: #c6d0da;
    font-size: 14px;
    line-height: 1.7;
}

.contact-card-divider {
    width: 50px;
    height: 3px;
    margin: 22px 0;
    background: var(--secondary-color);
}

.contact-card h4 {
    margin-bottom: 20px;
    color: var(--white-color);
    font-size: 18px;
    font-weight: 800;
}

.contact-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 13px 20px;
    color: var(--white-color);
    background: var(--secondary-color);
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: all .3s ease;
}

.contact-whatsapp:hover {
    color: var(--white-color);
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

.contact-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 15px 0 0 !important;
    color: #aebbc8 !important;
    font-size: 12px !important;
}


/* ==========================
   FOOTER
========================== */

.site-footer {
    padding: 55px 0 0;
    color: #c4ced8;
    background: #041426;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
}

.footer-logo {
    display: inline-block;
    width: 220px;
    height: 52px;
    margin-bottom: 18px;
    overflow: hidden;
    border-radius: 5px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.footer-brand p {
    max-width: 330px;
    margin: 0;
    color: var(--white-color);
    font-size: 15px;
    line-height: 1.7;
}

.footer-main h4 {
    margin-bottom: 18px;
    color: var(--white-color);
    font-size: 15px;
    font-weight: 800;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-contact a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 15px;
    transition: all .25s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--secondary-color);
    transform: translateX(3px);
}

.footer-contact a i,
.footer-contact p i {
    width: 18px;
    color: var(--secondary-color);
}

.footer-contact p {
    margin: 0;
    color: #9eabb8;
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.1);
}

.footer-bottom p {
    margin: 0;
    color: #7f8c99;
    font-size: 11px;
}


/* ==========================
   MOBILE
========================== */

@media (max-width: 767.98px) {

    .faq-section,
    .contact-section {
        padding: 55px 0;
    }

    .faq-accordion .accordion-button {
        padding: 16px;
        font-size: 14px;
    }

    .faq-accordion .accordion-body {
        padding: 0 16px 17px;
        font-size: 13px;
    }

    .contact-card {
        padding: 28px 22px;
    }

    .contact-card h3 {
        font-size: 24px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}