/* style/contact.css */

/* General container and section styling */
.page-contact__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-contact__hero {
    background: linear-gradient(135deg, #0A2342, #1a3a5e); /* Dark blue gradient */
    color: #FFFFFF; /* White text for contrast */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-contact__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract,geometric,blue_gold_pattern]'); /* Abstract pattern */
    background-size: cover;
    background-position: center;
    opacity: 0.1; /* Subtle overlay */
    z-index: 0;
}

.page-contact__hero > * {
    position: relative;
    z-index: 1;
}

.page-contact__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Golden yellow for main title */
    font-weight: 700;
}

.page-contact__subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0; /* Light grey for subtitle */
}

.page-contact__btn-primary {
    display: inline-block;
    background-color: #FFD700; /* Golden yellow button */
    color: #0A2342; /* Dark blue text */
    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__btn-primary:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-contact__section-title {
    font-size: 2.5em;
    color: #0A2342; /* Dark blue for section titles */
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.page-contact__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Golden yellow underline */
    border-radius: 2px;
}

/* Contact Methods Section */
.page-contact__methods {
    padding: 80px 0;
    background-color: #f9f9f9; /* Light background */
}

.page-contact__methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-contact__method-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

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

.page-contact__icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    object-fit: contain;
}

.page-contact__method-card h3 {
    font-size: 1.6em;
    color: #0A2342;
    margin-bottom: 15px;
}

.page-contact__method-card p {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1; /* Allows paragraph to take available space */
}

.page-contact__info-text {
    font-weight: bold;
    color: #0A2342;
    font-size: 1.1em;
}

.page-contact__btn-secondary {
    display: inline-block;
    background-color: #0A2342; /* Dark blue button */
    color: #FFD700; /* Golden yellow text */
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #0A2342;
}

.page-contact__btn-secondary:hover {
    background-color: #1a3a5e; /* Lighter dark blue on hover */
    transform: translateY(-2px);
}

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

.page-contact__social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: #FFD700;
    color: #0A2342;
    border-radius: 50%;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__social-icon:hover {
    background-color: #e6c200;
    transform: scale(1.1);
}

/* Contact Form Section */
.page-contact__form-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.page-contact__form-description {
    text-align: center;
    font-size: 1.1em;
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.page-contact__contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #f0f2f5; /* Light grey background for form */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

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

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

.page-contact__input,
.page-contact__textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    color: #333;
    background-color: #FFFFFF;
    box-sizing: border-box; /* Include padding in element's total width and height */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__input:focus,
.page-contact__textarea:focus {
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
    outline: none;
}

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

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

.page-contact__btn-submit:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

/* FAQ and General CTA Sections */
.page-contact__faq-cta,
.page-contact__general-cta {
    padding: 60px 0;
    text-align: center;
    background-color: #f0f2f5;
    margin-top: 40px; /* Add some space from previous section */
}

.page-contact__general-cta {
    background-color: #0A2342; /* Dark blue background */
    color: #FFFFFF;
    padding: 80px 0;
}

.page-contact__general-cta .page-contact__section-title {
    color: #FFD700; /* Golden yellow title on dark background */
}

.page-contact__general-cta .page-contact__section-title::after {
    background-color: #FFFFFF; /* White underline */
}

.page-contact__general-cta p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    color: #E0E0E0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-contact__hero {
        padding: 80px 0;
    }
    .page-contact__title {
        font-size: 2.5em;
    }
    .page-contact__subtitle {
        font-size: 1em;
    }
    .page-contact__section-title {
        font-size: 2em;
        margin-bottom: 40px;
    }
    .page-contact__methods-grid {
        grid-template-columns: 1fr;
    }
    .page-contact__method-card {
        padding: 25px;
    }
    .page-contact__contact-form {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .page-contact__hero {
        padding: 60px 0;
    }
    .page-contact__title {
        font-size: 2em;
    }
    .page-contact__btn-primary {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-contact__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-contact__method-card h3 {
        font-size: 1.4em;
    }
    .page-contact__method-card p {
        font-size: 0.95em;
    }
    .page-contact__btn-submit {
        font-size: 1.1em;
        padding: 12px 15px;
    }
}