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

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

.page-contact__hero {
    background-color: #1A2A40; /* Main color */
    color: #FFFFFF; /* White text for contrast */
    padding: 80px 0;
    text-align: center;
}

.page-contact__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Auxiliary color for emphasis */
    font-weight: bold;
}

.page-contact__description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #E0E0E0; /* Light grey for body text on dark background */
}

.page-contact__hero-image-wrapper {
    margin-top: 40px;
}

.page-contact__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-contact__methods {
    padding: 60px 0;
    background-color: #F8F8F8; /* Light background for methods section */
    text-align: center;
}

.page-contact__subtitle {
    font-size: 2.5em;
    color: #1A2A40; /* Main color for subtitles on light background */
    margin-bottom: 40px;
    font-weight: bold;
}

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

.page-contact__method-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.page-contact__method-text {
    color: #555;
    margin-bottom: 25px;
}

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

.page-contact__btn--primary {
    background-color: #FFD700; /* Auxiliary color */
    color: #1A2A40; /* Main color for text on auxiliary background */
    border: none;
}

.page-contact__btn--primary:hover {
    background-color: #E6C200; /* Slightly darker yellow on hover */
}

.page-contact__form-section {
    padding: 60px 0;
    background-color: #EFEFEF; /* Slightly darker light background */
}

.page-contact__form {
    max-width: 700px;
    margin: 40px auto 0;
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

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

.page-contact__form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #1A2A40; /* Main color */
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #CCC;
    border-radius: 5px;
    font-size: 1em;
    color: #333;
    transition: border-color 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    border-color: #FFD700; /* Auxiliary color on focus */
    outline: none;
}

.page-contact__form-textarea {
    resize: vertical;
}

.page-contact__btn--submit {
    width: 100%;
    background-color: #1A2A40; /* Main color for submit button */
    color: #FFFFFF; /* White text on dark button */
    border: none;
    padding: 15px;
    font-size: 1.1em;
    cursor: pointer;
}

.page-contact__btn--submit:hover {
    background-color: #0F1A2B; /* Darker main color on hover */
}

.page-contact__cta-section {
    background-color: #1A2A40; /* Main color for CTA section */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.page-contact__cta-section .page-contact__subtitle {
    color: #FFD700; /* Auxiliary color for subtitle */
}

.page-contact__cta-section .page-contact__description {
    color: #E0E0E0;
    margin-bottom: 40px;
}

.page-contact__btn--cta {
    background-color: #FFD700; /* Auxiliary color for CTA button */
    color: #1A2A40; /* Main color for text on auxiliary button */
    padding: 15px 35px;
    font-size: 1.2em;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.page-contact__btn--cta:hover {
    background-color: #E6C200; /* Darker yellow on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-contact__title {
        font-size: 2.5em;
    }
    .page-contact__subtitle {
        font-size: 2em;
    }
    .page-contact__description {
        font-size: 1em;
    }
    .page-contact__grid {
        grid-template-columns: 1fr;
    }
    .page-contact__form {
        padding: 30px;
    }
    .page-contact__btn--cta {
        font-size: 1.1em;
        padding: 12px 30px;
    }
}

@media (max-width: 480px) {
    .page-contact__hero,
    .page-contact__methods,
    .page-contact__form-section,
    .page-contact__cta-section {
        padding: 40px 0;
    }
    .page-contact__title {
        font-size: 2em;
    }
    .page-contact__subtitle {
        font-size: 1.8em;
    }
    .page-contact__form {
        padding: 20px;
    }
    .page-contact__btn {
        width: 100%;
        text-align: center;
    }
}