/* ==========================================================================
   Become a LoL Booster — Contact Page
   The page top uses the parent theme's .banner__page + .arrow-page-down.
   These styles only cover the body sections below it.
   Scoped to .ebl-booster-page — zero impact on any other page.
   Max font-weight is 500 per design spec.
   ========================================================================== */

.ebl-booster-page *,
.ebl-booster-page *::before,
.ebl-booster-page *::after { box-sizing: border-box; }

.ebl-booster-page {
    background: #fff;
    color: #0c1e3e;
    font-family: 'Montserrat', 'AvenirNextCyr', sans-serif;
    font-weight: 500;
    padding-top: 30px;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes ebp-fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes ebp-fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes ebp-pop {
    0%   { opacity: 0; transform: scale(.85); }
    60%  { opacity: 1; transform: scale(1.04); }
    100% { transform: scale(1); }
}
@keyframes ebp-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-4px); }
}
@keyframes ebp-pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,.45); }
    50%      { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
}
@keyframes ebp-iconSpin {
    from { transform: rotate(-12deg) scale(.7); opacity: 0; }
    to   { transform: rotate(0) scale(1); opacity: 1; }
}
@keyframes ebp-shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Reveal-on-scroll: any .ebp-reveal element fades up when .is-visible
   is added. JS at the bottom of the shortcode toggles it via IntersectionObserver.
   Also gracefully degrades: if JS is off, the element still shows. */
