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

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

.page-contact__hero {
    background: linear-gradient(135deg, #2C3E50 0%, #4a6d8c 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.page-contact__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-contact__title {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: #F39C12;
    font-weight: bold;
}

.page-contact__subtitle {
    font-size: 1.3em;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #e0e0e0;
}

.page-contact__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-contact__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.page-contact__methods,
.page-contact__form-section,
.page-contact__faq,
.page-contact__cta {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-contact__form-section {
    background-color: #eef4f8;
}

.page-contact__faq {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.page-contact__cta {
    background: linear-gradient(90deg, #2C3E50, #F39C12);
    color: #fff;
    text-align: center;
}

.page-contact__heading {
    font-size: 2.5em;
    color: #2C3E50;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-contact__heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #F39C12;
    border-radius: 2px;
}

.page-contact__description {
    text-align: center;
    font-size: 1.1em;
    color: #555;
    margin-bottom: 50px;
}

.page-contact__method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

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

.page-contact__method-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-contact__method-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-contact__method-title {
    font-size: 1.8em;
    color: #2C3E50;
    margin-bottom: 15px;
}

.page-contact__method-description {
    color: #666;
    margin-bottom: 25px;
}

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

.page-contact__btn--primary {
    background-color: #F39C12;
    color: #fff;
}

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

.page-contact__btn--secondary {
    background-color: #2C3E50;
    color: #fff;
}

.page-contact__btn--secondary:hover {
    background-color: #1a2a38;
    transform: translateY(-2px);
}

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

.page-contact__social-icon {
    font-size: 2em;
    color: #2C3E50;
    transition: color 0.3s ease;
}

.page-contact__social-icon:hover {
    color: #F39C12;
}

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

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

.page-contact__label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #2C3E50;
    font-size: 1.1em;
}

.page-contact__input,
.page-contact__textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.page-contact__input:focus,
.page-contact__textarea:focus {
    border-color: #F39C12;
    outline: none;
}

.page-contact__textarea {
    resize: vertical;
}

.page-contact__btn--submit {
    background-color: #F39C12;
    color: #fff;
    border: none;
    cursor: pointer;
    width: auto;
    padding: 15px 30px;
    font-size: 1.1em;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-contact__btn--submit:hover {
    background-color: #e08e0b;
    transform: translateY(-2px);
}

.page-contact__faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.page-contact__faq-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    text-align: left;
}

.page-contact__faq-question {
    font-size: 1.3em;
    color: #2C3E50;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-contact__faq-answer {
    color: #555;
    font-size: 0.95em;
}

.page-contact__faq-answer a {
    color: #F39C12;
    text-decoration: none;
    font-weight: bold;
}

.page-contact__faq-answer a:hover {
    text-decoration: underline;
}

.page-contact__faq-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: auto;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

.page-contact__cta-title {
    font-size: 2.8em;
    color: #fff;
    margin-bottom: 20px;
}

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

.page-contact__btn--cta {
    background-color: #F39C12;
    color: #fff;
    border: 2px solid #F39C12;
    margin: 0 10px;
    padding: 15px 35px;
    font-size: 1.1em;
}

.page-contact__btn--cta:hover {
    background-color: #e08e0b;
    border-color: #e08e0b;
}

.page-contact__btn--cta-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    margin: 0 10px;
    padding: 15px 35px;
    font-size: 1.1em;
}

.page-contact__btn--cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #F39C12;
    color: #F39C12;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-contact__title {
        font-size: 3em;
    }
    .page-contact__heading {
        font-size: 2em;
    }
    .page-contact__faq-image {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .page-contact__hero {
        padding: 60px 0;
        min-height: 300px;
    }
    .page-contact__title {
        font-size: 2.5em;
    }
    .page-contact__subtitle {
        font-size: 1em;
    }
    .page-contact__methods,
    .page-contact__form-section,
    .page-contact__faq,
    .page-contact__cta {
        padding: 40px 0;
    }
    .page-contact__heading {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-contact__method-grid,
    .page-contact__faq-grid {
        grid-template-columns: 1fr;
    }
    .page-contact__form {
        padding: 30px;
    }
    .page-contact__cta-title {
        font-size: 2em;
    }
    .page-contact__cta-description {
        font-size: 1em;
    }
    .page-contact__btn--cta,
    .page-contact__btn--cta-secondary {
        padding: 12px 25px;
        font-size: 1em;
        margin: 5px;
    }
    .page-contact__faq-image {
        display: none;
    }
}

@media (max-width: 480px) {
    .page-contact__title {
        font-size: 2em;
    }
    .page-contact__subtitle {
        font-size: 0.9em;
    }
    .page-contact__heading {
        font-size: 1.5em;
    }
    .page-contact__method-item,
    .page-contact__faq-item {
        padding: 20px;
    }
    .page-contact__btn,
    .page-contact__btn--submit {
        width: 100%;
        box-sizing: border-box;
    }
    .page-contact__cta-title {
        font-size: 1.8em;
    }
}