/* style/contact.css */

/* Global page styles for .page-contact */
.page-contact {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey text on dark background */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
}

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

.page-contact h1,
.page-contact h2,
.page-contact h3 {
    color: #FFD700; /* Gold for headings */
    text-align: center;
    margin-bottom: 20px;
}

.page-contact h1 {
    font-size: 3em;
    margin-top: 0;
}

.page-contact h2 {
    font-size: 2.2em;
    margin-top: 40px;
}

.page-contact h3 {
    font-size: 1.6em;
    margin-top: 20px;
}

.page-contact p {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #cccccc; /* Slightly lighter grey for paragraphs */
}

.page-contact a {
    color: #FFD700; /* Gold for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-contact a:hover {
    color: #FFF; /* White on hover */
    text-decoration: underline;
}

/* Call to Action Button Styles */
.page-contact-cta-button {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
    padding: 15px 30px;
    background-color: #FFD700; /* Gold background */
    color: #1A202C; /* Dark text on gold */
    text-align: center;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-contact-cta-button:hover {
    background-color: #FFEA00; /* Lighter gold on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    text-decoration: none;
}

.page-contact-button { /* Smaller buttons for cards */
    display: inline-block;
    padding: 10px 20px;
    background-color: #FFD700;
    color: #1A202C;
    text-align: center;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.page-contact-button:hover {
    background-color: #FFEA00;
    text-decoration: none;
}

/* Banner Section */
.page-contact-banner {
    background: linear-gradient(135deg, #1A202C 0%, #3a475e 100%); /* Gradient background */
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-contact-banner-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.page-contact-banner-content h1 {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact-banner-content p {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #E0E0E0;
}

/* Contact Methods Section */
.page-contact-methods {
    padding: 60px 0;
    background-color: #222831; /* Slightly lighter dark background */
}

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

.page-contact-card {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-contact-card-icon {
    width: 120px; /* Increased size for icons */
    height: 120px;
    margin-bottom: 20px;
    object-fit: contain;
    border-radius: 50%; /* Make them circular */
    background-color: rgba(255, 215, 0, 0.1); /* Light gold background */
    padding: 15px;
}

.page-contact-card h3 {
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-contact-card p {
    font-size: 1em;
    color: #B0B0B0;
    margin-bottom: 20px;
    flex-grow: 1; /* Allow paragraph to take space */
}

.page-contact-info {
    font-weight: bold;
    color: #FFD700;
    font-size: 1.1em;
    margin-bottom: 20px;
}

/* FAQ Section */
.page-contact-faq {
    padding: 60px 0;
    background-color: #1A202C;
}

.page-contact-faq h2 {
    margin-bottom: 30px;
}

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

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.faq-question:hover {
    background: #2c343f;
}

.faq-question h3 {
    margin: 0;
    color: #FFD700;
    font-size: 1.25em;
    text-align: left;
    flex-grow: 1;
}

.faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: #FFD700;
    transition: transform 0.3s ease;
    line-height: 1;
}

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

.faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 20px 25px;
}

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

.faq-answer p {
    text-align: left;
    color: #E0E0E0;
    margin-bottom: 15px;
}

.page-contact-faq-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #FFD700;
    color: #1A202C;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.page-contact-faq-link:hover {
    background-color: #FFEA00;
    text-decoration: none;
}

/* Feedback Form Section */
.page-contact-feedback {
    padding: 60px 0;
    background-color: #222831;
}

.page-contact-form {
    max-width: 700px;
    margin: 40px auto 0;
    background-color: #1A202C;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

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

.page-contact-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #FFD700;
    font-size: 1.1em;
}

.page-contact-form-group input[type="text"],
.page-contact-form-group input[type="email"],
.page-contact-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #333;
    border: 1px solid #555;
    border-radius: 5px;
    color: #E0E0E0;
    font-size: 1em;
    box-sizing: border-box; /* Include padding in width */
}

.page-contact-form-group input::placeholder,
.page-contact-form-group textarea::placeholder {
    color: #888;
}

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

/* Why Us Section */
.page-contact-why-us {
    padding: 60px 0;
    background-color: #1A202C;
}

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

.page-contact-feature-card {
    background-color: #222831;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.page-contact-feature-card h3 {
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-contact-feature-card p {
    font-size: 1em;
    color: #B0B0B0;
    text-align: center;
}