/* style/contact.css */

/* Base styles for the contact page */
.page-contact {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f8f8f8; /* Default text color on dark sections */
    background-color: #0A192F; /* Main background color for sections */
}

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

.page-contact__title,
.page-contact__section-title {
    color: #E0B400; /* Gold for main titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-contact__title {
    font-size: 2.8em;
    margin-top: 0;
}

.page-contact__section-title {
    font-size: 2.2em;
    margin-top: 40px;
}

.page-contact__subtitle,
.page-contact__section-description {
    color: #d0d0d0; /* Lighter grey for subtitles and descriptions */
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1em;
}

/* Hero Section */
.page-contact__hero {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #0A192F; /* Fallback */
}

.page-contact__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.4; /* Slightly dim the image */
}

.page-contact__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.9)); /* Dark overlay */
    z-index: 2;
}

.page-contact__hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 20px;
}

/* Info Section - Contact Methods */
.page-contact__info-section {
    padding: 60px 0;
    background-color: #0A192F;
}

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

.page-contact__method-card {
    background-color: #1a2a43; /* Slightly lighter dark blue for cards */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #E0B400; /* Gold border for accent */
}

.page-contact__icon {
    font-size: 3em;
    color: #E0B400;
    margin-bottom: 15px;
    display: block; /* Make icons block for margin */
}
/* Placeholder for actual icons */
.page-contact__icon--chat::before { content: '\1F4AC'; } /* Speech bubble emoji */
.page-contact__icon--email::before { content: '\1F4E7'; } /* Email emoji */
.page-contact__icon--phone::before { content: '\1F4DE'; } /* Telephone receiver emoji */


.page-contact__method-title {
    color: #E0B400;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-contact__method-text {
    color: #c0c0c0;
    margin-bottom: 20px;
}

/* 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;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.page-contact__btn--primary {
    background-color: #E0B400;
    color: #0A192F; /* Dark text on gold button */
}

.page-contact__btn--primary:hover {
    background-color: #f0c510; /* Slightly lighter gold on hover */
    color: #000;
}

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

.page-contact__btn--secondary:hover {
    background-color: #E0B400;
    color: #0A192F;
}

.page-contact__btn--submit {
    width: 100%;
    background-color: #E0B400;
    color: #0A192F;
    padding: 15px;
    font-size: 1.1em;
}

.page-contact__btn--submit:hover {
    background-color: #f0c510;
    color: #000;
}


/* Form Section */
.page-contact__form-section {
    padding: 60px 0;
    background-color: #1a2a43; /* Slightly lighter dark blue for this section */
}

.page-contact__form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .page-contact__form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.page-contact__form-content {
    text-align: center;
}

.page-contact__form-content .page-contact__section-title {
    text-align: left;
}
.page-contact__form-content .page-contact__section-description {
    text-align: left;
}

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

.page-contact__form-wrapper {
    background-color: #0A192F; /* Dark blue for the form background */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid #E0B400;
}

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

.page-contact__form-label {
    display: block;
    margin-bottom: 8px;
    color: #E0B400; /* Gold for labels */
    font-weight: bold;
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 20px); /* Account for padding */
    padding: 12px 10px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #0A192F; /* Dark background for inputs */
    color: #f8f8f8; /* Light text for inputs */
    font-size: 1em;
    transition: border-color 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: #E0B400;
    outline: none;
}

/* Location Section */
.page-contact__location-section {
    padding: 60px 0;
    background-color: #0A192F;
}

.page-contact__location-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .page-contact__location-details {
        grid-template-columns: 1fr 1fr;
    }
}

.page-contact__address-card {
    background-color: #1a2a43;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #E0B400;
    color: #c0c0c0;
}

.page-contact__address-card strong {
    color: #E0B400;
}

.page-contact__map-wrapper {
    text-align: center;
}

.page-contact__map-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #E0B400;
}

/* Call to Action (CTA) Section - Social Links */
.page-contact__cta-section {
    padding: 60px 0;
    background-color: #1a2a43;
    text-align: center;
}

.page-contact__social-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-contact__social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #0A192F;
    color: #E0B400;
    font-size: 1.8em;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #E0B400;
}

.page-contact__social-icon:hover {
    background-color: #E0B400;
    color: #0A192F;
    transform: translateY(-5px);
}

/* Placeholder for social icons - using emojis for now */
.page-contact__social-icon--facebook::before { content: '\1F4DA'; } /* Blue book emoji */
.page-contact__social-icon--twitter::before { content: '\1F426'; } /* Bird emoji */
.page-contact__social-icon--instagram::before { content: '\1F4F8'; } /* Camera emoji */
.page-contact__social-icon--youtube::before { content: '\25B6'; } /* Play button emoji */


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

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

    .page-contact__hero {
        height: 350px;
    }

    .page-contact__form-content .page-contact__section-title,
    .page-contact__form-content .page-contact__section-description {
        text-align: center;
    }
}

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

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

    .page-contact__contact-methods {
        grid-template-columns: 1fr;
    }
    .page-contact__form-input,
    .page-contact__form-textarea {
        width: calc(100% - 24px); /* Adjust for padding and border */
    }
}