/* style/contact.css */

.page-contact {
    font-family: 'Arial', sans-serif;
    color: #F0F0F0; /* Light text for dark backgrounds */
    background-color: #0A192F; /* Primary background */
    line-height: 1.6;
}

.page-contact__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0A192F 0%, #1a2a47 100%); /* Dark blue gradient */
    color: #F0F0F0;
    position: relative;
    overflow: hidden;
}

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

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

.page-contact__title .highlight {
    color: #FFD700;
}

.page-contact__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #C0C0C0; /* Lighter grey for subtitle */
}

.page-contact__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark text on gold */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-contact__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-contact__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1; /* Subtle background image */
    z-index: 0;
}

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

.page-contact__info-section {
    padding: 60px 20px;
    background-color: #1a2a47; /* Slightly lighter dark blue */
    text-align: center;
}

.page-contact__info-card {
    max-width: 1200px;
    margin: 0 auto;
}

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

.page-contact__info-description {
    font-size: 1.1em;
    color: #C0C0C0;
    margin-bottom: 40px;
}

.page-contact__contact-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.page-contact__method-item {
    background-color: #0A192F; /* Dark blue card background */
    border: 1px solid #FFD700; /* Gold border */
    border-radius: 12px;
    padding: 30px;
    flex: 1 1 calc(33% - 40px);
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-contact__method-icon {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 15px;
    display: inline-block;
}

.page-contact__method-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.page-contact__method-heading {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-contact__method-text {
    color: #C0C0C0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-contact__method-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A192F;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-contact__method-button:hover {
    background-color: #e6c200;
}

.page-contact__social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.page-contact__social-icon {
    font-size: 2.2em;
    color: #FFD700;
    transition: color 0.3s ease;
}

.page-contact__social-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.page-contact__social-icon:hover {
    color: #e6c200;
}

.page-contact__form-section {
    padding: 60px 20px;
    background-color: #0A192F; /* Primary background */
    text-align: center;
}

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

.page-contact__form-description {
    font-size: 1.1em;
    color: #C0C0C0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #1a2a47; /* Slightly lighter dark blue for form */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    text-align: left;
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #FFD700; /* Gold border */
    border-radius: 8px;
    background-color: #0A192F; /* Dark input background */
    color: #F0F0F0;
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
    color: #888;
}

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

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

.page-contact__submit-button {
    display: block;
    width: 100%;
    background-color: #FFD700;
    color: #0A192F;
    padding: 15px 25px;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__submit-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-contact__faq-section {
    padding: 60px 20px;
    background-color: #1a2a47; /* Slightly lighter dark blue */
    text-align: center;
}

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

.page-contact__faq-description {
    font-size: 1.1em;
    color: #C0C0C0;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__faq-link {
    display: inline-block;
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 5px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.page-contact__faq-link:hover {
    color: #e6c200;
    border-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-contact__hero {
        padding: 60px 20px;
    }
    .page-contact__title {
        font-size: 2.5em;
    }
    .page-contact__subtitle {
        font-size: 1.1em;
    }
    .page-contact__contact-methods {
        flex-direction: column;
        align-items: center;
    }
    .page-contact__method-item {
        flex: 1 1 80%;
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .page-contact__hero {
        padding: 50px 15px;
    }
    .page-contact__title {
        font-size: 2em;
    }
    .page-contact__subtitle {
        font-size: 1em;
    }
    .page-contact__info-title,
    .page-contact__form-title,
    .page-contact__faq-title {
        font-size: 2em;
    }
    .page-contact__info-description,
    .page-contact__form-description,
    .page-contact__faq-description {
        font-size: 0.95em;
    }
    .page-contact__contact-form {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .page-contact__hero {
        padding: 40px 10px;
    }
    .page-contact__title {
        font-size: 1.8em;
    }
    .page-contact__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-contact__method-item {
        padding: 25px;
    }
    .page-contact__form-input,
    .page-contact__form-textarea,
    .page-contact__submit-button {
        font-size: 0.9em;
        padding: 12px;
    }
}