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

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

.page-contact__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0A246A, #1A3A8A);
    color: #fff;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.page-contact__hero-content {
    max-width: 800px;
    z-index: 1;
}

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

.page-contact__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.page-contact__hero-btn {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #0A246A; /* Dark Blue */
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__hero-btn:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
}

.page-contact__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 0;
}

.page-contact__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-contact__section-title {
    font-size: 2.5em;
    color: #0A246A;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
}

.page-contact__section-subtitle {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
}

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

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

.page-contact__method-item {
    background-color: #f0f4f8;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__method-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-contact__method-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-contact__method-title {
    font-size: 1.8em;
    color: #0A246A;
    margin-bottom: 15px;
}

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

.page-contact__method-btn {
    display: inline-block;
    background-color: #0A246A; /* Dark Blue */
    color: #FFD700; /* Gold */
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-contact__method-btn:hover {
    background-color: #1A3A8A; /* Slightly lighter blue */
}

.page-contact__form-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

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

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

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

.page-contact__form-input,
.page-contact__form-textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

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

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

.page-contact__form-submit-btn {
    display: block;
    width: 100%;
    background-color: #FFD700; /* Gold */
    color: #0A246A; /* Dark Blue */
    padding: 18px;
    border: none;
    border-radius: 30px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__form-submit-btn:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
}

.page-contact__faq {
    padding: 60px 0;
    background-color: #eef3f7;
}

.page-contact__faq-list {
    margin-top: 40px;
}

.page-contact__faq-item {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

.page-contact__faq-question {
    font-size: 1.4em;
    color: #0A246A;
    margin-bottom: 10px;
    cursor: pointer;
}

.page-contact__faq-answer {
    color: #555;
    font-size: 1em;
    line-height: 1.8;
}

.page-contact__faq-answer a {
    color: #0A246A;
    text-decoration: underline;
    font-weight: bold;
}

.page-contact__faq-answer a:hover {
    color: #FFD700;
}

.page-contact__cta {
    background: linear-gradient(90deg, #0A246A, #1A3A8A);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    margin-top: 40px;
}

.page-contact__cta-title {
    font-size: 3em;
    color: #FFD700; /* Gold */
    margin-bottom: 20px;
}

.page-contact__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

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

.page-contact__cta-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__cta-btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A246A; /* Dark Blue */
}

.page-contact__cta-btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
}

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

.page-contact__cta-btn--secondary:hover {
    background-color: #FFD700;
    color: #0A246A; /* Dark Blue */
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-contact__hero {
        padding: 60px 20px;
    }

    .page-contact__hero-title {
        font-size: 2.5em;
    }

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

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

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

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

    .page-contact__form {
        padding: 30px;
    }

    .page-contact__form-submit-btn {
        font-size: 1.1em;
        padding: 15px;
    }

    .page-contact__cta-title {
        font-size: 2.5em;
    }

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

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

    .page-contact__cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

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

    .page-contact__hero-btn {
        padding: 12px 25px;
        font-size: 1em;
    }

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

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

    .page-contact__faq-question {
        font-size: 1.2em;
    }

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