/* style/contact.css */

/* General styles for the contact page content */
.page-contact {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    line-height: 1.6;
    background-color: #0f1a2e; /* Slightly lighter dark blue background */
}

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

/* Hero Section */
.page-contact__hero {
    background: linear-gradient(135deg, #1A2B4C, #0f1a2e); /* Dark blue gradient */
    padding: 100px 0 80px;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-contact__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract,geometric,dark_pattern]'); /* Abstract background pattern */
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

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

.page-contact__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-contact__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1em;
}

.page-contact__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A2B4C; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-contact__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    color: #0f1a2e;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Section Titles */
.page-contact__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 50px;
    padding-top: 60px;
    position: relative;
}

.page-contact__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Contact Methods Section */
.page-contact__methods {
    background-color: #1A2B4C; /* Dark blue background */
    padding: 80px 0;
}

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

.page-contact__method-card {
    background-color: #0f1a2e; /* Slightly lighter dark blue */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

.page-contact__method-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold title */
    margin-bottom: 15px;
}

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

.page-contact__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 10px 25px;
    font-size: 0.95em;
}

.page-contact__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2B4C;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

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

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

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

/* Contact Form Section */
.page-contact__form-section {
    background-color: #0f1a2e; /* Dark blue background */
    padding: 80px 0;
}

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

.page-contact__form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #1A2B4C; /* Dark blue form background */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

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

.page-contact__form-label {
    display: block;
    font-size: 1.1em;
    color: #FFD700; /* Gold label */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 20px);
    padding: 15px;
    border: 1px solid #5f6b82; /* Lighter dark blue border */
    border-radius: 8px;
    background-color: #0f1a2e; /* Darker input background */
    color: #FFFFFF;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
    color: #888;
}

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

.page-contact__form-textarea {
    resize: vertical;
    min-height: 120px;
}

.page-contact__btn--submit {
    width: 100%;
    background-color: #FFD700;
    color: #1A2B4C;
    border: none;
    padding: 18px;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__btn--submit:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-contact__faq {
    background-color: #1A2B4C; /* Dark blue background */
    padding: 80px 0 100px;
}

.page-contact__faq-item {
    background-color: #0f1a2e;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.page-contact__faq-question {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

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

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

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

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

.page-contact__faq-answer a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-contact__faq-answer a:hover {
    text-decoration: underline;
}

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

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

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

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

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

    .page-contact__form {
        padding: 25px;
    }

    .page-contact__form-label {
        font-size: 1em;
    }

    .page-contact__form-input,
    .page-contact__form-textarea {
        padding: 12px;
    }

    .page-contact__btn--submit {
        padding: 15px;
        font-size: 1.1em;
    }
}

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

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

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

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

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

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

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

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