/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* ===== Page Hero ===== */
.page-hero {
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 106, 0, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero h1 {
    font-size: 3.5rem;
}

/* ===== Contact Info Items ===== */
.contact-info-item .contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 106, 0, 0.1);
    border-radius: var(--radius-md);
    color: var(--secondary);
    font-size: 1.2rem;
}

.contact-info-item h6 {
    font-size: 0.95rem;
}

/* ===== Contact Form ===== */
.contact-form-wrapper {
    border: 1px solid rgba(11, 23, 50, 0.06);
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
    border: 1px solid rgba(11, 23, 50, 0.1);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    background: var(--white);
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.15);
}

.contact-form-wrapper .form-label {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

/* ===== Opt-in Checkbox ===== */
.form-check-input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    border-radius: 4px;
    border: 2px solid rgba(11, 23, 50, 0.2);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.form-check-input[type="checkbox"]:checked {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.form-check-input[type="checkbox"]:focus {
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.15);
}

.form-check-label {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray);
}

/* ===== Contact Social Icons ===== */
.contact-social {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: rgba(11, 23, 50, 0.06);
    color: var(--primary);
    transition: all var(--transition-normal);
    font-size: 16px;
}

.contact-social:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== Google Map ===== */
.map-container {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    display: block;
}

/* ===== Form Success/Error Messages ===== */
#formMessage .alert {
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
}

#formMessage .alert-success {
    background: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

#formMessage .alert-danger {
    background: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding-top: 120px !important;
        padding-bottom: 50px !important;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem !important;
    }
    
    .map-container {
        height: 250px !important;
    }
    
    .map-container iframe {
        height: 250px !important;
    }
}