/* style/contact.css */

/* General styling for the contact page */
.page-contact {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

/* Hero Section */
.page-contact__hero {
    background: linear-gradient(135deg, #004AAD, #2a6bbd);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-contact__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract,geometric,blue_gold_pattern]');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-contact__hero .page-contact__container {
    position: relative;
    z-index: 1;
}

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

.page-contact__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-contact__button {
    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;
    cursor: pointer;
    font-size: 1em;
    border: none;
}

.page-contact__button--primary {
    background-color: #FFD700;
    color: #004AAD;
}

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

.page-contact__button--secondary {
    background-color: #004AAD;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-contact__button--secondary:hover {
    background-color: #003a8d;
    transform: translateY(-2px);
}

.page-contact__button--submit {
    background-color: #004AAD;
    color: #ffffff;
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
}

.page-contact__button--submit:hover {
    background-color: #003a8d;
    transform: translateY(-2px);
}

/* Contact Methods Section */
.page-contact__methods {
    padding: 60px 0;
    background-color: #ffffff;
    text-align: center;
}

.page-contact__subtitle {
    font-size: 2.2em;
    color: #004AAD;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

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

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

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

.page-contact__method-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-contact__method-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.1));
}

.page-contact__method-title {
    font-size: 1.5em;
    color: #004AAD;
    margin-bottom: 10px;
}

.page-contact__method-text {
    color: #555;
    margin-bottom: 15px;
}

.page-contact__link {
    color: #004AAD;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-contact__link:hover {
    color: #FFD700;
}

.page-contact__link--chat {
    background-color: #FFD700;
    color: #004AAD;
    padding: 8px 15px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.page-contact__link--chat:hover {
    background-color: #e6c200;
    color: #004AAD;
}

/* Contact Form Section */
.page-contact__form-section {
    padding: 60px 0;
    background-color: #f0f4f8;
    text-align: center;
}

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

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

.page-contact__form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #004AAD;
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 20px);
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    border-color: #004AAD;
    box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.2);
    outline: none;
}

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

/* Call to Action Section */
.page-contact__cta {
    padding: 60px 0;
    background-color: #004AAD;
    color: #ffffff;
    text-align: center;
}

.page-contact__cta .page-contact__subtitle {
    color: #FFD700;
}

.page-contact__cta .page-contact__subtitle::after {
    background-color: #ffffff;
}

.page-contact__cta .page-contact__description {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

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

    .page-contact__subtitle {
        font-size: 1.8em;
    }

    .page-contact__hero {
        padding: 60px 0;
    }

    .page-contact__methods,
    .page-contact__form-section,
    .page-contact__cta {
        padding: 40px 0;
    }

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

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

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

    .page-contact__description {
        font-size: 1em;
    }

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

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