/*
 * DarkBlue Media - Contact Page Styles
 * Clean Modern Design with Orange Accent
 */

/* ========================================
   Page Header - Premium Banner
   ======================================== */
.page-header {
    background: linear-gradient(180deg, #081220 0%, #0a1628 20%, #1a3a5c 60%, #2a5a8c 100%);
    padding: 10rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b00, #ff8c00, #ff6b00);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.02)"/></svg>');
    background-size: 30px 30px;
}

.page-header h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
}

.page-header .lead {
    color: #999999;
    font-size: 1.2rem;
    position: relative;
}

/* ========================================
   Contact Form
   ======================================== */
.contact-form-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid #e5e5e5;
}

.contact-form-wrapper h2 {
    color: #000000;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.form-label {
    color: #000000;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #ff6b00;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ========================================
   Contact Info
   ======================================== */
.contact-info-wrapper h2 {
    color: #000000;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateX(5px);
    border-color: #ff6b00;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.25rem;
    color: #ffffff;
}

.contact-info-card h5 {
    color: #000000;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-card a,
.contact-info-card span {
    color: #666666;
    font-size: 0.95rem;
}

.contact-info-card a:hover {
    color: #ff6b00;
}

/* ========================================
   Social Links
   ======================================== */
.contact-social h5 {
    color: #000000;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.social-links-large {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 50px;
    height: 50px;
    background: #000000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #ff6b00;
    color: #ffffff;
    transform: translateY(-3px);
}

/* ========================================
   Map Section
   ======================================== */
.map-section {
    height: 350px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    color: #999999;
}

.map-content i {
    font-size: 3rem;
    color: #ff6b00;
    display: block;
    margin-bottom: 1rem;
}

.map-content span {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   CTA Section - Blends with Footer
   ======================================== */
.section-dark {
    background: linear-gradient(180deg, #0a1628 0%, #0d1e35 100%);
    color: #ffffff;
    padding: 4rem 0;
}

.cta-box {
    background: linear-gradient(135deg, #0a1628 0%, #1a3a5c 100%);
    border-radius: 16px;
    padding: 3rem;
}

.cta-box h2 {
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.cta-box p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 991.98px) {
    .page-header {
        padding: 8rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2.25rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .contact-info-wrapper {
        margin-top: 2rem;
    }

    .map-section {
        height: 250px;
    }
}