/* FVG Hero Block Styles */
.fvg-hero {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: white !important;
    color: #00D084 !important;
}

.fvg-hero__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fvg-hero__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

.fvg-hero__title-left,
.fvg-hero__title-right {
    font-size: 48px;
    font-weight: bold;
    color: #00D084 !important;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
}

.fvg-hero__title-left {
    text-align: right;
}

.fvg-hero__title-right {
    text-align: left;
}

.fvg-hero__image {
    flex-shrink: 0;
}

.fvg-hero__image img {
    max-width: 400px;
    height: auto;
    display: block;
}

.fvg-hero__subtitle {
    font-size: 18px;
    color: #00D084 !important;
    margin: 20px 0 0 0;
    opacity: 0.9;
    text-align: center;
}

.fvg-hero__decoration {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.fvg-hero__circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fvg-hero__cross {
    fill: white;
}

/* FVG Feature Block Styles */
.fvg-feature {
    padding: 160px 0;
}

.fvg-feature__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.fvg-feature--right .fvg-feature__container {
    flex-direction: row-reverse;
}

.fvg-feature__content {
    flex: 1;
    max-width: 500px;
}

.fvg-feature__title {
    font-size: 36px;
    font-weight: bold;
    margin: 0 0 24px 0;
    line-height: 1.3;
}

.fvg-feature__text {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 32px 0;
    opacity: 0.9;
    color: #333;
}

.fvg-feature__button {
    display: inline-block;
    padding: 14px 28px;
    border: 2px solid currentColor;
    border-radius: 30px;
    text-decoration: none;
    color: inherit;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.fvg-feature__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.fvg-feature__icon {
    flex-shrink: 0;
}

.fvg-feature__icon-circle {
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.fvg-feature__icon-circle:hover {
    transform: scale(1.05);
}

.fvg-feature__icon svg {
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 2;
}

/* White background variant */
.fvg-feature--white {
    background-color: #f8f9fa !important;
    color: #333 !important;
}

.fvg-feature--white .fvg-feature__button:hover {
    background-color: #333;
    color: white;
}

/* FVG Contact Block Styles */
.fvg-contact {
    padding: 160px 0;
    text-align: center;
}

.fvg-contact__container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.fvg-contact__title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.fvg-contact__text {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.fvg-contact__icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid currentColor;
    margin-bottom: 30px;
    position: relative;
}

.fvg-contact__icon:before {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
}

.fvg-contact__button {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid currentColor;
    border-radius: 25px;
    text-decoration: none;
    color: inherit;
    font-weight: bold;
    transition: all 0.3s ease;
}

.fvg-contact__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.fvg-contact__image {
    margin-bottom: 30px;
}

.fvg-contact__image img {
    max-width: 120px;
    height: auto;
    display: inline-block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fvg-hero {
        padding: 60px 0;
    }

    .fvg-hero__container {
        flex-direction: column;
        min-height: auto;
        text-align: center;
    }

    .fvg-hero__content {
        flex-direction: column;
        gap: 30px;
    }

    .fvg-hero__title-left,
    .fvg-hero__title-right {
        font-size: 36px;
        white-space: normal;
        text-align: center;
        display: inline;
    }

    .fvg-hero__title-left:after {
        content: " ";
    }

    .fvg-hero__image {
        order: 2;
    }

    .fvg-hero__decoration {
        display: none;
    }

    .fvg-hero__circle {
        width: 150px;
        height: 150px;
    }

    .fvg-feature {
        padding: 120px 0;
    }

    .fvg-feature__container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .fvg-feature--right .fvg-feature__container {
        flex-direction: column;
    }

    .fvg-feature__title {
        font-size: 28px;
    }

    .fvg-feature__icon-circle {
        width: 170px;
        height: 170px;
        border-width: 4px;
    }

    .fvg-feature__icon svg {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .fvg-hero__title {
        font-size: 28px;
    }

    .fvg-hero__image img {
        max-width: 300px;
    }

    .fvg-feature__title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .fvg-contact {
        padding: 120px 0;
    }

    .fvg-contact__title {
        font-size: 28px;
    }
}

/* FVG Image Feature Block Styles */
.fvg-image-feature {
    padding: 80px 0;
}

.fvg-image-feature__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.fvg-image-feature--right .fvg-image-feature__container {
    flex-direction: row-reverse;
}

/* Full padding option */
.fvg-image-feature--full-padding {
    padding: 160px 0;
}

.fvg-image-feature__content {
    flex: 1;
    max-width: 500px;
}

.fvg-image-feature__title {
    font-size: 36px;
    font-weight: bold;
    margin: 0 0 24px 0;
    line-height: 1.3;
}

.fvg-image-feature__text {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 32px 0;
    opacity: 0.9;
    color: #333;
}

.fvg-image-feature__image {
    flex-shrink: 0;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fvg-image-feature__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}



/* Image Feature Responsive Styles */
@media (max-width: 768px) {
    .fvg-image-feature {
        padding: 60px 0;
    }

    .fvg-image-feature__container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .fvg-image-feature--right .fvg-image-feature__container {
        flex-direction: column;
    }

    .fvg-image-feature__title {
        font-size: 28px;
    }

    .fvg-feature__content,
    .fvg-image-feature__content {
        order: 2
    }

    .fvg-image-feature__image {
        width: 250px;
        height: 250px;
    }

    .fvg-image-feature__image,
    .fvg-image-feature__icon {
        order: 1;
    }
}

@media (max-width: 480px) {
    .fvg-image-feature__title {
        font-size: 24px;
    }

    .fvg-image-feature__image {
        width: 200px;
        height: 200px;
    }
}

/* FVG Social Icons Block */
.fvg-social-icons {
    padding: 80px 0;
}

.fvg-social-icons__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.fvg-social-icons--right .fvg-social-icons__container {
    flex-direction: row-reverse;
}

/* Full padding option */
.fvg-social-icons--full-padding {
    padding: 160px 0;
}

.fvg-social-icons__content {
    flex: 1;
    max-width: 500px;
}

.fvg-social-icons__title {
    font-size: 36px;
    font-weight: bold;
    margin: 0 0 24px 0;
    line-height: 1.3;
}

.fvg-social-icons__links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.fvg-social-icons__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: currentColor;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fvg-social-icons__link svg {
    width: 20px;
    height: 20px;
}

.fvg-social-icons__link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.fvg-social-icons__image {
    flex-shrink: 0;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fvg-social-icons__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

/* Responsive styles for Social Icons */
@media (max-width: 768px) {
    .fvg-social-icons {
        padding: 60px 0;
    }

    .fvg-social-icons__container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .fvg-social-icons--right .fvg-social-icons__container {
        flex-direction: column;
    }

    .fvg-social-icons__title {
        font-size: 28px;
    }

    .fvg-social-icons__links {
        justify-content: center;
    }

    .fvg-social-icons__image {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .fvg-social-icons__title {
        font-size: 24px;
    }

    .fvg-social-icons__image {
        width: 200px;
        height: 200px;
    }

    .fvg-social-icons__link {
        width: 40px;
        height: 40px;
    }

    .fvg-social-icons__link svg {
        width: 18px;
        height: 18px;
    }
}

/* FVG Services List Styles */
.fvg-services-list {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
}

.fvg-service-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background-color: #00D084;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.fvg-service-item:hover {
    background-color: #ffffff;
    color: #00D084;
}

.fvg-service-item__icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fvg-service-item__icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Make icon white */
    transition: filter 0.3s ease;
}

.fvg-service-item:hover .fvg-service-item__icon img {
    filter: none; /* Restore original icon color on hover */
}

.fvg-service-item__title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: inherit;
}

.fvg-services-list__empty {
    text-align: center;
    color: #666;
    font-size: 1.125rem;
    padding: 2rem;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .fvg-service-item {
        padding: 1rem 1.5rem;
        gap: 1rem;
    }

    .fvg-service-item__icon {
        width: 40px;
        height: 40px;
    }

    .fvg-service-item__title {
        font-size: 1.125rem;
    }
}