.ebp-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
}
.ebp-reveal.is-visible {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    .ebp-reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   REQUIREMENTS STRIP
   ========================================================================== */
.ebp-reqs {
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.ebp-req-item {
    background: #fff;
    border: 1px solid #e6e9ef;
    border-radius: 14px;
    padding: 24px 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 8px 24px rgba(12,30,62,.08);
    transition: transform .25s, box-shadow .25s;
    opacity: 0;
    animation: ebp-fadeUp .7s cubic-bezier(.16,1,.3,1) forwards;
}
.ebp-req-item:nth-child(1) { animation-delay: .15s; }
.ebp-req-item:nth-child(2) { animation-delay: .30s; }
.ebp-req-item:nth-child(3) { animation-delay: .45s; }
.ebp-req-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(12,30,62,.12);
}
.ebp-req-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(2,131,202,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #0283ca;
    animation: ebp-iconSpin .6s cubic-bezier(.16,1,.3,1) both;
}
.ebp-req-item:nth-child(1) .ebp-req-icon { animation-delay: .35s; }
.ebp-req-item:nth-child(2) .ebp-req-icon { animation-delay: .50s; }
.ebp-req-item:nth-child(3) .ebp-req-icon { animation-delay: .65s; }
.ebp-req-item:hover .ebp-req-icon {
    transform: rotate(-6deg) scale(1.06);
    transition: transform .2s ease;
}
.ebp-req-icon.gold  { background: rgba(240,180,41,.15); color: #d99409; }
.ebp-req-icon.green { background: rgba(16,185,129,.13); color: #10b981; }
.ebp-req-text strong {
    display: block;
    font-size: .92rem;
    font-weight: 500;
    color: #0c1e3e;
    margin-bottom: 4px;
}
.ebp-req-text span {
    font-size: .82rem;
    font-weight: 500;
    color: #5b6a82;
    line-height: 1.5;
}

/* ==========================================================================
   PERKS SECTION — alternating orange + cream cards
   ========================================================================== */
.ebp-perks {
    padding: 80px 24px 60px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.ebp-section-label {
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #ee6731;
    margin-bottom: 10px;
}
.ebp-section-title {
    font-family: 'League', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 500;
    color: #0c1e3e;
    text-transform: uppercase;
    margin: 0 0 14px;
    letter-spacing: 1px;
}
.ebp-section-sub {
    font-size: .95rem;
    font-weight: 500;
    color: #5b6a82;
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.7;
}
.ebp-perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}
.ebp-perk-card {
    background: #f5f3ee;
    border-radius: 18px;
    padding: 30px 26px;
    text-align: left;
    transition: transform .25s, box-shadow .25s;
}
.ebp-perk-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(12,30,62,.1);
}
.ebp-perk-card:nth-child(odd) {
    background: linear-gradient(155deg, #ee6731, #e85a25);
    color: #fff;
}
.ebp-perk-card:nth-child(odd) .ebp-perk-num { color: rgba(255,255,255,.35); }
.ebp-perk-card:nth-child(odd) h4 { color: #fff; }
.ebp-perk-card:nth-child(odd) p  { color: rgba(255,255,255,.92); }

.ebp-perk-num {
    font-family: 'League', sans-serif;
    font-size: 3rem;
    font-weight: 500;
    color: rgba(12,30,62,.18);
    line-height: 1;
    margin-bottom: 8px;
    display: inline-block;
}
.ebp-perk-card:hover .ebp-perk-num {
    animation: ebp-float 1.4s ease-in-out infinite;
}
.ebp-perk-card h4 {
    font-family: 'League', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: #0c1e3e;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 0 0 8px;
}
.ebp-perk-card p {
    font-size: .85rem;
    font-weight: 500;
    color: #5b6a82;
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   FORM SECTION — light cream background panel
   ========================================================================== */
.ebp-form-section {
    background: #f8f6f1;
    padding: 80px 24px;
    border-top: 1px solid #ebe7df;
}
.ebp-form-wrap {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.55fr;
    gap: 56px;
    align-items: start;
}
.ebp-form-info h2 {
    font-family: 'League', sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 500;
    color: #0c1e3e;
    text-transform: uppercase;
    margin: 0 0 16px;
    line-height: 1.2;
    letter-spacing: 1px;
}
.ebp-form-info p {
    font-size: .92rem;
    font-weight: 500;
    color: #5b6a82;
    line-height: 1.75;
    margin: 0 0 28px;
}
.ebp-response-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    font-size: .8rem;
    font-weight: 500;
    color: #5b6a82;
}
.ebp-response-note::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    flex-shrink: 0;
    animation: ebp-pulseGlow 2s ease-in-out infinite;
}

.ebp-form {
    background: #fff;
    border: 1px solid #e6e2d8;
    border-radius: 18px;
    padding: 40px 36px;
    box-shadow: 0 12px 32px rgba(12,30,62,.06);
}
.ebp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.ebp-field { margin-bottom: 18px; }
.ebp-field label {
    display: block;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0c1e3e;
    margin-bottom: 7px;
}
.ebp-field label span { color: #ee6731; }
.ebp-field input,
.ebp-field select,
.ebp-field textarea {
    width: 100%;
    background: #fafaf7;
    border: 1px solid #e1ddd0;
    border-radius: 9px;
    padding: 12px 15px;
    color: #0c1e3e;
    font-size: .9rem;
    font-weight: 500;
    font-family: inherit;
    transition: border-color .2s, background .2s, box-shadow .2s;
    outline: none;
    appearance: none;
}
.ebp-field input::placeholder,
.ebp-field textarea::placeholder { color: #a8a89a; }
.ebp-field input:focus,
.ebp-field select:focus,
.ebp-field textarea:focus {
    border-color: #0283ca;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(2,131,202,.12);
}
.ebp-field select option { background: #fff; color: #0c1e3e; }
.ebp-field textarea { resize: vertical; min-height: 110px; }
.ebp-field-full { grid-column: 1 / -1; }

.ebp-submit-wrap { margin-top: 8px; }
.ebp-submit {
    width: 100%;
    padding: 15px 24px;
    background: linear-gradient(135deg, #ee6731, #e85a25, #ee6731);
    background-size: 200% 100%;
    background-position: 0% 50%;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'League', sans-serif;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .15s, box-shadow .2s, opacity .2s, background-position .8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 18px rgba(238,103,49,.3);
    position: relative;
    overflow: hidden;
}
.ebp-submit svg { transition: transform .25s ease; }
.ebp-submit:hover svg { transform: translateX(3px) rotate(-8deg); }
.ebp-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(238,103,49,.45);
    background-position: 100% 50%;
}
.ebp-submit:active { transform: translateY(0); }
.ebp-submit-note {
    text-align: center;
    font-size: .75rem;
    font-weight: 500;
    color: #8a96a8;
    margin-top: 12px;
}

.ebp-form-msg {
    display: none;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: .88rem;
    font-weight: 500;
    margin-bottom: 20px;
}
.ebp-form-msg.success {
    display: block;
    background: rgba(16,185,129,.1);
    border: 1px solid rgba(16,185,129,.35);
    color: #0e8d63;
}
.ebp-form-msg.error {
    display: block;
    background: rgba(239,68,68,.08);
    border: 1px solid rgba(239,68,68,.3);
    color: #c73838;
}

/* ==========================================================================
   OUR VALUES SECTION (SEO content)
   ========================================================================== */
.ebp-values {
    background: #fff;
    padding: 80px 24px 30px;
}
.ebp-values-wrap {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.ebp-values-lead {
    font-size: .95rem;
    font-weight: 500;
    color: #5b6a82;
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.7;
}
.ebp-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    text-align: left;
}
.ebp-value {
    background: #f8f6f1;
    border-radius: 16px;
    padding: 30px 28px;
    transition: transform .25s, box-shadow .25s;
}
.ebp-value:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(12,30,62,.08);
}
.ebp-value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(2,131,202,.12);
    color: #0283ca;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.ebp-value h3 {
    font-family: 'League', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0c1e3e;
    margin: 0 0 10px;
}
.ebp-value p {
    font-size: .87rem;
    font-weight: 500;
    color: #5b6a82;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   WHAT THE JOB LOOKS LIKE (SEO content)
   ========================================================================== */
.ebp-job {
    background: #f8f6f1;
    padding: 80px 24px;
    border-top: 1px solid #ebe7df;
    border-bottom: 1px solid #ebe7df;
}
.ebp-job-wrap {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: start;
}
.ebp-job-text .ebp-section-label,
.ebp-job-text .ebp-section-title {
    text-align: left;
    margin-left: 0;
}
.ebp-job-text .ebp-section-title { margin-bottom: 22px; }
.ebp-job-text p {
    font-size: .92rem;
    font-weight: 500;
    color: #5b6a82;
    line-height: 1.8;
    margin: 0 0 16px;
}
.ebp-job-list {
    background: #fff;
    border: 1px solid #e6e2d8;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 8px 24px rgba(12,30,62,.05);
}
.ebp-job-list h3 {
    font-family: 'League', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0c1e3e;
    margin: 0 0 18px;
}
.ebp-job-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ebp-job-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: .88rem;
    font-weight: 500;
    color: #2d3a52;
    line-height: 1.55;
    border-bottom: 1px solid #f0ece2;
}
.ebp-job-list li:last-child { border-bottom: none; }
.ebp-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(16,185,129,.15);
    color: #10b981;
    font-weight: 500;
    font-size: .78rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
    .ebp-reqs { grid-template-columns: 1fr; }
    .ebp-values-grid { grid-template-columns: 1fr; }
    .ebp-job-wrap { grid-template-columns: 1fr; gap: 36px; }
    .ebp-form-wrap { grid-template-columns: 1fr; gap: 40px; }
    .ebp-form-row { grid-template-columns: 1fr; }
    .ebp-form { padding: 28px 22px; }
}
@media (max-width: 600px) {
    .ebp-perks-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
    .ebp-perks-grid { grid-template-columns: 1fr; }
}
