/* Contact Page Styles */

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.contact-info-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 12px;
}

.contact-info-main {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.contact-info-sub {
    font-size: 14px;
    color: #6b7280;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #f9fafb;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 24px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 8px;
}

.form-description {
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

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

.form-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 16px;
}

.form-note {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    margin-top: 8px;
}

/* Location Info */
.location-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.location-card,
.quick-contact-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.location-title {
    font-size: 24px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 8px;
}

.location-description {
    color: #6b7280;
    margin-bottom: 24px;
}

.map-placeholder {
    background: #f3f4f6;
    border-radius: 8px;
    padding: 64px 32px;
    text-align: center;
    margin-bottom: 24px;
    border: 2px dashed #d1d5db;
}

.map-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.map-placeholder p {
    color: #6b7280;
    margin-bottom: 8px;
}

.map-address {
    font-size: 14px;
    color: #9ca3af;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-detail h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.location-detail p {
    color: #6b7280;
    line-height: 1.6;
}

/* Quick Contact */
.quick-contact-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 20px;
}

.quick-contact-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quick-contact-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
    background: #f0f9ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-contact-label {
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 4px;
}

.quick-contact-value {
    color: #6b7280;
    font-size: 14px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: 18px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 16px;
}

.faq-answer {
    color: #6b7280;
    line-height: 1.6;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-card,
    .location-card,
    .quick-contact-card {
        padding: 24px;
    }
}