/**
 * Win-Win Offshore Development Component Styles
 *
 * Displays RIKAI's offshore development value proposition with badges and dual CTA blocks.
 *
 * @package RIKAI_Marketing
 * @since 1.0.0
 */

/* ==================================================
   Section Header
   ================================================== */

.section-header {
    margin-bottom: 48px;
    text-align: left;
}

.section-name {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 24px;
    font-weight: 700;
    text-align: left;
}

/* ==================================================
   Badges Row
   ================================================== */

.section-badges {
    display: flex;
    gap: 5px;
}

.badge-icon img {
    max-width: 90px;
    max-height: 90px;
    width: 100%;
    height: auto;
}

/* ==================================================
   Description Text
   ================================================== */

.description-text {
    font-size: 18px;
    line-height: 1.8;
}

/* ==================================================
   CTA Blocks
   ================================================== */

.cta-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-left {
    margin-bottom: 32px;
}

.cta-right {
    margin-bottom: 48px;
}

.cta-icon {
    margin-bottom: 16px;
}

.cta-icon img {
    max-width: 70px;
    height: auto;
    transition: transform 0.3s ease;
}

.cta-block:hover .cta-icon img {
    transform: scale(1.1);
}

.cta-hint {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}

/* ==================================================
   Image Right
   ================================================== */

.image-right {
    width: 100%;
}

.image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.image-right img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ==================================================
   Admin Notice
   ================================================== */

.alert {
    margin-top: 32px;
}

/* ==================================================
   Responsive Design
   ================================================== */

/* Tablet */
@media (max-width: 992px) {
    .section-title {
        font-size: 28px;
    }

    .description-text {
        font-size: 16px;
    }

    .badge-item {
        padding: 12px;
    }

    .badge-icon img {
        max-width: 70px;
        max-height: 70px;
    }

    .badge-text {
        font-size: 12px;
    }

    .cta-hint {
        font-size: 12px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }

    .description-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .badges-row {
        margin-bottom: 24px;
    }

    .badge-item {
        padding: 8px;
    }

    .badge-icon {
        flex: 1;
        justify-items: center;
    }

    .badge-icon img {
        max-width: 90px;
        max-height: 90px;
    }

    .badge-text {
        font-size: 10.4px;
    }

    .cta-right {
        margin-top: 32px;
    }

    .cta-icon img {
        max-width: 48px;
    }

    .image-right {
        margin-top: 32px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .section-header {
        margin-bottom: 32px;
    }

    .section-title {
        font-size: 20px;
        line-height: 1.3;
    }

    .section-name span {
        font-size: 12px;
    }

    .description-text {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .badge-text {
        font-size: 10px;
    }
}

/* ==================================================
   Print Styles
   ================================================== */

@media print {
    .cta-block,
    .alert {
        display: none !important;
    }

    .badge-item {
        border: 1px solid #ddd;
    }
}
