/* ============================================================
   BLAKE'S EMPORIUMS — CONTACT PAGE
   ============================================================ */

/* ── PART 1: Hero — left headline, floating icons right ───── */
.ct-page {
    background: #f5f6f2;
}

.ct-top {
    background: linear-gradient(180deg,
        #04101e 0%, #071828 15%, #0a2540 30%, #103860 48%,
        #2060a0 65%, #6aa0d0 78%, #b8d8ee 88%, #e8f4fc 94%, #f8fcff 100%
    );
    padding-top: 30px;
    padding-bottom: 100px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.ct-top__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
@media (min-width: 900px) {
    .ct-top__container { grid-template-columns: 1fr 1fr; }
}

/* Kicker — same ghost pill as brands + wholesale */
.ct-top__kicker {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
    font-size: 11.5px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.02em;
}

/* Headline — same size as brands + wholesale */
.ct-top__h1 {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 22px;
    text-shadow: 0 2px 28px rgba(0,0,0,0.35);
}
.ct-top__accent { color: #E4F222; }
.ct-top__white  { color: #ffffff; }

.ct-top__sub {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    max-width: 480px;
}

/* ── Icon carousel — right column ───────────────────────────*/
.ct-top__right {
    display: none;
}
@media (min-width: 900px) {
    .ct-top__right {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Method cards container */
.ct-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 480px;
}

/* Fixed slots — positions never move, SVGs swap inside */
.ct-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

/* ── Contact method cards ────────────────────────────────── */
.ct-method {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 280ms ease, border-color 280ms ease,
                transform 280ms ease, box-shadow 280ms ease;
    position: relative;
    overflow: hidden;
}

.ct-method:hover {
    background: rgba(228,242,34,0.08);
    border-color: rgba(228,242,34,0.35);
    transform: translateX(6px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

/* Auto-hover first card — always active */
.ct-method.ct-method--active {
    background: rgba(228,242,34,0.08);
    border-color: rgba(228,242,34,0.35);
    transform: translateX(6px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.ct-method__icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 280ms ease, box-shadow 280ms ease;
    z-index: 1;
}
.ct-method__icon svg {
    width: 20px;
    height: 20px;
    color: rgba(255,255,255,0.5);
    transition: color 280ms ease;
}
.ct-method:hover .ct-method__icon,
.ct-method.ct-method--active .ct-method__icon {
    background: #E4F222;
    box-shadow: 0 0 16px rgba(228,242,34,0.4);
}
.ct-method:hover .ct-method__icon svg,
.ct-method.ct-method--active .ct-method__icon svg { color: #071828; }

.ct-method__body { flex: 1; z-index: 1; }

.ct-method__title {
    font-size: 17px;
    font-weight: 800;
    color: rgba(255,255,255,0.85);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    transition: color 280ms ease;
}
.ct-method:hover .ct-method__title,
.ct-method.ct-method--active .ct-method__title { color: #ffffff; }

.ct-method__desc {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    transition: color 280ms ease;
}
.ct-method:hover .ct-method__desc,
.ct-method.ct-method--active .ct-method__desc { color: rgba(255,255,255,0.6); }

.ct-method__badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(228,242,34,0.6);
    background: rgba(228,242,34,0.1);
    border: 1px solid rgba(228,242,34,0.2);
    padding: 4px 10px;
    border-radius: 100px;
    flex-shrink: 0;
    z-index: 1;
    transition: background 280ms ease, color 280ms ease;
}
.ct-method:hover .ct-method__badge,
.ct-method.ct-method--active .ct-method__badge {
    background: rgba(228,242,34,0.18);
    color: #E4F222;
}

/* Overlap Part 2 over hero */
.ct-body--overlap {
    position: relative;
    z-index: 2;
}


/* ── PART 2: Body — bullets left, dark form right ─────────── */
.ct-body {
    background: #ffffff;
    padding: 80px 1.5rem 100px;
}

/* Left bullets on white background — dark text */
.ct-body__h2 { color: #071828; }
.ct-body__bullets li strong { color: #071828 !important; }
.ct-body__bullets li p { color: #667085 !important; }
.ct-body__bullet-icon { background: #071828 !important; color: #ffffff !important; border: none; }
.ct-body__bullets li:hover .ct-body__bullet-icon { background: #E4F222 !important; color: #071828 !important; box-shadow: 0 0 16px rgba(228,242,34,0.4); }
.ct-body__email-link { background: #ffffff !important; border-color: #e4e7ec !important; color: #667085 !important; }
.ct-body__email-link:hover { color: #071828 !important; border-color: #E4F222 !important; box-shadow: 0 0 0 3px rgba(228,242,34,0.2); }

/* Right form card gets its own solid background */
.ct-body__form-card { position: relative; z-index: 2; }

.ct-body__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: start;
}
@media (min-width: 900px) {
    .ct-body__container { grid-template-columns: 1fr 1.15fr; }
}

/* Left bullets */
.ct-body__h2 {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 800;
    color: #071828;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
}

.ct-body__bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}
.ct-body__bullets li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.ct-body__bullet-icon {
    width: 38px;
    height: 38px;
    background: #071828;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    margin-top: 2px;
    transition: background 250ms ease, box-shadow 250ms ease;
}
.ct-body__bullets li:hover .ct-body__bullet-icon {
    background: #E4F222;
    box-shadow: 0 0 16px rgba(228,242,34,0.4);
    color: #071828;
}
.ct-body__bullet-icon svg { width: 16px; height: 16px; }
.ct-body__bullets li strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #071828;
    margin-bottom: 5px;
}
.ct-body__bullets li p {
    font-size: 13.5px;
    color: #667085;
    line-height: 1.65;
    margin: 0;
}

.ct-body__email-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #667085;
    border: 1px solid #e4e7ec;
    background: #ffffff;
    padding: 10px 18px;
    border-radius: 8px;
    transition: color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.ct-body__email-link svg { width: 16px; height: 16px; flex-shrink: 0; }
.ct-body__email-link:hover {
    color: #071828;
    border-color: #E4F222;
    box-shadow: 0 0 0 3px rgba(228,242,34,0.2);
}

/* ── Right — dark gradient form card ────────────────────────*/
.ct-body__form-card {
    background: linear-gradient(160deg,
        #04101e 0%, #071828 25%, #0a2540 50%, #103860 75%, #2060a0 100%
    );
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    position: relative;
    clip-path: inset(0 round 20px);
}

/* Dashed inner border */
.ct-body__form-card::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 2px dashed rgba(228,242,34,0.15);
    border-radius: 12px;
    pointer-events: none;
    z-index: 0;
}

.ct-body__form-card-inner {
    position: relative;
    z-index: 1;
    padding: 40px 36px;
}

.ct-body__form-title {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.ct-body__form-sub {
    font-size: 13.5px;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    margin-bottom: 28px;
}

/* Form fields — dark style */
.ct-body__form-body input[type="text"],
.ct-body__form-body input[type="email"],
.ct-body__form-body input[type="tel"],
.ct-body__form-body input[type="url"],
.ct-body__form-body input[type="number"],
.ct-body__form-body select,
.ct-body__form-body textarea {
    width: 100%;
    background: rgba(255,255,255,0.07) !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease !important;
    box-shadow: none !important;
    outline: none !important;
}
.ct-body__form-body input::placeholder,
.ct-body__form-body textarea::placeholder {
    color: rgba(255,255,255,0.28) !important;
}
.ct-body__form-body input:focus,
.ct-body__form-body select:focus,
.ct-body__form-body textarea:focus {
    border-color: rgba(228,242,34,0.55) !important;
    background: rgba(255,255,255,0.1) !important;
    box-shadow: 0 0 0 3px rgba(228,242,34,0.12) !important;
}
.ct-body__form-body select {
    color: rgba(255,255,255,0.55) !important;
    cursor: pointer;
}
.ct-body__form-body select option { background: #071828; color: #ffffff; }
.ct-body__form-body textarea { min-height: 120px; resize: vertical; }

/* Labels */
.ct-body__form-body label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
}
.ct-body__form-body .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    margin-bottom: 16px;
}
.ct-body__form-body .wpcf7-form p { margin-bottom: 16px; }
.ct-body__form-body .wpcf7-form p:last-child { margin-bottom: 0; }

/* Submit */
.ct-body__form-body input[type="submit"],
.ct-body__form-body button[type="submit"] {
    width: 100% !important;
    background: #E4F222 !important;
    color: #071828 !important;
    border: 2px solid #E4F222 !important;
    border-radius: 8px !important;
    padding: 14px 24px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    font-family: 'Inter', sans-serif !important;
    margin-top: 8px !important;
    letter-spacing: 0.01em !important;
    transition: background 220ms ease, transform 150ms ease !important;
}
.ct-body__form-body input[type="submit"]:hover,
.ct-body__form-body button[type="submit"]:hover {
    background: #eef930 !important;
    border-color: #eef930 !important;
    transform: translateY(-2px) !important;
}

/* Validation */
.ct-body__form-body .wpcf7-not-valid-tip {
    font-size: 12px;
    color: #f1948a;
    margin-top: 4px;
    display: block;
}
.ct-body__form-body .wpcf7-response-output {
    font-size: 13px;
    padding: 10px 14px;
    border-radius: 8px;
    margin-top: 12px;
    border: none !important;
}
.ct-body__form-body .wpcf7-mail-sent-ok {
    background: rgba(228,242,34,0.1);
    border: 1px solid rgba(228,242,34,0.3) !important;
    color: #E4F222;
}
.ct-body__form-body .wpcf7-validation-errors {
    background: rgba(231,76,60,0.1);
    border: 1px solid rgba(231,76,60,0.2) !important;
    color: #f1948a;
}

@media (max-width: 640px) {
    .ct-body__form-card-inner { padding: 28px 20px; }
    .ct-top { min-height: auto; padding-bottom: 60px; }
}
