/* Contact Page Specific Styles */

.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 20px;
    opacity: 0.9;
}

/* Contact Info */
.contact-info {
    padding: 40px 0;
    background: white;
}

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

.contact-card {
    text-align: center;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #007bff;
}

.contact-card i {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.contact-card p {
    color: #555;
    margin: 5px 0;
}

.contact-card span {
    display: block;
    margin-top: 15px;
    color: #007bff;
    font-weight: 500;
    font-size: 14px;
}

.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.whatsapp-link:hover {
    color: #128C7E;
    text-decoration: underline;
}

/* Contact Main */
.contact-main {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-section h2, .contact-map h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
    line-height: 1.5;
}

.btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    margin-top: 10px;
}

/* Map Section */
.contact-map {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.map-container {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.business-hours {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.business-hours h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.business-hours ul {
    list-style: none;
}

.business-hours li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.business-hours li:last-child {
    border-bottom: none;
}

.business-hours span:first-child {
    font-weight: 500;
    color: #333;
}

.business-hours span:last-child {
    color: #007bff;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    font-size: 18px;
    margin: 0;
    color: #333;
    flex: 1;
}

.faq-question i {
    color: #007bff;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
}

.newsletter-form .btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 36px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input,
    .newsletter-form .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-form-section h2, .contact-map h2 {
        font-size: 28px;
    }
    
    .contact-card h3 {
        font-size: 20px;
    }
    
    .contact-card p {
        font-size: 16px;
    }
    
    .business-hours li {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }
    
    .newsletter-content h2 {
        font-size: 28px;
    }
    
    .newsletter-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        height: 250px;
    }
    
    .contact-hero h1 {
        font-size: 28px;
    }
    
    .contact-hero p {
        font-size: 16px;
    }
    
    .contact-info, .contact-main, .faq {
        padding: 40px 0;
    }
    
    .contact-form, .contact-map {
        padding: 20px;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px;
    }
    
    .contact-form-section h2, .contact-map h2 {
        font-size: 24px;
    }
    
    .newsletter-content h2 {
        font-size: 24px;
    }
    
    .newsletter-content p {
        font-size: 14px;
    }
    
    .newsletter-form input {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .newsletter-form .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .btn-primary {
        padding: 12px;
        font-size: 16px;
    }
}