/* =========================================================
   WordPress Development Hero + Lead Form
   Unique Prefix: wp-development-hero
   ========================================================= */

.wp-development-hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0 90px;
    background:
        radial-gradient(circle at 10% 20%, rgba(13, 110, 253, 0.16), transparent 35%),
        radial-gradient(circle at 90% 80%, rgba(111, 66, 193, 0.14), transparent 35%),
        linear-gradient(135deg, #07111f 0%, #101d32 52%, #07101c 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.wp-development-hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    top: -280px;
    right: -160px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    pointer-events: none;
}

.wp-development-hero::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    bottom: -240px;
    left: -180px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.wp-development-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #020811;
    pointer-events: none;
}

.wp-development-hero > .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   Hero Content
   ========================================================= */

.wp-development-hero__content {
    max-width: 760px;
}

.wp-development-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    line-height: 1.4;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.wp-development-hero__badge i {
    font-size: 16px;
}

.wp-development-hero__heading {
    max-width: 760px;
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.wp-development-hero__description {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   Trust
   ========================================================= */

.wp-development-hero__trust {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 600;
}

.wp-development-hero__trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    font-size: 12px;
}


/* =========================================================
   Features
   ========================================================= */

.wp-development-hero__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 24px;
    margin-top: 28px;
    max-width: 680px;
}

.wp-development-hero__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-weight: 600;
}

.wp-development-hero__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    font-size: 13px;
}

.wp-development-hero__feature-text {
    line-height: 1.45;
}


/* =========================================================
   CTA Actions
   ========================================================= */

.wp-development-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

.wp-development-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 51px;
    padding: 13px 23px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.wp-development-hero__btn:hover {
    transform: translateY(-3px);
    text-decoration: none;
}

.wp-development-hero__btn--primary {
    background: #ffffff;
    color: #08111f;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.wp-development-hero__btn--primary:hover {
    background: #f2f5f9;
    color: #08111f;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25);
}

.wp-development-hero__btn--secondary {
    border-color: rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.wp-development-hero__btn--secondary:hover {
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
}


/* =========================================================
   Form Card
   ========================================================= */

.wp-development-hero__form-card {
    position: relative;
    max-width: 470px;
    margin-left: auto;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.075);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.wp-development-hero__form-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: rgba(255, 255, 255, 0.20);
}

.wp-development-hero__form-title {
    margin: 0 0 9px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
}

.wp-development-hero__form-description {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   Form Fields
   ========================================================= */

.wp-development-hero__form-group {
    margin-bottom: 12px;
}

.wp-development-hero__input-wrap {
    position: relative;
}

.wp-development-hero__input-wrap > i {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 15px;
    width: 18px;
    color: rgba(255, 255, 255, 0.50);
    font-size: 13px;
    text-align: center;
    transform: translateY(-50%);
    pointer-events: none;
}

.wp-development-hero__input-wrap--textarea > i {
    top: 17px;
    transform: none;
}

.wp-development-hero__input-wrap .form-control {
    min-height: 49px;
    padding: 12px 14px 12px 43px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 9px;
    outline: none;
    background: rgba(0, 0, 0, 0.18);
    color: #ffffff;
    font-size: 13px;
    box-shadow: none;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.wp-development-hero__input-wrap textarea.form-control {
    min-height: 105px;
    resize: vertical;
}

.wp-development-hero__input-wrap .form-control::placeholder {
    color: rgba(255, 255, 255, 0.46);
}

.wp-development-hero__input-wrap .form-control:focus {
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(0, 0, 0, 0.25);
    color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.055);
}


/* =========================================================
   Submit Button
   ========================================================= */

.wp-development-hero__form-submit {
    width: 100%;
    min-height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 5px;
    padding: 13px 20px;
    border: 0;
    border-radius: 9px;
    background: #ffffff;
    color: #08111f;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.wp-development-hero__form-submit:hover {
    transform: translateY(-2px);
    background: #f3f5f8;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.20);
}


/* =========================================================
   Form Note
   ========================================================= */

.wp-development-hero__form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 13px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
}

.wp-development-hero__form-note i {
    font-size: 11px;
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 991.98px) {

    .wp-development-hero {
        padding: 80px 0 70px;
    }

    .wp-development-hero__content {
        max-width: 100%;
    }

    .wp-development-hero__heading {
        font-size: clamp(36px, 6vw, 52px);
    }

    .wp-development-hero__form-card {
        max-width: 100%;
        margin: 10px 0 0;
    }
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767.98px) {

    .wp-development-hero {
        padding: 62px 0 55px;
    }

    .wp-development-hero__badge {
        margin-bottom: 17px;
        padding: 7px 13px;
        font-size: 10px;
        letter-spacing: 1px;
    }

    .wp-development-hero__heading {
        margin-bottom: 17px;
        font-size: clamp(31px, 9vw, 42px);
        line-height: 1.13;
        letter-spacing: -0.8px;
    }

    .wp-development-hero__description {
        font-size: 15px;
        line-height: 1.7;
    }

    .wp-development-hero__trust {
        margin-top: 21px;
        font-size: 13px;
    }

    .wp-development-hero__features {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 23px;
    }

    .wp-development-hero__actions {
        flex-direction: column;
        width: 100%;
        margin-top: 27px;
    }

    .wp-development-hero__btn {
        width: 100%;
    }

    .wp-development-hero__form-card {
        margin-top: 12px;
        padding: 23px 18px;
        border-radius: 16px;
    }

    .wp-development-hero__form-title {
        font-size: 21px;
    }
}


/* =========================================================
   Small Mobile
   ========================================================= */

@media (max-width: 575.98px) {

    .wp-development-hero {
        padding: 52px 0 45px;
    }

    .wp-development-hero__heading {
        font-size: 30px;
    }

    .wp-development-hero__description {
        font-size: 14px;
    }

    .wp-development-hero__form-card {
        padding: 21px 15px;
    }

    .wp-development-hero__input-wrap .form-control {
        min-height: 47px;
        font-size: 12px;
    }
}


/* =========================================================
   Reduced Motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .wp-development-hero__btn,
    .wp-development-hero__form-submit,
    .wp-development-hero__input-wrap .form-control {
        transition: none;
    }

    .wp-development-hero__btn:hover,
    .wp-development-hero__form-submit:hover {
        transform: none;
    }
}