/* ============================================================
   V2 Flexible Column Section Block
   Reusable two-column layout: text, image, cards, list
   Covers: Why V2Solutions, Where We Help, Low-Code,
   Generative AI, Trusted App Modernization, etc.
   ============================================================ */


/* ═══════════════════════════════════════════════════════════
   1. BASE SECTION
   ═══════════════════════════════════════════════════════════ */
.v2-fcs-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
}

/* ═══════════════════════════════════════════════════════════
   2. HEADER — Title, Decorative Line, Description
   ═══════════════════════════════════════════════════════════ */
.v2-fcs-header {
    text-align: center;
    margin-bottom: 48px;
}

.v2-fcs-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color, #1e3a5f);
    margin: 0 0 14px;
    line-height: 1.25;
    font-family: var(--heading-font, 'Inter', sans-serif);
}

.v2-fcs-title span {
    color: var(--secondary-clr, #ea580c);
}

.v2-fcs-decor-line {
    display: block;
    width: 35px;
    height: 6px;
    background-color: var(--secondary-clr, #ea580c);
    margin: 0 auto 20px;
    border-radius: 6px;
}

.v2-fcs-description {
    font-size: 14px;
    line-height: 1.7;
    color: #494949;
    margin: 0 auto;
}

.v2-fcs-description p {
    margin: 0 0 10px;
}

.v2-fcs-description p:last-child {
    margin-bottom: 0;
}


/* ═══════════════════════════════════════════════════════════
   3. COLUMN GRID — Layout Variants
   ═══════════════════════════════════════════════════════════ */
.v2-fcs-columns {
    display: grid;
    gap: 40px;
    align-items: start;
}

/* 50 / 50 */
.layout-50-50 .v2-fcs-columns {
    grid-template-columns: 1fr 1fr;
}

/* 60 / 40 */
.layout-60-40 .v2-fcs-columns {
    grid-template-columns: 3fr 2fr;
}

/* 40 / 60 */
.layout-40-60 .v2-fcs-columns {
    grid-template-columns: 2fr 3fr;
}

/* 100 / 0 (Full Width Left) */
.layout-100-0 .v2-fcs-columns {
    grid-template-columns: 1fr;
}

.layout-100-0 .v2-fcs-col-right {
    display: none;
}

/* 0 / 100 (Full Width Right) */
.layout-0-100 .v2-fcs-columns {
    grid-template-columns: 1fr;
}

.layout-0-100 .v2-fcs-col-left {
    display: none;
}

/* Reverse columns on desktop (swap visual order) */
.reverse-columns .v2-fcs-col-left {
    order: 2;
}
.reverse-columns .v2-fcs-col-right {
    order: 1;
}

/* Vertical alignment */
.align-top .v2-fcs-columns {
    align-items: start;
}
.align-center .v2-fcs-columns {
    align-items: center;
}
.align-bottom .v2-fcs-columns {
    align-items: end;
}


/* ═══════════════════════════════════════════════════════════
   4. TEXT CONTENT (WYSIWYG)
   ═══════════════════════════════════════════════════════════ */
.v2-fcs-text {
    font-size: 14px;
    line-height: 1.7;
    color: #334155;
}

.v2-fcs-text h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: var(--body-font);
}

.v2-fcs-text p {
    font-size: 14px;
}

.v2-fcs-text h2,
.v2-fcs-text h3,
.v2-fcs-text h4 {
    color: var(--primary-color, #1e3a5f);
    font-family: var(--heading-font, 'Inter', sans-serif);
    margin: 0 0 12px;
    line-height: 1.3;
}

.v2-fcs-text h2 { font-size: 30px; }
.v2-fcs-text h3 { font-size: 24px; }
.v2-fcs-text h4 { font-size: 20px; }

.v2-fcs-text p {
    margin: 0 0 14px;
}

.v2-fcs-text p:last-child {
    margin-bottom: 0;
}

.v2-fcs-text ul,
.v2-fcs-text ol {
    padding-left: 20px;
    margin: 0 0 14px;
}

.v2-fcs-text li {
    margin-bottom: 12px;
    position: relative;
}

.v2-fcs-text li::marker {
    font-size: 0;
}


.v2-fcs-text li:before {
    content: '\f058';
    position: absolute;
    left: -20px;
    top: 4px;
    font-size: 16px;
    color: #002e5b;
    font: normal normal 600 14px/1 "Font Awesome 6 Free";
}

.v2-fcs-text strong {
    color: var(--primary-color, #1e3a5f);
}


/* ═══════════════════════════════════════════════════════════
   5. IMAGE CONTENT
   ═══════════════════════════════════════════════════════════ */
.v2-fcs-image {
    line-height: 0;
}

.v2-fcs-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


/* ═══════════════════════════════════════════════════════════
   6. CARDS CONTENT
   ═══════════════════════════════════════════════════════════ */

/* Default dark card style (original) */
.v2-fcs-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.v2-fcs-card {
    background: var(--primary-color);
    padding: 24px 14px;
}

.v2-fcs-card-icon {
    margin-bottom: 5px;
}

.v2-fcs-card-icon i {
    font-size: 20px;
    color: #ffffff;
}

/* Image icons */
.v2-fcs-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.v2-fcs-icon-image {
    background: rgba(37, 99, 235, 0.1);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
    margin-bottom: 12px;
}

.v2-fcs-icon-image img {
    max-width: none;
}

/* Icon without background */
.v2-fcs-icon-no-bg {
    background: transparent !important;
    padding: 0;
    width: auto !important;
    height: auto !important;
    border-radius: 0;
}

.v2-fcs-icon-no-bg img {
    width: auto;
    height: auto;
}

/* ── Icon Color Variants (Default Style) ─────────────────────────────────── */
.v2-fcs-icon-blue {
    background: rgba(37, 99, 235, 0.1);
}
.v2-fcs-icon-blue i {
    color: #2563eb;
}

.v2-fcs-icon-purple {
    background: rgba(109, 40, 217, 0.1);
}
.v2-fcs-icon-purple i {
    color: #6d28d9;
}

.v2-fcs-icon-orange {
    background: rgba(234, 88, 12, 0.1);
}
.v2-fcs-icon-orange i {
    color: #ea580c;
}

.v2-fcs-icon-red {
    background: rgba(220, 38, 38, 0.1);
}
.v2-fcs-icon-red i {
    color: #dc2626;
}

.v2-fcs-icon-green {
    background: rgba(0, 133, 3, 0.1);
}
.v2-fcs-icon-green i {
    color: #008503;
}

.v2-fcs-icon-teal {
    background: rgba(13, 148, 136, 0.1);
}
.v2-fcs-icon-teal i {
    color: #0d9488;
}

.v2-fcs-icon-navy {
    background: rgba(30, 58, 95, 0.1);
}
.v2-fcs-icon-navy i {
    color: #1e3a5f;
}

.v2-fcs-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    line-height: 28px;
    font-family: var(--heading-font);
    opacity: 0.7;
    width: 70px;
}

.v2-fcs-card-desc {
    font-size: 16px;
    line-height: 22px;
    color: #ffffff;
}

.v2-fcs-card:first-child {
    background: var(--secondary-clr);
    border-radius: 50px 0 0;
}

.v2-fcs-card-desc p {
    margin: 0 0 6px;
}

.v2-fcs-card-desc p:last-child {
    margin-bottom: 0;
}

/* ── Full Width Layout Style (New White Cards) ──────────────────────────── */
.v2-fcs-cards-fullwidth {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 50px;
    column-gap: 25px;
}

.v2-fcs-cards-fullwidth .v2-fcs-card {
    background: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.v2-fcs-cards-fullwidth .v2-fcs-card:hover {
    box-shadow: none;
    transform: none;
}

.v2-fcs-cards-fullwidth .v2-fcs-card:first-child {
    background: transparent;
    border-radius: 0;
}

/* Icon Position: Top (Default) */
.v2-fcs-cards-fullwidth .v2-fcs-card.icon-position-top {
    flex-direction: column;
}

.v2-fcs-cards-fullwidth .v2-fcs-card.icon-position-top .v2-fcs-card-icon {
    align-self: flex-start;
}

/* Icon Position: Left */
.v2-fcs-cards-fullwidth .v2-fcs-card.icon-position-left {
    flex-direction: row;
    align-items: flex-start;
}

.v2-fcs-cards-fullwidth .v2-fcs-card.icon-position-left .v2-fcs-card-icon {
    flex-shrink: 0;
    margin-bottom: 0;
    margin-right: 5px;
}

/* Icon Position: Right */
.v2-fcs-cards-fullwidth .v2-fcs-card.icon-position-right {
    flex-direction: row-reverse;
    align-items: flex-start;
}

.v2-fcs-cards-fullwidth .v2-fcs-card.icon-position-right .v2-fcs-card-icon {
    flex-shrink: 0;
    margin-bottom: 0;
    margin-left: 20px;
}

.v2-fcs-cards-fullwidth .v2-fcs-card-body {
    flex: 1;
}

.v2-fcs-cards-fullwidth .v2-fcs-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.v2-fcs-cards-fullwidth .v2-fcs-card-icon i {
    font-size: 20px;
    color: #ffffff;
}

.v2-fcs-cards-fullwidth .v2-fcs-icon-image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
}

.v2-fcs-cards-fullwidth .v2-fcs-card-icon img {
    width: 30px;
}

/* Full Width Icon Colors - Solid backgrounds */
.v2-fcs-cards-fullwidth .v2-fcs-icon-blue {
    background: #2563eb;
}
.v2-fcs-cards-fullwidth .v2-fcs-icon-blue i {
    color: #ffffff;
}

.v2-fcs-cards-fullwidth .v2-fcs-icon-purple {
    background: #6d28d9;
}
.v2-fcs-cards-fullwidth .v2-fcs-icon-purple i {
    color: #ffffff;
}

.v2-fcs-cards-fullwidth .v2-fcs-icon-orange {
    background: #ea580c;
}
.v2-fcs-cards-fullwidth .v2-fcs-icon-orange i {
    color: #ffffff;
}

.v2-fcs-cards-fullwidth .v2-fcs-icon-red {
    background: #dc2626;
}
.v2-fcs-cards-fullwidth .v2-fcs-icon-red i {
    color: #ffffff;
}

.v2-fcs-cards-fullwidth .v2-fcs-icon-green {
    background: #008503;
}
.v2-fcs-cards-fullwidth .v2-fcs-icon-green i {
    color: #ffffff;
}

.v2-fcs-cards-fullwidth .v2-fcs-icon-teal {
    background: #0d9488;
}
.v2-fcs-cards-fullwidth .v2-fcs-icon-teal i {
    color: #ffffff;
}

.v2-fcs-cards-fullwidth .v2-fcs-icon-navy {
    background: #1e3a5f;
}
.v2-fcs-cards-fullwidth .v2-fcs-icon-navy i {
    color: #ffffff;
}

.v2-fcs-cards-fullwidth .v2-fcs-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #002e5b;
    margin: 0 0 15px;
    line-height: 1.3;
    font-family: var(--heading-font);
    opacity: 1;
    width: auto;
}

.v2-fcs-cards-fullwidth .v2-fcs-card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #494949;
}

