/* style/contact.css */
.page-contact {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-contact__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-contact__hero {
    background: linear-gradient(135deg, #FFD700 0%, #8B0000 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-contact__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-contact__hero-title,
.page-contact__hero-description,
.page-contact__button {
    position: relative;
    z-index: 2;
}

.page-contact__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__section-title {
    font-size: 2.5em;
    color: #8B0000;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 10px;
}

.page-contact__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-contact__methods {
    padding: 80px 0;
    background-color: #fff;
}

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

.page-contact__method-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #FFD700;
}

.page-contact__method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-contact__method-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-contact__card-title {
    font-size: 1.8em;
    color: #8B0000;
    margin-bottom: 15px;
}

.page-contact__card-description {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
}

.page-contact__card-info {
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
    margin-top: 15px;
}

.page-contact__social-links {
    margin-top: 20px;
}

.page-contact__social-link {
    display: inline-block;
    background-color: #FFD700;
    color: #8B0000;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 0 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__social-link:hover {
    background-color: #8B0000;
    color: #FFD700;
}

.page-contact__faq {
    padding: 80px 0;
    background-color: #f0f0f0;
}

.page-contact__faq-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-contact__faq-question {
    font-size: 1.3em;
    color: #8B0000;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-contact__faq-question::after {
    content: '+';
    font-size: 1.5em;
    margin-left: 10px;
    color: #FFD700;
}

.page-contact__faq-item.active .page-contact__faq-question::after {
    content: '-';
}

.page-contact__faq-answer {
    font-size: 1em;
    color: #666;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.page-contact__faq-item.active .page-contact__faq-answer {
    max-height: 200px; /* Adjust as needed */
    margin-top: 15px;
}

.page-contact__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-contact__button--primary {
    background-color: #FFD700;
    color: #8B0000;
}

.page-contact__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-contact__button--secondary {
    background-color: #8B0000;
    color: #FFD700;
}

.page-contact__button--secondary:hover {
    background-color: #6a0000;
    transform: translateY(-2px);
}

.page-contact__button--inline {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 0.95em;
    background-color: #FFD700;
    color: #8B0000;
}

.page-contact__button--inline:hover {
    background-color: #e6c200;
}

.page-contact__why-contact {
    padding: 80px 0;
    background-color: #fff;
}

.page-contact__list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
}

.page-contact__list li {
    background-color: #f9f9f9;
    border-left: 5px solid #FFD700;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 1.1em;
    color: #444;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-contact__list li strong {
    color: #8B0000;
}

.page-contact__cta {
    background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-contact__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__cta-buttons .page-contact__button {
    margin: 0 10px;
}

.page-contact__address-info {
    padding: 80px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.page-contact__address,
.page-contact__phone,
.page-contact__hours {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 10px;
}

.page-contact__map-placeholder {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__map-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-contact__hero-title {
        font-size: 2.5em;
    }

    .page-contact__hero-description {
        font-size: 1em;
    }

    .page-contact__section-title {
        font-size: 2em;
    }

    .page-contact__grid {
        grid-template-columns: 1fr;
    }

    .page-contact__method-card {
        padding: 25px;
    }

    .page-contact__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-contact__cta-buttons .page-contact__button {
        display: block;
        margin: 15px auto;
    }
}

@media (max-width: 480px) {
    .page-contact__hero-title {
        font-size: 2em;
    }

    .page-contact__hero-description {
        font-size: 0.9em;
    }

    .page-contact__section-title {
        font-size: 1.8em;
    }

    .page-contact__method-icon {
        width: 60px;
        height: 60px;
    }

    .page-contact__card-title {
        font-size: 1.5em;
    }

    .page-contact__social-link {
        padding: 8px 15px;
        font-size: 0.9em;
    }

    .page-contact__faq-question {
        font-size: 1.1em;
    }

    .page-contact__list li {
        font-size: 1em;
        padding: 15px;
    }
    .page-contact__map-image {
        height: 300px;
    }
}