/* style/contact.css */

/* Base styles for the page-contact container */
.page-contact {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

/* Hero Section */
.page-contact-hero {
    background: linear-gradient(135deg, #0056B3, #003d80);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-contact-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-contact-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-contact-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
    margin: 10px 5px;
}

.page-contact-btn-primary {
    background-color: #FFD700;
    color: #003d80;
}

.page-contact-btn-primary:hover {
    background-color: #e6c200;
    color: #0028ff;
}

.page-contact-btn-secondary {
    background-color: #0056B3;
    color: #fff;
    border: 1px solid #FFD700;
}

.page-contact-btn-secondary:hover {
    background-color: #003d80;
    border-color: #e6c200;
}

.page-contact-btn-white {
    background-color: #fff;
    color: #0056B3;
    border: 1px solid #0056B3;
}
.page-contact-btn-white:hover {
    background-color: #f0f0f0;
    color: #003d80;
}

.page-contact-btn-gold {
    background-color: #FFD700;
    color: #0056B3;
    border: 1px solid #FFD700;
}
.page-contact-btn-gold:hover {
    background-color: #e6c200;
    color: #003d80;
}


/* General Section Styling */
.page-contact-section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.page-contact-section:nth-of-type(even) {
    background-color: #f0f5f9;
}

.page-contact-heading {
    font-size: 2.5em;
    color: #0056B3;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-contact-subheading {
    font-size: 1.8em;
    color: #0056B3;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-contact-list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-contact-list li {
    margin-bottom: 10px;
    color: #444;
}

.page-contact-list-small {
    list-style: circle;
    margin-left: 15px;
    font-size: 0.95em;
    color: #555;
}

/* Channel Grid */
.page-contact-channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

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

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

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

.page-contact-link {
    color: #0056B3;
    text-decoration: none;
    font-weight: bold;
}

.page-contact-link:hover {
    text-decoration: underline;
    color: #FFD700;
}

/* Contact Form */
.page-contact-form-section {
    background-color: #f8f8f8;
}

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

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

.page-contact-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #0056B3;
}

.page-contact-input,
.page-contact-textarea {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
    color: #333;
}

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

.page-contact-input::placeholder,
.page-contact-textarea::placeholder {
    color: #999;
}

/* FAQ Section */
.page-contact-faq-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-contact-faq-question {
    background-color: #0056B3;
    color: #fff;
    padding: 18px 25px;
    margin: 0;
    cursor: pointer;
    font-size: 1.2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-contact-faq-question:hover {
    background-color: #003d80;
}

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

.page-contact-faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-contact-faq-answer {
    padding: 20px 25px;
    background-color: #fefefe;
    border-top: 1px solid #e0e0e0;
    display: none;
    color: #444;
}

.page-contact-faq-answer p {
    margin-bottom: 10px;
}

.page-contact-faq-answer .page-contact-link-small {
    color: #0056B3;
    text-decoration: underline;
    font-size: 0.9em;
}

.page-contact-faq-answer .page-contact-link-small:hover {
    color: #FFD700;
}

/* Responsible Gaming Section */
.page-contact-responsible-gaming {
    text-align: center;
    background-color: #f0f5f9;
}

.page-contact-image-fullwidth {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Final CTA Section */
.page-contact-final-cta {
    background: linear-gradient(135deg, #0056B3, #003d80);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-contact-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-contact-cta-image {
    width: 150px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 50%;
    border: 5px solid #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.page-contact-heading-white {
    color: #FFD700;
    margin-bottom: 20px;
}

.page-contact-description-white {
    font-size: 1.1em;
    max-width: 800px;
    margin-bottom: 40px;
}

/* Copyright */
.page-contact-copyright {
    background-color: #003d80;
    color: #aaa;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-contact-title {
        font-size: 2.2em;
    }

    .page-contact-heading {
        font-size: 2em;
    }

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

    .page-contact-form {
        padding: 25px;
    }
}

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

    .page-contact-heading {
        font-size: 1.6em;
    }

    .page-contact-description {
        font-size: 1em;
    }

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

    .page-contact-form {
        padding: 15px;
    }
}