/* partner-with-us.php — Extracted 2026-05-20. */

/* ---------- Hero image backdrop ---------- */
.aat-contact-hero {
    position: relative;
    background: #030303;
    isolation: isolate;
}
/* Kill the site-wide nav-gutter mask (#030303 band at z-49) - would otherwise
   render as a solid horizontal bar over the top of the hero image. */
body > div[aria-hidden="true"][style*="height: 145px"] { display: none !important; }

/* Kill the global gold ambient-light glows (head.php). Already present in
   partner-with-us earlier in the file; kept here for consistency with contact. */
.ambient-light { display: none !important; }

/* Hero image - bounded to hero title area, deep mask fade, no seam. */
.aat-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 720px;
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
    /* Mask removed — image sits freely without fade tint at the bottom. */
}
.aat-hero-fade { display: none; }

/* ---------- Channel / value-prop cards ---------- */
.aat-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(15,15,15,0.55);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 18px;
    padding: 20px 22px;
    transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.aat-card:hover { border-color: rgba(212,175,55,0.25); background: rgba(20,20,20,0.6); }
.aat-card--address { gap: 20px; padding: 22px; }

.aat-card-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.32);
    color: #D4AF37;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.aat-card:hover .aat-card-icon { background: rgba(212,175,55,0.12); border-color: rgba(212,175,55,0.45); }
.aat-card-icon--wa { color: #25D366; background: rgba(37,211,102,0.08); border-color: rgba(37,211,102,0.32); }
.aat-card:hover .aat-card-icon--wa { background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.5); }
.aat-card-icon--muted { color: #9ca3af; background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }

.aat-card-body { flex: 1; min-width: 0; }
.aat-card-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #D4AF37;
    margin: 0 0 4px 0;
}
.aat-card-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.25s ease;
    word-break: break-word;
}
.aat-card-value:hover { color: #D4AF37; }
.aat-card-value--email {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
}
.aat-card-desc {
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.5;
    margin: 2px 0 0 0;
}

.aat-address-block {
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: 0.04em;
    margin-top: 2px;
}
.aat-address-sub {
    color: #D4AF37;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 12px 0 0 0;
    line-height: 1.5;
}

/* ---------- Form card ---------- */
.aat-form-card {
    background: rgba(13,13,13,0.55);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
@media (min-width: 768px) { .aat-form-card { padding: 40px; } }

.aat-form-eyebrow {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 0.04em;
    margin: 0 0 6px 0;
}
.aat-form-subtitle {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
    letter-spacing: 0.02em;
}

/* ---------- CTA button ---------- */
.aat-cta-btn {
    width: 100%;
    height: 64px;
    background: linear-gradient(135deg, #D4AF37 0%, #ebd573 100%);
    color: #0a0a0a;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border: 0;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212,175,55,0.18);
}
.aat-cta-btn:hover {
    background: linear-gradient(135deg, #ebd573 0%, #D4AF37 100%);
    box-shadow: 0 14px 40px rgba(212,175,55,0.32);
    transform: translateY(-1px);
}
.aat-cta-btn:active { transform: translateY(0); }

.aat-form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #6b7280;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin: 18px 0 0 0;
    text-align: center;
    line-height: 1.4;
}
.aat-form-footer i { color: #9ca3af; flex-shrink: 0; }

/* --- DARK GLASS PHONE PICKER & INPUT OVERRIDES --- */

.iti { width: 100%; display: block; }
.iti__dropdown-content {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8) !important;
    margin-top: 8px !important;
    z-index: 1000 !important;
    overflow: hidden;
}
.iti__country-list {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #fff !important;
    font-size: 13px !important;
    max-width: 300px !important;
}
.iti__country { padding: 10px 15px !important; transition: all 0.2s; color: #fff !important; outline: none; }
.iti__country:hover, .iti__country.iti__highlight { background: rgba(212, 175, 55, 0.2) !important; }
.iti__country-name { color: #ccc !important; font-weight: 300 !important; }
.iti__country.iti__active .iti__country-name { color: #D4AF37 !important; font-weight: bold !important; }
.iti__dial-code { color: #888 !important; }
.iti__selected-dial-code { color: #fff !important; margin-left: 8px !important; font-size: 14px !important; }
.iti__arrow { border-top-color: #D4AF37 !important; }
.iti__arrow--up { border-bottom-color: #D4AF37 !important; }
.iti__selected-country {
    background-color: transparent !important;
    padding-left: 16px !important;
    padding-top: 16px !important;
    border-right: 1px solid rgba(255,255,255,0.10) !important;
    border-radius: 12px 0 0 12px !important;
    transition: background-color 0.2s;
    outline: none !important;
}
.iti__selected-country:hover { background-color: rgba(255, 255, 255, 0.05) !important; }
.iti__selected-country:focus-visible { background-color: rgba(212, 175, 55, 0.1) !important; }
.iti__search-input {
    background: #1a1a1a !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 10px !important;
    margin: 8px !important;
    width: calc(100% - 16px) !important;
    outline: none !important;
    box-shadow: none !important;
}
.iti__search-input::placeholder { color: #666 !important; }
.iti__tel-input {
    background: rgba(10, 10, 10, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 0.75rem !important;
    padding-top: 22px !important;
    padding-bottom: 6px !important;
    height: 64px !important;
    width: 100% !important;
    transition: all 0.3s !important;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    font-family: inherit !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.05em !important;
}
.iti__tel-input:focus {
    border-color: rgba(212, 175, 55, 0.5) !important;
    outline: none !important;
    background: rgba(10, 10, 10, 0.8) !important;
}
.iti__tel-input.border-red-500 {
    border-color: #ef4444 !important;
    box-shadow: 0 0 15px rgba(239,68,68,0.2) !important;
}
.iti__flag-container { z-index: 30 !important; }
.glass-scroll::-webkit-scrollbar, .iti__country-list::-webkit-scrollbar { width: 4px; }
.glass-scroll::-webkit-scrollbar-track, .iti__country-list::-webkit-scrollbar-track { background: transparent; }
.glass-scroll::-webkit-scrollbar-thumb, .iti__country-list::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, 0.3); border-radius: 8px; }
