/* style/contact.css */
.page-contact {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light grey for text on dark background */
    background-color: #1A202C; /* Main dark background */
}

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

.page-contact__hero {
    background: linear-gradient(135deg, #1A202C, #2D3748);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-contact__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: page-contact__pulse 15s infinite ease-in-out;
    z-index: 0;
}

@keyframes page-contact__pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

.page-contact__hero > div {
    position: relative;
    z-index: 1;
}

.page-contact__title {
    font-size: 3.5em;
    color: #FFD700; /* Accent gold for main titles */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact__subtitle {
    font-size: 1.2em;
    color: #C0C0C0;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-contact__btn-primary {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1A202C; /* Dark text on gold */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-contact__btn-primary:hover {
    background-color: #E6C200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-contact__info-section {
    padding: 60px 0;
    background-color: #2D3748; /* Slightly lighter dark background */
}

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

.page-contact__info-card {
    background-color: #1A202C; /* Main dark background for cards */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-contact__info-card:hover {
    transform: translateY(-5px);
}

.page-contact__info-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow for icons */
}

.page-contact__info-heading {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-contact__info-description {
    font-size: 1em;
    color: #C0C0C0;
    margin-bottom: 25px;
}

.page-contact__btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #FFD700; /* Gold text for secondary button */
    padding: 10px 20px;
    border: 2px solid #FFD700;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__btn-secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
}

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

.page-contact__social-icon-link {
    display: inline-block;
    transition: transform 0.2s ease;
}

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

.page-contact__social-icon {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.7));
}

.page-contact__faq-section {
    padding: 60px 0;
    background-color: #1A202C;
}

.page-contact__faq-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-contact__faq-intro {
    font-size: 1.1em;
    color: #C0C0C0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.page-contact__faq-list {
    display: grid;
    gap: 25px;
}

.page-contact__faq-item {
    background-color: #2D3748;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

.page-contact__faq-answer {
    font-size: 1em;
    color: #C0C0C0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
    padding-top: 0;
}

.page-contact__faq-answer.open {
    max-height: 500px; /* Adjust based on expected content length */
    opacity: 1;
    padding-top: 15px;
}

.page-contact__cta-section {
    background-color: #2D3748;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-contact__cta-image {
    width: 100%;
    max-width: 400px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-contact__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-contact__cta-description {
    font-size: 1.1em;
    color: #C0C0C0;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-contact__btn-large {
    padding: 18px 40px;
    font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-contact__title {
        font-size: 2.5em;
    }
    .page-contact__subtitle,
    .page-contact__info-description,
    .page-contact__faq-intro,
    .page-contact__cta-description {
        font-size: 1em;
    }
    .page-contact__info-grid {
        grid-template-columns: 1fr;
    }
    .page-contact__faq-title,
    .page-contact__cta-title {
        font-size: 2em;
    }
    .page-contact__info-heading {
        font-size: 1.5em;
    }
    .page-contact__faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-contact__hero,
    .page-contact__info-section,
    .page-contact__faq-section,
    .page-contact__cta-section {
        padding: 40px 0;
    }
    .page-contact__title {
        font-size: 2em;
    }
    .page-contact__btn-primary,
    .page-contact__btn-secondary {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-contact__btn-large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-contact__info-icon {
        width: 50px;
        height: 50px;
    }
    .page-contact__social-icon {
        width: 35px;
        height: 35px;
    }
}