/* Contact Page - Professional Restyle */
.contact-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 70px;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    color: #f4e4a6;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
}

/* Contact Main Section */
.contact-main {
    padding: 4rem 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Information */
.contact-info {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.contact-header {
    margin-bottom: 2rem;
    text-align: left;
}

.contact-header .section-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #1a365d;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.contact-subtitle {
    color: #6c757d;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1a365d;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: #1a365d;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.method-content {
    flex: 1;
}

.method-title {
    font-size: 1.1rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.method-detail {
    color: #1a365d;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

.method-description {
    color: #495057;
    font-size: 0.95rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    line-height: 1.4;
}

/* Social Links */
.social-links-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: white;
    border-radius: 6px;
    color: #495057;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #dee2e6;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
}

.social-link-contact:hover {
    background: #1a365d;
    color: white;
    border-color: #1a365d;
}


/* Contact Form */
.contact-form-section {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.form-header {
    margin-bottom: 2rem;
    text-align: left;
}

.form-header .section-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #1a365d;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.form-subtitle {
    color: #6c757d;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.875rem 1rem;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    font-family: 'Open Sans', sans-serif;
    background: white;
    color: #495057;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #1a365d;
    box-shadow: 0 0 0 2px rgba(26, 54, 93, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236c757d'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-input {
    width: 18px;
    height: 18px;
    border: 2px solid #ced4da;
    border-radius: 4px;
    cursor: pointer;
}

.checkbox-label {
    color: #495057;
    font-size: 0.9rem;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
}

.form-submit {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: 'Montserrat', sans-serif;
    background: #1a365d;
    color: white;
}

.form-submit:hover {
    background: #2d4a7c;
}

/* Map Section */
.map-section {
    padding: 3rem 0;
    background: #f8f9fa;
    text-align: center;
}

.map-section .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a365d;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.map-placeholder {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.map-image i {
    font-size: 3rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.map-image p {
    font-size: 1.1rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.map-image small {
    color: #6c757d;
    font-family: 'Open Sans', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info,
    .contact-form-section {
        padding: 2rem 1.5rem;
    }
    
    .social-links-contact {
        grid-template-columns: 1fr;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-contact {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 6rem 0 3rem;
    }
    
    .contact-hero-title {
        font-size: 1.8rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .method-icon {
        align-self: center;
    }
}