/* style/contact.css */

/* Variables and Base Styles */
:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --form-border: #e0e0e0;
    --button-login: #EA7C07; /* Custom color for login/register button */
    --background-white: #FFFFFF; /* Custom background color */
    --background-dark-1: var(--dark-bg-1, #0d0d0d); /* Assuming shared.css defines --dark-bg-1 */
}

.page-contact {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Default to light text assuming dark body background from shared.css */
    background-color: var(--background-dark-1); /* Inherit from shared.css body */
    padding-bottom: 60px; /* Add some padding at the bottom */
}

/* Fixed header offset - assuming shared.css sets body padding-top, so hero-section gets 0 */
.page-contact__hero-section {
    padding-top: 0; /* Assuming shared.css handles body padding-top */
    padding-bottom: 80px;
    background: linear-gradient(135deg, var(--primary-color), #1a7fb3);
    color: var(--text-light);
    text-align: center;
    position: relative;
    z-index: 1;
}

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

.page-contact__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--text-light);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.page-contact__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

.page-contact__hero-image-wrapper {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-contact__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-contact__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
}

.page-contact__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-light);
}

/* Info Section */
.page-contact__info-section {
    padding: 60px 0;
    background-color: var(--background-dark-1); /* Dark background */
    color: var(--text-light); /* Light text */
}

.page-contact__info-section .page-contact__section-title {
    color: var(--text-light); /* White title on dark background */
}

.page-contact__info-section .page-contact__section-description {
    color: var(--text-light);
}

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

.page-contact__detail-item {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-contact__detail-item:hover {
    transform: translateY(-5px);
}

.page-contact__detail-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-contact__detail-text {
    font-size: 1em;
    color: var(--text-light);
}

.page-contact__image-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-contact__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

/* Form Section */
.page-contact__form-section {
    padding: 60px 0;
    background-color: var(--background-white); /* Light background */
    color: var(--text-dark); /* Dark text */
}

.page-contact__form-section .page-contact__section-title {
    color: var(--primary-color); /* Primary color title on light background */
}

.page-contact__form-section .page-contact__section-description {
    color: var(--text-dark);
}

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

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

.page-contact__form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: var(--text-dark);
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--form-border);
    border-radius: 5px;
    font-size: 1em;
    color: var(--text-dark);
    background-color: var(--secondary-color);
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.page-contact__form-textarea {
    resize: vertical;
}

.page-contact__submit-button {
    display: block;
    width: 100%;
    padding: 15px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    text-align: center;
}

/* Support Channels Section */
.page-contact__support-channels {
    padding: 60px 0;
    background-color: var(--background-white); /* Light background */
    color: var(--text-dark); /* Dark text */
}

.page-contact__support-channels .page-contact__section-title {
    color: var(--primary-color);
}

.page-contact__support-channels .page-contact__section-description {
    color: var(--text-dark);
}

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

.page-contact__channel-card {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-contact__channel-icon {
    width: 100%; /* Ensure large images are used, not small icons */
    height: 200px; /* Min height */
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-contact__channel-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-contact__channel-text {
    font-size: 1em;
    color: var(--text-dark);
    margin-bottom: 25px;
}

/* FAQ Section */
.page-contact__faq-section {
    padding: 60px 0;
    background-color: var(--background-white);
    color: var(--text-dark);
}

.page-contact__faq-section .page-contact__section-title {
    color: var(--primary-color);
}

.page-contact__faq-section .page-contact__section-description {
    color: var(--text-dark);
}

.page-contact__faq-list {
    max-width: 900px;
    margin: 0 auto;
}