/* =========================================
   GMB PAGE - SECTION 1 HERO
========================================= */

.gmb-hero {
    position: relative;
    padding: 110px 0 90px;
    background: #f7fbff;
    overflow: hidden;
}

.gmb-hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -250px;
    right: -150px;
    background: rgba(13, 110, 253, 0.06);
    border-radius: 50%;
}

.gmb-hero::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    bottom: -230px;
    left: -130px;
    background: rgba(3, 82, 151, 0.05);
    border-radius: 50%;
}

.gmb-hero .container {
    position: relative;
    z-index: 2;
}

.gmb-hero-content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}


/* Badge */

.gmb-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 20px;
    margin-bottom: 22px;

    background: #e8f2ff;
    color: #035297;

    border-radius: 30px;

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

.gmb-hero-badge i {
    font-size: 13px;
}


/* Heading */

.gmb-hero h1 {
    margin: 0 0 20px;

    color: #222222;

    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.14;

    font-weight: 700;
}

.gmb-hero h1 span {
    color: #035297;
}


/* Description */

.gmb-hero-description {
    max-width: 700px;

    margin: 0 auto 30px;

    color: #666666;

    font-size: 17px;
    line-height: 30px;
}


/* Buttons */

.gmb-hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;
    flex-wrap: wrap;
}

.gmb-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 14px 27px;

    background: #035297;
    color: #ffffff;

    border-radius: 50px;

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

    text-decoration: none;

    transition: all .3s ease;
}

.gmb-hero-primary:hover {
    background: #0d6efd;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-3px);
}

.gmb-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 13px 25px;

    background: #ffffff;
    color: #035297;

    border: 1px solid #d7e5f3;

    border-radius: 50px;

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

    text-decoration: none;

    transition: all .3s ease;
}

.gmb-hero-secondary:hover {
    background: #e8f2ff;
    color: #035297;
    text-decoration: none;
    transform: translateY(-3px);
}


/* Trust points */

.gmb-hero-points {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 25px;

    margin-top: 38px;
}

.gmb-hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #666666;

    font-size: 13px;
}

.gmb-hero-points i {
    color: #0d6efd;
    font-size: 12px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .gmb-hero {
        padding: 75px 0 65px;
    }

    .gmb-hero h1 {
        font-size: 34px;
    }

    .gmb-hero-description {
        font-size: 15px;
        line-height: 27px;
    }

    .gmb-hero-buttons {
        flex-direction: column;
    }

    .gmb-hero-primary,
    .gmb-hero-secondary {
        width: 100%;
        max-width: 300px;
    }

    .gmb-hero-points {
        flex-direction: column;
        gap: 12px;
    }
}

/* =========================================
   SECTION 2 - LOCAL SEARCH CHALLENGE
========================================= */

.gmb-challenge-section {
    padding: 95px 0;
    background: #ffffff;
}


/* =========================================
   SECTION HEADING
========================================= */

.gmb-challenge-heading {
    max-width: 820px;
    margin: 0 auto 50px;
    text-align: center;
}

.gmb-challenge-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 19px;
    margin-bottom: 18px;

    background: #e8f2ff;
    color: #035297;

    border-radius: 30px;

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

.gmb-challenge-heading h2 {
    margin: 0 0 16px;

    color: #222222;

    font-size: 42px;
    line-height: 1.2;

    font-weight: 700;
}

.gmb-challenge-heading h2 span {
    color: #035297;
}

.gmb-challenge-heading p {
    max-width: 750px;

    margin: 0 auto;

    color: #666666;

    font-size: 16px;
    line-height: 29px;
}


/* =========================================
   CHALLENGE GRID
========================================= */

.gmb-challenge-grid {
    display: grid;

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

    gap: 20px;
}


/* =========================================
   CHALLENGE CARD
========================================= */

.gmb-challenge-card {
    position: relative;

    padding: 30px 24px;

    background: #f8fbff;

    border: 1px solid #e5edf5;

    border-radius: 18px;

    overflow: hidden;

    transition: all .35s ease;
}

.gmb-challenge-card:hover {
    transform: translateY(-7px);

    background: #ffffff;

    border-color: #d3e3f2;

    box-shadow: 0 18px 40px rgba(3,82,151,.09);
}


/* Blue top line */

.gmb-challenge-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 4px;

    background: #035297;

    transition: width .35s ease;
}

.gmb-challenge-card:hover::before {
    width: 100%;
}


/* =========================================
   ICON
========================================= */

.gmb-challenge-icon {
    width: 55px;
    height: 55px;

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

    margin-bottom: 22px;

    background: #e8f2ff;
    color: #035297;

    border-radius: 14px;

    font-size: 21px;

    transition: all .35s ease;
}

.gmb-challenge-card:hover .gmb-challenge-icon {
    background: #035297;
    color: #ffffff;

    transform: scale(1.06);
}


/* =========================================
   CARD CONTENT
========================================= */

.gmb-challenge-card h3 {
    margin: 0 0 10px;

    color: #222222;

    font-size: 18px;
    line-height: 1.35;

    font-weight: 700;

    transition: .3s;
}

.gmb-challenge-card:hover h3 {
    color: #035297;
}

.gmb-challenge-card p {
    margin: 0;

    color: #666666;

    font-size: 13px;
    line-height: 24px;
}


/* =========================================
   BOTTOM MESSAGE
========================================= */

.gmb-challenge-bottom {
    max-width: 900px;

    margin: 35px auto 0;

    padding: 20px 25px;

    background: #f7fbff;

    border-left: 4px solid #035297;

    border-radius: 8px;

    text-align: center;

    color: #555555;

    font-size: 14px;
    line-height: 25px;
}

.gmb-challenge-bottom strong {
    color: #222222;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .gmb-challenge-section {
        padding: 80px 0;
    }

    .gmb-challenge-heading h2 {
        font-size: 36px;
    }

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

}


