﻿.contact-page {
    background: #f8f9fa;
    padding: 60px 0;
    min-height: 80vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

    .contact-header h1 {
        font-size: 3rem;
        font-weight: bold;
        color: #333;
        margin-bottom: 15px;
    }

    .contact-header p {
        font-size: 1.2rem;
        color: #666;
    }

.contact-info-cards {
    margin-bottom: 50px;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

    .info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #D62300 0%, #F5A623 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.info-card h4 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.info-card p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 10px;
}

.info-card a {
    color: #D62300;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

    .info-card a:hover {
        color: #A01800;
    }

.contact-form-section {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 50px;
}

.form-section-title {
    text-align: center;
    margin-bottom: 40px;
}

    .form-section-title h2 {
        font-size: 2rem;
        font-weight: bold;
        color: #333;
        margin-bottom: 10px;
    }

    .form-section-title p {
        color: #666;
    }

.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.form-control, .form-select {
    height: 50px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 0 20px;
    font-size: 1rem;
    transition: all 0.3s;
}

textarea.form-control {
    height: auto;
    min-height: 150px;
    padding: 15px 20px;
}

.form-control:focus, .form-select:focus {
    border-color: #D62300;
    box-shadow: 0 0 0 0.2rem rgba(214, 35, 0, 0.1);
}

.btn-submit {
    width: 100%;
    height: 55px;
    background: linear-gradient(135deg, #D62300 0%, #F5A623 100%);
    border: none;
    border-radius: 15px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    margin-top: 20px;
}

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(214, 35, 0, 0.3);
    }

.map-section {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 400px;
}

    .map-section iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

.faq-section {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.faq-title {
    text-align: center;
    margin-bottom: 40px;
}

    .faq-title h2 {
        font-size: 2rem;
        font-weight: bold;
        color: #333;
    }

.faq-item {
    margin-bottom: 20px;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

    .faq-question:hover {
        background: #fafafa;
    }

    .faq-question h5 {
        margin: 0;
        font-weight: 600;
        color: #333;
        flex: 1;
    }

.faq-icon {
    color: #D62300;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    background: #fafafa;
}

    .faq-answer.show {
        padding: 20px 25px;
        max-height: 500px;
    }

    .faq-answer p {
        color: #666;
        line-height: 1.6;
        margin: 0;
    }

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.3rem;
}

    .social-link:hover {
        background: linear-gradient(135deg, #D62300 0%, #F5A623 100%);
        color: white;
        transform: translateY(-3px);
    }

@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-form-section {
        padding: 30px 20px;
    }

    .faq-section {
        padding: 30px 20px;
    }
}
