/* style/contact.css */

.page-contact {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text on dark background */
    background-color: #000000; /* Main dark background */
}

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

.page-contact__hero-section {
    background: linear-gradient(135deg, #000000 0%, #333333 100%); /* Dark gradient */
    padding: 100px 0;
    text-align: center;
    border-bottom: 2px solid #FFD700; /* Gold accent */
}

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

.page-contact__hero-subtitle {
    font-size: 1.5em;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

.page-contact__contact-info,
.page-contact__fun88-direct,
.page-contact__faq {
    padding: 60px 0;
    text-align: center;
}

.page-contact__section-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.page-contact__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #FFD700;
}

.page-contact__section-description {
    font-size: 1.1em;
    color: #e0e0e0;
    max-width: 900px;
    margin: 20px auto 40px auto;
}

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

.page-contact__info-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

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

.page-contact__info-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(70%) sepia(80%) saturate(1000%) hue-rotate(0deg) brightness(120%) contrast(100%); /* Gold tint for icons */
}

.page-contact__card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-contact__card-text {
    color: #b0b0b0;
    font-size: 1em;
    margin-bottom: 20px;
}

.page-contact__link-text {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-contact__link-text:hover {
    color: #ffffff;
    text-decoration: underline;
}

.page-contact__btn {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #000000; /* Black text on gold */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 30px;
    border: none;
    cursor: pointer;
}

.page-contact__btn:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    color: #333333;
}

.page-contact__inline-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-contact__inline-link:hover {
    text-decoration: underline;
    color: #ffffff;
}

.page-contact__faq {
    background-color: #0a0a0a;
    border-top: 1px solid #333;
}

.page-contact__faq-item {
    background-color: #1a1a1a;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-contact__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-contact__faq-answer {
    color: #cccccc;
    font-size: 1em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-contact__hero-title {
        font-size: 2.5em;
    }
    .page-contact__hero-subtitle {
        font-size: 1.2em;
    }
    .page-contact__section-title {
        font-size: 2em;
    }
    .page-contact__info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-contact__hero-title {
        font-size: 2em;
    }
    .page-contact__hero-section {
        padding: 80px 0;
    }
    .page-contact__section-title {
        font-size: 1.8em;
    }
    .page-contact__info-card {
        padding: 20px;
    }
}