.page-contact {
    color: #ffffff; /* Light text for dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

.page-contact__hero-section {
    background-color: rgba(139, 0, 0, 0.3); /* Semi-transparent deep red */
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.page-contact__hero-image {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 0;
}

.page-contact__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    /* No filter to change color */
}

.page-contact__hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.page-contact__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.page-contact__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-contact__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-contact__button {
    display: inline-block;
    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;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.page-contact__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #8B0000; /* Deep red text */
    border: 2px solid #FFD700;
}

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

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

.page-contact__button--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.page-contact__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

.page-contact__channels-section {
    padding: 60px 20px;
    background-color: rgba(0, 0, 0, 0.4);
}

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

.page-contact__channel-card {
    background-color: rgba(139, 0, 0, 0.6); /* Deep red semi-transparent */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-contact__channel-card:hover {
    transform: translateY(-5px);
}

.page-contact__channel-icon {
    width: 200px; /* Minimum 200px */
    height: auto;
    margin-bottom: 20px;
    object-fit: contain;
    /* No filter to change color */
}

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

.page-contact__channel-text {
    color: #e0e0e0;
    margin-bottom: 25px;
}

.page-contact__button--small {
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    background-color: #FFD700;
    color: #8B0000;
    border: none;
}

.page-contact__button--small:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-contact__form-section {
    padding: 60px 20px;
    background-color: rgba(139, 0, 0, 0.3);
}

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

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

.page-contact__form-label {
    display: block;
    font-size: 1.1em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #FFD700;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
    color: #cccccc;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    border-color: #e6c200;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
    outline: none;
}

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

.page-contact__button--submit {
    width: 100%;
    padding: 18px;
    background-color: #FFD700;
    color: #8B0000;
    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__button--submit:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-contact__cta-section {
    background-color: #8B0000; /* Deep red solid background */
    padding: 80px 20px;
    text-align: center;
}

.page-contact__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.page-contact__cta-description {
    font-size: 1.2em;
    color: #f0f0f0;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-contact__button--cta {
    background-color: #FFD700;
    color: #8B0000;
    padding: 18px 40px;
    font-size: 1.3em;
    border-radius: 10px;
    border: none;
}

.page-contact__button--cta:hover {
    background-color: #e6c200;
    transform: scale(1.05);
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-contact__hero-title {
        font-size: 3em;
    }

    .page-contact__section-title,
    .page-contact__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-contact {
        padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
    }
    .page-contact__hero-section {
        padding: 60px 20px;
        gap: 30px;
    }

    .page-contact__hero-title {
        font-size: 2.5em;
    }

    .page-contact__hero-description {
        font-size: 1em;
    }

    .page-contact__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-contact__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 12px 25px;
        font-size: 1em;
    }

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

    .page-contact__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-contact__channels-grid {
        grid-template-columns: 1fr;
    }

    .page-contact__channel-card {
        padding: 25px;
    }

    .page-contact__channel-icon {
        width: 200px; /* Ensure min size */
        height: auto;
    }

    .page-contact__channel-title {
        font-size: 1.5em;
    }

    .page-contact__channel-text {
        font-size: 0.9em;
    }

    .page-contact__form-section {
        padding: 40px 20px;
    }

    .page-contact__contact-form {
        padding: 30px;
    }

    .page-contact__form-label {
        font-size: 1em;
    }

    .page-contact__form-input,
    .page-contact__form-textarea {
        padding: 12px;
        font-size: 0.95em;
    }

    .page-contact__button--submit {
        padding: 15px;
        font-size: 1.1em;
    }

    .page-contact__cta-title {
        font-size: 2.2em;
    }

    .page-contact__cta-description {
        font-size: 1em;
    }

    .page-contact__button--cta {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    /* Mobile content area image overflow fix */
    .page-contact img {
        max-width: 100%;
        height: auto;
    }
    .page-contact__hero-section,
    .page-contact__channels-section,
    .page-contact__form-section,
    .page-contact__cta-section {
        max-width: 100%; /* Ensure no overflow from padding/margins */
        overflow-x: hidden; /* Prevent horizontal scroll */
    }
}

@media (max-width: 480px) {
    .page-contact__hero-title {
        font-size: 2em;
    }
    .page-contact__section-title,
    .page-contact__cta-title {
        font-size: 1.8em;
    }
    .page-contact__button--cta {
        font-size: 1em;
        padding: 12px 25px;
    }
}