/* style/contact.css */

/* Base styles for the contact page */
.page-contact {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css (#000) */
}

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

.page-contact__section-title {
    font-size: 2.8em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main titles */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: #f0f0f0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Button styles */
.page-contact__btn-primary,
.page-contact__btn-secondary,
.page-contact__btn-tertiary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box; /* Ensure padding/border are included in width */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow word breaking */
}

.page-contact__btn-primary {
    background-color: #FFD700; /* Gold */
    color: #1E90FF; /* Royal Blue text for contrast */
    border-color: #FFD700;
}

.page-contact__btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    color: #000000;
}

.page-contact__btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border-color: #FFD700;
}

.page-contact__btn-secondary:hover {
    background-color: #FFD700;
    color: #1E90FF; /* Royal Blue */
}

.page-contact__btn-tertiary {
    background-color: #1E90FF; /* Royal Blue */
    color: #ffffff;
    border-color: #1E90FF;
    font-size: 0.9em;
    padding: 8px 15px;
}

.page-contact__btn-tertiary:hover {
    background-color: #167bc2;
    border-color: #167bc2;
}

/* Section specific styles */
.page-contact__hero-section {
    position: relative;
    padding: 100px 0; /* Adjust later for header offset */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    text-align: center;
    overflow: hidden; /* Ensure content doesn't spill */
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-contact__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6); /* Darken image for text readability */
    /* No filter to change color */
}

.page-contact__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

.page-contact__hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    padding: 20px;
}

.page-contact__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-contact__intro-text {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-contact__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    width: 100%; /* Ensure container fills width */
    max-width: 100%;
    box-sizing: border-box;
}

/* Channels Section */
.page-contact__channels-section {
    padding: 80px 0;
    background-color: #1a1a1a; /* Dark background for this section */
    color: #ffffff;
}

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

.page-contact__channel-card {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-contact__channel-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-contact__channel-icon {
    width: 200px; /* Min size 200x200 */
    height: auto;
    margin: 0 auto 20px;
    border-radius: 8px;
    object-fit: cover;
    /* No filters */
}

.page-contact__channel-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-contact__channel-description {
    font-size: 1em;
    color: #f0f0f0;
    margin-bottom: 20px;
    flex-grow: 1; /* Make description take available space */
}

.page-contact__note-text {
    font-size: 0.85em;
    color: #aaa;
    margin-top: 10px;
}

/* When to Contact Section */
.page-contact__when-to-contact-section {
    padding: 80px 0;
    background-color: #f8f8f8; /* Light background */
    color: #333333; /* Dark text for contrast */
}

.page-contact__when-to-contact-section .page-contact__section-title {
    color: #1E90FF; /* Royal Blue for light section titles */
    text-shadow: none;
}
.page-contact__when-to-contact-section .page-contact__section-description {
    color: #555555;
}

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

.page-contact__reason-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    color: #333333;
    border: 1px solid #e0e0e0;
}

.page-contact__reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.page-contact__reason-title {
    font-size: 1.5em;
    color: #1E90FF; /* Royal Blue */
    margin-bottom: 10px;
}

.page-contact__reason-text {
    font-size: 0.95em;
    color: #555555;
}

/* Support Process Section */
.page-contact__support-process-section {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.page-contact__process-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.page-contact__process-step {
    flex-basis: 30%;
    min-width: 280px;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-contact__process-step:hover {
    transform: translateY(-5px);
}

.page-contact__step-number {
    font-size: 3em;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 15px;
    line-height: 1;
}

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

.page-contact__step-description {
    font-size: 1em;
    color: #f0f0f0;
}

.page-contact__process-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    object-fit: cover;
    /* No filters */
}


/* Tips Section */
.page-contact__tips-section {
    padding: 80px 0;
    background-color: #f8f8f8; /* Light background */
    color: #333333; /* Dark text for contrast */
}

.page-contact__tips-section .page-contact__section-title {
    color: #1E90FF;
    text-shadow: none;
}
.page-contact__tips-section .page-contact__section-description {
    color: #555555;
}

.page-contact__tips-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.page-contact__tip-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    color: #333333;
    border: 1px solid #e0e0e0;
}

.page-contact__tip-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.page-contact__tip-title {
    font-size: 1.5em;
    color: #1E90FF;
    margin-bottom: 10px;
}

.page-contact__tip-text {
    font-size: 0.95em;
    color: #555555;
}

/* FAQ Section */
.page-contact__faq-section {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.page-contact__faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.15);
    transition: background-color 0.3s ease;
}

.page-contact__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.page-contact__faq-title {
    font-size: 1.25em;
    color: #FFD700;
    margin: 0;
    flex-grow: 1;
}

.page-contact__faq-toggle {
    font-size: 1.8em;
    font-weight: 700;
    color: #FFD700;
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.page-contact__faq-item.active .page-contact__faq-toggle {
    transform: rotate(45deg);
}

.page-contact__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #f0f0f0;
    background-color: rgba(0, 0, 0, 0.4);
}

.page-contact__faq-item.active .page-contact__faq-answer {
    max-height: 1000px !important; /* Sufficiently large for content */
    padding: 15px 25px 25px;
}

.page-contact__faq-answer p {
    margin-bottom: 0;
    font-size: 1em;
}

.page-contact__faq-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    object-fit: cover;
    /* No filters */
}

/* Why Choose Us Section */
.page-contact__why-choose-us-section {
    padding: 80px 0;
    background-color: #f8f8f8; /* Light background */
    color: #333333; /* Dark text for contrast */
}

.page-contact__why-choose-us-section .page-contact__section-title {
    color: #1E90FF;
    text-shadow: none;
}
.page-contact__why-choose-us-section .page-contact__section-description {
    color: #555555;
}

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

.page-contact__advantage-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    color: #333333;
    border: 1px solid #e0e0e0;
}