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

:root {
    --bg-color: #ffffff;
    --text-color: #212529;
    --hero-bg: #ededed;
    --card-bg: #f8f9fa;
}


body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-color) !important;
    color: var(--text-color) !important;
    transition: background-color 0.3s ease, color 0.3s ease;
}



/* ================= Header ================= */

.contact-header {
    background-color: var(--hero-bg);
    color: var(--text-color);
}

.contact-header h1 {
    font-size: 3rem;
}

.contact-header-img {
    max-height: 350px;
    object-fit: contain;
    max-height: 400px;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease-in-out;
}


.contact-header-img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {

    .contact-header {
        text-align: center;
    }

    .contact-header h1 {
        font-size: 2.2rem;
    }

    .contact-header-img {
        max-height: 280px;
    }
}

/* ================= Contact Info ================= */

.contact-info {
    background-color: var(--bg-color);
    color: var(--text-color);
}

.contact-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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


.contact-icon {
    width: 65px;
    height: 65px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #dc3545;
    color: white;

    border-radius: 50%;

    font-size: 25px;
}


/* ================= Contact Form ================= */

.contact-form-section {
    background-color: var(--hero-bg);
    color: var(--text-color);
}


.contact-form {
    background-color: var(--card-bg);
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
}


.contact-form .form-control {
    background-color: var(--bg-color);
    color: var(--text-color);
    border: 1px solid #ced4da;
}


.contact-form .form-control:focus {
    border-color: #dc3545;

    box-shadow:
        0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}


.contact-form .form-control::placeholder {
    color: #888;
}


/* ================= Location ================= */

.location-section {
    background-color: var(--bg-color);
    color: var(--text-color);
}


.location-box {
    overflow: hidden;

    border-radius: 15px;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.1);
}


/* ================= Responsive ================= */

@media (max-width: 768px) {

    .contact-header h1 {
        font-size: 2.2rem;
    }

    .contact-form {
        padding: 20px;
    }

}




/*//////// FOOTER ////// */

.social-icon {
    width: 35px;
    height: 35px;
    border: 1px solid #ced4da;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #495057;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

.footer-nav .nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-nav .nav-link:hover {
    color: #dc3545 !important;
}

#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 4px;
    cursor: pointer;

    display: none;
    z-index: 1000;
}