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

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

:root {
    --red: #CC0000;
    --dark-red: #a00000;
    --gold: #c8a45a;
    --dark: #222;
    --gray: #666;
    --light-gray: #f5f5f5;
    --white: #fff;
}

body {
    font-family: "Montserrat", sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

.topbar {
    background: var(--red);
    height: 40px;
}

.topbar-inner {
    max-width: 80%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.topbar-inner input {
    padding: 5px 12px;
    font-size: 13px;
    border: none;
    outline: none;
    border-radius: 3px 0 0 3px;
    width: 220px;
    height: 28px;
    font-family: "Montserrat", sans-serif;
}

.topbar-inner button {
    background: #b30000;
    border: none;
    padding: 5px 12px;
    height: 28px;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
}

nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    height: 72px;
}

.nav-inner {
    max-width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    text-decoration: none;
}

.nav-logo img {
    height: 56px;
    width: 56px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
}

.nav-links>li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    transition: color .2s;
}

.nav-links a:hover,
.nav-links a.nav-active {
    color: var(--red);
    font-weight: 600;
}

.nav-links li.has-dropdown {
    padding-bottom: 16px;
    margin-bottom: -16px;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 210px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    border-top: 2px solid var(--red);
    z-index: 2000;
    border-radius: 0 0 4px 4px;
    padding: 6px 0;
}

.nav-links li.has-dropdown:hover .dropdown {
    display: block;
}

.dropdown li {
    list-style: none;
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--dark);
    font-weight: 400;
}

.dropdown li a:hover {
    background: var(--light-gray);
    color: var(--red);
}

.dropdown-arrow {
    font-size: 11px;
    margin-left: 4px;
}

.side-social {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
}

.side-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    text-decoration: none;
    color: #fff;
    transition: width .2s;
}

.side-social a:hover {
    width: 46px;
}

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

.side-social a.wa {
    background: #25d366;
}

.side-social a.yt {
    background: #ff0000;
}

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

.breadcrumb {
    background: var(--red);
    padding: 10px 0;
}

.breadcrumb-inner {
    max-width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    flex-wrap: wrap;
}

.breadcrumb-inner a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-inner a:hover {
    text-decoration: underline;
}

.breadcrumb-inner .sep {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-inner .current {
    color: #fff;
    font-weight: 400;
}

.section-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.section-title::after {
    content: "";
    display: block;
    margin: 10px auto 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--red), var(--gold));
    border-radius: 2px;
}

footer {
    background: var(--light-gray);
    padding: 48px 0 0;
    border-top: 1px solid #ddd;
}

.footer-inner {
    max-width: 80%;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 200px 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-logo-img {
    height: 56px;
    width: 56px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 14px;
    display: block;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
}

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

.footer-socials a.wa {
    background: #25d366;
}

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

.footer-socials a.yt {
    background: #ff0000;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 9px;
}

.footer-col ul li a {
    text-decoration: none;
    color: var(--gray);
    font-size: 13px;
    transition: color .2s;
}

.footer-col ul li a:hover {
    color: var(--red);
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 16px 0;
    text-align: center;
    font-size: 13px;
    color: var(--gray);
}

#back-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    background: var(--dark);
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
}

#back-top.visible {
    opacity: 1;
}

.nav-toggle {
    display: none;
}

/* ── RESPONSIVE STYLES ── */

@media (max-width: 992px) {
    .topbar-inner, .nav-inner, .breadcrumb-inner, .footer-inner, .page-wrap, .why-inner, .video-band, .section-inner, .page-body {
        max-width: 92% !important;
    }
}

@media (max-width: 768px) {
    .topbar-inner, .nav-inner, .breadcrumb-inner, .footer-inner, .page-wrap, .why-inner, .video-band, .section-inner, .page-body {
        max-width: 95% !important;
    }

    /* Topbar */
    .topbar-inner {
        justify-content: center;
        padding: 0 10px;
    }

    /* Header & Navigation */
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .nav-toggle .bar {
        height: 3px;
        width: 100%;
        background-color: var(--dark);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 0;
        gap: 25px;
        transition: left 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li a {
        font-size: 18px;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        width: 100%;
        text-align: center;
        padding-top: 15px;
        border: none;
    }

    .has-dropdown:hover .dropdown, 
    .has-dropdown:focus-within .dropdown {
        display: block;
    }
    
    .dropdown li a {
        padding: 10px 20px;
        font-size: 15px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}