/* style/contact.css */

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

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

/* Hero Section */
.page-contact__hero {
    background: linear-gradient(135deg, #003366, #1a4d80);
    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,ok9aa]');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

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

.page-contact__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFCC00;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

/* Section Titles */
.page-contact__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

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

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

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

.page-contact__method-card {
    background-color: #f0f4f8;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

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

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

.page-contact__method-description {
    font-size: 1em;
    color: #555;
    margin-bottom: 25px;
    flex-grow: 1;
}

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

.page-contact__button--email {
    background-color: #003366;
    color: #ffffff;
}

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

.page-contact__button--livechat {
    background-color: #FFCC00;
    color: #003366;
}

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

.page-contact__button--faq {
    background-color: #6685a3;
    color: #ffffff;
}

.page-contact__button--faq:hover {
    background-color: #4d7094;
    transform: translateY(-2px);
}

.page-contact__button--primary {
    background-color: #FFCC00;
    color: #003366;
    padding: 15px 35px;
    font-size: 1.2em;
    border: 2px solid #FFCC00;
}

.page-contact__button--primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-3px);
}


/* CTA Section */
.page-contact__cta {
    background: linear-gradient(to right, #003366, #004080);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

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

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

.page-contact__cta-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.page-contact__cta-description {
    font-size: 1.15em;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

/* Info Section */
.page-contact__info {
    padding: 80px 0;
    background-color: #f0f4f8;
}

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

.page-contact__info-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-contact__info-title {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 10px;
    border-bottom: 2px solid #FFCC00;
    padding-bottom: 5px;
    display: inline-block;
}

.page-contact__info-text {
    font-size: 1em;
    color: #555;
    margin-bottom: 8px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-contact__title {
        font-size: 2.8em;
    }
    .page-contact__section-title {
        font-size: 2em;
    }
    .page-contact__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-contact__hero, .page-contact__methods, .page-contact__cta, .page-contact__info {
        padding: 60px 0;
    }
    .page-contact__title {
        font-size: 2.2em;
    }
    .page-contact__subtitle {
        font-size: 1em;
    }
    .page-contact__section-title {
        font-size: 1.8em;
    }
    .page-contact__grid, .page-contact__info-grid {
        grid-template-columns: 1fr;
    }
    .page-contact__cta-title {
        font-size: 1.8em;
    }
    .page-contact__cta-description {
        font-size: 1em;
    }
    .page-contact__button {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-contact__button--primary {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-contact__title {
        font-size: 1.8em;
    }
    .page-contact__section-title {
        font-size: 1.6em;
    }
    .page-contact__cta-title {
        font-size: 1.6em;
    }
    .page-contact__method-card, .page-contact__info-card {
        padding: 20px;
    }
}