/* ========== Why Us Page Styles ========== */

/* ========== Why Hero Section ========== */
.vi-why-hero-section {
    background: white;
    padding-top: 80px;
    padding-bottom: 80px;
}

.vi-why-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.vi-why-subtitle {
    font-size: 18px;
    color: #113170;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.6;
}

.vi-why-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.vi-why-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.vi-btn-primary,
.vi-btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.vi-btn-primary {
    background: linear-gradient(135deg, #113170 0%, #0056b3 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.vi-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.vi-btn-secondary {
    background: white;
    color: #113170;
    border: 2px solid #113170;
}

.vi-btn-secondary:hover {
    background: #f9f9f9;
    border-color: #0056b3;
}

/* ========== Stats Cards ========== */
.vi-why-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.vi-stat-card {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 30px 25px;
    border-radius: 10px;
    border-left: 4px solid #113170;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.vi-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.vi-stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #113170;
    margin-bottom: 10px;
}

.vi-stat-label {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.vi-stat-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ========== Section Header ========== */
.vi-section-header {
    margin-bottom: 50px;
}

.vi-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.vi-section-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.vi-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #113170 0%, #0056b3 100%);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* ========== Differentiators Section ========== */
.vi-differentiators-section {
    background: #f9f9f9;
}

.vi-differentiator-card {
    background: white;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.vi-differentiator-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.vi-card-icon {
    font-size: 48px;
    color: #113170;
    margin-bottom: 20px;
}

.vi-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.vi-card-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* ========== Client Reasons Section ========== */
.vi-client-reasons-section {
    background: white;
}

.vi-reasons-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 35px;
}

.vi-reason-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.vi-reason-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #113170 0%, #0056b3 100%);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vi-reason-content {
    flex-grow: 1;
}

.vi-reason-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.vi-reason-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.vi-reasons-image {
    position: relative;
}

.vi-reasons-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* ========== Benefits Section ========== */
.vi-benefits-section {
    background: #f9f9f9;
}

.vi-benefit-card {
    background: white;
    padding: 35px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.vi-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.vi-benefit-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #113170 0%, #0056b3 100%);
    border-radius: 50%;
    color: white;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.vi-benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.vi-benefit-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* ========== CTA Section ========== */
.vi-cta-section {
    background: linear-gradient(135deg, #113170 0%, #0056b3 100%);
    color: white;
}

.vi-cta-content {
    padding: 40px 30px;
}

.vi-cta-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.vi-cta-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.7;
}

.vi-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== Padding Section ========== */
.vi-padding-section {
    padding: 80px 0;
}

/* ========== Background Light ========== */
.vi-bg-light {
    background-color: #f9f9f9;
}

/* ========== Text Center ========== */
.text-center {
    text-align: center;
}

.mb-minus-30 {
    margin-bottom: -30px;
}

/* ========== Responsive Design ========== */
@media (max-width: 991px) {
    .vi-why-title {
        font-size: 36px;
    }

    .vi-section-title {
        font-size: 32px;
    }

    .vi-padding-section {
        padding: 60px 0;
    }

    .vi-why-stats {
        grid-template-columns: 1fr;
    }

    .vi-why-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .vi-why-cta-buttons a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .vi-why-title {
        font-size: 28px;
    }

    .vi-why-subtitle {
        font-size: 16px;
    }

    .vi-section-title {
        font-size: 26px;
    }

    .vi-stat-card {
        padding: 25px 20px;
    }

    .vi-stat-number {
        font-size: 36px;
    }

    .vi-stat-label {
        font-size: 16px;
    }

    .vi-differentiator-card {
        padding: 25px 20px;
    }

    .vi-card-title {
        font-size: 18px;
    }

    .vi-card-text {
        font-size: 13px;
    }

    .vi-reason-item {
        gap: 15px;
    }

    .vi-reason-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .vi-reason-content h4 {
        font-size: 16px;
    }

    .vi-benefit-card {
        padding: 25px 20px;
    }

    .vi-benefit-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .vi-cta-title {
        font-size: 28px;
    }

    .vi-cta-description {
        font-size: 14px;
    }

    .vi-cta-buttons {
        flex-direction: column;
    }

    .vi-cta-buttons a {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .vi-why-title {
        font-size: 24px;
    }

    .vi-section-title {
        font-size: 22px;
    }

    .vi-stat-card {
        padding: 20px 15px;
    }

    .vi-stat-number {
        font-size: 32px;
    }

    .vi-stat-label {
        font-size: 14px;
    }

    .vi-stat-description {
        font-size: 12px;
    }

    .vi-why-text {
        font-size: 14px;
    }

    .vi-btn-primary,
    .vi-btn-secondary {
        padding: 12px 25px;
        font-size: 14px;
        width: 100%;
    }

    .vi-why-cta-buttons {
        gap: 15px;
    }

    .vi-card-title {
        font-size: 16px;
    }

    .vi-card-text {
        font-size: 12px;
    }

    .vi-reason-content h4 {
        font-size: 15px;
    }

    .vi-reason-content p {
        font-size: 13px;
    }

    .vi-benefit-title {
        font-size: 18px;
    }

    .vi-benefit-text {
        font-size: 13px;
    }

    .vi-cta-title {
        font-size: 22px;
    }

    .vi-cta-description {
        font-size: 13px;
    }
}

/* ========== Animations ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.wow {
    visibility: hidden;
}

.wow.fadeInUp {
    animation: fadeInUp 0.8s ease-in-out;
    animation-fill-mode: both;
}

.wow.fadeInLeft {
    animation: fadeInLeft 0.8s ease-in-out;
    animation-fill-mode: both;
}

.wow.fadeInRight {
    animation: fadeInRight 0.8s ease-in-out;
    animation-fill-mode: both;
}
