/* style/contact.css */
.page-contact {
    font-family: Arial, sans-serif;
    color: #E0E0E0;
    background-color: #0A2540;
    line-height: 1.6;
}

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

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

.page-contact__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: page-contact__pulse 15s infinite alternate;
    z-index: 0;
}

@keyframes page-contact__pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

.page-contact__hero .page-contact__container {
    position: relative;
    z-index: 1;
}

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

.page-contact__description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #E0E0E0;
}

.page-contact__subtitle {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin: 60px 0 40px 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-contact__text {
    font-size: 1em;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__text--center {
    text-align: center;
}

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

.page-contact__btn--primary {
    background-color: #FFD700;
    color: #0A2540;
    border: 2px solid #FFD700;
}

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

.page-contact__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-contact__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2540;
    transform: translateY(-3px);
}

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

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