/* style/contact.css */

/* General page styling */
.page-contact {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark gray for general text */
    background-color: #f9f9f9; /* Light background */
}

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

/* Hero Section */
.page-contact__hero {
    background: linear-gradient(135deg, #0A2463, #3a5c96); /* Dark blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-contact__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 215, 0, 0.1); /* Light gold accent */
    border-radius: 50%;
    animation: page-contact__float 10s ease-in-out infinite;
}

.page-contact__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 215, 0, 0.08); /* Light gold accent */
    border-radius: 50%;
    animation: page-contact__float 12s reverse ease-in-out infinite;
}

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

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

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

/* Buttons */
.page-contact__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    font-size: 1em;
}

.page-contact__button--primary {
    background-color: #FFD700; /* Gold */
    color: #0A2463; /* Dark blue */
    border: 2px solid #FFD700;
}

.page-contact__button--primary:hover {
    background-color: #e6c200; /* Darker gold */
    color: #0A2463;
    border-color: #e6c200;
}

.page-contact__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-contact__button--secondary:hover {
    background-color: #FFD700;
    color: #0A2463;
}

.page-contact__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

/* Methods Section */
.page-contact__methods {
    padding: 60px 0;
    text-align: center;
    background-color: #ffffff;
}

.page-contact__subtitle {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #0A2463; /* Dark blue */
    font-weight: bold;
}

.page-contact__text {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 30px;
    color: #555555;
}

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

.page-contact__method-card {
    background-color: #f0f4f8; /* Light blue-gray */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

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

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

.page-contact__card-text {
    font-size: 1em;
    color: #666666;
    margin-bottom: 25px;
    flex-grow: 1; /* Ensures buttons align at the bottom */
}

/* FAQ Section */
.page-contact__faq {
    padding: 60px 0;
    background-color: #0A2463; /* Dark blue background */
    color: #ffffff;
    text-align: center;
}

.page-contact__faq .page-contact__subtitle {
    color: #FFD700; /* Gold */
}

.page-contact__faq .page-contact__text {
    color: #e0e0e0;
}

/* Form Section */
.page-contact__form-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-contact__form {
    max-width: 700px;
    margin: 40px auto 0;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 1em;
    color: #333333;
    box-sizing: border-box; /* Ensures padding doesn't increase width */
    transition: border-color 0.3s ease;
}

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

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

/* Office Info Section */
.page-contact__office-info {
    padding: 60px 0;
    text-align: center;
    background-color: #eef3f7; /* Lighter blue-gray */
}

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

.page-contact__info-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.page-contact__info-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-contact__info-text {
    font-size: 1em;
    color: #666666;
}

.page-contact__map-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes page-contact__float {
    0% { transform: translate(0, 0); }
    50% { transform: translate(10px, 10px); }
    100% { transform: translate(0, 0); }
}

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

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

    .page-contact__description {
        font-size: 1.1em;
    }

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

    .page-contact__button {
        width: 80%;
        max-width: 300px;
    }

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

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

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

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

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

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