/* style/contact.css */
.page-contact {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

/* Hero Banner */
.page-contact .hero-banner {
    position: relative;
    width: 100%;
    height: 400px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #ffffff;
    padding: 20px;
}

.page-contact .hero-banner .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-contact .hero-banner .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.7); /* Primary color with transparency */
    z-index: 2;
}

.page-contact .hero-banner .hero-content-wrapper {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.page-contact .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #F39C12; /* Secondary color for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-contact .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #F39C12; /* Secondary color */
    color: #2C3E50; /* Primary color for text */
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-contact .cta-button:hover {
    background: #E67E22; /* Slightly darker orange */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Section Styling */
.page-contact section {
    padding: 60px 0;
    text-align: center;
}

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

.page-contact .section-title {
    font-size: 2.5em;
    color: #2C3E50; /* Primary color */
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-contact .section-description {
    font-size: 1.1em;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.page-contact .method-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-contact .method-item h3 {
    font-size: 1.6em;
    color: #2C3E50; /* Primary color */
    margin-bottom: 15px;
}

.page-contact .method-item p {
    font-size: 1em;
    color: #666;
    margin-bottom: 15px;
}

.page-contact .method-item .method-button {
    display: inline-block;
    padding: 10px 25px;
    background: #F39C12; /* Secondary color */
    color: #2C3E50; /* Primary color for text */
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-contact .method-item .method-button:hover {
    background: #E67E22;
}

.page-contact .email-link, .page-contact .phone-link {
    color: #2C3E50;
    text-decoration: none;
    font-weight: bold;
}

.page-contact .email-link:hover, .page-contact .phone-link:hover {
    text-decoration: underline;
    color: #F39C12;
}

.page-contact .social-links {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.page-contact .social-links li {
    margin-bottom: 8px;
}

.page-contact .social-links a {
    color: #2C3E50;
    text-decoration: none;
    font-weight: bold;
}

.page-contact .social-links a:hover {
    color: #F39C12;
    text-decoration: underline;
}

/* Commitment Points */
.page-contact .commitment-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-contact .point-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

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

.page-contact .point-item h3 {
    font-size: 1.8em;
    color: #2C3E50;
    margin-bottom: 15px;
}

.page-contact .point-item p {
    color: #666;
}

/* FAQ Section */
.page-contact .faq-section {
    background-color: #f9f9f9;
}

.page-contact .faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact .faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.page-contact .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #ffffff;
    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: #2C3E50;
}

.page-contact .faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: #F39C12; /* 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 25px;
    background: #fdfdfd;
    text-align: left;
}

.page-contact .faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height for content */
    padding: 15px 25px;
}

.page-contact .faq-answer p {
    margin: 0;
    color: #444;
    font-size: 1em;
}

.page-contact .faq-answer a {
    color: #2C3E50;
    text-decoration: underline;
    font-weight: bold;
}

.page-contact .faq-answer a:hover {
    color: #F39C12;
}

/* Feedback Form */
.page-contact .feedback-form-section {
    background-color: #ffffff;
}

.page-contact .feedback-form {
    max-width: 700px;
    margin: 40px auto 0;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
}

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

.page-contact .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #2C3E50; /* 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;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    color: #333;
    background-color: #f8f8f8;
    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: #F39C12; /* Secondary color */
    outline: none;
}

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

.page-contact .submit-button {
    display: block;
    width: 100%;
    padding: 15px;
    background: #F39C12; /* Secondary color */
    color: #2C3E50; /* Primary color for text */
    border: none;
    border-radius: 8px;
    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: #E67E22;
    transform: translateY(-2px);
}

/* Partnership Section */
.page-contact .partnership-section {
    background-color: #eaf2f8; /* Light background for contrast */
}

/* Responsible Gaming Section */
.page-contact .responsible-gaming-section {
    background-color: #fdf3e9; /* Another light background */
}

/* 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 .method-grid, .page-contact .commitment-points {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-contact .faq-question h3 {
        font-size: 1.1em;
    }
    .page-contact .faq-toggle {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-contact .hero-banner {
        height: 350px;
    }
    .page-contact .hero-title {
        font-size: 2.2em;
    }
    .page-contact .hero-description {
        font-size: 1em;
    }
    .page-contact .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-contact section {
        padding: 40px 0;
    }
    .page-contact .section-title {
        font-size: 1.8em;
    }
    .page-contact .section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-contact .method-grid, .page-contact .commitment-points {
        grid-template-columns: 1fr;
    }
    .page-contact .method-item, .page-contact .point-item {
        padding: 25px;
    }
    .page-contact .method-icon, .page-contact .point-icon {
        width: 80px;
        height: 80px;
    }
    .page-contact .faq-question {
        padding: 15px 20px;
    }
    .page-contact .faq-question h3 {
        font-size: 1em;
    }
    .page-contact .faq-toggle {
        font-size: 1.3em;
    }
    .page-contact .faq-answer {
        padding: 10px 20px;
    }
    .page-contact .feedback-form {
        padding: 20px;
    }
    .page-contact .form-group input, .page-contact .form-group textarea {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .page-contact .hero-banner {
        height: 300px;
    }
    .page-contact .hero-title {
        font-size: 1.8em;
    }
    .page-contact .hero-description {
        font-size: 0.9em;
    }
    .page-contact .cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-contact .section-title {
        font-size: 1.5em;
    }
    .page-contact .section-description {
        font-size: 0.9em;
    }
    .page-contact .method-item h3 {
        font-size: 1.4em;
    }
    .page-contact .point-item h3 {
        font-size: 1.5em;
    }
}