* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.contact-page {
    width: 100%;
    min-height: 650px;
    padding: 50px 10% 0;
    overflow: hidden;
}

.contact-header {
    width: 100%;
    text-align: center;
}

.contact-header h1 {
    font-size: 50px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #111111;
}

.heading-line {
    width: 70px;
    height: 4px;
    background-color: #d4a263;
    margin: 15px auto 20px;
}

.contact-header p {
    font-size: 16px;
    color: #444444;
}

.contact-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 10%;
    margin-top: 70px;
}

.about-section {
    width: 48%;
    position: relative;
}

.about-section h2,
.location-section h2 {
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #111111;
}

.small-line {
    width: 40px;
    height: 3px;
    background-color: #d4a263;
    margin-top: 12px;
    margin-bottom: 20px;
}

.about-section > p {
    width: 80%;
    font-size: 15px;
    line-height: 1.7;
    color: #444444;
}

.jersey-image {
    width: 100%;
    margin-top: 30px;
}

.jersey-image img {
    width: 100%;
    max-width: 530px;
    height: auto;
    display: block;
    object-fit: contain;
}

.contact-details {
    width: 48%;
    padding-top: 0;
}

.location-section {
    width: 100%;
}

.location-content {
    display: flex;
    align-items: flex-start;
    margin-top: 28px;
}

.location-icon {
    width: 45px;
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-icon i {
    font-size: 35px;
    color: #e53935;
}

.address {
    margin-left: 15px;
}

.address strong {
    display: block;
    font-size: 17px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 5px;
}

.address p {
    font-size: 16px;
    line-height: 1.7;
    color: #444444;
}

.whatsapp-section {
    width: 100%;
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-top: 55px;
    transition: transform 0.2s ease;
}

.whatsapp-section:hover {
    transform: translateY(-3px);
}

.whatsapp-icon {
    width: 82px;
    height: 82px;
    min-width: 82px;
    border-radius: 50%;
    /* background-color: #25D366; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon i {
    font-size: 48px;
    color: #ffffff;
}

.whatsapp-text {
    margin-left: 25px;
}

.whatsapp-text h3 {
    font-size: 17px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 5px;
}

.whatsapp-text p {
    font-size: 15px;
    color: #555555;
}


/* ================================
   FOOTER
================================ */

.footer {
    width: 100%;
    height: 84px;
    background-color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    position: fixed;
    bottom: 0;
}

.footer p {
    font-size: 13px;
    color: #ffffff;
}

.main-content {
        padding-bottom: 100px !important;
    }

@media (max-width: 900px) {
    .main-content {
        padding-bottom: 70px !important;
    }
}



@media (max-width: 900px) {

    .contact-page {
        padding: 45px 7% 0;
    }

    .contact-content {
        gap: 5%;
    }

    .about-section,
    .contact-details {
        width: 50%;
    }

    .about-section > p {
        width: 95%;
    }

    .contact-header h1 {
        font-size: 45px;
    }

}



@media (max-width: 650px) {

    .contact-page {
        padding: 40px 7% 0;
    }

    .contact-header h1 {
        font-size: 38px;
    }

    .contact-header p {
        font-size: 14px;
        line-height: 1.6;
    }

    .contact-content {
        display: block;
        margin-top: 50px;
    }

    .about-section,
    .contact-details {
        width: 100%;
    }

    .about-section > p {
        width: 100%;
    }

    .jersey-image {
        margin-top: 30px;
    }

    .contact-details {
        margin-top: 45px;
    }

    .whatsapp-section {
        margin-top: 45px;
        margin-bottom: 40px;
    }

    .whatsapp-icon {
        width: 70px;
        min-width: 70px;
        height: 70px;
    }

    .whatsapp-icon i {
        font-size: 40px;
    }

    .whatsapp-text {
        margin-left: 15px;
    }

    .whatsapp-text h3 {
        font-size: 15px;
    }

    .whatsapp-text p {
        font-size: 13px;
    }

    .footer {
        height: 70px;
    }

}



@media (max-width: 400px) {

    .contact-header h1 {
        font-size: 32px;
    }

    .contact-header p {
        font-size: 13px;
    }

    .about-section h2,
    .location-section h2 {
        font-size: 22px;
    }

    .address p {
        font-size: 14px;
    }

}