@media (max-width: 767px) {

    .gmb-challenge-section {
        padding: 65px 0;
    }

    .gmb-challenge-heading {
        margin-bottom: 40px;
    }

    .gmb-challenge-heading h2 {
        font-size: 30px;
    }

    .gmb-challenge-heading p {
        font-size: 15px;
        line-height: 27px;
    }

    .gmb-challenge-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================================
   SECTION 3 - WHAT IS GOOGLE BUSINESS PROFILE
========================================= */

.gmb-about-section {
    padding: 100px 0;
    background: #f8fbff;
}

.gmb-about-row {
    display: flex;
    align-items: center;
}


/* =========================================
   LEFT CONTENT
========================================= */

.gmb-about-content {
    padding-right: 45px;
}

.gmb-about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 19px;
    margin-bottom: 20px;

    background: #e8f2ff;
    color: #035297;

    border-radius: 30px;

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

.gmb-about-content h2 {
    margin: 0 0 18px;

    color: #222222;

    font-size: 42px;
    line-height: 1.2;

    font-weight: 700;
}

.gmb-about-content h2 span {
    color: #035297;
}

.gmb-about-content > p {
    margin: 0 0 25px;

    color: #666666;

    font-size: 16px;
    line-height: 29px;
}


/* =========================================
   CHECK POINTS
========================================= */

.gmb-about-points {
    margin-top: 25px;
}

.gmb-about-point {
    display: flex;
    align-items: flex-start;

    gap: 13px;

    padding: 12px 0;

    border-bottom: 1px solid #e3ebf3;
}

.gmb-about-point:last-child {
    border-bottom: none;
}

.gmb-about-point-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;

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

    background: #e8f2ff;
    color: #035297;

    border-radius: 9px;

    font-size: 13px;
}

