/* ==========================================================================
   PHOENIX GLOBAL — CONTACT PAGE STYLES (LUXURY GOLD & NAVY THEME)
   ========================================================================== */

/* Full-Width Dark Hero Banner */
.contact-hero-section {
    position: relative;
    padding-top: 160px !important;
    padding-bottom: 90px !important;
    background: #040914;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 1;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.15) 0%, rgba(4, 9, 20, 0.95) 75%);
    z-index: 2;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
}

.contact-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1.25rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.contact-breadcrumb a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-breadcrumb a:hover {
    color: #ffffff;
}

.contact-breadcrumb .divider {
    color: rgba(255, 255, 255, 0.3);
}

/* Badge Phoenix Gold */
.badge-phoenix-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: #d4af37;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
}

/* Text Gradient Gold */
.text-gradient-gold {
    background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa7c11 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Main Light Contact Section */
.contact-main-section {
    background: #f7f5f0;
    padding: 80px 0;
    position: relative;
}

/* Info Cards */
.contact-info-card {
    background: #ffffff;
    border: 1px solid rgba(197, 155, 39, 0.25);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(12, 24, 43, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(12, 24, 43, 0.08);
}

.contact-icon-gold {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.25);
    flex-shrink: 0;
}

/* Form Container Card */
.contact-form-card {
    background: #ffffff;
    border: 1px solid rgba(197, 155, 39, 0.25);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 45px rgba(12, 24, 43, 0.06);
}

/* Forms & Input Fields */
.form-group-aetheris {
    margin-bottom: 1.25rem;
    position: relative;
}

.form-label-aetheris {
    font-family: var(--font-heading, inherit);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1e293b;
    margin-bottom: 0.45rem;
    display: block;
}

.input-icon-group {
    position: relative;
}

.input-icon-left {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #b8860b;
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 2;
}

.form-control-aetheris {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    color: #0c182b;
    font-family: var(--font-body, inherit);
    font-size: 0.95rem;
    padding: 0.85rem 1.25rem 0.85rem 2.8rem;
    width: 100%;
    transition: all 0.3s ease;
    outline: none;
}

textarea.form-control-aetheris {
    padding: 0.85rem 1.25rem;
}

.form-control-aetheris:focus {
    background: #ffffff;
    border-color: #d4af37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    color: #0c182b;
}

.form-control-aetheris::placeholder {
    color: #94a3b8;
}

.form-group-aetheris.has-error .form-control-aetheris {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}

.form-error-msg {
    color: #dc2626;
    font-size: 0.8rem;
    margin-top: 0.35rem;
    display: none;
    font-weight: 500;
}

.form-group-aetheris.has-error .form-error-msg {
    display: block;
}

/* Button Premium Gold */
.btn-premium-gold {
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    border: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 12px;
    letter-spacing: 0.03em;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-premium-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(212, 175, 55, 0.45);
    color: #ffffff;
}
