/* Page Header */
.page-header {
    background: linear-gradient(rgba(20, 20, 35, 0.8), rgba(188, 24, 24, 0.8)), url('photos/contact-header.jpg') center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 0;
}

    .page-header h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .page-header p {
        font-size: 1.3rem;
        opacity: 0.9;
    }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Contact Content */
.contact-content {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Info */
.contact-info {
    background: rgba(255, 255, 255, 0.7);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(20, 20, 35, 0.1);
}

    .contact-info h2 {
        color: #141423;
        font-size: 2.2rem;
        margin-bottom: 2rem;
        position: relative;
    }

        .contact-info h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(45deg, #bc1818, #141423);
            border-radius: 2px;
        }

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(20, 20, 35, 0.05);
    transition: all 0.3s ease;
}

    .contact-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(20, 20, 35, 0.1);
    }

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #bc1818, #141423);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #141423;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details p {
    color: rgba(20, 20, 35, 0.7);
    margin: 0;
    line-height: 1.6;
}

.contact-details a {
    color: #bc1818;
    text-decoration: none;
    font-weight: 500;
}

    .contact-details a:hover {
        text-decoration: underline;
    }

/* Contact Form */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(20, 20, 35, 0.1);
}

    .contact-form h2 {
        color: #141423;
        font-size: 2.2rem;
        margin-bottom: 2rem;
        position: relative;
    }

        .contact-form h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(45deg, #bc1818, #141423);
            border-radius: 2px;
        }

.form-group {
    margin-bottom: 1.5rem;
}

    .form-group label {
        display: block;
        color: #141423;
        font-weight: 500;
        margin-bottom: 0.5rem;
    }

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.7);
    box-sizing: border-box;
}

    .form-control:focus {
        outline: none;
        border-color: #bc1818;
        background: white;
        box-shadow: 0 0 0 3px rgba(188, 24, 24, 0.1);
    }

    .form-control textarea {
        min-height: 120px;
        resize: vertical;
    }

.btn-submit {
    background: linear-gradient(45deg, #bc1818, #141423);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .btn-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(188, 24, 24, 0.3);
    }

    .btn-submit::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }

    .btn-submit:hover::before {
        left: 100%;
    }

/* Map Section */
.map-section {
    background: rgba(255, 255, 255, 0.7);
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-title h2 {
        font-size: 2.5rem;
        color: #141423;
        margin-bottom: 1rem;
        position: relative;
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #bc1818, #141423);
            border-radius: 2px;
        }

.map-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(20, 20, 35, 0.1);
    height: 450px;
    position: relative;
}

.map-address {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 35, 0.85);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

.map-placeholder {
    height: 100%;
    background: linear-gradient(135deg, #141423 0%, #bc1818 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-align: center;
}

/* Working Hours */
.working-hours {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(20, 20, 35, 0.1);
    margin-top: 2rem;
}

    .working-hours h3 {
        color: #141423;
        margin-bottom: 1.5rem;
        font-size: 1.3rem;
    }

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .hours-list li {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(20, 20, 35, 0.08);
        color: rgba(20, 20, 35, 0.7);
    }

        .hours-list li:last-child {
            border-bottom: none;
        }

        .hours-list li.today {
            color: #bc1818;
            font-weight: 600;
        }

/* Social Section */
.social-section {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .social-section h3 {
        color: #141423;
        margin-bottom: 1.5rem;
    }

.social-links {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.5);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(20, 20, 35, 0.1);
}

.faq-question {
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

    .faq-question:hover {
        background: rgba(255, 255, 255, 0.5);
    }

    .faq-question h3 {
        color: #141423;
        margin: 0;
        font-size: 1.1rem;
        padding-right: 2rem;
    }

    .faq-question .toggle-icon {
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
        color: #bc1818;
    }

    .faq-question.active .toggle-icon {
        transform: translateY(-50%) rotate(180deg);
    }

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .faq-answer.active {
        padding: 1.5rem;
        max-height: 200px;
    }

    .faq-answer p {
        color: rgba(20, 20, 35, 0.7);
        line-height: 1.6;
        margin: 0;
    }

/* Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

    .fade-in-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        margin-top: 0;
    }

        .page-header h1 {
            font-size: 2.5rem;
        }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info,
    .contact-form {
        padding: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .map-container {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .page-header {
        margin-top: 0;
        height: 40vh;
    }

        .page-header h1 {
            font-size: 2rem;
        }

        .page-header p {
            font-size: 1.1rem;
        }

    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }

        .contact-info h2,
        .contact-form h2 {
            font-size: 1.8rem;
        }

    .map-container {
        height: 300px;
    }
}
