/* ========================================= */
/*             CONTACT PAGE CSS              */
/* ========================================= */


/* ================= HERO SECTION ================= */

.contact-hero {
    padding: 90px 20px 110px;
    background: linear-gradient(135deg, #fff5e6, #ffe0d6);
    text-align: center;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 42px;
    color: #c62828;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-hero p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}


/* ================= CONTACT SECTION ================= */

.contact-section {
    padding: 20px 20px;
    background: #ffffff;
}

.contact-card {
    max-width: 650px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 25px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
}

.contact-card h2 {
    font-size: 30px;
    color: #c62828;
    margin-bottom: 45px;
    font-weight: 700;
}


/* ================= CONTACT INFO ================= */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.contact-item i {
    font-size: 30px;
    color: #e53935;
    background: #fff5f5;
    padding: 18px;
    border-radius: 50%;
    transition: 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.1);
    background: #ffe6e6;
}

.contact-item h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #777;
}

.contact-item a {
    display: block;
    font-size: 19px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    margin-top: 4px;
    transition: 0.3s ease;
}

.contact-item a:hover {
    color: #e53935;
}


@media (max-width: 1024px) {

    .contact-hero h1 {
        font-size: 34px;
    }

    .contact-card {
        padding: 50px 40px;
    }

    .contact-card h2 {
        font-size: 26px;
    }

    .contact-item i {
        font-size: 26px;
        padding: 16px;
    }

    .contact-item a {
        font-size: 17px;
    }
}


@media (max-width: 768px) {

    .contact-hero {
        padding: 60px 20px 80px;
    }

    .contact-hero h1 {
        font-size: 26px;
    }

    .contact-hero p {
        font-size: 15px;
    }

    .contact-section {
        padding: 70px 20px;
    }

    .contact-card {
        padding: 40px 25px;
        border-radius: 20px;
    }

    .contact-card h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .contact-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .contact-item i {
        font-size: 24px;
        padding: 14px;
    }

    .contact-item a {
        font-size: 16px;
    }
}


@media (max-width: 480px) {

    .contact-hero h1 {
        font-size: 22px;
    }

    .contact-hero p {
        font-size: 14px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-item h4 {
        font-size: 14px;
    }

    .contact-item a {
        font-size: 15px;
    }
}