/* style/contact.css */
.page-contact {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #E2E8F0; /* Light text for dark background */
    background-color: #1A202C; /* Main background color */
}

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

.page-contact__hero-section {
    background: linear-gradient(135deg, #1A202C, #3A0F0F);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-contact__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:contact:office,support,team,professional]');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.page-contact__hero-section .page-contact__container {
    position: relative;
    z-index: 1;
}

.page-contact__title {
    font-size: 3.5em;
    color: #E53E3E;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact__subtitle {
    font-size: 1.3em;
    color: #CBD5E0;
    max-width: 800px;
    margin: 0 auto;
}

.page-contact__info-section {
    padding: 60px 0;
    background-color: #1A202C;
}

.page-contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .page-contact__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.page-contact__contact-details,
.page-contact__contact-form {
    background-color: #2D3748;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-contact__heading {
    font-size: 2em;
    color: #E53E3E;
    margin-bottom: 25px;
    border-bottom: 2px solid #E53E3E;
    padding-bottom: 10px;
}

.page-contact__text {
    margin-bottom: 20px;
    color: #CBD5E0;
}

.page-contact__keyword {
    color: #F6AD55;
    font-weight: bold;
}

.page-contact__contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #CBD5E0;
}

.page-contact__icon-wrapper {
    margin-right: 15px;
    color: #E53E3E;
    font-size: 1.5em;
    width: 30px;
    text-align: center;
}

/* Generic icon styles - assuming a font icon library is available */
.page-contact__icon {
    /* Placeholder for actual icon styles */
    display: inline-block;
    vertical-align: middle;
    width: 1em;
    height: 1em;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.page-contact__icon--email::before { content: '✉'; } /* Example content for generic icon */
.page-contact__icon--phone::before { content: '☎'; }
.page-contact__icon--address::before { content: '📍'; }
.page-contact__icon--livechat::before { content: '💬'; }
.page-contact__icon--facebook::before { content: 'f'; }
.page-contact__icon--twitter::before { content: '🐦'; }
.page-contact__icon--instagram::before { content: '📷'; }

.page-contact__link {
    color: #63B3ED;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-contact__link:hover {
    color: #4299E1;
}

.page-contact__sub-heading {
    font-size: 1.5em;
    color: #E53E3E;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-contact__social-media {
    display: flex;
    gap: 15px;
    align-items: center;
}

.page-contact__social-link {
    font-size: 2em;
    color: #CBD5E0;
    transition: color 0.3s ease;
}

.page-contact__social-link:hover {
    color: #E53E3E;
}

.page-contact__form {
    display: flex;
    flex-direction: column;
}

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

.page-contact__label {
    display: block;
    margin-bottom: 8px;
    color: #CBD5E0;
    font-weight: bold;
}

.page-contact__input,
.page-contact__textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #4A5568;
    border-radius: 5px;
    background-color: #4A5568;
    color: #E2E8F0;
    font-size: 1em;
    box-sizing: border-box;
}

.page-contact__input::placeholder,
.page-contact__textarea::placeholder {
    color: #A0AEC0;
}

.page-contact__input:focus,
.page-contact__textarea:focus {
    border-color: #E53E3E;
    outline: none;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.5);
}

.page-contact__button {
    display: inline-block;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-contact__button--submit {
    background-color: #E53E3E;
    color: #FFFFFF;
}

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

.page-contact__cta-section {
    background-color: #2D3748;
    padding: 60px 0;
    text-align: center;
}

.page-contact__cta-content {
    max-width: 800px;
}

.page-contact__heading--cta {
    font-size: 2.5em;
    color: #F6AD55;
    margin-bottom: 20px;
    border-bottom: none;
}

.page-contact__text--cta {
    font-size: 1.2em;
    color: #CBD5E0;
    margin-bottom: 30px;
}

.page-contact__button--primary {
    background-color: #E53E3E;
    color: #FFFFFF;
    padding: 15px 30px;
    font-size: 1.2em;
}

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

.page-contact__faq-section {
    padding: 60px 0;
    background-color: #1A202C;
}

.page-contact__faq-item {
    background-color: #2D3748;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-contact__faq-question {
    font-size: 1.3em;
    color: #E53E3E;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-contact__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-contact__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-contact__faq-answer {
    color: #CBD5E0;
    font-size: 1.1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    padding-top: 0;
}

.page-contact__faq-answer.active {
    max-height: 200px; /* Adjust based on expected content length */
    padding-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .page-contact__title {
        font-size: 2.5em;
    }

    .page-contact__subtitle {
        font-size: 1em;
    }

    .page-contact__heading {
        font-size: 1.8em;
    }

    .page-contact__heading--cta {
        font-size: 2em;
    }

    .page-contact__button {
        width: 100%;
    }

    .page-contact__social-media {
        justify-content: center;
    }
}