/* ===== Contact Page Styles - FIXED VERSION ===== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 3px solid #FFD700;
}

.page-header h1 {
    color: #FFD700;
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-header p {
    color: #e0e0e0;
    font-size: 18px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2 {
    color: #1a1a1a;
    margin-bottom: 12px;
    font-size: 28px;
    font-weight: 700;
}

.contact-form-wrapper>p {
    color: #333;
    margin-bottom: 32px;
    font-size: 16px;
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form label {
    display: block;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    color: #1a1a1a;
    background: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 12px;
    color: white;
}

.contact-info-wrapper h2 {
    color: #FFD700;
    margin-bottom: 32px;
    font-size: 28px;
    font-weight: 700;
}

.contact-info-list {
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 24px;
    color: #FFD700;
}

.contact-info-content h4 {
    color: #FFD700;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
}

.contact-info-content p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 15px;
}

.contact-info-content a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: #FFD700;
}

/* Working Hours */
.contact-hours {
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 32px;
}

.contact-hours h4 {
    color: #FFD700;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 700;
}

.contact-hours ul {
    list-style: none;
}

.contact-hours li {
    padding: 8px 0;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 15px;
}

.contact-hours li:last-child {
    border-bottom: none;
}

.contact-hours strong {
    color: white;
    margin-right: 8px;
}

.contact-hours .emergency {
    color: #FFD700;
    font-weight: 600;
    margin-top: 8px;
}

/* Social Links */
.contact-social h4 {
    color: #FFD700;
    margin-bottom: 16px;
    font-size: 18px;
}

.contact-social .social-links {
    display: flex;
    gap: 12px;
}

.contact-social .social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-size: 20px;
    transition: all 0.3s ease;
}

.contact-social .social-links a:hover {
    background: #FFD700;
    color: #1a1a1a;
    transform: translateY(-3px);
}

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Map Section */
.map-section {
    padding: 0;
    background: #f8f9fa;
    margin-top: 0;
}

.map-container {
    width: 100%;
    height: 500px;
    background: #e9ecef;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-placeholder {
    background: #1a1a1a;
    border: 2px dashed rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 100px 20px;
    text-align: center;
    color: #999;
    margin: 40px auto;
    max-width: 1200px;
}

.map-placeholder i {
    font-size: 72px;
    margin-bottom: 24px;
    color: rgba(255, 215, 0, 0.5);
    display: block;
}

.map-placeholder p {
    font-size: 18px;
    color: #ccc;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 24px;
    }

    .map-container {
        height: 400px;
    }
}