/* style/contact.css */
.page-contact {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #0a0a0a; /* Ensure consistency with body background */
}

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

/* Hero Section */
.page-contact__hero-section {
    position: relative;
    padding: 80px 0;
    padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
    text-align: center;
    background-color: #26A9E0; /* Primary brand color for hero background */
    color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-contact__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: bold;
}

.page-contact__hero-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

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

.page-contact__hero-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    max-width: 1600px; /* Placeholder max-width */
    opacity: 0.2;
    z-index: 0;
    filter: brightness(0.7); /* Allowed for stylistic effect, not color change */
}

/* Common Section Styles */
.page-contact__section-title {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 20px;
    color: #26A9E0; /* Primary brand color for titles */
    font-weight: bold;
}

.page-contact__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

/* Light Background Sections */
.page-contact__light-bg {
    background-color: #ffffff;
    color: #333333; /* Dark text for light background */
    padding: 60px 0;
}

.page-contact__light-bg .page-contact__section-title {
    color: #26A9E0;
}

.page-contact__light-bg .page-contact__section-description {
    color: #333333;
}

/* Dark Background Sections */
.page-contact__dark-bg {
    background-color: #0d0d0d; /* Slightly lighter than body bg for contrast */
    color: #ffffff; /* Light text for dark background */
    padding: 60px 0;
}

.page-contact__dark-bg .page-contact__section-title {
    color: #26A9E0;
}

.page-contact__dark-bg .page-contact__section-description {
    color: #f0f0f0;
}

/* Card Styles */
.page-contact__card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-contact__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-contact__light-bg .page-contact__card {
    background-color: #f8f8f8;
    color: #333333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.page-contact__light-bg .page-contact__card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Button Styles */
.page-contact__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: none;
}

.page-contact__btn-primary:hover {
    background-color: #1a8cc7;
}

.page-contact__btn-secondary {
    background-color: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}