/* =========================================================
   Kreupa Workforce – CV Hero Section Styles
   WHERE TO ADD THIS FILE:
   - If using the PLUGIN method: save this as kreupa-cv-hero.css
     in the SAME FOLDER as kreupa-cv-hero.php
     (wp-content/plugins/kreupa-cv-hero/kreupa-cv-hero.css)
   - If using the FUNCTIONS.PHP method: upload this file to your
     active theme's folder (e.g. wp-content/themes/your-theme/kreupa-cv-hero.css)
     and make sure the enqueue line in the PHP uses:
     get_stylesheet_directory_uri() . '/kreupa-cv-hero.css'
   ========================================================= */

.kreupa-cv-hero {
    width: 100%;
    background: #f4f7fc;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    overflow: hidden;
}

.kreupa-cv-hero__inner {
    display: flex;
    flex-wrap: wrap;
    max-width: 1536px;
    margin: 0 auto;
}

/* LEFT COLUMN */
.kreupa-cv-hero__left {
    flex: 1 1 480px;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.kreupa-badge {
    display: inline-block;
    background: #ffe4c4;
    color: #c9631a;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 8px 18px;
    border-radius: 30px;
    width: fit-content;
}

.kreupa-title {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
    color: #0b1c39;
    margin: 0;
}

.kreupa-title--blue {
    color: #1f6bf0;
}

.kreupa-subtitle {
    font-size: 17px;
    color: #4a5568;
    max-width: 520px;
    line-height: 1.6;
    margin: 0;
}

/* FEATURE ICONS */
.kreupa-features {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin: 10px 0;
}

.kreupa-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 90px;
}

.kreupa-feature__icon {
    background: #eef2ff;
    color: #1f2f5c;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 10px;
}

.kreupa-feature__label {
    font-size: 13px;
    font-weight: 600;
    color: #1f2f5c;
}

/* PRICE BOX */
.kreupa-price-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(20, 30, 60, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 660px;
}

.kreupa-price__amount {
    font-size: 30px;
    font-weight: 800;
    color: #0b1c39;
}

.kreupa-price__note {
    font-size: 13px;
    color: #8a94a6;
    margin-top: 2px;
}

.kreupa-cta-btn {
    background: #1f6bf0;
    color: #fff !important;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 30px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s ease;
}

.kreupa-cta-btn:hover {
    background: #0f52c9;
}

/* TRUST ROW */
.kreupa-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    font-size: 13.5px;
    color: #4a5568;
}

.kreupa-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.kreupa-trust-item i {
    color: #1f6bf0;
}

/* RIGHT COLUMN */
.kreupa-cv-hero__right {
    flex: 1 1 520px;
    position: relative;
    min-height: 760px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 40px;
    overflow: hidden;
}

/* Background image (Dubai skyline / gulf themed) — put your image URL in the shortcode PHP */
.kreupa-cv-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #0b2a6b; /* fallback color while image loads */
    z-index: 0;
}

.kreupa-cv-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,42,107,0.55), rgba(11,42,107,0.75));
}

.kreupa-tagline {
    position: relative;
    z-index: 1;
    align-self: flex-end;
    color: #fff;
    font-style: italic;
    font-size: 20px;
    text-align: right;
    margin-bottom: 10px;
}

/* CV MOCKUP IMAGE + SEAL */
.kreupa-cv-mock {
    position: relative;
    z-index: 1;
    max-width: 480px;
    width: 100%;
}

.kreupa-cv-mock__img {
    width: 100%;
    display: block;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.kreupa-cv-mock__seal {
    position: absolute;
    top: -30px;
    right: -20px;
    background: #f2a71b;
    color: #fff;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* CHECKLIST CARD */
.kreupa-checklist {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 14px;
    padding: 20px 26px;
    margin-top: -30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 600;
    color: #1f2f5c;
    font-size: 14.5px;
    align-self: flex-end;
}

.kreupa-checklist i {
    color: #2ecc71;
    margin-right: 8px;
}

/* FLAGS ROW */
.kreupa-flags {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 26px;
    margin-top: 40px;
}

.kreupa-flag-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.kreupa-flag-item img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.kreupa-flag-item span {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

/* FOOTER STRIP */
.kreupa-footer-strip {
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    letter-spacing: 1px;
    margin-top: 24px;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .kreupa-cv-hero__left,
    .kreupa-cv-hero__right {
        padding: 40px 24px;
    }
    .kreupa-title {
        font-size: 34px;
    }
    .kreupa-checklist,
    .kreupa-tagline {
        align-self: center;
        text-align: center;
    }
}