.v2-fcs-cards-fullwidth .v2-fcs-card-desc p {
    margin: 0 0 8px;
}

.v2-fcs-cards-fullwidth .v2-fcs-card-desc p:last-child {
    margin-bottom: 0;
}


/* ═══════════════════════════════════════════════════════════
   7. LIST CONTENT
   ═══════════════════════════════════════════════════════════ */
.v2-fcs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.v2-fcs-list-item {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.6;
    color: #334155;
}

.v2-fcs-list-item::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary-clr, #ea580c);
    font-size: 14px;
}

.v2-fcs-list-item:last-child {
    margin-bottom: 0;
}


/* ═══════════════════════════════════════════════════════════
   8. COUNTERS CONTENT — Animated Stats
   ═══════════════════════════════════════════════════════════ */

/* Counter section title (outside counters div) */
.v2-fcs-counters-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color, #1e3a5f);
    margin: 0 0 10px;
    line-height: 1.3;
    font-family: var(--heading-font, 'Inter', sans-serif);
}

/* Add spacing when counter title appears after other content */
.v2-fcs-col > *:not(:first-child).v2-fcs-counters-title {
    margin-top: 30px;
}

.v2-fcs-counters {
    display: flex;
    gap: 20px;
}

/* Add spacing when counters appear after other content (but not if preceded by title) */
.v2-fcs-col > *:not(:first-child).v2-fcs-counters:not(:has(+ .v2-fcs-counters-title)) {
    margin-top: 30px;
}

