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

.page-contact__hero {
    background: linear-gradient(135deg, #FFD700, #8B0000);
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-contact__hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-contact__title {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-contact__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #FFF;
    font-weight: 300;
}

.page-contact__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    overflow: hidden;
}

.page-contact__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.page-contact__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #8B0000; /* Dark Red */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
}

.page-contact__cta-button:hover {
    background-color: #b39700; /* Darker Gold */
    color: #FFFFFF;
    transform: translateY(-3px);
}

.page-contact__details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f8f8f8;
}

.page-contact__detail-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.page-contact__detail-item:hover {
    transform: translateY(-5px);
}

.page-contact__detail-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

.page-contact__detail-title {
    font-size: 1.8em;
    color: #8B0000; /* Dark Red */
    margin-bottom: 15px;
}

.page-contact__detail-text {
    color: #555;
    margin-bottom: 20px;
}

.page-contact__detail-link {
    display: inline-block;
    color: #FFD700; /* Gold */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease;
    padding: 8px 15px;
    background-color: #8B0000; /* Dark Red */
    border-radius: 5px;
}

.page-contact__detail-link:hover {
    color: #FFFFFF;
    background-color: #b30000; /* Slightly darker red */
}

.page-contact__social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.page-contact__social-link img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.page-contact__social-link:hover img {
    transform: scale(1.1);
}

.page-contact__form-section {
    background-color: #FFFFFF;
    padding: 60px 20px;
    max-width: 800px;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.page-contact__form-title {
    font-size: 2.5em;
    color: #8B0000; /* Dark Red */
    text-align: center;
    margin-bottom: 20px;
}

.page-contact__form-description {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1em;
}

.page-contact__form-group {
    margin-bottom: 25px;
}

.page-contact__form-label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    font-size: 1.05em;
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 20px);
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    color: #333;
    transition: border-color 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    border-color: #FFD700; /* Gold */
    outline: none;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.page-contact__form-textarea {
    resize: vertical;
}

.page-contact__form-submit-button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #8B0000; /* Dark Red */
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__form-submit-button:hover {
    background-color: #b30000; /* Darker Red */
    transform: translateY(-2px);
}

.page-contact__faq {
    background-color: #f8f8f8;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 40px auto;
    border-radius: 10px;
}

.page-contact__faq-title {
    font-size: 2.5em;
    color: #8B0000; /* Dark Red */
    text-align: center;
    margin-bottom: 40px;
}

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

.page-contact__faq-question {
    font-size: 1.4em;
    color: #FFD700; /* Gold */
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #8B0000;
    padding: 15px;
    border-radius: 5px;
    color: #FFFFFF;
    transition: background-color 0.3s ease;
}

.page-contact__faq-question:hover {
    background-color: #b30000;
}

.page-contact__faq-question::after {
    content: '+';
    font-size: 1.2em;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.page-contact__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-contact__faq-answer {
    font-size: 1.1em;
    color: #444;
    padding-top: 15px;
    border-top: 1px solid #eee;
    margin-top: 15px;
    display: none; /* Hidden by default */
}

.page-contact__faq-answer.active {
    display: block;
}

/* Highlight color for keywords */
.page-contact .highlight {
    color: #8B0000;
    font-weight: bold;
}

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

    .page-contact__subtitle {
        font-size: 1.1em;
    }

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

    .page-contact__form-section {
        margin: 20px auto;
        padding: 40px 15px;
    }

    .page-contact__form-title,
    .page-contact__faq-title {
        font-size: 2em;
    }

    .page-contact__faq-question {
        font-size: 1.2em;
        padding: 12px;
    }

    .page-contact__faq-answer {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-contact__hero {
        padding: 60px 15px;
    }

    .page-contact__title {
        font-size: 2em;
    }

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

    .page-contact__details {
        padding: 40px 15px;
    }

    .page-contact__detail-item {
        padding: 25px;
    }

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

    .page-contact__form-submit-button {
        font-size: 1.1em;
        padding: 12px;
    }
}