/* =========================================================
   EXECUTIVE CONTACT & CONCIERGE STYLESHEET
   Harmonized with Executive Chauffeur & Ride Booking Theme
   ========================================================= */

:root {
    --contact-dark: #0A0E1A;
    --contact-navy: #130F40;
    --contact-navy-light: #1E234B;
    --contact-gold: #F59E0B;
    --contact-gold-light: #FEF3C7;
    --contact-emerald: #10B981;
    --contact-text-muted: #64748B;
    --contact-border: #E2E8F0;
    --contact-bg-soft: #F8FAFC;
}

/* Hero Section */
.contact-hero-wrapper {
    background: linear-gradient(135deg, var(--contact-dark) 0%, var(--contact-navy) 100%);
    position: relative;
    padding: 100px 0 140px 0;
    color: #ffffff;
    overflow: hidden;
}

.contact-hero-wrapper::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: var(--contact-gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.contact-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    background: linear-gradient(180deg, #FFFFFF 0%, #E2E8F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-hero-subtitle {
    font-size: 1.15rem;
    color: #94A3B8;
    max-width: 620px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Contact Info Ribbon Overlapping Hero */
.contact-info-ribbon {
    margin-top: -70px;
    position: relative;
    z-index: 10;
    margin-bottom: 70px;
}

.info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 15px 35px rgba(10, 14, 26, 0.08);
    border: 1px solid var(--contact-border);
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(19, 15, 64, 0.12);
    border-color: var(--contact-gold);
}

.info-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--contact-gold-light);
    color: var(--contact-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--contact-navy);
    margin-bottom: 6px;
}

.info-content p {
    color: var(--contact-text-muted);
    font-size: 0.98rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Main Contact & Form Section */
.contact-main-section {
    padding: 40px 0 100px 0;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 45px;
    border: 1px solid var(--contact-border);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
}

.contact-form-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--contact-navy);
    margin-bottom: 8px;
}

.contact-form-card p.subtitle {
    color: var(--contact-text-muted);
    font-size: 1rem;
    margin-bottom: 30px;
}

.custom-input-group {
    margin-bottom: 22px;
}

.custom-input-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--contact-navy);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.custom-input {
    width: 100%;
    background: var(--contact-bg-soft);
    border: 1px solid var(--contact-border);
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 1rem;
    color: #0B0F19;
    transition: all 0.25s ease;
}

.custom-input:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--contact-gold);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.btn-executive-submit {
    background: var(--contact-navy);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 16px 36px;
    font-size: 1.05rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(19, 15, 64, 0.18);
}

.btn-executive-submit:hover {
    background: #1E254A;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(19, 15, 64, 0.25);
}

/* Map & VIP Desk Sidebar */
.contact-sidebar-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--contact-border);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map-container {
    width: 100%;
    height: 340px;
    border-bottom: 1px solid var(--contact-border);
}

.sidebar-info-box {
    padding: 32px;
}

.sidebar-info-box h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--contact-navy);
    margin-bottom: 16px;
}

.concierge-perk {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--contact-border);
}

.concierge-perk:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.concierge-perk i {
    color: var(--contact-gold);
    font-size: 1.15rem;
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }
    .contact-form-card {
        padding: 30px;
    }
}

@media (max-width: 767.98px) {
    .contact-hero-wrapper {
        padding: 70px 0 110px 0;
    }
    .contact-hero-title {
        font-size: 2.1rem;
    }
    .contact-info-ribbon {
        margin-top: -50px;
    }
}
