/* style/contact.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #000080; /* Dark Blue */
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f8f8f8;
    --background-dark: #0a0a2a;
    --border-color: #e0e0e0;
}

.page-contact {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

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

/* Hero Section */
.page-contact-hero-section {
    background: linear-gradient(135deg, var(--secondary-color), #00004d);
    padding: 60px 0;
    text-align: center;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-contact-hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.page-contact-hero-content h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact-hero-content p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #e0e0e0;
}

.page-contact-cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-contact-cta-button:hover {
    background: #ffc400;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* Channels Section */
.page-contact-channels-section {
    padding: 60px 0;
    background-color: var(--background-light);
    text-align: center;
}

.page-contact-channels-section h2 {
    font-size: 2.5em;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.page-contact-channels-section p {
    font-size: 1.1em;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-contact-channel-item {
    background-color: var(--text-light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-contact-channel-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-contact-channel-item h3 {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-contact-channel-icon {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-contact-channel-item p {
    font-size: 1em;
    color: var(--text-dark);
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-contact-channel-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: all 0.3s ease;
}

.page-contact-channel-button:hover {
    background: #ffc400;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

/* Form Section */
.page-contact-form-section {
    padding: 60px 0;
    background-color: var(--background-dark);
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-contact-form-section h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.page-contact-form-section p {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #1a1a3a;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    text-align: left;
    position: relative;
    z-index: 1;
}

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

.page-contact-form-group label {
    display: block;
    font-size: 1.1em;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.page-contact-form-group input[type="text"],
.page-contact-form-group input[type="email"],
.page-contact-form-group textarea {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #2a2a4a;
    color: var(--text-light);
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.page-contact-form-group input[type="text"]:focus,
.page-contact-form-group input[type="email"]:focus,
.page-contact-form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.page-contact-form-group textarea {
    resize: vertical;
}

.page-contact-submit-button {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-contact-submit-button:hover {
    background: #ffc400;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-contact-form-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

/* Info Section */
.page-contact-info-section {
    padding: 60px 0;
    background-color: var(--background-light);
    text-align: center;
}

.page-contact-info-section h2 {
    font-size: 2.5em;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.page-contact-info-content {
    max-width: 900px;
    margin: 0 auto 40px auto;
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--text-dark);
}

.page-contact-info-content strong {
    color: var(--secondary-color);
}

.page-contact-info-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

/* Why Us Section */
.page-contact-why-us-section {
    padding: 60px 0;
    background-color: #f0f0f0;
    text-align: center;
}

.page-contact-why-us-section h2 {
    font-size: 2.5em;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

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

.page-contact-why-us-item {
    background-color: var(--text-light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease;
}

.page-contact-why-us-item:hover {
    transform: translateY(-5px);
}

.page-contact-why-us-item h3 {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-contact-why-us-item p {
    font-size: 1em;
    color: var(--text-dark);
}

/* FAQ Section */
.page-contact-faq-section {
    padding: 60px 0;
    background-color: var(--background-dark);
    color: var(--text-light);
    text-align: center;
}

.page-contact-faq-section h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.page-contact-faq-section p {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

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

.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #1a1a3a;
    border: 1px solid #333;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.faq-question:hover {
    background: #2a2a4a;
    border-color: var(--primary-color);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--text-light);
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: #ffc400;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background-color: #0d0d2a;
    border-radius: 0 0 8px 8px;
    color: #cccccc;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed */
    padding: 20px 25px;
    border: 1px solid #333;
    border-top: none;
}

.faq-answer p {
    margin: 0;
    font-size: 1em;
    line-height: 1.7;
    color: #cccccc;
}

.page-contact-faq-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

/* Final CTA Section */
.page-contact-cta-final-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), #ffc400);
    text-align: center;
    color: var(--secondary-color);
}

.page-contact-cta-final-section h2 {
    font-size: 3em;
    margin-bottom: 25px;
    color: var(--secondary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-contact-cta-final-section p {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #333;
}

.page-contact-cta-button-large {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-contact-cta-button-large:hover {
    background: #1a1a4a;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-contact-hero-content h1 {
        font-size: 2.8em;
    }
    .page-contact-hero-content p {
        font-size: 1.1em;
    }
    .page-contact-channels-section h2,
    .page-contact-form-section h2,
    .page-contact-info-section h2,
    .page-contact-why-us-section h2,
    .page-contact-faq-section h2 {
        font-size: 2.2em;
    }
    .page-contact-cta-final-section h2 {
        font-size: 2.5em;
    }
    .page-contact-cta-button-large {
        padding: 15px 40px;
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .page-contact-container {
        padding: 15px;
    }
    .page-contact-hero-section {
        padding: 40px 0;
    }
    .page-contact-hero-content h1 {
        font-size: 2.2em;
    }
    .page-contact-hero-content p {
        font-size: 1em;
    }
    .page-contact-cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-contact-channels-section,
    .page-contact-form-section,
    .page-contact-info-section,
    .page-contact-why-us-section,
    .page-contact-faq-section,
    .page-contact-cta-final-section {
        padding: 40px 0;
    }
    .page-contact-channels-section h2,
    .page-contact-form-section h2,
    .page-contact-info-section h2,
    .page-contact-why-us-section h2,
    .page-contact-faq-section h2 {
        font-size: 1.8em;
    }
    .page-contact-channel-grid {
        grid-template-columns: 1fr;
    }
    .page-contact-channel-icon {
        width: 100px;
        height: 100px;
    }
    .page-contact-form {
        padding: 25px;
    }
    .page-contact-form-group label {
        font-size: 1em;
    }
    .page-contact-form-group input,
    .page-contact-form-group textarea {
        padding: 10px;
    }
    .page-contact-submit-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-contact-why-us-grid {
        grid-template-columns: 1fr;
    }
    .faq-question h3 {
        font-size: 1.1em;
    }
    .faq-question,
    .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
    .page-contact-cta-final-section h2 {
        font-size: 2em;
    }
    .page-contact-cta-final-section p {
        font-size: 1.1em;
    }
    .page-contact-cta-button-large {
        padding: 12px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-contact-hero-content h1 {
        font-size: 1.8em;
    }
    .page-contact-channels-section h2,
    .page-contact-form-section h2,
    .page-contact-info-section h2,
    .page-contact-why-us-section h2,
    .page-contact-faq-section h2 {
        font-size: 1.6em;
    }
    .page-contact-cta-final-section h2 {
        font-size: 1.8em;
    }
    .page-contact-cta-button,
    .page-contact-channel-button,
    .page-contact-submit-button,
    .page-contact-cta-button-large {
        width: 100%;
        box-sizing: border-box;
    }
}