@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Roboto:wght@300;400;500;700&display=swap");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

/* Navbar */
.navbar {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(90deg, #1f1f1f, #2b2b2b);
    color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Header Section */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-left img {
    width: 100px;
    height: auto;
}

.header-left h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #e0e0e0;
    letter-spacing: 1px;
}

.header-right {
    display: flex;
    flex-direction: column;
    text-align: right;
    gap: 0.3rem;
}

.header-right a {
    color: #ddd;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.header-right .tel {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4db5ff;
}

.header-right a:hover {
    color: #4db5ff;
}

/* Nav Links */
.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 0.8rem 0;
    background-color: #222;
    flex-wrap: wrap;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 3px;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #4db5ff;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* --- FOOTER --- */
.footer {
    background: #1c1c1c;
    color: #aaa;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    border-top: 3px solid #4db5ff;
}

.footer-section {
    flex: 1 1 250px;
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: #4db5ff;
}

.footer p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #333;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #777;
}

.footer-contact {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: normal;
}

.footer-contact img {
    width: 16px;
    height: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 0.8rem;
    }

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

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
}
