/* style/contact.css */

/* General Page Contact Styles */
.page-contact {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    line-height: 1.6;
    background-color: #0d123d; /* Darker background for contrast */
}

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

.page-contact-hero {
    background: linear-gradient(135deg, #1A237E, #0d123d);
    padding: 80px 0 60px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: pageContactHeroPulse 10s infinite alternate;
    z-index: 0;
}

@keyframes pageContactHeroPulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

.page-contact-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #FFD700;
    position: relative;
    z-index: 1;
}

.page-contact-subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-contact-section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
}

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

.page-contact-methods {
    padding: 60px 0;
    background-color: #1A237E;
}

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

.page-contact-method-card {
    background-color: #2c3a90; /* Slightly lighter than main blue */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-contact-method-card:hover {
    transform: translateY(-10px);
    background-color: #3f4eac;
}

.page-contact-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-contact-method-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-contact-method-description {
    font-size: 1em;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.page-contact-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A237E;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: auto;
}

.page-contact-button:hover {
    background-color: #e5c300;
    transform: translateY(-3px);
}

.page-contact-form-section {
    padding: 60px 0;
    background-color: #0d123d;
}

.page-contact-form-intro {
    text-align: center;
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.page-contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #1A237E;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

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

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

.page-contact-input,
.page-contact-textarea {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #3f4eac;
    border-radius: 5px;
    background-color: #2c3a90;
    color: #fff;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact-input::placeholder,
.page-contact-textarea::placeholder {
    color: #a0a0a0;
}

.page-contact-input:focus,
.page-contact-textarea:focus {
    border-color: #FFD700;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
    outline: none;
}

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

.page-contact-submit-button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #FFD700;
    color: #1A237E;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-contact-submit-button:hover {
    background-color: #e5c300;
    transform: translateY(-3px);
}

.page-contact-cta-section {
    background-color: #2c3a90;
    padding: 80px 0;
    text-align: center;
}

.page-contact-cta-text {
    font-size: 1.2em;
    max-width: 900px;
    margin: 20px auto 40px;
    color: #e0e0e0;
}

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

.page-contact-cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact-button-primary {
    background-color: #FFD700;
    color: #1A237E;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-contact-button-primary:hover {
    background-color: #e5c300;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.6);
}

.page-contact-button-secondary {
    background-color: #1A237E;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 10px rgba(26, 35, 126, 0.4);
}

.page-contact-button-secondary:hover {
    background-color: #0d123d;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(26, 35, 126, 0.6);
}

.page-contact-button-tertiary {
    background-color: #FFD700;
    color: #1A237E;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-contact-button-tertiary:hover {
    background-color: #e5c300;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.6);
}

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

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

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

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

    .page-contact-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-contact-cta-button {
        width: 80%;
    }
}

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

    .page-contact-subtitle {
        font-size: 1em;
    }

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

    .page-contact-method-card {
        padding: 20px;
    }

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

    .page-contact-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-contact-form {
        padding: 20px;
    }

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

    .page-contact-cta-button {
        width: 90%;
        font-size: 1em;
    }
}