/* style/contact.css */
.page-contact {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
}

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

.page-contact__hero-section {
    background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Dark gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for emphasis */
}

.page-contact__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
}

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

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

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

.page-contact__methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.page-contact__method-card {
    background-color: #2D3748; /* Slightly lighter dark background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px 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 8px 20px rgba(0, 0, 0, 0.5);
}

.page-contact__method-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2); /* Make icons stand out */
}

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

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

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

.page-contact__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #1A202C;
}

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

.page-contact__btn--secondary {
    background-color: #4A5568; /* Darker gray */
    color: #E0E0E0;
}

.page-contact__btn--secondary:hover {
    background-color: #5f6c82; /* Lighter dark gray */
    transform: translateY(-2px);
}

.page-contact__contact-form-section {
    padding: 80px 0;
    background-color: #1A202C;
}

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

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

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

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 20px);
    padding: 12px;
    border: 1px solid #4A5568;
    border-radius: 8px;
    background-color: #2A313C;
    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: #888;
}

.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;
    min-height: 120px;
}

.page-contact__cta-section {
    background-color: #2D3748; /* Slightly lighter dark background */
    padding: 80px 0;
    text-align: center;
    margin-top: 60px;
    border-top: 1px solid #4A5568;
}

.page-contact__cta-image {
    width: 150px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
}

.page-contact__cta-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-contact__cta-description {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #B0B0B0;
}

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

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

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

    .page-contact__form {
        padding: 30px;
    }

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

@media (max-width: 480px) {
    .page-contact__hero-section,
    .page-contact__contact-methods,
    .page-contact__contact-form-section,
    .page-contact__cta-section {
        padding: 50px 0;
    }

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

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

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

    .page-contact__form-input,
    .page-contact__form-textarea {
        width: calc(100% - 24px); /* Adjust for padding and border */
    }
}