/* style/contact.css */
.page-contact {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-contact__hero {
    background: linear-gradient(135deg, #FFD700, #1E90FF);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-contact__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: page-contact__float 10s ease-in-out infinite alternate;
}

.page-contact__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: page-contact__float 12s ease-in-out infinite alternate-reverse;
}

@keyframes page-contact__float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.page-contact__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-contact__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__subtitle strong {
    color: #FFD700; /* Gold for emphasis */
}

.page-contact__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    text-align: center;
    cursor: pointer;
}

.page-contact__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #1E90FF; /* Deep Blue */
    border: 2px solid #FFD700;
}

.page-contact__btn--primary:hover {
    background-color: #e6c200; /* Darker Gold */
    transform: translateY(-2px);
}

.page-contact__btn--secondary {
    background-color: #1E90FF; /* Deep Blue */
    color: #fff;
    border: 2px solid #1E90FF;
}

.page-contact__btn--secondary:hover {
    background-color: #1a7cd9; /* Darker Blue */
    transform: translateY(-2px);
}

.page-contact__info-section {
    padding: 60px 0;
    background-color: #f0f2f5;
}

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

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

.page-contact__info-card:hover {
    transform: translateY(-5px);
}

.page-contact__info-title {
    font-size: 1.8em;
    color: #1E90FF; /* Deep Blue */
    margin-bottom: 15px;
}

.page-contact__info-text {
    margin-bottom: 25px;
    color: #555;
}

.page-contact__info-text strong {
    color: #1E90FF; /* Deep Blue */
}

.page-contact__form-section {
    padding: 60px 0;
    background-color: #fff;
}

.page-contact__form-title {
    font-size: 2.5em;
    color: #1E90FF; /* Deep Blue */
    text-align: center;
    margin-bottom: 20px;
}

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

.page-contact__form {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background-color: #fdfdfd;
}

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

.page-contact__label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.page-contact__input,
.page-contact__textarea {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    color: #333;
    background-color: #fefefe;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__input:focus,
.page-contact__textarea:focus {
    border-color: #FFD700; /* Gold */
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
    outline: none;
}

.page-contact__textarea {
    resize: vertical;
}

.page-contact__btn--submit {
    width: 100%;
    background-color: #FFD700; /* Gold */
    color: #1E90FF; /* Deep Blue */
    border: none;
    padding: 15px;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-contact__btn--submit:hover {
    background-color: #e6c200; /* Darker Gold */
    transform: translateY(-2px);
}

.page-contact__social-media {
    padding: 60px 0;
    background-color: #f0f2f5;
    text-align: center;
}

.page-contact__social-title {
    font-size: 2.5em;
    color: #1E90FF; /* Deep Blue */
    margin-bottom: 20px;
}

.page-contact__social-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #555;
}

.page-contact__social-description strong {
    color: #1E90FF; /* Deep Blue */
}

.page-contact__social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
}

.page-contact__social-link {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #1E90FF; /* Deep Blue */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-contact__social-link:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: #FFD700; /* Gold */
}

.page-contact__social-icon {
    width: 35px;
    height: 35px;
    /* IMPORTANT: Keeping original image color, NO CSS filter allowed here */
    /* filter: brightness(0) invert(1); if icons need to be white */
    transition: filter 0.3s ease; /* Transition for potential future filter changes if allowed */
}

.page-contact__cta {
    margin-top: 50px;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-contact__cta-text {
    font-size: 1.5em;
    color: #1E90FF; /* Deep Blue */
    margin-bottom: 30px;
}

.page-contact__cta-text strong {
    color: #FFD700; /* Gold */
}

.page-contact__responsible-gaming {
    padding: 60px 0;
    background-color: #333; /* Dark background for contrast */
    color: #fff;
    text-align: center;
}

.page-contact__responsible-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold */
    margin-bottom: 20px;
}

.page-contact__responsible-text {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #ccc;
}

.page-contact__responsible-text strong {
    color: #FFD700; /* Gold */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-contact__hero {
        padding: 60px 0;
    }

    .page-contact__title {
        font-size: 2.5em;
    }

    .page-contact__subtitle {
        font-size: 1.1em;
    }

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

    .page-contact__form-title,
    .page-contact__social-title,
    .page-contact__responsible-title {
        font-size: 2em;
    }

    .page-contact__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-contact__social-icons {
        gap: 15px;
    }

    .page-contact__social-link {
        width: 50px;
        height: 50px;
    }

    .page-contact__social-icon {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .page-contact__hero {
        padding: 40px 0;
    }

    .page-contact__title {
        font-size: 2em;
    }

    .page-contact__subtitle {
        font-size: 1em;
    }

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

    .page-contact__form-title,
    .page-contact__social-title,
    .page-contact__responsible-title {
        font-size: 1.8em;
    }

    .page-contact__form {
        padding: 20px;
    }

    .page-contact__social-icons {
        flex-wrap: wrap;
    }
}