.gmb-about-point h4 {
    margin: 0 0 3px;

    color: #222222;

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

.gmb-about-point p {
    margin: 0;

    color: #666666;

    font-size: 12px;
    line-height: 20px;
}


/* =========================================
   RIGHT PROFILE CARD
========================================= */

.gmb-profile-wrapper {
    position: relative;

    padding: 25px;
}

.gmb-profile-card {
    position: relative;

    background: #ffffff;

    border: 1px solid #e2eaf2;

    border-radius: 22px;

    overflow: hidden;

    box-shadow: 0 20px 50px rgba(3,82,151,.10);
}


/* Profile header */

.gmb-profile-header {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 22px;

    border-bottom: 1px solid #edf1f5;
}

.gmb-profile-logo {
    width: 58px;
    height: 58px;

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

    background: #e8f2ff;
    color: #035297;

    border-radius: 13px;

    font-size: 22px;
}

.gmb-profile-name {
    flex: 1;
}

.gmb-profile-name h3 {
    margin: 0 0 4px;

    color: #222222;

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

.gmb-profile-name span {
    color: #777777;

    font-size: 11px;
}


/* Rating */

.gmb-profile-rating {
    text-align: right;
}

.gmb-profile-rating strong {
    display: block;

    color: #222222;

    font-size: 15px;
}

.gmb-profile-stars {
    color: #f5a623;

    font-size: 11px;

    letter-spacing: 1px;
}


/* Profile body */

.gmb-profile-body {
    padding: 23px;
}

.gmb-profile-description {
    margin-bottom: 20px;

    color: #666666;

    font-size: 12px;
    line-height: 21px;
}


/* Info rows */

.gmb-profile-info {
    display: grid;

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

    gap: 10px;

    margin-bottom: 20px;
}

.gmb-profile-info-item {
    display: flex;
    align-items: center;

    gap: 9px;

    padding: 12px;

    background: #f8fbff;

    border-radius: 10px;
}

.gmb-profile-info-item i {
    color: #035297;

    font-size: 13px;
}

.gmb-profile-info-item span {
    color: #555555;

    font-size: 10px;
}


/* Action buttons */

.gmb-profile-actions {
    display: grid;

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

    gap: 8px;
}

.gmb-profile-action {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    padding: 10px 5px;

    background: #e8f2ff;
    color: #035297;

    border-radius: 9px;

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

.gmb-profile-action i {
    font-size: 11px;
}


/* =========================================
   FLOATING BADGES
========================================= */

.gmb-floating-badge {
    position: absolute;

    display: flex;
    align-items: center;

    gap: 9px;

    padding: 11px 15px;

    background: #ffffff;

    border: 1px solid #e2eaf2;

    border-radius: 12px;

    box-shadow: 0 12px 30px rgba(3,82,151,.12);

    z-index: 3;
}

.gmb-floating-badge i {
    color: #035297;
}

.gmb-floating-badge span {
    color: #222222;

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

.gmb-floating-one {
    top: 5px;
    right: -5px;
}

.gmb-floating-two {
    bottom: 5px;
    left: -5px;
}


/* =========================================
   BOTTOM HIGHLIGHT
========================================= */

.gmb-about-highlight {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-top: 25px;
    padding: 17px 20px;

    background: #e8f2ff;

    border-radius: 13px;
}

.gmb-about-highlight-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;

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

    background: #035297;
    color: #ffffff;

    border-radius: 10px;

    font-size: 14px;
}

.gmb-about-highlight strong {
    display: block;

    margin-bottom: 3px;

    color: #222222;

    font-size: 13px;
}

.gmb-about-highlight span {
    color: #666666;

    font-size: 11px;
    line-height: 19px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .gmb-about-section {
        padding: 80px 0;
    }

    .gmb-about-content {
        padding-right: 0;
        margin-bottom: 45px;
    }

    .gmb-about-content h2 {
        font-size: 36px;
    }

}


@media (max-width: 767px) {

    .gmb-about-section {
        padding: 65px 0;
    }

    .gmb-about-content h2 {
        font-size: 30px;
    }

    .gmb-about-content > p {
        font-size: 15px;
        line-height: 27px;
    }

    .gmb-profile-wrapper {
        padding: 10px;
    }

    .gmb-floating-one {
        right: -5px;
    }

    .gmb-floating-two {
        left: -5px;
    }

    .gmb-profile-info {
        grid-template-columns: 1fr;
    }

}
/* =========================================
   SECTION 4 - GMB LOCAL GROWTH
========================================= */

.gmb-growth-section {
    padding: 100px 0;
    background: #ffffff;
}


/* =========================================
   HEADING
========================================= */

.gmb-growth-heading {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.gmb-growth-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 20px;
    margin-bottom: 18px;

    background: #e8f2ff;
    color: #035297;

    border-radius: 30px;

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

.gmb-growth-heading h2 {
    margin: 0 0 16px;

    color: #222222;

    font-size: 42px;
    line-height: 1.2;

    font-weight: 700;
}

.gmb-growth-heading h2 span {
    color: #035297;
}

.gmb-growth-heading p {
    max-width: 760px;

    margin: 0 auto;

    color: #666666;

    font-size: 16px;
    line-height: 29px;
}


/* =========================================
   BENEFIT GRID
========================================= */

.gmb-growth-grid {
    display: grid;

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

    gap: 20px;
}


/* =========================================
   BENEFIT CARD
========================================= */

.gmb-growth-card {
    position: relative;

    padding: 30px 27px;

    background: #f8fbff;

    border: 1px solid #e4edf5;

    border-radius: 18px;

    overflow: hidden;

    transition: all .35s ease;
}

.gmb-growth-card:hover {
    background: #ffffff;

    border-color: #d1e2f1;

    transform: translateY(-7px);

    box-shadow: 0 18px 40px rgba(3,82,151,.09);
}


/* Blue top line */

.gmb-growth-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 4px;

    background: linear-gradient(
        90deg,
        #035297,
        #0d6efd
    );

    transition: width .35s ease;
}

.gmb-growth-card:hover::before {
    width: 100%;
}


/* =========================================
   ICON
========================================= */

.gmb-growth-icon {
    width: 56px;
    height: 56px;

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

    margin-bottom: 22px;

    background: #e8f2ff;
    color: #035297;

    border-radius: 14px;

    font-size: 21px;

    transition: all .35s ease;
}

.gmb-growth-card:hover .gmb-growth-icon {
    background: #035297;
    color: #ffffff;

    transform: scale(1.06);
}


/* =========================================
   NUMBER
========================================= */

.gmb-growth-number {
    position: absolute;

    top: 23px;
    right: 25px;

    color: #e1ebf4;

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


/* =========================================
   CARD CONTENT
========================================= */

.gmb-growth-card h3 {
    margin: 0 0 9px;

    color: #222222;

    font-size: 19px;
    line-height: 1.3;

    font-weight: 700;

    transition: .3s;
}

.gmb-growth-card:hover h3 {
    color: #035297;
}

.gmb-growth-card p {
    margin: 0;

    color: #666666;

    font-size: 13px;
    line-height: 24px;
}


/* =========================================
   BOTTOM RESULT STRIP
========================================= */

.gmb-growth-result {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-top: 30px;
    padding: 24px 28px;

    background: #e8f2ff;

    border-radius: 17px;
}

.gmb-growth-result-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;

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

    background: #035297;
    color: #ffffff;

    border-radius: 12px;

    font-size: 17px;
}

.gmb-growth-result-content {
    flex: 1;
}

.gmb-growth-result-content strong {
    display: block;

    margin-bottom: 4px;

    color: #222222;

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

.gmb-growth-result-content span {
    display: block;

    color: #666666;

    font-size: 12px;
    line-height: 21px;
}


/* =========================================
   RESULT ARROW
========================================= */

.gmb-growth-result-arrow {
    width: 42px;
    height: 42px;
    min-width: 42px;

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

    background: #035297;
    color: #ffffff;

    border-radius: 50%;

    font-size: 14px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .gmb-growth-section {
        padding: 80px 0;
    }

    .gmb-growth-heading h2 {
        font-size: 36px;
    }

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

}


@media (max-width: 767px) {

    .gmb-growth-section {
        padding: 65px 0;
    }

    .gmb-growth-heading {
        margin-bottom: 40px;
    }

    .gmb-growth-heading h2 {
        font-size: 30px;
    }

    .gmb-growth-heading p {
        font-size: 15px;
        line-height: 27px;
    }

    .gmb-growth-grid {
        grid-template-columns: 1fr;
    }

    .gmb-growth-card {
        padding: 25px 22px;
    }

    .gmb-growth-result {
        align-items: flex-start;

        padding: 20px;
    }

    .gmb-growth-result-arrow {
        display: none;
    }

}

/* =========================================
   SECTION 5 - GMB OPTIMIZATION SERVICES
========================================= */

.gmb-services-section {
    padding: 100px 0;
    background: #f8fbff;
}


/* =========================================
   HEADING
========================================= */

.gmb-services-heading {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.gmb-services-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 20px;
    margin-bottom: 18px;

    background: #e8f2ff;
    color: #035297;

    border-radius: 30px;

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

.gmb-services-heading h2 {
    margin: 0 0 16px;

    color: #222222;

    font-size: 42px;
    line-height: 1.2;

    font-weight: 700;
}

.gmb-services-heading h2 span {
    color: #035297;
}

.gmb-services-heading p {
    max-width: 760px;

    margin: 0 auto;

    color: #666666;

    font-size: 16px;
    line-height: 29px;
}


/* =========================================
   SERVICES GRID
========================================= */

.gmb-services-grid {
    display: grid;

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

    gap: 20px;
}


/* =========================================
   SERVICE CARD
========================================= */

.gmb-service-card {
    position: relative;

    padding: 30px 27px;

    background: #ffffff;

    border: 1px solid #e4edf5;

    border-radius: 19px;

    overflow: hidden;

    transition: all .35s ease;

    box-shadow: 0 7px 25px rgba(3,82,151,.04);
}

.gmb-service-card:hover {
    transform: translateY(-7px);

    border-color: #d0e1f0;

    box-shadow: 0 18px 42px rgba(3,82,151,.10);
}


/* Top blue line */

.gmb-service-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 0;
    height: 4px;

    background: linear-gradient(
        90deg,
        #035297,
        #0d6efd
    );

    transition: width .35s ease;
}

.gmb-service-card:hover::before {
    width: 100%;
}


/* =========================================
   CARD TOP
========================================= */

.gmb-service-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 22px;
}

.gmb-service-icon {
    width: 56px;
    height: 56px;

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

    background: #e8f2ff;
    color: #035297;

    border-radius: 14px;

    font-size: 21px;

    transition: all .35s ease;
}

.gmb-service-card:hover .gmb-service-icon {
    background: #035297;
    color: #ffffff;

    transform: scale(1.06);
}

.gmb-service-number {
    color: #e1ebf4;

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


/* =========================================
   CARD CONTENT
========================================= */

.gmb-service-card h3 {
    margin: 0 0 10px;

    color: #222222;

    font-size: 19px;
    line-height: 1.3;

    font-weight: 700;

    transition: .3s;
}

.gmb-service-card:hover h3 {
    color: #035297;
}

.gmb-service-card p {
    margin: 0;

    color: #666666;

    font-size: 13px;
    line-height: 24px;
}


/* =========================================
   SERVICE LIST
========================================= */

.gmb-service-list {
    margin: 17px 0 0;
    padding: 0;

    list-style: none;
}

.gmb-service-list li {
    position: relative;

    padding-left: 20px;
    margin-bottom: 7px;

    color: #666666;

    font-size: 11px;
    line-height: 19px;
}

.gmb-service-list li::before {
    content: "\f00c";

    position: absolute;

    left: 0;
    top: 2px;

    color: #035297;

    font-family: "Font Awesome 6 Free";
    font-size: 9px;
    font-weight: 900;
}


/* =========================================
   BOTTOM STRIP
========================================= */

.gmb-services-bottom {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-top: 30px;
    padding: 23px 27px;

    background: #e8f2ff;

    border-radius: 17px;
}

.gmb-services-bottom-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;

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

    background: #035297;
    color: #ffffff;

    border-radius: 12px;

    font-size: 17px;
}

.gmb-services-bottom-content {
    flex: 1;
}

.gmb-services-bottom-content strong {
    display: block;

    margin-bottom: 4px;

    color: #222222;

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

.gmb-services-bottom-content span {
    display: block;

    color: #666666;

    font-size: 12px;
    line-height: 21px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .gmb-services-section {
        padding: 80px 0;
    }

    .gmb-services-heading h2 {
        font-size: 36px;
    }

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

}


@media (max-width: 767px) {

    .gmb-services-section {
        padding: 65px 0;
    }

    .gmb-services-heading {
        margin-bottom: 40px;
    }

    .gmb-services-heading h2 {
        font-size: 30px;
    }

    .gmb-services-heading p {
        font-size: 15px;
        line-height: 27px;
    }

    .gmb-services-grid {
        grid-template-columns: 1fr;
    }

    .gmb-service-card {
        padding: 25px 22px;
    }

    .gmb-services-bottom {
        align-items: flex-start;

        padding: 20px;
    }

}

/* =========================================
   SECTION 6 - GMB OPTIMIZATION PROCESS
========================================= */

.gmb-process-section {
    padding: 100px 0;
    background: #ffffff;
}


/* =========================================
   HEADING
========================================= */

.gmb-process-heading {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

.gmb-process-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 20px;
    margin-bottom: 18px;

    background: #e8f2ff;
    color: #035297;

    border-radius: 30px;

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

.gmb-process-heading h2 {
    margin: 0 0 16px;

    color: #222222;

    font-size: 42px;
    line-height: 1.2;

    font-weight: 700;
}

.gmb-process-heading h2 span {
    color: #035297;
}

.gmb-process-heading p {
    max-width: 750px;

    margin: 0 auto;

    color: #666666;

    font-size: 16px;
    line-height: 29px;
}


/* =========================================
   PROCESS WRAPPER
========================================= */

.gmb-process-wrapper {
    position: relative;

    max-width: 1120px;

    margin: 0 auto;
}


/* Connecting line */

.gmb-process-line {
    position: absolute;

    top: 48px;
    left: 8%;
    right: 8%;

    height: 2px;

    background: #dce9f5;

    z-index: 0;
}


/* =========================================
   PROCESS GRID
========================================= */

.gmb-process-grid {
    position: relative;

    display: grid;

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

    gap: 12px;

    z-index: 2;
}


/* =========================================
   PROCESS ITEM
========================================= */

.gmb-process-item {
    position: relative;

    text-align: center;

    transition: all .3s ease;
}


/* Number/Icon */

.gmb-process-icon {
    position: relative;

    width: 68px;
    height: 68px;

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

    margin: 0 auto 22px;

    background: #ffffff;

    border: 2px solid #dce9f5;

    color: #035297;

    border-radius: 50%;

    font-size: 21px;

    transition: all .35s ease;
}

.gmb-process-item:hover .gmb-process-icon {
    background: #035297;

    border-color: #035297;

    color: #ffffff;

    transform: translateY(-5px);

    box-shadow: 0 12px 25px rgba(3,82,151,.20);
}


/* Step number */

.gmb-process-number {
    position: absolute;

    top: -8px;
    right: -6px;

    width: 23px;
    height: 23px;

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

    background: #e8f2ff;

    color: #035297;

    border: 2px solid #ffffff;

    border-radius: 50%;

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

    transition: .3s;
}

.gmb-process-item:hover .gmb-process-number {
    background: #0d6efd;
    color: #ffffff;
}


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

.gmb-process-item h3 {
    margin: 0 0 9px;

    color: #222222;

    font-size: 16px;
    line-height: 1.3;

    font-weight: 700;

    transition: .3s;
}

.gmb-process-item:hover h3 {
    color: #035297;
}

.gmb-process-item p {
    margin: 0;

    color: #666666;

    font-size: 11px;
    line-height: 19px;
}


/* =========================================
   PROCESS DETAILS
========================================= */

.gmb-process-details {
    display: grid;

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

    gap: 18px;

    margin-top: 55px;
}

.gmb-process-detail {
    display: flex;
    align-items: flex-start;

    gap: 13px;

    padding: 20px;

    background: #f8fbff;

    border: 1px solid #e5edf5;

    border-radius: 14px;

    transition: all .3s ease;
}

.gmb-process-detail:hover {
    background: #ffffff;

    border-color: #d2e2f0;

    transform: translateY(-4px);

    box-shadow: 0 12px 30px rgba(3,82,151,.07);
}

.gmb-process-detail-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;

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

    background: #e8f2ff;

    color: #035297;

    border-radius: 10px;

    font-size: 13px;
}

.gmb-process-detail h4 {
    margin: 0 0 4px;

    color: #222222;

    font-size: 14px;

    font-weight: 700;
}

.gmb-process-detail p {
    margin: 0;

    color: #666666;

    font-size: 11px;
    line-height: 19px;
}


/* =========================================
   BOTTOM CTA STRIP
========================================= */

.gmb-process-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 30px;
    padding: 23px 27px;

    background: #035297;

    border-radius: 17px;
}

.gmb-process-bottom-content strong {
    display: block;

    margin-bottom: 4px;

    color: #ffffff;

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

.gmb-process-bottom-content span {
    color: rgba(255,255,255,.82);

    font-size: 12px;
}

.gmb-process-bottom-btn {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 12px 21px;

    background: #ffffff;
    color: #035297;

    border-radius: 40px;

    white-space: nowrap;

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

    text-decoration: none;

    transition: all .3s ease;
}

.gmb-process-bottom-btn:hover {
    background: #222222;
    color: #ffffff;

    text-decoration: none;

    transform: translateY(-2px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .gmb-process-section {
        padding: 80px 0;
    }

    .gmb-process-heading h2 {
        font-size: 36px;
    }

    .gmb-process-grid {
        grid-template-columns: repeat(3, 1fr);

        row-gap: 40px;
    }

    .gmb-process-line {
        display: none;
    }

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

}


@media (max-width: 767px) {

    .gmb-process-section {
        padding: 65px 0;
    }

    .gmb-process-heading {
        margin-bottom: 40px;
    }

    .gmb-process-heading h2 {
        font-size: 30px;
    }

    .gmb-process-heading p {
        font-size: 15px;
        line-height: 27px;
    }

    .gmb-process-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 35px 15px;
    }

    .gmb-process-icon {
        width: 60px;
        height: 60px;

        font-size: 18px;
    }

    .gmb-process-details {
        grid-template-columns: 1fr;

        margin-top: 40px;
    }

    .gmb-process-bottom {
        display: block;

        padding: 22px;
    }

    .gmb-process-bottom-btn {
        width: 100%;

        justify-content: center;

        margin-top: 15px;
    }

}


@media (max-width: 480px) {

    .gmb-process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gmb-process-item h3 {
        font-size: 15px;
    }

}

/* =========================================
   SECTION 7 - GBP VISIBILITY FACTORS
========================================= */

.gmb-factors-section {
    padding: 100px 0;
    background: #f8fbff;
}


/* =========================================
   HEADING
========================================= */

.gmb-factors-heading {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

.gmb-factors-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 20px;
    margin-bottom: 18px;

    background: #e8f2ff;
    color: #035297;

    border-radius: 30px;

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

.gmb-factors-heading h2 {
    margin: 0 0 16px;

    color: #222222;

    font-size: 42px;
    line-height: 1.2;

    font-weight: 700;
}

.gmb-factors-heading h2 span {
    color: #035297;
}

.gmb-factors-heading p {
    max-width: 760px;

    margin: 0 auto;

    color: #666666;

    font-size: 16px;
    line-height: 29px;
}


/* =========================================
   MAIN FACTOR AREA
========================================= */

.gmb-factors-area {
    position: relative;

    max-width: 1100px;

    margin: 0 auto;
}


/* =========================================
   FACTOR GRID
========================================= */

.gmb-factors-grid {
    display: grid;

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

    gap: 20px;
}


/* =========================================
   FACTOR CARD
========================================= */

.gmb-factor-card {
    position: relative;

    padding: 27px 24px;

    min-height: 175px;

    background: #ffffff;

    border: 1px solid #e4edf5;

    border-radius: 18px;

    transition: all .35s ease;

    box-shadow: 0 7px 25px rgba(3,82,151,.04);
}

.gmb-factor-card:hover {
    transform: translateY(-6px);

    border-color: #cfe0ef;

    box-shadow: 0 17px 38px rgba(3,82,151,.09);
}


/* Blue top border */

.gmb-factor-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 4px;

    background: #035297;

    border-radius: 18px 18px 0 0;

    transition: width .35s ease;
}

.gmb-factor-card:hover::before {
    width: 100%;
}


/* =========================================
   ICON
========================================= */

.gmb-factor-icon {
    width: 50px;
    height: 50px;

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

    margin-bottom: 17px;

    background: #e8f2ff;
    color: #035297;

    border-radius: 13px;

    font-size: 18px;

    transition: all .35s ease;
}

.gmb-factor-card:hover .gmb-factor-icon {
    background: #035297;
    color: #ffffff;

    transform: scale(1.05);
}


/* =========================================
   NUMBER
========================================= */

.gmb-factor-number {
    position: absolute;

    top: 20px;
    right: 20px;

    color: #e3edf5;

    font-size: 25px;

    font-weight: 700;
}


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

.gmb-factor-card h3 {
    margin: 0 0 7px;

    color: #222222;

    font-size: 17px;
    line-height: 1.3;

    font-weight: 700;

    transition: .3s;
}

.gmb-factor-card:hover h3 {
    color: #035297;
}

.gmb-factor-card p {
    margin: 0;

    color: #666666;

    font-size: 12px;

    line-height: 21px;
}


/* =========================================
   CENTER VISIBILITY CARD
========================================= */

.gmb-visibility-center {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 180px;
    height: 180px;

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

    transform: translate(-50%, -50%);

    background: linear-gradient(
        145deg,
        #035297,
        #0d6efd
    );

    border: 8px solid #f8fbff;

    border-radius: 50%;

    color: #ffffff;

    text-align: center;

    box-shadow: 0 18px 45px rgba(3,82,151,.20);

    z-index: 5;
}

.gmb-visibility-center i {
    margin-bottom: 10px;

    font-size: 30px;
}

.gmb-visibility-center strong {
    display: block;

    margin-bottom: 3px;

    color: #ffffff;

    font-size: 18px;

    font-weight: 700;
}

.gmb-visibility-center span {
    color: rgba(255,255,255,.82);

    font-size: 10px;

    line-height: 16px;
}


/* =========================================
   CONNECTING BACKGROUND
========================================= */

.gmb-factors-grid::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 260px;
    height: 260px;

    transform: translate(-50%, -50%);

    border: 1px dashed #c9dceb;

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================
   BOTTOM MESSAGE
========================================= */

.gmb-factors-bottom {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-top: 40px;
    padding: 23px 27px;

    background: #ffffff;

    border: 1px solid #e4edf5;

    border-radius: 17px;

    box-shadow: 0 7px 25px rgba(3,82,151,.04);
}

.gmb-factors-bottom-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;

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

    background: #e8f2ff;
    color: #035297;

    border-radius: 12px;

    font-size: 17px;
}

.gmb-factors-bottom-content {
    flex: 1;
}

.gmb-factors-bottom-content strong {
    display: block;

    margin-bottom: 4px;

    color: #222222;

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

.gmb-factors-bottom-content span {
    color: #666666;

    font-size: 12px;
    line-height: 21px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

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

    .gmb-visibility-center {
        display: none;
    }

    .gmb-factors-grid::after {
        display: none;
    }

}


@media (max-width: 991px) {

    .gmb-factors-section {
        padding: 80px 0;
    }

    .gmb-factors-heading h2 {
        font-size: 36px;
    }

}


@media (max-width: 767px) {

    .gmb-factors-section {
        padding: 65px 0;
    }

    .gmb-factors-heading {
        margin-bottom: 40px;
    }

    .gmb-factors-heading h2 {
        font-size: 30px;
    }

    .gmb-factors-heading p {
        font-size: 15px;
        line-height: 27px;
    }

    .gmb-factors-grid {
        grid-template-columns: 1fr;
    }

    .gmb-factor-card {
        min-height: auto;
    }

    .gmb-factors-bottom {
        align-items: flex-start;

        padding: 20px;
    }

}

/* =========================================
   SECTION 8 - GMB PERFORMANCE & REPORTING
========================================= */

.gmb-performance-section {
    padding: 100px 0;
    background: #ffffff;
}


/* =========================================
   HEADING
========================================= */

.gmb-performance-heading {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.gmb-performance-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 20px;
    margin-bottom: 18px;

    background: #e8f2ff;
    color: #035297;

    border-radius: 30px;

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

.gmb-performance-heading h2 {
    margin: 0 0 16px;

    color: #222222;

    font-size: 42px;
    line-height: 1.2;

    font-weight: 700;
}

.gmb-performance-heading h2 span {
    color: #035297;
}

.gmb-performance-heading p {
    max-width: 750px;

    margin: 0 auto;

    color: #666666;

    font-size: 16px;
    line-height: 29px;
}


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

.gmb-dashboard {
    max-width: 1100px;

    margin: 0 auto;

    padding: 28px;

    background: #f8fbff;

    border: 1px solid #e4edf5;

    border-radius: 24px;

    box-shadow: 0 15px 45px rgba(3,82,151,.07);
}


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

.gmb-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 0 5px 24px;

    border-bottom: 1px solid #e3ebf3;
}

.gmb-dashboard-title {
    display: flex;
    align-items: center;

    gap: 12px;
}

.gmb-dashboard-title-icon {
    width: 42px;
    height: 42px;

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

    background: #e8f2ff;
    color: #035297;

    border-radius: 11px;

    font-size: 15px;
}

.gmb-dashboard-title strong {
    display: block;

    margin-bottom: 2px;

    color: #222222;

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

.gmb-dashboard-title span {
    color: #777777;

    font-size: 10px;
}

.gmb-dashboard-status {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    padding: 7px 12px;

    background: #eaf8f0;

    border-radius: 20px;

    color: #26734d;

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

.gmb-dashboard-status i {
    font-size: 8px;
}


/* =========================================
   METRICS
========================================= */

.gmb-metrics {
    display: grid;

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

    gap: 14px;

    padding: 25px 0;
}

.gmb-metric {
    padding: 19px;

    background: #ffffff;

    border: 1px solid #e5edf4;

    border-radius: 14px;

    transition: all .3s ease;
}

.gmb-metric:hover {
    border-color: #cddfed;

    transform: translateY(-4px);

    box-shadow: 0 10px 25px rgba(3,82,151,.07);
}

.gmb-metric-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 15px;
}

.gmb-metric-icon {
    width: 36px;
    height: 36px;

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

    background: #e8f2ff;
    color: #035297;

    border-radius: 9px;

    font-size: 12px;
}

.gmb-metric-label {
    color: #777777;

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

    text-transform: uppercase;
    letter-spacing: .4px;
}

.gmb-metric h3 {
    margin: 0 0 5px;

    color: #222222;

    font-size: 24px;
    line-height: 1;

    font-weight: 700;
}

.gmb-metric p {
    margin: 0;

    color: #777777;

    font-size: 10px;
}


/* =========================================
   METRIC CHANGE
========================================= */

.gmb-metric-change {
    display: inline-flex;
    align-items: center;

    gap: 4px;

    margin-top: 10px;

    color: #035297;

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

.gmb-metric-change i {
    font-size: 8px;
}


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

.gmb-dashboard-lower {
    display: grid;

    grid-template-columns: 1.25fr .75fr;

    gap: 18px;
}


/* =========================================
   ACTIVITY PANEL
========================================= */

.gmb-activity-panel,
.gmb-actions-panel {
    padding: 23px;

    background: #ffffff;

    border: 1px solid #e5edf4;

    border-radius: 15px;
}

.gmb-panel-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 22px;
}

.gmb-panel-heading strong {
    color: #222222;

    font-size: 14px;

    font-weight: 700;
}

.gmb-panel-heading span {
    color: #035297;

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


/* =========================================
   ACTIVITY BARS
========================================= */

.gmb-activity-row {
    display: grid;

    grid-template-columns: 120px 1fr 45px;

    align-items: center;

    gap: 12px;

    margin-bottom: 15px;
}

.gmb-activity-row:last-child {
    margin-bottom: 0;
}

.gmb-activity-label {
    color: #666666;

    font-size: 10px;
}

.gmb-activity-bar {
    height: 7px;

    background: #edf3f8;

    border-radius: 20px;

    overflow: hidden;
}

.gmb-activity-fill {
    height: 100%;

    background: #035297;

    border-radius: 20px;
}

.gmb-activity-value {
    color: #222222;

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

    text-align: right;
}


/* =========================================
   ACTIONS PANEL
========================================= */

.gmb-action-item {
    display: flex;
    align-items: center;

    gap: 11px;

    padding: 12px 0;

    border-bottom: 1px solid #edf1f5;
}

.gmb-action-item:last-child {
    border-bottom: none;
}

.gmb-action-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;

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

    background: #e8f2ff;
    color: #035297;

    border-radius: 8px;

    font-size: 11px;
}

.gmb-action-text {
    flex: 1;
}

.gmb-action-text strong {
    display: block;

    margin-bottom: 2px;

    color: #222222;

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

.gmb-action-text span {
    color: #777777;

    font-size: 9px;
}

.gmb-action-arrow {
    color: #035297;

    font-size: 9px;
}


/* =========================================
   REPORTING STRIP
========================================= */

.gmb-reporting-strip {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-top: 25px;

    padding: 20px 24px;

    background: #e8f2ff;

    border-radius: 15px;
}

.gmb-reporting-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;

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

    background: #035297;
    color: #ffffff;

    border-radius: 11px;

    font-size: 15px;
}

.gmb-reporting-content {
    flex: 1;
}

.gmb-reporting-content strong {
    display: block;

    margin-bottom: 3px;

    color: #222222;

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

.gmb-reporting-content span {
    color: #666666;

    font-size: 11px;
    line-height: 19px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .gmb-performance-section {
        padding: 80px 0;
    }

    .gmb-performance-heading h2 {
        font-size: 36px;
    }

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

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

}


@media (max-width: 767px) {

    .gmb-performance-section {
        padding: 65px 0;
    }

    .gmb-performance-heading {
        margin-bottom: 40px;
    }

    .gmb-performance-heading h2 {
        font-size: 30px;
    }

    .gmb-performance-heading p {
        font-size: 15px;
        line-height: 27px;
    }

    .gmb-dashboard {
        padding: 18px;

        border-radius: 18px;
    }

    .gmb-dashboard-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .gmb-metrics {
        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .gmb-metric {
        padding: 15px;
    }

    .gmb-metric h3 {
        font-size: 21px;
    }

    .gmb-activity-row {
        grid-template-columns: 95px 1fr 35px;
    }

    .gmb-reporting-strip {
        align-items: flex-start;

        padding: 18px;
    }

}


@media (max-width: 480px) {

    .gmb-metrics {
        grid-template-columns: 1fr;
    }

}

/* =========================================
   SECTION 9 - WHY CHOOSE HGS
========================================= */

.gmb-why-section {
    padding: 100px 0;
    background: #f8fbff;
}

.gmb-why-row {
    display: flex;
    align-items: center;
}


/* =========================================
   LEFT CONTENT
========================================= */

.gmb-why-content {
    padding-right: 55px;
}

.gmb-why-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 20px;
    margin-bottom: 19px;

    background: #e8f2ff;
    color: #035297;

    border-radius: 30px;

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

.gmb-why-content h2 {
    margin: 0 0 18px;

    color: #222222;

    font-size: 42px;
    line-height: 1.2;

    font-weight: 700;
}

.gmb-why-content h2 span {
    color: #035297;
}

.gmb-why-content > p {
    margin: 0 0 27px;

    color: #666666;

    font-size: 16px;
    line-height: 29px;
}


/* =========================================
   TRUST MESSAGE
========================================= */

.gmb-why-message {
    display: flex;
    align-items: flex-start;

    gap: 13px;

    padding: 18px 20px;

    background: #ffffff;

    border-left: 4px solid #035297;

    border-radius: 10px;

    box-shadow: 0 7px 22px rgba(3,82,151,.05);
}

.gmb-why-message-icon {
    width: 37px;
    height: 37px;
    min-width: 37px;

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

    background: #e8f2ff;
    color: #035297;

    border-radius: 9px;

    font-size: 13px;
}

.gmb-why-message strong {
    display: block;

    margin-bottom: 3px;

    color: #222222;

    font-size: 14px;

    font-weight: 700;
}

.gmb-why-message span {
    color: #666666;

    font-size: 11px;

    line-height: 19px;
}


/* =========================================
   RIGHT DIFFERENTIATORS
========================================= */

.gmb-why-grid {
    display: grid;

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

    gap: 15px;
}


/* =========================================
   DIFFERENTIATOR CARD
========================================= */

.gmb-why-card {
    position: relative;

    padding: 25px 22px;

    background: #ffffff;

    border: 1px solid #e3ecf4;

    border-radius: 17px;

    overflow: hidden;

    transition: all .35s ease;
}

.gmb-why-card:hover {
    border-color: #cbddeb;

    transform: translateY(-6px);

    box-shadow: 0 16px 35px rgba(3,82,151,.09);
}


/* Number */

.gmb-why-card-number {
    position: absolute;

    top: 16px;
    right: 18px;

    color: #e3edf5;

    font-size: 24px;

    font-weight: 700;
}


/* Icon */

.gmb-why-icon {
    width: 52px;
    height: 52px;

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

    margin-bottom: 18px;

    background: #e8f2ff;
    color: #035297;

    border-radius: 13px;

    font-size: 19px;

    transition: all .35s ease;
}

.gmb-why-card:hover .gmb-why-icon {
    background: #035297;
    color: #ffffff;

    transform: scale(1.05);
}


/* Heading */

.gmb-why-card h3 {
    margin: 0 0 8px;

    color: #222222;

    font-size: 17px;
    line-height: 1.3;

    font-weight: 700;

    transition: .3s;
}

.gmb-why-card:hover h3 {
    color: #035297;
}


/* Description */

.gmb-why-card p {
    margin: 0;

    color: #666666;

    font-size: 11px;

    line-height: 21px;
}


/* =========================================
   BOTTOM TRUST BAR
========================================= */

.gmb-why-bottom {
    display: grid;

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

    gap: 15px;

    margin-top: 25px;
}

.gmb-why-stat {
    display: flex;
    align-items: center;

    gap: 11px;

    padding: 16px 18px;

    background: #e8f2ff;

    border-radius: 12px;
}

.gmb-why-stat-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;

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

    background: #035297;
    color: #ffffff;

    border-radius: 9px;

    font-size: 12px;
}

.gmb-why-stat strong {
    display: block;

    margin-bottom: 2px;

    color: #222222;

    font-size: 12px;

    font-weight: 700;
}

.gmb-why-stat span {
    color: #666666;

    font-size: 9px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .gmb-why-section {
        padding: 80px 0;
    }

    .gmb-why-content {
        padding-right: 0;
        margin-bottom: 45px;
    }

    .gmb-why-content h2 {
        font-size: 36px;
    }

}


@media (max-width: 767px) {

    .gmb-why-section {
        padding: 65px 0;
    }

    .gmb-why-content h2 {
        font-size: 30px;
    }

    .gmb-why-content > p {
        font-size: 15px;
        line-height: 27px;
    }

    .gmb-why-grid {
        grid-template-columns: 1fr;
    }

    .gmb-why-bottom {
        grid-template-columns: 1fr;
    }

}

/* =========================================
   SECTION 10 - GMB FAQ
========================================= */

.gmb-faq-section {
    padding: 100px 0;
    background: #ffffff;
}


/* =========================================
   FAQ HEADING
========================================= */

.gmb-faq-heading {
    max-width: 820px;
    margin: 0 auto 50px;
    text-align: center;
}

.gmb-faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 20px;
    margin-bottom: 18px;

    background: #e8f2ff;
    color: #035297;

    border-radius: 30px;

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

.gmb-faq-heading h2 {
    margin: 0 0 16px;

    color: #222222;

    font-size: 42px;
    line-height: 1.2;

    font-weight: 700;
}

.gmb-faq-heading h2 span {
    color: #035297;
}

.gmb-faq-heading p {
    max-width: 720px;

    margin: 0 auto;

    color: #666666;

    font-size: 16px;
    line-height: 29px;
}


/* =========================================
   FAQ WRAPPER
========================================= */

.gmb-faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}


/* =========================================
   FAQ ITEM
========================================= */

.gmb-faq-item {
    margin-bottom: 14px;

    background: #ffffff;

    border: 1px solid #e3ebf3;

    border-radius: 14px;

    overflow: hidden;

    transition: all .3s ease;
}

.gmb-faq-item:hover {
    border-color: #cfdfea;

    box-shadow: 0 10px 28px rgba(3,82,151,.06);
}


/* =========================================
   QUESTION BUTTON
========================================= */

.gmb-faq-question {
    position: relative;

    display: block;

    width: 100%;

    padding: 20px 65px 20px 23px;

    border: none;
    outline: none;

    background: #ffffff;

    color: #222222;

    text-align: left;

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

    line-height: 1.5;

    cursor: pointer;

    transition: all .3s ease;
}

.gmb-faq-question:hover {
    color: #035297;
}

.gmb-faq-question:focus {
    outline: none;
}


/* =========================================
   TOGGLE
========================================= */

.gmb-faq-question::after {
    content: "+";

    position: absolute;

    top: 50%;
    right: 20px;

    width: 34px;
    height: 34px;

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

    transform: translateY(-50%);

    background: #e8f2ff;
    color: #035297;

    border-radius: 50%;

    font-size: 21px;
    font-weight: 400;

    transition: all .3s ease;
}

.gmb-faq-question[aria-expanded="true"] {
    color: #035297;
}

.gmb-faq-question[aria-expanded="true"]::after {
    content: "−";

    background: #035297;
    color: #ffffff;
}


/* =========================================
   ANSWER
========================================= */

.gmb-faq-answer {
    padding: 0 23px 22px;

    color: #666666;

    font-size: 14px;
    line-height: 26px;
}

.gmb-faq-answer p {
    margin: 0;
}


/* =========================================
   FAQ BOTTOM CTA
========================================= */

.gmb-faq-bottom {
    max-width: 900px;

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

    gap: 8px;

    margin: 32px auto 0;

    color: #666666;

    font-size: 13px;

    text-align: center;
}

.gmb-faq-bottom strong {
    color: #222222;
}

.gmb-faq-bottom a {
    color: #035297;

    font-weight: 700;

    text-decoration: none;

    transition: .3s;
}

.gmb-faq-bottom a:hover {
    color: #0d6efd;

    text-decoration: none;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .gmb-faq-section {
        padding: 80px 0;
    }

    .gmb-faq-heading h2 {
        font-size: 36px;
    }

}


@media (max-width: 767px) {

    .gmb-faq-section {
        padding: 65px 0;
    }

    .gmb-faq-heading {
        margin-bottom: 40px;
    }

    .gmb-faq-heading h2 {
        font-size: 30px;
    }

    .gmb-faq-heading p {
        font-size: 15px;
        line-height: 27px;
    }

    .gmb-faq-question {
        padding: 18px 58px 18px 18px;

        font-size: 15px;
    }

    .gmb-faq-question::after {
        right: 15px;

        width: 32px;
        height: 32px;

        font-size: 20px;
    }

    .gmb-faq-answer {
        padding: 0 18px 20px;

        font-size: 13px;
        line-height: 25px;
    }

    .gmb-faq-bottom {
        display: block;

        line-height: 25px;
    }

}

/* =========================================
   FINAL CTA - GOOGLE BUSINESS PROFILE
========================================= */

.gmb-final-cta-section {
    padding: 80px 0;
    background: #ffffff;
}

.gmb-final-cta-box {
    position: relative;

    padding: 70px 60px;

    background: linear-gradient(
        135deg,
        #035297 0%,
        #0d6efd 100%
    );

    border-radius: 28px;

    overflow: hidden;

    text-align: center;

    box-shadow: 0 25px 60px rgba(3,82,151,.16);
}


/* Decorative circles */

.gmb-final-cta-box::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    top: -270px;
    left: -180px;

    background: rgba(255,255,255,.06);

    border-radius: 50%;
}

.gmb-final-cta-box::after {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    right: -170px;
    bottom: -240px;

    background: rgba(255,255,255,.06);

    border-radius: 50%;
}


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

.gmb-final-cta-content {
    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: 0 auto;
}


/* Badge */

.gmb-final-cta-badge {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 8px 18px;

    margin-bottom: 20px;

    background: rgba(255,255,255,.12);

    border: 1px solid rgba(255,255,255,.18);

    border-radius: 30px;

    color: rgba(255,255,255,.92);

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


/* Heading */

.gmb-final-cta-content h2 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: 44px;
    line-height: 1.2;

    font-weight: 700;
}

.gmb-final-cta-content h2 span {
    color: #ffffff;
}


/* Description */

.gmb-final-cta-content > p {
    max-width: 730px;

    margin: 0 auto 30px;

    color: rgba(255,255,255,.88);

    font-size: 16px;
    line-height: 29px;
}


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

.gmb-final-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;
}

.gmb-final-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 14px 28px;

    background: #ffffff;
    color: #035297;

    border-radius: 50px;

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

    text-decoration: none;

    transition: all .3s ease;
}

.gmb-final-cta-primary:hover {
    background: #222222;
    color: #ffffff;

    text-decoration: none;

    transform: translateY(-3px);
}

.gmb-final-cta-primary i {
    transition: .3s ease;
}

.gmb-final-cta-primary:hover i {
    transform: translateX(4px);
}


.gmb-final-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 13px 25px;

    background: transparent;
    color: #ffffff;

    border: 1px solid rgba(255,255,255,.4);

    border-radius: 50px;

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

    text-decoration: none;

    transition: all .3s ease;
}

.gmb-final-cta-secondary:hover {
    background: rgba(255,255,255,.12);

    border-color: #ffffff;

    color: #ffffff;

    text-decoration: none;

    transform: translateY(-3px);
}


/* =========================================
   TRUST POINTS
========================================= */

.gmb-final-cta-points {
    position: relative;

    z-index: 2;

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

    flex-wrap: wrap;

    gap: 28px;

    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,.17);
}

.gmb-final-cta-points span {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: rgba(255,255,255,.84);

    font-size: 11px;

    font-weight: 600;
}

.gmb-final-cta-points i {
    color: #ffffff;

    font-size: 10px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .gmb-final-cta-section {
        padding: 70px 0;
    }

    .gmb-final-cta-box {
        padding: 55px 40px;
    }

    .gmb-final-cta-content h2 {
        font-size: 36px;
    }

}


@media (max-width: 767px) {

    .gmb-final-cta-section {
        padding: 55px 0;
    }

    .gmb-final-cta-box {
        padding: 45px 22px;

        border-radius: 22px;
    }

    .gmb-final-cta-content h2 {
        font-size: 30px;
    }

    .gmb-final-cta-content > p {
        font-size: 14px;
        line-height: 26px;
    }

    .gmb-final-cta-buttons {
        flex-direction: column;
    }

    .gmb-final-cta-primary,
    .gmb-final-cta-secondary {
        width: 100%;
        max-width: 310px;
    }

    .gmb-final-cta-points {
        flex-direction: column;
        gap: 13px;
    }

}



