/* 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;
}

/* Hero Section */
.page-contact__hero {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Deeper blue gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-contact__title {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: #FFCC00; /* Golden yellow for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact__subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #f0f0f0;
}

.page-contact__hero-image {
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Info Section */
.page-contact__info {
    padding: 60px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.page-contact__heading {
    font-size: 2.5em;
    color: #003366;
    margin-bottom: 20px;
}

.page-contact__description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
}

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

.page-contact__method-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    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__method-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
}

.page-contact__method-card h3 {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
}

.page-contact__method-card p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Buttons */
.page-contact__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.page-contact__btn--primary {
    background-color: #FFCC00; /* Golden yellow */
    color: #003366; /* Deep blue text */
    border: 2px solid #FFCC00;
}

.page-contact__btn--primary:hover {
    background-color: #e6b800;
    color: #002244;
}

.page-contact__btn--secondary {
    background-color: transparent;
    color: #003366;
    border: 2px solid #003366;
}

.page-contact__btn--secondary:hover {
    background-color: #003366;
    color: #fff;
}

/* Form Section */
.page-contact__form-section {
    background-color: #e6f2ff; /* Light blue background */
    padding: 60px 0;
    text-align: center;
}

.page-contact__contact-form {
    max-width: 700px;
    margin: 40px auto 0;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
}

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

.page-contact__form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #003366;
}

.page-contact__form-group input[type="text"],
.page-contact__form-group input[type="email"],
.page-contact__form-group textarea {
    width: calc(100% - 24px);
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-group input:focus,
.page-contact__form-group textarea:focus {
    border-color: #FFCC00;
    box-shadow: 0 0 8px rgba(255, 204, 0, 0.4);
    outline: none;
}

.page-contact__btn--submit {
    background-color: #003366; /* Deep blue for submit */
    color: #fff;
    border: none;
    cursor: pointer;
    width: auto;
    padding: 15px 35px;
    font-size: 1.1em;
    border-radius: 8px;
}

.page-contact__btn--submit:hover {
    background-color: #004d99;
}

/* CTA Section */
.page-contact__cta {
    background-color: #003366; /* Deep blue background */
    padding: 70px 0;
    text-align: center;
    color: #fff;
}

.page-contact__cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-contact__cta-text h2 {
    color: #FFCC00;
    font-size: 2.8em;
    margin-bottom: 15px;
}

.page-contact__cta-text p {
    font-size: 1.2em;
    max-width: 800px;
    margin-bottom: 30px;
}

.page-contact__cta-image {
    max-width: 400px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__btn--cta {
    background-color: #FFCC00;
    color: #003366;
    font-size: 1.3em;
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-contact__btn--cta:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-contact__title {
        font-size: 2.8em;
    }
    .page-contact__heading {
        font-size: 2em;
    }
    .page-contact__methods {
        grid-template-columns: 1fr;
    }
    .page-contact__cta-image {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .page-contact__hero,
    .page-contact__info,
    .page-contact__form-section,
    .page-contact__cta {
        padding: 40px 0;
    }
    .page-contact__title {
        font-size: 2.2em;
    }
    .page-contact__subtitle {
        font-size: 1em;
    }
    .page-contact__heading {
        font-size: 1.8em;
    }
    .page-contact__contact-form {
        padding: 25px;
    }
    .page-contact__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-contact__btn--cta {
        font-size: 1.1em;
        padding: 12px 30px;
    }
    .page-contact__hero-image {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .page-contact__title {
        font-size: 1.8em;
    }
    .page-contact__heading {
        font-size: 1.5em;
    }
    .page-contact__method-card h3 {
        font-size: 1.5em;
    }
    .page-contact__cta-text h2 {
        font-size: 2em;
    }
    .page-contact__cta-text p {
        font-size: 1em;
    }
}