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

.page-contact-us__hero {
    background: linear-gradient(135deg, #007bff, #28a745);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-contact-us__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,blue_green]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-contact-us__title {
    font-size: 3em;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    color: #fff;
}

.page-contact-us__subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    color: #e0e0e0;
}

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

.page-contact-us__content-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-contact-us__contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    text-align: center;
}

.page-contact-us__method-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact-us__method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-contact-us__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: inline-block;
}

.page-contact-us__card-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-contact-us__method-card p {
    color: #555;
    margin-bottom: 25px;
}

.page-contact-us__btn {
    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;
    white-space: nowrap;
}

.page-contact-us__btn--primary {
    background-color: #007bff;
    color: #fff;
    border: 2px solid #007bff;
}

.page-contact-us__btn--primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.page-contact-us__btn--secondary {
    background-color: #f0f0f0;
    color: #007bff;
    border: 2px solid #007bff;
}

.page-contact-us__btn--secondary:hover {
    background-color: #e0e0e0;
    color: #0056b3;
    border-color: #0056b3;
}

.page-contact-us__form-section {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-bottom: 60px;
}

.page-contact-us__section-title {
    font-size: 2.2em;
    color: #007bff;
    text-align: center;
    margin-bottom: 20px;
}

.page-contact-us__section-description {
    font-size: 1.1em;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact-us__contact-form {
    display: grid;
    gap: 20px;
}

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

.page-contact-us__label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.page-contact-us__input,
.page-contact-us__textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
}

.page-contact-us__input:focus,
.page-contact-us__textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.page-contact-us__textarea {
    resize: vertical;
}

.page-contact-us__cta-section {
    text-align: center;
    background-color: #e9f7ee; /* Light green background */
    padding: 50px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-contact-us__cta-section .page-contact-us__section-title {
    color: #28a745;
}

.page-contact-us__btn--highlight {
    background-color: #28a745;
    color: #fff;
    border: 2px solid #28a745;
    font-size: 1.1em;
    padding: 15px 35px;
    margin-top: 20px;
}

.page-contact-us__btn--highlight:hover {
    background-color: #1e7e34;
    border-color: #1e7e34;
}

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

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

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

    .page-contact-us__method-card,
    .page-contact-us__form-section {
        padding: 25px;
    }
}

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

    .page-contact-us__hero,
    .page-contact-us__content-section {
        padding: 40px 0;
    }

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

    .page-contact-us__btn {
        width: 100%;
        box-sizing: border-box;
    }
}