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

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

.page-contact__hero {
    background: linear-gradient(135deg, #FFD700, #8B0000);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-contact__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #fff;
    font-weight: bold;
}

.page-contact__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #eee;
}

.page-contact__btn-primary {
    display: inline-block;
    background-color: #FFD700;
    color: #8B0000;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-contact__methods {
    padding: 60px 0;
    text-align: center;
    background-color: #fff;
}

.page-contact__section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #8B0000;
    font-weight: bold;
}

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

.page-contact__card {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #eee;
}

.page-contact__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-contact__card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    color: #FFD700;
}

.page-contact__card-title {
    font-size: 1.8em;
    color: #8B0000;
    margin-bottom: 15px;
    font-weight: bold;
}

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

.page-contact__email, .page-contact__phone {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-contact__btn-secondary {
    display: inline-block;
    background-color: #8B0000;
    color: #FFD700;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: auto; /* Push button to bottom */
}

.page-contact__btn-secondary:hover {
    background-color: #a30000;
    transform: translateY(-2px);
}

.page-contact__form-section {
    padding: 60px 0;
    background-color: #f0f0f0;
    text-align: center;
}

.page-contact__form {
    max-width: 700px;
    margin: 40px auto 0;
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
}

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

.page-contact__form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.page-contact__form-group input[type="text"],
.page-contact__form-group input[type="email"],
.page-contact__form-group textarea {
    width: calc(100% - 20px);
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.page-contact__form-group input:focus,
.page-contact__form-group textarea:focus {
    border-color: #FFD700;
    outline: none;
}

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

.page-contact__form button[type="submit"] {
    width: 100%;
    padding: 15px;
    background-color: #FFD700;
    color: #8B0000;
    border: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__form button[type="submit"]:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-contact__social-media {
    padding: 60px 0;
    text-align: center;
    background-color: #fff;
}

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

.page-contact__social-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #8B0000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__social-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1); /* This filter is for converting social icons to white for contrast, it does not change the original image color but rather its luminosity for styling purposes. */
}

.page-contact__social-icon:hover {
    background-color: #FFD700;
    transform: translateY(-3px);
}

.page-contact__social-icon:hover img {
    filter: brightness(0) invert(0); /* Reset filter on hover for original color (if any) or specific hover color */
}

.highlight {
    color: #8B0000;
    font-weight: bold;
}

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

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

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

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

    .page-contact__form {
        padding: 30px;
    }
}

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

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

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

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

    .page-contact__btn-secondary {
        padding: 8px 20px;
        font-size: 0.9em;
    }

    .page-contact__social-links {
        flex-wrap: wrap;
    }
}