/* style/contact.css */

/* General page styles */
.page-contact {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #0d123d; /* Slightly darker than primary for main background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-contact__hero {
    background: linear-gradient(135deg, #1A237E, #2d388f); /* Primary color gradient */
    padding: 80px 0;
    text-align: center;
    color: #ffffff; /* White text for hero */
    position: relative;
    overflow: hidden;
}

.page-contact__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Secondary color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-contact__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
}

.page-contact__highlight {
    color: #FFD700; /* Secondary color for highlights */
    font-weight: bold;
}

.page-contact__hero-image {
    margin-top: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Section Titles */
.page-contact__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Secondary color for section titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-contact__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: -20px auto 60px auto;
    color: #e0e0e0; /* Light grey for description */
}

/* Contact Methods Section */
.page-contact__methods {
    padding: 80px 0;
    background-color: #1A237E; /* Primary color for this section */
    color: #ffffff;
}

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

.page-contact__method-card {
    background-color: #2d388f; /* Darker variant of primary */
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px 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.6)); /* Gold glow for icons */
}

.page-contact__method-title {
    font-size: 1.8em;
    color: #FFD700; /* Secondary color for card titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-contact__method-text {
    font-size: 1em;
    color: #e0e0e0; /* Light grey text */
    margin-bottom: 25px;
}

/* Buttons */
.page-contact__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05em;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-contact__btn--primary {
    background-color: #FFD700; /* Secondary color for primary buttons */
    color: #1A237E; /* Primary color for text on primary buttons */
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-contact__btn--primary:hover {
    background-color: #e5c400; /* Slightly darker gold */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-contact__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Secondary color for text on secondary buttons */
    border: 2px solid #FFD700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.page-contact__btn--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

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

.page-contact__contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #1A237E; /* Primary color for form background */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 20px);
    padding: 15px 10px;
    border: 1px solid #3f4e9a; /* Darker primary for border */
    border-radius: 8px;
    background-color: #2d388f; /* Darker primary for 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: #c0c8f0; /* Lighter primary for placeholder - ensures WCAG AA contrast */
}

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

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

.page-contact__btn--submit {
    width: 100%;
    padding: 15px;
    background-color: #FFD700; /* Secondary color */
    color: #1A237E; /* Primary color */
    font-size: 1.2em;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-contact__btn--submit:hover {
    background-color: #e5c400; /* Slightly darker gold */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

/* Call to Action Section */
.page-contact__cta {
    background-color: #1A237E; /* Primary color */
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-contact__cta-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

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

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

.page-contact__btn--large {
    padding: 15px 35px;
    font-size: 1.15em;
    min-width: 220px;
}

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

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

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

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

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

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

    .page-contact__contact-form {
        padding: 30px;
    }

    .page-contact__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-contact__btn--large {
        width: 100%;
        max-width: 300px;
    }
}

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

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

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

    .page-contact__btn {
        font-size: 0.95em;
        padding: 10px 20px;
    }
}