/* style/index-contact-us.css */
.page-index-contact-us {
    font-family: 'Arial', sans-serif;
    color: #f0e5d4; /* Light text for dark background */
    background-color: #0F1A2B; /* Main dark background */
}

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

/* Hero Section */
.page-index-contact-us__hero {
    background: linear-gradient(135deg, #0F1A2B 0%, #2a3d5e 100%); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 450px;
}

.page-index-contact-us__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 30px;
}

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

.page-index-contact-us__hero-subtitle {
    font-size: 1.4em;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-index-contact-us__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0F1A2B; /* Dark text on gold button */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-index-contact-us__hero-button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-index-contact-us__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-index-contact-us__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

/* Channels Section */
.page-index-contact-us__channels {
    padding: 60px 0;
    background-color: #1a273b;
    text-align: center;
}

.page-index-contact-us__channels-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-index-contact-us__channels-description {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-index-contact-us__channel-item {
    background-color: #0F1A2B;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-index-contact-us__channel-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-index-contact-us__channel-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.7));
}

.page-index-contact-us__channel-name {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-contact-us__channel-text {
    font-size: 1em;
    color: #cccccc;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-index-contact-us__channel-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0F1A2B;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-index-contact-us__channel-button:hover {
    background-color: #e6c200;
}

/* FAQ Section */
.page-index-contact-us__faq {
    padding: 60px 0;
    background-color: #0F1A2B;
    text-align: center;
}

.page-index-contact-us__faq-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-index-contact-us__faq-description {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-contact-us__accordion {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.page-index-contact-us__accordion-item {
    background-color: #1a273b;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-contact-us__accordion-header {
    background-color: #2a3d5e; /* Darker blue for header */
    color: #FFD700;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-index-contact-us__accordion-header:hover {
    background-color: #3d5073;
}

.page-index-contact-us__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-index-contact-us__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-index-contact-us__accordion-content {
    padding: 0 25px;
    background-color: #1a273b;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-index-contact-us__accordion-content p {
    padding: 15px 0;
    color: #cccccc;
    line-height: 1.6;
}

.page-index-contact-us__accordion-content.active {
    max-height: 200px; /* Adjust as needed */
    padding: 15px 25px;
}

.page-index-contact-us__faq-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0F1A2B;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: bold;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.page-index-contact-us__faq-button:hover {
    background-color: #e6c200;
}

/* Contact Form Section */
.page-index-contact-us__form-section {
    padding: 60px 0;
    background-color: #1a273b;
    text-align: center;
}

.page-index-contact-us__form-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-index-contact-us__form-description {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-contact-us__contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #0F1A2B;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.page-index-contact-us__form-group {
    margin-bottom: 25px;
}

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

.page-index-contact-us__form-input,
.page-index-contact-us__form-textarea {
    width: calc(100% - 20px);
    padding: 15px;
    border: 1px solid #3d5073;
    border-radius: 8px;
    background-color: #2a3d5e;
    color: #f0e5d4;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-index-contact-us__form-input::placeholder,
.page-index-contact-us__form-textarea::placeholder {
    color: #99aabf;
}

.page-index-contact-us__form-input:focus,
.page-index-contact-us__form-textarea:focus {
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
    outline: none;
}

.page-index-contact-us__form-textarea {
    resize: vertical;
}

.page-index-contact-us__form-submit-button {
    background-color: #FFD700;
    color: #0F1A2B;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    width: auto;
    display: block;
    margin: 0 auto;
}

.page-index-contact-us__form-submit-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

/* Why Contact Section */
.page-index-contact-us__why-contact {
    padding: 60px 0;
    background-color: #0F1A2B;
    text-align: center;
}

.page-index-contact-us__why-contact-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-index-contact-us__why-contact-description {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-contact-us__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-index-contact-us__benefit-item {
    background-color: #1a273b;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-contact-us__benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-index-contact-us__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6));
}

.page-index-contact-us__benefit-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-index-contact-us__benefit-text {
    font-size: 0.95em;
    color: #cccccc;
    line-height: 1.5;
}

.page-index-contact-us__cta-bottom {
    background-color: #2a3d5e;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.page-index-contact-us__cta-text {
    font-size: 1.3em;
    color: #f0e5d4;
    font-weight: bold;
    margin: 0;
}

.page-index-contact-us__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0F1A2B;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-index-contact-us__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

/* Social Media Section */
.page-index-contact-us__social-media {
    padding: 60px 0;
    background-color: #1a273b;
    text-align: center;
}

.page-index-contact-us__social-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-index-contact-us__social-description {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-contact-us__social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.page-index-contact-us__social-link img {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-index-contact-us__social-link img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-contact-us__hero-title {
        font-size: 2.8em;
    }

    .page-index-contact-us__hero-subtitle,
    .page-index-contact-us__channels-description,
    .page-index-contact-us__faq-description,
    .page-index-contact-us__form-description,
    .page-index-contact-us__why-contact-description,
    .page-index-contact-us__social-description {
        font-size: 1em;
    }

    .page-index-contact-us__channels-title,
    .page-index-contact-us__faq-title,
    .page-index-contact-us__form-title,
    .page-index-contact-us__why-contact-title,
    .page-index-contact-us__social-title {
        font-size: 2em;
    }

    .page-index-contact-us__channel-name {
        font-size: 1.5em;
    }

    .page-index-contact-us__benefit-title {
        font-size: 1.4em;
    }

    .page-index-contact-us__cta-text {
        font-size: 1.1em;
    }

    .page-index-contact-us__hero-button,
    .page-index-contact-us__cta-button,
    .page-index-contact-us__form-submit-button {
        font-size: 1.1em;
        padding: 12px 25px;
    }
}

@media (max-width: 768px) {
    .page-index-contact-us__hero {
        padding: 60px 0;
    }

    .page-index-contact-us__hero-title {
        font-size: 2.2em;
    }

    .page-index-contact-us__hero-subtitle {
        font-size: 0.9em;
    }

    .page-index-contact-us__channels-title,
    .page-index-contact-us__faq-title,
    .page-index-contact-us__form-title,
    .page-index-contact-us__why-contact-title,
    .page-index-contact-us__social-title {
        font-size: 1.8em;
    }

    .page-index-contact-us__channel-grid {
        grid-template-columns: 1fr;
    }

    .page-index-contact-us__benefits-grid {
        grid-template-columns: 1fr;
    }

    .page-index-contact-us__contact-form {
        padding: 30px;
    }

    .page-index-contact-us__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-index-contact-us__accordion-content {
        padding: 0 20px;
    }

    .page-index-contact-us__accordion-content.active {
        padding: 10px 20px;
    }

    .page-index-contact-us__social-link img {
        width: 50px;
        height: 50px;
    }

    .page-index-contact-us__cta-text {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-index-contact-us__hero-title {
        font-size: 1.8em;
    }

    .page-index-contact-us__hero-button {
        font-size: 1em;
        padding: 10px 20px;
    }

    .page-index-contact-us__channels-title,
    .page-index-contact-us__faq-title,
    .page-index-contact-us__form-title,
    .page-index-contact-us__why-contact-title,
    .page-index-contact-us__social-title {
        font-size: 1.5em;
    }

    .page-index-contact-us__channel-icon {
        width: 60px;
        height: 60px;
    }

    .page-index-contact-us__channel-name {
        font-size: 1.3em;
    }

    .page-index-contact-us__channel-button {
        font-size: 0.9em;
        padding: 10px 20px;
    }

    .page-index-contact-us__contact-form {
        padding: 20px;
    }

    .page-index-contact-us__form-input,
    .page-index-contact-us__form-textarea {
        padding: 12px;
    }

    .page-index-contact-us__form-submit-button {
        font-size: 1em;
        padding: 12px 25px;
    }

    .page-index-contact-us__benefit-icon {
        width: 50px;
        height: 50px;
    }

    .page-index-contact-us__benefit-title {
        font-size: 1.2em;
    }

    .page-index-contact-us__social-link img {
        width: 40px;
        height: 40px;
    }

    .page-index-contact-us__cta-text {
        font-size: 0.9em;
    }

    .page-index-contact-us__cta-button {
        font-size: 1em;
        padding: 10px 20px;
    }
}