*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===========================
NAVBAR
=============================*/

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 14px 30px;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

/* =================================
LOGO
===================================*/

.nav-left{
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-left .logo{
    color: #000;
    font-size: 36px;
    font-weight: bold;
    text-decoration: none;
}

/* =========================
LOGIN/ SIGN UP
===========================*/

.auth-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.auth-links a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: 0.25s ease;
}

.auth-links a {
    color: #555;
}

/* =========================
PROFILE BUTTON
===========================*/

.profile-btn{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eee;
    color: #111;
    text-decoration: none;
    overflow: hidden;
    transition: 0.25s ease;
}

.profile-btn {
    transform: scale(1.05);
}

.profile-btn i {
    font-size: 18px;
}

.profile-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================
HAMBUGER BUTTON
==========================*/
.menu-btn{
    background: none;
    border: none;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

/* ===========================
HUMBURGER MENU
=============================*/

.mobile-menu{
    display: none;
    flex-direction: column;
    position: fixed;
    top: 75px;
    right: 15px;
    background: #111;
    width: 210px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    z-index: 2000;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    padding: 14px 16px;
    text-decoration: none;
    border-bottom: 1px solid #292929;
    font-size: 15px;
    font-weight: 500;
    transition: 0.2s ease;
}

.mobile-menu a {
    border-bottom: none;
}

.mobile-menu a i {
    width: 20px;
    text-align: center;
}

/* =============================
CONTACT SECTION
===============================*/

.contact {
    background: #fff;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 70px;
}

/* ================================
FORM 
==================================*/

.form {
    width: 90%;
    max-width: 600px;
}

/* =================================
INPUT GROUP
==================================*/

.input-group {
    margin-bottom: 30px;
}


/* ==================================
INPUTS
====================================*/

input,textarea {
    width: 100%;
    padding: 12px;
    outline: 0;
    border: 1px solid #ccc;
    color: #111;
    background: #fff;
    font-size: 15px;
    border-radius: 4px;
    transition: 0.2s ease;
}

input,textarea{
    border-color: #111;
}

textarea {
    resize: vertical;
}

/* ==============================
LABELS
===============================*/

label {
    color: #111;
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ==========================
SUBMIT BUTTON
============================*/

.form button {
    padding: 12px 0;
    color: #fff;
    outline: none;
    background: #111;
    border: 1px solid #111;
    width: 100%;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 600;
    transition: 0.25s ease;
}

.form button {
    background: #333;
}

.form button{
    opacity: 0.6;
    cursor: not-allowed;
}

/* ================================
ROW
=================================*/

.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.row .input-group {
    flex-basis: 48%;
}

/* =================================
FORM MESSAGE
===================================*/

#form-message {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
}

/* ================================
LOADER 
==================================*/

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #343434;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

@keyframes spin {
    0%{
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* =================================
FOOTER
===================================*/
.footer {
    background: #0f0f0f;
    color: #fff;
    padding: 55px 20px 20px;
    margin-top: 0;
    border-top: 1px solid #222;
}

/* TOP BRAND AREA */

.footer-top {
    max-width: 1200px;
    margin: 0 auto 35px;
    text-align: center;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.footer-text {
    max-width: 700px;
    margin: 0 auto;
    color: #bdbdbd;
    font-size: 15px;
    line-height: 1.7;
}

/* ====================================
FOOTER LINKS
======================================*/

.footer-links{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    padding: 20px 0 30px;
}

/* EACH COLUMN */
.footer-column h3 {
    font-size: 16px;
    margin-bottom: 14px;
    color: #fff;
}

.footer-column a {
    display: block;
    color: #bdbdbd;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: 0.25s ease;
}

.footer-column a {
    color: #fff;
    transform: translateX(4px);
}

.footer-column p {
    color: #bdbdbd;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.small-text {
    font-size: 13px;
    line-height: 1.8;
}

/* ==========================
SOCIAL AREA
=============================*/

.social-box {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.social-box p {
    width: 100%;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600;
}

/* ICON LINKS */

.social-box a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.25s ease;
}

.social-box a i {
    font-size: 18px;
}

.social-box a {
    background: #2b2b2b;
    transform: translateY(-4px);
}

/* ==============================
FOOTER BOTTOM
================================*/

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 18px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #9c9c9c;
}

/* ===================================
TABLET
=====================================*/
@media (max-width: 992px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

/*====================================
MOBILE
====================================*/
@media (max-width: 768px) {
    .site-header {
        padding: 13px 18px;
    }

    .nav-left .logo {
        font-size: 28px;
    }

    .nav-right {
        gap: 12px;
    }

    .nav-links {
        gap: 10px;
    }

    .auth-links a {
        font-size: 14px;
    }

    .profile-btn {
        width: 36px;
        height: 36px;
    }

    .menu-btn {
        font-size: 23px;
    }

    .mobile-menu {
        top: 65px;
        right: 10px;
        width: 200px;
    }

    .contact {
        padding: 110px 15px 60px;
    }

    .form {
        width: 100%;
    }

    .row {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .row .input-group {
        flex-basis: 100%;
    }

    .footer {
        padding: 45px 16px 18px;
    }

    .footer-top {
        margin-bottom: 25px;
    }

    .footer-logo {
        font-size: 24px;
    }

    .footer-text {
        font-size: 14px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align:  left;
    }

    .footer-column h3 {
        margin-bottom: 10px;
    }

    .social-box a {
        width: 40px;
        height: 40px;
    }
}

/* ===============================
SMALL PHONES
=================================*/

@media (max-width: 480px) {
    .nav-left .logo {
        font-size: 25px;
    }

    .auth-links {
        gap: 8px;
    }

    .auth-links a {
        font-size: 13px;
    }

    .mobile-menu {
        width: 190px;
    }
}