/* ========== CONTACT PAGE SPECIFIC STYLES ========== */

/* Contact Section */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #2d3436;
}

.contact-form > p {
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2d3436;
}

.form-group label .required {
    color: #ff6b6b;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255,107,107,0.1);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #ff4757;
    transform: translateY(-2px);
}

/* Contact Info Cards */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #2d3436;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.info-card a {
    color: #ff6b6b;
    text-decoration: none;
}

.info-card a:hover {
    text-decoration: underline;
}

.response-badge {
    display: inline-block;
    background: #d4edda;
    color: #155724;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-top: 10px;
}

/* Map Section */
.map-section {
    padding: 0 0 60px 0;
}

.map-container {
    background: #e0e0e0;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-address {
    text-align: center;
    margin-top: 15px;
    color: #666;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #2d3436;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.faq-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.faq-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.faq-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #2d3436;
}

.faq-card p {
    color: #666;
    line-height: 1.5;
}

/* Contact Page Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 25px;
    }
    .map-container {
        height: 300px;
    }
}