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

.page-contact__hero {
    background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%);
    padding: 80px 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: center;
    color: #fff;
}

.page-contact__hero-content {
    max-width: 600px;
    text-align: left;
}

.page-contact__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

.page-contact__hero-title .highlight {
    color: #FFD700;
}

.page-contact__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.8;
}

.page-contact__hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-contact__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    font-size: 1em;
    text-align: center;
}

.page-contact__btn--primary {
    background-color: #FFD700;
    color: #8B0000;
    border: 2px solid #FFD700;
}

.page-contact__btn--primary:hover {
    background-color: #b39700;
    color: #fff;
    transform: translateY(-3px);
}

.page-contact__btn--secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.page-contact__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.page-contact__hero-image-wrapper {
    flex-shrink: 0;
}

.page-contact__hero-image {
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-contact__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    color: #FFD700;
    font-weight: bold;
}

.page-contact__section-title .highlight {
    color: #fff;
}

.page-contact__methods {
    padding: 60px 20px;
    background-color: #2a2a2a;
}

.page-contact__methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-contact__method-card {
    background-color: #333;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #444;
}

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

.page-contact__card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Allowed for glow, not color change */
}

.page-contact__card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-contact__card-description {
    font-size: 1em;
    color: #ccc;
    margin-bottom: 20px;
}

.page-contact__card-info {
    font-size: 1.1em;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-contact__btn--card {
    background-color: #8B0000;
    color: #fff;
    border: 2px solid #8B0000;
    padding: 10px 20px;
    font-size: 0.95em;
}

.page-contact__btn--card:hover {
    background-color: #b96666;
    border-color: #b96666;
}

.page-contact__form-section {
    padding: 60px 20px;
    background-color: #1a1a1a;
    text-align: center;
}

.page-contact__form-intro {
    font-size: 1.1em;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #2a2a2a;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #444;
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #555;
    border-radius: 8px;
    background-color: #333;
    color: #fff;
    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: #aaa;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    border-color: #FFD700;
    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 {
    background-color: #FFD700;
    color: #8B0000;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.page-contact__btn--submit:hover {
    background-color: #b39700;
    transform: translateY(-3px);
}

.page-contact__faq {
    padding: 60px 20px;
    background-color: #2a2a2a;
}

.page-contact__faq-intro {
    font-size: 1.1em;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

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

.page-contact__faq-item {
    background-color: #333;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #444;
}

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

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

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

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

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

.page-contact__btn--faq {
    background-color: #8B0000;
    color: #fff;
    border: 2px solid #8B0000;
    margin-top: 30px;
    padding: 12px 25px;
    font-size: 1.1em;
    display: block;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__btn--faq:hover {
    background-color: #b96666;
    border-color: #b96666;
}

.page-contact__social-media {
    padding: 60px 20px;
    background-color: #1a1a1a;
    text-align: center;
}

.page-contact__social-intro {
    font-size: 1.1em;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

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

.page-contact__social-link:hover {
    transform: translateY(-8px) scale(1.1);
}

.page-contact__social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Allowed for glow, not color change */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-contact__hero {
        padding: 60px 20px;
        flex-direction: column;
    }

    .page-contact__hero-content {
        text-align: center;
        max-width: 100%;
    }

    .page-contact__hero-title {
        font-size: 3em;
    }

    .page-contact__hero-image {
        max-width: 100%;
    }

    .page-contact__methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-contact__hero-title {
        font-size: 2.5em;
    }

    .page-contact__hero-description {
        font-size: 1.1em;
    }

    .page-contact__hero-buttons {
        flex-direction: column;
    }

    .page-contact__btn {
        width: 100%;
        padding: 12px 20px;
    }

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

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

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

    .page-contact__form {
        padding: 30px;
    }

    .page-contact__form-input,
    .page-contact__form-textarea {
        width: calc(100% - 20px);
    }

    .page-contact__faq-item {
        padding: 20px;
    }

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

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

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

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

    .page-contact__hero-description {
        font-size: 1em;
    }

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

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

    .page-contact__form {
        padding: 20px;
    }

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

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

    .page-contact__social-icons {
        gap: 20px;
    }

    .page-contact__social-icon {
        width: 45px;
        height: 45px;
    }
}