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

/* Hero Section */
.page-contact__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #2D3E50, #F39C12);
    padding: 80px 20px;
    color: #ffffff;
}

.page-contact__hero-content {
    max-width: 800px;
    margin-bottom: 40px;
}

.page-contact__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-contact__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-contact__hero-button,
.page-contact__method-button,
.page-contact__cta-button {
    display: inline-block;
    background-color: #F39C12;
    color: #2D3E50;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-contact__hero-button:hover,
.page-contact__method-button:hover,
.page-contact__cta-button:hover {
    background-color: #e08b0f;
}

.page-contact__hero-image {
    max-width: 600px;
    margin-top: 20px;
}

.page-contact__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Info Section */
.page-contact__info-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-contact__section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #2D3E50;
}

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

.page-contact__method-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-contact__method-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(18%) sepia(21%) saturate(1067%) hue-rotate(185deg) brightness(96%) contrast(89%);
}

.page-contact__method-title {
    font-size: 1.8em;
    color: #2D3E50;
    margin-bottom: 15px;
}

.page-contact__method-description {
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-contact__method-detail {
    font-weight: bold;
    color: #F39C12;
    margin-bottom: 20px;
}

/* FAQ Section */
.page-contact__faq-section {
    background-color: #f8f8f8;
    padding: 60px 20px;
    text-align: center;
}

.page-contact__section-subtitle {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 40px;
}

.page-contact__faq-list {
    max-width: 900px;
    margin: 0 auto 50px auto;
    text-align: left;
}

.page-contact__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.page-contact__faq-question {
    padding: 20px;
    font-size: 1.1em;
    font-weight: bold;
    color: #2D3E50;
    cursor: pointer;
    position: relative;
    list-style: none;
}

.page-contact__faq-question::marker,
.page-contact__faq-question::-webkit-details-marker {
    display: none;
}

.page-contact__faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #F39C12;
    transition: transform 0.3s ease;
}

.page-contact__faq-item[open] .page-contact__faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-contact__faq-answer {
    padding: 0 20px 20px 20px;
    color: #555;
    font-size: 1em;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.page-contact__cta {
    background-color: #2D3E50;
    color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
}

.page-contact__cta p {
    font-size: 1.3em;
    margin-bottom: 25px;
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-contact__hero {
        flex-direction: column;
    }
    .page-contact__hero-title {
        font-size: 2.5em;
    }
    .page-contact__hero-description {
        font-size: 1em;
    }
    .page-contact__section-title {
        font-size: 2em;
    }
    .page-contact__contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-contact__hero {
        padding: 50px 15px;
    }
    .page-contact__hero-title {
        font-size: 2em;
    }
    .page-contact__hero-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }
    .page-contact__method-card {
        padding: 20px;
    }
    .page-contact__faq-question {
        font-size: 1em;
        padding: 15px;
    }
    .page-contact__faq-question::after {
        right: 15px;
    }
    .page-contact__faq-answer {
        padding: 0 15px 15px 15px;
    }
    .page-contact__cta {
        padding: 30px 20px;
    }
    .page-contact__cta p {
        font-size: 1.1em;
    }
}