/* style/contact.css */

:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #1A202C; /* Dark Blue/Black */
    --text-light: #F0F2F5;
    --text-dark: #333333;
    --background-light: #FFFFFF;
    --background-dark: #1A202C;
    --accent-color: #E6B800; /* Slightly darker gold for hover */
    --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: 0 20px;
}

.page-contact .section-title {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    padding-top: 40px;
}

.page-contact .section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-contact .cta-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.page-contact .hero-contact-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-color: var(--background-dark);
    color: var(--text-light);
    overflow: hidden;
}

.page-contact .hero-contact-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.page-contact .hero-contact-image {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-contact .hero-contact-content {
    text-align: center;
    max-width: 900px;
}

.page-contact .hero-contact-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

.page-contact .hero-contact-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-light);
    opacity: 0.9;
}

/* Contact Methods Section */
.page-contact .contact-methods-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

.page-contact .method-card {
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact .method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-contact .method-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%;
    padding: 10px;
    background-color: rgba(255, 215, 0, 0.1);
}

.page-contact .method-title {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-contact .method-text {
    font-size: 1em;
    color: var(--text-dark);
    margin-bottom: 25px;
}

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

.page-contact .method-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Contact Form Section */
.page-contact .contact-form-section {
    background-color: #F8F9FA;
    padding: 80px 0;
}

.page-contact .contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--background-light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

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

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

.page-contact .form-input,
.page-contact .form-textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1em;
    color: var(--text-dark);
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact .form-input:focus,
.page-contact .form-textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

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

.page-contact .submit-button {
    display: block;
    width: 100%;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 18px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact .submit-button:hover {
    background-color: #0F131C; /* Slightly darker secondary */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Advantages Section */
.page-contact .advantages-section {
    padding: 80px 0;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-contact .advantages-section .section-title {
    color: var(--primary-color);
}

.page-contact .advantages-section .section-description {
    color: var(--text-light);
    opacity: 0.9;
}

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

.page-contact .advantage-item {
    background-color: #2A3342; /* Darker background for contrast */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-contact .advantage-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: rgba(255, 215, 0, 0.2);
    padding: 15px;
}

.page-contact .advantage-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-contact .advantage-text {
    font-size: 1em;
    color: var(--text-light);
    opacity: 0.85;
}

/* FAQ Section */
.page-contact .faq-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--background-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: var(--background-light);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--secondary-color);
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    line-height: 1;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #fdfdfd;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 25px;
    border-top: 1px solid var(--border-color);
}

.faq-answer p {
    margin: 0;
    font-size: 1em;
    color: var(--text-dark);
    line-height: 1.7;
}

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

.page-contact .final-cta-section .section-title {
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.page-contact .final-cta-section .section-description {
    color: var(--secondary-color);
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-size: 1.15em;
}

.page-contact .final-cta-section .cta-button {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-size: 1.2em;
    padding: 18px 45px;
}

.page-contact .final-cta-section .cta-button:hover {
    background-color: #0F131C; /* Slightly darker secondary */
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-contact .hero-contact-title {
        font-size: 2.8em;
    }
    .page-contact .hero-contact-description {
        font-size: 1.1em;
    }
    .page-contact .section-title {
        font-size: 2em;
    }
    .page-contact .method-title,
    .page-contact .advantage-title {
        font-size: 1.6em;
    }
    .page-contact .method-icon,
    .page-contact .advantage-icon {
        width: 80px;
        height: 80px;
    }
    .page-contact .form-input,
    .page-contact .form-textarea {
        padding: 12px;
    }
    .page-contact .submit-button {
        padding: 15px;
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-contact .hero-contact-section {
        padding: 40px 15px;
    }
    .page-contact .hero-contact-title {
        font-size: 2.2em;
    }
    .page-contact .hero-contact-description {
        font-size: 1em;
    }
    .page-contact .hero-contact-image {
        max-height: 300px;
        margin-bottom: 30px;
    }
    .page-contact .section-title {
        font-size: 1.8em;
        padding-top: 30px;
    }
    .page-contact .section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-contact .contact-methods-section,
    .page-contact .contact-form-section,
    .page-contact .advantages-section,
    .page-contact .faq-section,
    .page-contact .final-cta-section {
        padding: 60px 0;
    }
    .page-contact .methods-grid,
    .page-contact .advantages-grid {
        grid-template-columns: 1fr;
    }
    .page-contact .method-card,
    .page-contact .advantage-item {
        padding: 25px;
    }
    .page-contact .method-icon,
    .page-contact .advantage-icon {
        width: 70px;
        height: 70px;
    }
    .page-contact .contact-form {
        padding: 30px;
    }
    .faq-question {
        padding: 15px 20px;
    }
    .faq-question h3 {
        font-size: 1.1em;
    }
    .faq-toggle {
        font-size: 1.5em;
    }
    .faq-answer {
        padding: 0 20px;
    }
    .faq-item.active .faq-answer {
        padding: 20px;
    }
    .page-contact .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-contact .hero-contact-title {
        font-size: 1.8em;
    }
    .page-contact .hero-contact-description {
        font-size: 0.9em;
    }
    .page-contact .hero-contact-image {
        max-height: 200px;
    }
    .page-contact .section-title {
        font-size: 1.5em;
    }
    .page-contact .section-description {
        font-size: 0.85em;
    }
    .page-contact .method-title,
    .page-contact .advantage-title {
        font-size: 1.4em;
    }
    .page-contact .method-icon,
    .page-contact .advantage-icon {
        width: 60px;
        height: 60px;
    }
    .page-contact .cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    .faq-question h3 {
        font-size: 1em;
    }
    .faq-toggle {
        font-size: 1.3em;
    }
}