/* style/contact.css */

:root {
    --primary-color: #007bff;
    --secondary-color: #ffc107;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #343a40;
    --border-color: #e0e0e0;
}

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

.page-contact a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-contact a:hover {
    color: var(--secondary-color);
}

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

.page-contact .section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-contact .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-contact .section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.page-contact .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--secondary-color);
    color: var(--text-light);
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.page-contact .cta-button:hover {
    background-color: #e0a800; /* Slightly darker secondary color */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* 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(--bg-dark); /* Dark background for contrast */
    color: var(--text-light);
    overflow: hidden;
}

.page-contact .hero-image-container {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 30px;
}

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

.page-contact .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 900px;
}

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

.page-contact .hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-contact .hero-description a {
    color: var(--secondary-color);
}

.page-contact .hero-description .highlight {
    color: var(--secondary-color);
    font-weight: bold;
}

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

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

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

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

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

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

.page-contact .card-text {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

.page-contact .contact-info {
    font-size: 1.1em;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.page-contact .card-button {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-contact .card-button:hover {
    background-color: #0056b3; /* Darker primary color */
}

/* Social Media Section */
.page-contact .social-media-section {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-contact .social-media-section .section-title, .page-contact .social-media-section .section-description {
    color: var(--text-light);
}

.page-contact .social-media-section .section-title::after {
    background-color: var(--secondary-color);
}

.page-contact .social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.page-contact .social-icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-light);
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.page-contact .social-icon-link:hover {
    transform: translateY(-5px);
    color: var(--secondary-color);
}

.page-contact .social-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 50%; /* Make icons round */
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px;
}

/* Contact Form Section */
.page-contact .contact-form-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

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

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

.page-contact .form-label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.page-contact .form-input, .page-contact .form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
}

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

.page-contact .submit-button {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact .submit-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Why Contact Section */
.page-contact .why-contact-section {
    padding: 60px 0;
    background-color: #f0f8ff; /* A very light blue tint */
}

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

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

.page-contact .benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

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

.page-contact .benefit-text {
    font-size: 1em;
    color: #666;
}

.page-contact .benefit-text a {
    color: var(--primary-color);
    font-weight: bold;
}

.page-contact .benefit-text .highlight {
    color: var(--secondary-color);
    font-weight: bold;
}

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

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

.page-contact .faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.page-contact .faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--primary-color);
}

.page-contact .faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.page-contact .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

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

.page-contact .faq-answer p {
    margin: 0;
    color: #555;
}

.page-contact .faq-answer a {
    color: var(--primary-color);
    font-weight: bold;
}

.page-contact .faq-answer .highlight {
    color: var(--secondary-color);
    font-weight: bold;
}

/* Bottom Call to Action */
.page-contact .call-to-action-bottom {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    color: var(--text-light);
    text-align: center;
}

.page-contact .call-to-action-bottom .section-title, .page-contact .call-to-action-bottom .section-description {
    color: var(--text-light);
}

.page-contact .call-to-action-bottom .section-title::after {
    background-color: var(--secondary-color);
}

.page-contact .call-to-action-bottom .cta-button {
    margin-top: 30px;
    font-size: 1.2em;
    padding: 18px 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-contact .hero-title {
        font-size: 2.8em;
    }
    .page-contact .hero-description {
        font-size: 1.1em;
    }
    .page-contact .section-title {
        font-size: 2em;
    }
    .page-contact .methods-grid, .page-contact .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-contact .social-icon {
        width: 70px;
        height: 70px;
    }
    .page-contact .social-icon-link span {
        font-size: 1em;
    }
}

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

@media (max-width: 480px) {
    .page-contact .hero-title {
        font-size: 1.8em;
    }
    .page-contact .section-title {
        font-size: 1.5em;
    }
    .page-contact .social-icons {
        gap: 15px;
    }
    .page-contact .social-icon {
        width: 60px;
        height: 60px;
    }
    .page-contact .card-title, .page-contact .benefit-title {
        font-size: 1.5em;
    }
    .page-contact .faq-question h3 {
        font-size: 1em;
    }
}