/* ==========================================================================
   CONTACT PAGE STYLING (#000B33 NAVY & LIGHT THEME)
   ========================================================================== */

/* Color Utility Helpers */
.bg-navy-dark {
    background-color: #000B33 !important;
}

.bg-navy-card {
    background-color: #00124D !important;
}

.text-navy {
    color: #000B33 !important;
}

.text-orange {
    color: #F27915 !important;
}

.bg-orange {
    background-color: #F27915 !important;
}

.bg-orange-light { background: rgba(242, 121, 21, 0.12); }
.text-blue { color: #0284C7; }
.bg-blue-light { background: rgba(2, 132, 199, 0.12); }
.text-green { color: #16A34A; }
.bg-green-light { background: rgba(22, 163, 74, 0.12); }

.text-slate-600 {
    color: #475569 !important;
}

.border-slate-200 {
    border-color: #E2E8F0 !important;
}

.max-w-800 {
    max-width: 800px;
}

.max-w-700 {
    max-width: 700px;
}

.tracking-wider {
    letter-spacing: 1px;
}

/* Hero Section */
.contact-hero-banner {
    min-height: 38vh;
    padding-top: 110px;
    padding-bottom: 70px;
    background-color: #000B33 !important;
}

.contact-glow-accent-1 {
    position: absolute;
    top: 12%;
    left: 15%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(242, 121, 21, 0.18) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
}

.contact-glow-accent-2 {
    position: absolute;
    bottom: 15%;
    right: 15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, transparent 70%);
    filter: blur(120px);
    pointer-events: none;
}

/* Headlines */
.hero-contact-title {
    font-size: 40px !important;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

/* Badges */
.badge-luxury {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    border-radius: 50px;
    background: rgba(242, 121, 21, 0.12);
    border: 1px solid rgba(242, 121, 21, 0.3);
    color: #F27915;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Main Section Background */
.contact-main-section {
    background-color: #FFFFFF !important;
}

/* Info Cards */
.contact-info-card {
    background-color: #F8FAFC !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-info-card:hover {
    border-color: #F27915 !important;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 11, 51, 0.08);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Contact Form */
.contact-form-card {
    background-color: #F8FAFC !important;
    box-shadow: 0 15px 35px rgba(0, 11, 51, 0.05);
}

.contact-custom-input {
    background-color: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    color: #000B33 !important;
    padding: 12px 16px !important;
    font-size: 0.92rem;
}

.input-group-text {
    border-radius: 12px 0 0 12px !important;
}

.contact-custom-input:not(textarea) {
    border-radius: 0 12px 12px 0 !important;
}

.contact-custom-input::placeholder {
    color: #94A3B8 !important;
}

.contact-custom-input:focus {
    background-color: #FFFFFF !important;
    border-color: #F27915 !important;
    box-shadow: 0 0 15px rgba(242, 121, 21, 0.2) !important;
    outline: none !important;
}

.contact-custom-input option {
    background-color: #FFFFFF !important;
    color: #000B33 !important;
}

/* CTA Button */
.btn-agency-glow {
    background: linear-gradient(135deg, #F27915 0%, #E06300 100%);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 0 25px rgba(242, 121, 21, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border: none;
}

.btn-agency-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(242, 121, 21, 0.65);
}

.fs-xs {
    font-size: 0.65rem;
}

/* Mobile Responsiveness */
@media (max-width: 991.98px) {
    .hero-contact-title {
        font-size: clamp(26px, 5vw, 34px) !important;
    }
    .contact-form-card {
        padding: 24px !important;
    }
}