/* style/contact.css */
.page-contact {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Light text on dark background */
    background-color: #1A2E4C; /* Main dark blue background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-contact__hero-section {
    background: linear-gradient(135deg, #1A2E4C, #2C4B71); /* Dark blue gradient */
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-contact__hero-description {
    font-size: 1.2em;
    color: #E0E6EF; /* Light grey for body text */
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-contact__hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* General Section Styling */
.page-contact__methods-section, .page-contact__form-section, .page-contact__why-contact-section, .page-contact__cta-section, .page-contact__responsible-gaming-section {
    padding: 60px 0;
    text-align: center;
}

.page-contact__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for titles */
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-contact__section-description {
    font-size: 1.1em;
    color: #C0C8D6; /* Lighter grey for descriptions */
    max-width: 900px;
    margin: 0 auto 40px;
}

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

.page-contact__method-card {
    background-color: #2C4B71; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-contact__method-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.page-contact__method-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for method titles */
    margin-bottom: 15px;
}

.page-contact__method-text {
    font-size: 1em;
    color: #E0E6EF;
    margin-bottom: 25px;
}

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

.page-contact__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A2E4C; /* Dark blue text on gold */
}

.page-contact__btn--primary:hover {
    background-color: #e5c300;
    transform: translateY(-2px);
}

.page-contact__btn--secondary {
    background-color: #4A6E9B; /* Lighter blue */
    color: #FFFFFF; /* White text */
    border: 1px solid #FFD700;
}

.page-contact__btn--secondary:hover {
    background-color: #5A7EA9;
    transform: translateY(-2px);
}

.page-contact__btn--submit {
    background-color: #FFD700;
    color: #1A2E4C;
    width: auto;
    padding: 15px 30px;
    margin-top: 20px;
}

.page-contact__btn--submit:hover {
    background-color: #e5c300;
    transform: translateY(-2px);
}

/* Contact Form */
.page-contact__contact-form {
    background-color: #2C4B71;
    padding: 40px;
    border-radius: 10px;
    max-width: 700px;
    margin: 40px auto 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    text-align: left;
}

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

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

.page-contact__form-input, .page-contact__form-textarea {
    width: calc(100% - 20px);
    padding: 12px;
    border: 1px solid #4A6E9B;
    border-radius: 5px;
    background-color: #1A2E4C;
    color: #FFFFFF;
    font-size: 1em;
    box-sizing: border-box;
}

.page-contact__form-input::placeholder, .page-contact__form-textarea::placeholder {
    color: #8C9BB4;
}

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

/* Why Contact Section */
.page-contact__why-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-contact__why-item {
    background-color: #2C4B71;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.page-contact__why-item:hover {
    background-color: #3A5C85;
}

.page-contact__why-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

.page-contact__why-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-contact__why-text {
    font-size: 0.95em;
    color: #E0E6EF;
}

/* CTA Section */
.page-contact__cta-section {
    background-color: #0F2038; /* Even darker blue for contrast */
    padding: 80px 0;
}

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

.page-contact__cta-description {
    font-size: 1.2em;
    color: #E0E6EF;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-contact__cta-buttons .page-contact__btn {
    margin: 0 15px;
}

/* Responsible Gaming Section */
.page-contact__responsible-gaming-section {
    background-color: #1A2E4C;
    padding: 50px 0;
    border-top: 1px solid #4A6E9B;
}

.page-contact__responsible-text {
    font-size: 1em;
    color: #C0C8D6;
    max-width: 800px;
    margin: 20px auto 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-contact__hero-title {
        font-size: 2.5em;
    }
    .page-contact__section-title, .page-contact__cta-title {
        font-size: 2em;
    }
    .page-contact__hero-description, .page-contact__section-description, .page-contact__cta-description {
        font-size: 1em;
    }
    .page-contact__methods-grid, .page-contact__why-contact-grid {
        grid-template-columns: 1fr;
    }
    .page-contact__cta-buttons .page-contact__btn {
        display: block;
        margin: 15px auto;
        width: 80%;
    }
}

@media (max-width: 480px) {
    .page-contact__hero-title {
        font-size: 2em;
    }
    .page-contact__section-title, .page-contact__cta-title {
        font-size: 1.8em;
    }
    .page-contact__contact-form {
        padding: 25px;
    }
}