/* Why Us Module */

.why-us-module {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--accent4) 0%, #ffffff00 100%);
    overflow: hidden;

    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 72px;
    margin-top: -60px;
}

.why-us-module:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 146, 183, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-us-container {
    max-width: 1216px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Header */
.why-us-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out;
}

.why-us-headline {
    color: var(--primary);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.why-us-subheadline {
    color: var(--accent1);
    font-size: 56px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0 0 32px 0;
}

.why-us-intro {
    max-width: 720px;
    margin: 0 auto;
    color: var(--text);
    font-size: 20px;
    line-height: 1.6;
}

.why-us-intro p {
    margin-bottom: 0;
}

/* Content Grid */
.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Image */
.why-us-image-container {
    position: relative;
}

.why-us-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateZ(0);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-us-image-wrapper:hover {
    transform: translateY(-8px) scale(1.02);
}

.why-us-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.why-us-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 146, 183, 0.1) 0%, rgba(67, 76, 92, 0.05) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-us-image-wrapper:hover .why-us-image-overlay {
    opacity: 1;
}

/* Reasons */
.why-us-reasons {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-us-reason {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fadeInRight 0.8s ease-out backwards;
}

.why-us-reason[data-index="1"] {
    animation-delay: 0.1s;
}

.why-us-reason[data-index="2"] {
    animation-delay: 0.2s;
}

.why-us-reason[data-index="3"] {
    animation-delay: 0.3s;
}

.why-us-reason[data-index="4"] {
    animation-delay: 0.4s;
}

.why-us-reason[data-index="5"] {
    animation-delay: 0.5s;
}

.why-us-reason:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 32px rgba(0, 146, 183, 0.15);
    border-color: var(--primary);
}

.why-us-reason-inner {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.why-us-reason-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #007EA2 100%);
    border-radius: 12px;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 146, 183, 0.25);
    transition: transform 0.3s ease;
}

.why-us-reason:hover .why-us-reason-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-us-reason-icon [class^="fa-"] {
    width: 100%;
    height: 100%;
}

.why-us-reason-content {
    flex: 1;
    min-width: 0;
}

.why-us-reason-title {
    color: var(--accent1);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 8px 0;
    letter-spacing: -0.3px;
}

.why-us-reason-description {
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.85;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 999px) {
    .why-us-module {
        padding: 80px 0;
    }

    .why-us-header {
        margin-bottom: 60px;
    }

    .why-us-subheadline {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .why-us-intro {
        font-size: 18px;
    }

    .why-us-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .why-us-reason {
        padding: 24px;
    }

    .why-us-reason-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .why-us-reason-title {
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .why-us-module {
        padding: 60px 0;
    }

    .why-us-container {
        padding: 0 16px;
    }

    .why-us-header {
        margin-bottom: 48px;
    }

    .why-us-headline {
        font-size: 16px;
        letter-spacing: 1.5px;
    }

    .why-us-subheadline {
        font-size: 32px;
        letter-spacing: -0.5px;
        margin-bottom: 24px;
    }

    .why-us-intro {
        font-size: 16px;
    }

    .why-us-content {
        gap: 40px;
    }

    .why-us-reasons {
        gap: 16px;
    }

    .why-us-reason {
        padding: 20px;
    }

    .why-us-reason-inner {
        gap: 16px;
    }

    .why-us-reason-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .why-us-reason-title {
        font-size: 18px;
    }

    .why-us-reason-description {
        font-size: 15px;
    }

    .why-us-image-wrapper {
        border-radius: 16px;
    }
}