.v2-fcs-counter-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.v2-fcs-counter-value-wrapper {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.v2-fcs-counter-number {
    font-size: 46px;
    font-weight: 600;
    color: var(--secondary-clr, #ea580c);
    line-height: 1;
    font-family: var(--heading-font, 'Inter', sans-serif);
}

.v2-fcs-counter-suffix {
    font-size: 46px;
    font-weight: 600;
    color: var(--secondary-clr, #ea580c);
    line-height: 1;
    font-family: var(--heading-font, 'Inter', sans-serif);
}

.v2-fcs-counter-arrow {
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
    margin-left: 4px;
}

.v2-fcs-counter-arrow.v2-fcs-arrow-up {
    color: #ea580c;
}

.v2-fcs-counter-arrow.v2-fcs-arrow-down {
    color: #ea580c;
}

.v2-fcs-counter-label {
    font-size: 16px;
    line-height: 1.5;
    color: #1e3a5f;
    font-weight: 600;
    max-width: 200px;
}


/* ═══════════════════════════════════════════════════════════
   9. BUTTON — Column Buttons
   ═══════════════════════════════════════════════════════════ */
.v2-fcs-button-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.v2-fcs-button {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    font-family: var(--body-font, 'Inter', sans-serif);
}

/* Primary button (Orange) */
.v2-fcs-button-primary {
    background-color: var(--secondary-clr, #ea580c);
    color: #ffffff;
    border-color: var(--secondary-clr, #ea580c);
}

.v2-fcs-button-primary:hover {
    background-color: transparent;
    border-color: #c2410c;
    color: #c2410c;
}

/* Secondary button (Blue) */
.v2-fcs-button-secondary {
    background-color: var(--primary-color, #1e3a5f);
    color: #ffffff;
    border-color: var(--primary-color, #1e3a5f);
}

.v2-fcs-button-secondary:hover {
    background-color: transparent;
    border-color: #0f1f3a;
    color: #0f1f3a;
}

/* Outline button */
.v2-fcs-button-outline {
    background-color: transparent;
    color: var(--primary-color, #1e3a5f);
    border-color: var(--primary-color, #1e3a5f);
}

.v2-fcs-button-outline:hover {
    background-color: var(--primary-color, #1e3a5f);
    color: #ffffff;
    transform: translateY(-2px);
}


/* ═══════════════════════════════════════════════════════════
   9A. SECTION BUTTON — Centered Section Button
   ═══════════════════════════════════════════════════════════ */
.v2-fcs-section-button-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.v2-fcs-section-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
    font-family: var(--body-font, 'Inter', sans-serif);
    position: relative;
}

/* Arrow icon using pseudo-element */
.v2-fcs-button-arrow {
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.v2-fcs-button-arrow::after {
    content: '\f105';
    font-family: FontAwesome;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.7;
    display: block;
}

/* Primary style (Orange/Red) */
.v2-fcs-section-button.v2-fcs-button-primary {
    background-color: #f15a22;
    color: #ffffff;
    border-color: #f15a22;
}

.v2-fcs-section-button.v2-fcs-button-primary:hover {
    background-color: transparent;
    border-color: #d84a14;
    color: var(--secondary-clr);
}

/* Secondary style (Blue) */
.v2-fcs-section-button.v2-fcs-button-secondary {
    background-color: var(--primary-color, #1e3a5f);
    color: #ffffff;
    border-color: var(--primary-color, #1e3a5f);
}

.v2-fcs-section-button.v2-fcs-button-secondary:hover {
    background-color: #0f1f3a;
    border-color: #0f1f3a;
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.3);
}

.v2-fcs-section-button.v2-fcs-button-secondary:hover .v2-fcs-button-arrow {
    transform: translateX(4px);
}

/* Outline style */
.v2-fcs-section-button.v2-fcs-button-outline {
    background-color: transparent;
    color: var(--primary-color, #1e3a5f);
    border-color: var(--primary-color, #1e3a5f);
}

.v2-fcs-section-button.v2-fcs-button-outline:hover {
    background-color: var(--primary-color, #1e3a5f);
    color: #ffffff;
}

.v2-fcs-section-button.v2-fcs-button-outline:hover .v2-fcs-button-arrow {
    transform: translateX(4px);
}


/* ═══════════════════════════════════════════════════════════
   10. RESPONSIVE — TABLET (≤ 1024px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

    .v2-fcs-section {
        padding: 48px 0;
    }

    .v2-fcs-header {
        margin-bottom: 36px;
    }

    .v2-fcs-title {
        font-size: 30px;
    }

    .v2-fcs-description {
        font-size: 16px;
    }

    .v2-fcs-columns {
        gap: 30px;
    }

    .v2-fcs-cards {
        gap: 16px;
    }

    .v2-fcs-card {
        padding: 24px 20px;
    }

    .v2-fcs-card-icon {
        width: 56px;
        height: 56px;
    }

    .v2-fcs-card-icon i {
        font-size: 24px;
    }

    .v2-fcs-icon-image {
        width: 56px;
        height: 56px;
    }

    .v2-fcs-card-title {
        font-size: 18px;
    }

    .v2-fcs-card-desc {
        font-size: 13px;
    }

    /* Fullwidth responsive */
    .v2-fcs-cards-fullwidth {
        gap: 20px;
    }

    .v2-fcs-cards-fullwidth .v2-fcs-card {
        padding: 0;
        gap: 16px;
    }

    .v2-fcs-cards-fullwidth .v2-fcs-card-icon {
        width: 56px;
        height: 56px;
    }

    .v2-fcs-cards-fullwidth .v2-fcs-card-icon i {
        font-size: 24px;
    }

    .v2-fcs-cards-fullwidth .v2-fcs-icon-image {
        width: 56px;
        height: 56px;
    }

    .v2-fcs-cards-fullwidth .v2-fcs-card.icon-position-left .v2-fcs-card-icon {
        margin-right: 16px;
    }

    .v2-fcs-cards-fullwidth .v2-fcs-card.icon-position-right .v2-fcs-card-icon {
        margin-left: 16px;
    }

    .v2-fcs-text h2 { font-size: 26px; }
    .v2-fcs-text h3 { font-size: 21px; }
    .v2-fcs-text h4 { font-size: 18px; }

    .v2-fcs-counters {
        gap: 24px;
    }

    .v2-fcs-counter-number,
    .v2-fcs-counter-suffix {
        font-size: 42px;
    }

    .v2-fcs-counter-arrow {
        font-size: 39px;
    }

    .v2-fcs-counter-value-wrapper {
        align-items: normal;
    }

    .v2-fcs-counter-label {
        font-size: 13px;
    }

    .v2-fcs-counters-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .v2-fcs-button {
        padding: 12px 28px;
        font-size: 15px;
    }

    .v2-fcs-section-button {
        padding: 12px 28px;
        font-size: 15px;
    }

    .v2-fcs-section-button-wrapper {
        margin-top: 36px;
    }
}


/* ═══════════════════════════════════════════════════════════
   11. RESPONSIVE — SMALL TABLET (≤ 768px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    .v2-fcs-section {
        padding: 40px 0;
    }

    .v2-fcs-title {
        font-size: 26px;
    }

    .v2-fcs-header {
        margin-bottom: 28px;
    }

    /* Stack columns on mobile */
    .layout-50-50 .v2-fcs-columns,
    .layout-60-40 .v2-fcs-columns,
    .layout-40-60 .v2-fcs-columns {
        grid-template-columns: 1fr;
    }

    /* Mobile: image column always comes first */
    .v2-fcs-col-left.v2-fcs-content-image {
        order: -1;
    }
    .v2-fcs-col-right.v2-fcs-content-image {
        order: -1;
    }

    /* When neither column is image, reset reverse so left comes first */
    .reverse-columns .v2-fcs-col-left:not(.v2-fcs-content-image) {
        order: 1;
    }
    .reverse-columns .v2-fcs-col-right:not(.v2-fcs-content-image) {
        order: 2;
    }

    .v2-fcs-columns {
        gap: 35px;
    }

    .v2-fcs-cards {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .v2-fcs-card {
        padding: 20px 16px;
    }

    .v2-fcs-card-icon {
        width: 48px;
        height: 48px;
    }

    .v2-fcs-card-icon i {
        font-size: 20px;
    }

    .v2-fcs-icon-image {
        width: 48px;
        height: 48px;
    }

    .v2-fcs-card-title {
        font-size: 16px;
    }

    .v2-fcs-card-desc {
        font-size: 13px;
    }

    /* Fullwidth responsive */
    .v2-fcs-cards-fullwidth {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .v2-fcs-cards-fullwidth .v2-fcs-card {
        padding: 0;
        gap: 14px;
    }

    .v2-fcs-cards-fullwidth .v2-fcs-card-icon {
        width: 48px;
        height: 48px;
    }

    .v2-fcs-cards-fullwidth .v2-fcs-card-icon i {
        font-size: 20px;
    }

    .v2-fcs-cards-fullwidth .v2-fcs-icon-image {
        width: 48px;
        height: 48px;
    }

    .v2-fcs-cards-fullwidth .v2-fcs-card.icon-position-left .v2-fcs-card-icon {
        margin-right: 14px;
    }

    .v2-fcs-cards-fullwidth .v2-fcs-card.icon-position-right .v2-fcs-card-icon {
        margin-left: 14px;
    }

    .v2-fcs-text h2 { font-size: 24px; }
    .v2-fcs-text h3 { font-size: 20px; }

    .v2-fcs-counters {
        gap: 20px;
    }

    .v2-fcs-counter-number,
    .v2-fcs-counter-suffix {
        font-size: 36px;
    }

    .v2-fcs-counter-arrow {
        font-size: 32px;
    }

    .v2-fcs-counter-value-wrapper {
        align-items: normal;
    }

    .v2-fcs-counter-label {
        font-size: 13px;
    }
}


/* ═══════════════════════════════════════════════════════════
   12. RESPONSIVE — MOBILE (≤ 480px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {

    .v2-fcs-section {
        padding: 32px 0;
    }

    .v2-fcs-title {
        font-size: 22px;
    }

    .v2-fcs-description {
        font-size: 15px;
    }

    .v2-fcs-header {
        margin-bottom: 22px;
    }

    .v2-fcs-columns {
        gap: 33px;
    }

    /* Single-column cards on smallest screens */
    .v2-fcs-cards {
        grid-template-columns: 1fr;
    }

    .v2-fcs-card {
        padding: 20px;
    }

    .v2-fcs-card-icon {
        width: 48px;
        height: 48px;
    }

    .v2-fcs-card-icon i {
        font-size: 20px;
    }

    .v2-fcs-icon-image {
        width: 48px;
        height: 48px;
    }

    .v2-fcs-card-title {
        font-size: 16px;
    }

    .v2-fcs-card-desc {
        font-size: 13px;
    }

    /* Fullwidth responsive */
    .v2-fcs-cards-fullwidth {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .v2-fcs-cards-fullwidth .v2-fcs-card {
        padding: 0;
        gap: 14px;
    }

    /* Stack icons on mobile - all positions become top */

    .v2-fcs-cards-fullwidth .v2-fcs-card.icon-position-left .v2-fcs-card-icon,
    .v2-fcs-cards-fullwidth .v2-fcs-card.icon-position-right .v2-fcs-card-icon {
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 14px;
    }

    .v2-fcs-cards-fullwidth .v2-fcs-card-icon {
        width: 48px;
        height: 48px;
    }

    .v2-fcs-cards-fullwidth .v2-fcs-card-icon i {
        font-size: 20px;
    }

    .v2-fcs-cards-fullwidth .v2-fcs-icon-image {
        width: 48px;
        height: 48px;
    }ards on smallest screens */
    .v2-fcs-cards {
        grid-template-columns: 1fr;
    }

    .v2-fcs-card {
        padding: 16px;
    }

    .v2-fcs-card-title {
        font-size: 15px;
    }

    .v2-fcs-counters {
        gap: 16px;
    }

    .v2-fcs-counter-number,
    .v2-fcs-counter-suffix {
        font-size: 32px;
    }

    .v2-fcs-counter-arrow {
        font-size: 22px;
    }

    .v2-fcs-counter-label {
        font-size: 12px;
    }

    .v2-fcs-card-desc {
        font-size: 13px;
    }

    .v2-fcs-counters {
        gap: 16px;
    }

    .v2-fcs-counter-number,
    .v2-fcs-counter-suffix {
        font-size: 32px;
    }

    .v2-fcs-counter-arrow {
        font-size: 22px;
    }

    .v2-fcs-counter-label {
        font-size: 12px;
    }

    .v2-fcs-list-item {
        font-size: 15px;
        padding-left: 24px;
    }

    .v2-fcs-text {
        font-size: 15px;
    }

    .v2-fcs-text h2 { font-size: 22px; }
    .v2-fcs-text h3 { font-size: 18px; }
    .v2-fcs-text h4 { font-size: 16px; }

    .v2-fcs-counters-title {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .v2-fcs-button {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
    }

    .v2-fcs-button-wrapper {
        margin-top: 24px;
    }

    .v2-fcs-section-button {
        padding: 12px 28px;
        font-size: 14px;
    }

    .v2-fcs-section-button-wrapper {
        margin-top: 32px;
    }

    .v2-fcs-button-arrow::after {
        font-size: 18px;
    }
}


/* ═══════════════════════════════════════════════════════════
   EVEREST FORM EMBED
   ═══════════════════════════════════════════════════════════ */
.v2-fcs-form {
    background-color: #e8e8e8;
    padding: 36px 32px;
}

.v2-fcs-form-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color, #1e3a5f);
    margin: 0 0 10px;
    line-height: 1.3;
}

.v2-fcs-decor-line--left {
    margin: 0 0 24px;
}


/* ═══════════════════════════════════════════════════════════
   ADDRESS / CONTACT INFO BLOCKS
   ═══════════════════════════════════════════════════════════ */
.v2-fcs-address {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.v2-fcs-address-block {
    padding: 20px;
    min-height: 138px;
}

.v2-fcs-address-content p {
    font-size: 18px;
    font-weight: 600;
}

.v2-fcs-address-content p a {
    color: #fff;
}

.v2-fcs-address-heading {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: inherit;
}

.v2-fcs-address-content {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: inherit;
}

@media (max-width: 767px) {
    .v2-fcs-form {
        padding: 24px 18px;
    }

    .v2-fcs-address-block {
        padding: 24px 20px;
    }
}

.v2-fcs-content-everest_form .everest-forms .evf-container {
    background-color: transparent !important;
}

.v2-fcs-content-everest_form .everest-forms .evf-container .evf-field-title h3 {
    color: #222 !important;
}

.v2-fcs-content-everest_form .everest-forms .evf-container .evf-field-title h3::after {
    content: '';
    display: block;
    width: 35px;
    height: 6px;
    background: #f15a24;
    border-radius: 6px;
    margin: 10px 0 0;
}

.v2-fcs-content-everest_form .everest-forms .evf-container .evf-error {
    background-color: transparent !important;
}

.v2-fcs-content-everest_form .everest-forms .evf-submit-container button[type="submit"] {
    margin-top: 10px !important;
}