@charset "utf-8";

/* ================================================================
   KA-PLOW — Payment Page  v4.1
   ================================================================ */

/* ── FULL-PAGE OVERLAY ──────────────────────────────────────── */
#pay-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background:
        radial-gradient(ellipse at 30% 60%, rgba(215,65,0,0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 20%, rgba(60,60,60,0.5) 0%, transparent 50%),
        linear-gradient(160deg, #0d0d0d 0%, #1c1c1c 50%, #111 100%);
}

#pay-overlay-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
}

#pay-overlay-icon {
    font-size: 3.5rem;
    color: #D74100;
}

#pay-overlay-label {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
}

#pay-overlay-spinner {
    font-size: 1.6rem;
    color: rgba(255,255,255,0.4);
}

/* ── PAGE BANNER ────────────────────────────────────────────── */
#top_bnnr {
    min-height: 34vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 5%;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.68) 100%),
        url('/site/content/payment/top_bnr.jpg') center center / cover no-repeat,
        #1a1a1a;
    color: #fff;
}
#top_bnnr::after { display: none; }

#pay-bnnr-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

#pay-bnnr-title {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(2rem, 5vw, 3.6rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.6);
    line-height: 1.05;
}

#pay-bnnr-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: rgba(255,255,255,0.75);
    margin-top: 0.25rem;
}

/* ── OUTER SECTION ──────────────────────────────────────────── */
#pay-wrap {
    background:
        radial-gradient(ellipse at 10% 50%, rgba(90,90,90,0.4) 0%, transparent 55%),
        radial-gradient(ellipse at 88% 20%, rgba(60,60,60,0.5) 0%, transparent 50%),
        linear-gradient(160deg, #0d0d0d 0%, #1c1c1c 40%, #111 70%, #1a1a1a 100%);
    border-top: 3px solid #D74100;
    padding: 4rem 5%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 55vh;
}

/* ── PAYMENT CARD ───────────────────────────────────────────── */
#pay-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    width: 100%;
    max-width: 860px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0,0,0,0.55);
}

/* ── LEFT PANEL ─────────────────────────────────────────────── */
#pay-left {
    background:
        radial-gradient(ellipse at 20% 80%, rgba(215,65,0,0.12) 0%, transparent 60%),
        linear-gradient(160deg, #2a2a2a 0%, #333333 100%);
    border-right: 1px solid rgba(255,255,255,0.07);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

/* Brand block */
#pay-left-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
#pay-brand-icon {
    font-size: 1.8rem;
    color: #D74100;
    flex-shrink: 0;
}
#pay-left-brand span {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
}

/* Payment methods */
.pay-left-label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: -1rem;
}

#pay-method-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem 0.5rem;
    align-items: center;
    justify-items: center;
}
#pay-method-icons i {
    font-size: 2.5rem;
    transition: transform 0.2s ease, filter 0.2s ease;
    filter: brightness(0.7) saturate(0.6);
}
#pay-method-icons i:hover {
    transform: scale(1.12);
    filter: brightness(1) saturate(1);
}
#pay-method-icons .fa-cc-visa       { color: #1a1f71; }
#pay-method-icons .fa-cc-mastercard { color: #eb001b; }
#pay-method-icons .fa-cc-amex       { color: #007bc1; }
#pay-method-icons .fa-cc-discover   { color: #f76f20; }
#pay-method-icons .fa-paypal        { color: #009cde; }
#pay-method-icons .fa-venmo         { color: #3d95ce; }

/* Divider */
#pay-left-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* Security badge */
#pay-secure-badge {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}
#pay-secure-badge > i {
    font-size: 1.4rem;
    color: #2e9e50;
    flex-shrink: 0;
    margin-top: 0.15rem;
}
#pay-secure-badge div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
#pay-secure-badge strong {
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.02em;
}
#pay-secure-badge span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
}

/* ── RIGHT PANEL ────────────────────────────────────────────── */
#pay-right {
    background: #fff;
    padding: 2.75rem 2.5rem 2.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    justify-content: center;
}

/* Tag */
#pay-right-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #D74100;
}

/* Title */
#pay-right-title {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #1a1a1a;
    line-height: 1.1;
}

/* Intro */
#pay-intro {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* CTA button */
#btn-pay-portal {
    width: 100%;
    padding: 0.9rem 1.5rem;
    font-size: 1.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
}

/* Portal redirect note */
#pay-portal-note {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    color: #aaa;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin: -0.5rem 0 0;
}

/* Phone alternative */
#pay-contact-alt {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    color: #888;
    text-align: center;
    border-top: 1px solid #f0ece7;
    padding-top: 1rem;
    margin-top: -0.25rem;
}
#pay-contact-alt a {
    color: #D74100;
    font-weight: 700;
    text-decoration: none;
}
#pay-contact-alt a:hover { text-decoration: underline; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 760px) {
    #pay-card {
        grid-template-columns: 1fr;
    }
    #pay-left {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        padding: 2rem 1.75rem;
    }
    #pay-right {
        padding: 2rem 1.75rem;
    }
    #pay-method-icons i { font-size: 2.1rem; }
}

@media (max-width: 480px) {
    #pay-wrap { padding: 2.5rem 4%; }
    #btn-pay-portal { font-size: 1.3rem; }
}
