/* style/contact.css */

/* General Page Contact Styling */
.page-contact {
    font-family: 'Arial', 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, #FF4500, #1E90FF);
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-contact__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

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

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

.page-contact__subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Info Section */
.page-contact__info-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

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

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

.page-contact__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: none; /* Ensure no CSS filter is applied to change image color */
}

.page-contact__card-title {
    font-size: 1.8em;
    color: #FF4500;
    margin-bottom: 15px;
    font-weight: bold;
}

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

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

.page-contact__link:hover {
    color: #007bff;
    text-decoration: underline;
}

/* Call to Action Section */
.page-contact__cta-section {
    background-color: #f0f0f0;
    padding: 80px 0;
    text-align: center;
}

.page-contact__cta-title {
    font-size: 2.8em;
    color: #FF4500;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-contact__cta-text {
    font-size: 1.1em;
    color: #444;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-contact__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.page-contact__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.page-contact__btn--primary {
    background-color: #FF4500;
    color: #ffffff;
    border: 2px solid #FF4500;
}

.page-contact__btn--primary:hover {
    background-color: #e63900;
    border-color: #e63900;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
}

.page-contact__btn--secondary {
    background-color: #1E90FF;
    color: #ffffff;
    border: 2px solid #1E90FF;
}

.page-contact__btn--secondary:hover {
    background-color: #1565b3;
    border-color: #1565b3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.4);
}

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

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

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

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

    .page-contact__btn {
        width: 100%;
        text-align: center;
    }

    .page-contact__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

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

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

    .page-contact__info-card {
        padding: 25px;
    }

    .page-contact__card-title {
        font-size: 1.5em;
    }

    .page-contact__btn {
        font-size: 1em;
        padding: 12px 20px;
    }
}