/* style/contact.css */
.page-contact {
    font-family: 'Arial', sans-serif;
    color: #000080; /* Navy blue for primary text */
    background-color: #f8f8f8; /* Light background */
}

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

.page-contact-hero {
    background: linear-gradient(135deg, #FFD700, #000080);
    color: #FFFFFF; /* White text on gradient background */
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,gold,navy_blue,pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 1;
}

.page-contact-hero > * {
    position: relative;
    z-index: 2;
}

.page-contact-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-contact-subtitle {
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #e0e0e0;
}

.page-contact-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1em;
    cursor: pointer;
}

.page-contact-btn-hero {
    background-color: #FFD700; /* Gold button on hero */
    color: #000080; /* Navy blue text on gold */
    border: 2px solid #FFD700;
}

.page-contact-btn-hero:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-contact-heading {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 50px;
    color: #000080; /* Navy blue for headings */
    position: relative;
    padding-bottom: 10px;
}

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

.page-contact-methods {
    padding: 60px 0;
    background-color: #f0f0f0;
}

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

.page-contact-method-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.page-contact-card-title {
    font-size: 1.8em;
    color: #000080;
    margin-bottom: 15px;
}

.page-contact-card-text {
    font-size: 1em;
    line-height: 1.5;
    color: #333333;
    margin-bottom: 20px;
}

.page-contact-link {
    color: #FFD700; /* Gold for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-contact-link:hover {
    color: #000080;
    text-decoration: underline;
}

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

.page-contact-social-icon {
    display: inline-block;
    margin: 0 10px;
}

.page-contact-social-icon img {
    width: 30px;
    height: 30px;
    filter: grayscale(100%) brightness(0.5) sepia(1) hue-rotate(200deg) saturate(500%); /* Make icons navy blue */
    transition: filter 0.3s ease;
}

.page-contact-social-icon:hover img {
    filter: grayscale(0%) brightness(1) sepia(0) hue-rotate(0deg) saturate(100%); /* Revert to color on hover */
}

.page-contact-highlight {
    color: #FFD700; /* Gold for highlights */
    font-weight: bold;
}

.page-contact-faq-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-contact-faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.page-contact-faq-question {
    font-size: 1.2em;
    color: #000080;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    margin: 0;
}

.page-contact-faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

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

.page-contact-faq-answer {
    font-size: 1em;
    color: #333333;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding: 0 10px;
}

.page-contact-faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding: 10px;
}

.page-contact-faq-answer p {
    margin-bottom: 15px;
}

.page-contact-btn-small {
    background-color: #000080; /* Navy blue button */
    color: #FFD700; /* Gold text */
    padding: 8px 20px;
    font-size: 0.9em;
    border: 2px solid #000080;
}

.page-contact-btn-small:hover {
    background-color: #FFD700;
    color: #000080;
    border-color: #FFD700;
}

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

    .page-contact-subtitle {
        font-size: 1em;
    }

    .page-contact-heading {
        font-size: 2em;
    }

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

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

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

    .page-contact-subtitle {
        font-size: 0.9em;
    }

    .page-contact-btn {
        padding: 10px 25px;
        font-size: 0.9em;
    }

    .page-contact-method-card {
        padding: 20px;
    }

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

    .page-contact-icon {
        width: 50px;
        height: 50px;
    }

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