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

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

.page-contact-us__hero {
    background: linear-gradient(135deg, #0A0A0A, #1A1A1A);
    color: #F0F0F0;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-contact-us__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

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

.page-contact-us__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-contact-us__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 1;
}

.page-contact-us__info-section,
.page-contact-us__detail-pages,
.page-contact-us__form-section {
    padding: 60px 0;
    text-align: center;
}

.page-contact-us__info-section {
    background-color: #1A1A1A;
}

.page-contact-us__section-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
}

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

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

.page-contact-us__detail-card {
    background-color: #1A1A1A;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-contact-us__detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.page-contact-us__detail-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(0) saturate(100%) invert(88%) sepia(35%) saturate(708%) hue-rotate(334deg) brightness(101%) contrast(101%); /* Gold tint for icons */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

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

.page-contact-us__detail-text {
    font-size: 1em;
    color: #E0E0E0;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-contact-us__contact-form {
    max-width: 700px;
    margin: 40px auto 0;
    background-color: #1A1A1A;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
}

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

.page-contact-us__form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #FFD700;
}

.page-contact-us__form-input,
.page-contact-us__form-textarea {
    width: calc(100% - 20px);
    padding: 12px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #0A0A0A;
    color: #F0F0F0;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.page-contact-us__form-input:focus,
.page-contact-us__form-textarea:focus {
    border-color: #FFD700;
    outline: none;
}

.page-contact-us__form-textarea {
    resize: vertical;
    min-height: 120px;
}

.page-contact-us__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
    text-align: center;
}

.page-contact-us__button--primary {
    background-color: #FFD700;
    color: #0A0A0A;
}

.page-contact-us__button--primary:hover {
    background-color: #E6C200;
    color: #000;
}

.page-contact-us__button--secondary {
    background-color: #333;
    color: #FFD700;
    border: 1px solid #FFD700;
}

.page-contact-us__button--secondary:hover {
    background-color: #FFD700;
    color: #0A0A0A;
}

.text-highlight {
    color: #FFD700;
    font-weight: bold;
}

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

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

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

    .page-contact-us__info-section,
    .page-contact-us__detail-pages,
    .page-contact-us__form-section {
        padding: 40px 0;
    }

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

    .page-contact-us__contact-form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .page-contact-us__hero-title {
        font-size: 2em;
    }

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