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

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

.page-contact__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1A3A5F 100%);
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    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;
}

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

.page-contact__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

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

.page-contact__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #E0E0E0;
}

.page-contact__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-contact__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-contact__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
}

.page-contact__btn--primary:hover {
    background-color: #E6C200;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

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

.page-contact__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-contact__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 60px;
    position: relative;
}

.page-contact__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-contact__section-subtitle {
    font-size: 1.1em;
    color: #B0B0B0;
    text-align: center;
    margin-bottom: 40px;
}

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

.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: #1A3A5F;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-contact__info-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

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

.page-contact__info-text {
    color: #E0E0E0;
    margin-bottom: 15px;
}

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

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

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

.page-contact__form {
    max-width: 700px;
    margin: 40px auto 0;
    background-color: #0A192F;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

.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 10px;
    border: 1px solid #334D6B;
    border-radius: 5px;
    background-color: #0A192F;
    color: #E0E0E0;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
    color: #8899AA;
}

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

.page-contact__form-textarea {
    resize: vertical;
}

.page-contact__btn--submit {
    width: 100%;
    background-color: #FFD700;
    color: #0A192F;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__btn--submit:hover {
    background-color: #E6C200;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-contact__social-section {
    padding: 60px 0;
    background-color: #0A192F;
}

.page-contact__social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.page-contact__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #1A3A5F;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__social-link:hover {
    background-color: #FFD700;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-contact__social-link img {
    width: 30px;
    height: 30px;
    filter: invert(1) brightness(1.5) sepia(1) saturate(5) hue-rotate(30deg); /* Adjust for golden look */
}

.page-contact__social-link:hover img {
    filter: none; /* Remove filter on hover to show original icon color if desired, or adjust to match new background */
}

.page-contact__location-section {
    padding: 60px 0 80px;
    background-color: #1A3A5F;
}

.page-contact__map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #0A192F;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-contact__map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-contact__hero-title {
        font-size: 2.5em;
    }

    .page-contact__hero-description {
        font-size: 1em;
    }

    .page-contact__hero-actions {
        flex-direction: column;
    }

    .page-contact__btn {
        width: 80%;
        margin: 0 auto;
    }

    .page-contact__section-title {
        font-size: 2em;
    }

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

    .page-contact__form {
        padding: 30px 20px;
    }

    .page-contact__map-placeholder {
        height: 300px;
    }
}

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

    .page-contact__hero-title {
        font-size: 2em;
    }

    .page-contact__hero-description {
        font-size: 0.9em;
    }

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

    .page-contact__section-title {
        font-size: 1.8em;
    }

    .page-contact__section-subtitle {
        font-size: 0.9em;
    }

    .page-contact__info-card {
        padding: 20px;
    }

    .page-contact__info-icon {
        width: 50px;
        height: 50px;
    }

    .page-contact__info-title {
        font-size: 1.5em;
    }

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

    .page-contact__form-label {
        font-size: 1em;
    }

    .page-contact__form-input,
    .page-contact__form-textarea {
        padding: 10px;
    }

    .page-contact__btn--submit {
        font-size: 1.1em;
        padding: 12px;
    }

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

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

    .page-contact__map-placeholder {
        height: 250px;
    }
}