/* Contact Page Styles */

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-form-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.form-title {
    color: #667eea;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-form .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-check-input:checked {
    background-color: #667eea;
    border-color: #667eea;
}

.contact-info-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    height: 100%;
}

.info-title {
    color: #667eea;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-icon i {
    color: white;
    font-size: 1.2rem;
}

.info-content h5 {
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.info-content p {
    margin-bottom: 0;
    color: #6c757d;
    line-height: 1.5;
}

.info-link {
    color: #667eea;
    text-decoration: none;
}

.info-link:hover {
    color: #5a67d8;
    text-decoration: underline;
}

.quick-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.response-info {
    margin-top: 2rem;
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-address {
    margin-top: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    background: #f8f9fa;
    border: none;
    font-weight: 500;
    color: #333;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: #667eea;
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 1.5rem;
    background: white;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.success-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
}

.success-icon i {
    font-size: 4rem;
    color: #28a745;
}

.thank-you-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h5 {
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon i {
    font-size: 1.5rem;
    color: #ffd700;
}

.step-item h6 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-item p {
    margin-bottom: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.contact-options {
    margin: 3rem 0;
}

.contact-options h5 {
    margin-bottom: 2rem;
}

.quick-contact-buttons {
    margin-top: 1.5rem;
}

.contact-info-section {
    padding: 60px 0;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
}

.contact-info-card .info-icon {
    margin: 0 auto 1rem;
}

.contact-info-card h6 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info-card p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .thank-you-title {
        font-size: 2.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-item {
        padding: 1.5rem;
    }
    
    .quick-contact-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .quick-contact-buttons .btn {
        margin: 0;
    }
}
