/* ===================================================
   HEADER / NAVBAR
   =================================================== */
.navbar {
    padding: 12px 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.35rem;
    font-weight: 700;
    color: #212529 !important;
    text-decoration: none;
    letter-spacing: -0.3px;
    max-width: 100px;
}

.navbar-nav .nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: #212529;
    padding: 8px 18px;
    margin: 0 2px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #555;
}

.navbar-nav .nav-link.active {
    background: #212529;
    color: #fff !important;
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 0;
    margin-top: 0;
}

.footer-brand h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 0.88rem;
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    margin-right: 8px;
    font-size: 0.85rem;
    transition: opacity 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    opacity: 0.8;
    color: #fff;
}

.footer-social .fb {
    background: #1877f2;
}

.footer-social .ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-social .tw {
    background: #000;
}

.footer-social .yt {
    background: #ff0000;
}

.footer-social .li {
    background: #0077b5;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact p {
    font-size: 0.88rem;
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-contact i {
    color: #e8734a;
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.footer-newsletter-text {
    font-size: 0.88rem;
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-newsletter .input-group {
    max-width: 300px;
}

.footer-newsletter input {
    background: #333;
    border: 1px solid #444;
    color: #fff;
    font-size: 0.88rem;
    padding: 10px 15px;
    border-radius: 6px 0 0 6px;
}

.footer-newsletter input::placeholder {
    color: #888;
}

.footer-newsletter input:focus {
    box-shadow: none;
    border-color: #555;
    background: #333;
    color: #fff;
}

.footer-newsletter .btn {
    background: #fff;
    color: #212529;
    font-weight: 500;
    border: none;
    padding: 10px 20px;
    font-size: 0.88rem;
    border-radius: 0 6px 6px 0;
}

.footer-newsletter .btn:hover {
    background: #e8e8e8;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: #888;
    margin: 0;
}

.footer-bottom a {
    color: #888;
    text-decoration: none;
    font-size: 0.82rem;
    margin-left: 20px;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #fff;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 15px 0;
    }

    .navbar-nav .nav-link {
        padding: 10px 15px;
        margin: 2px 0;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding: 40px 0 0;
    }

    .footer-bottom .d-flex {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-bottom a {
        margin-left: 10px;
    }
}
