/* ============================================================
NAVBAR
============================================================ */

body {
    font-family: 'Hanken Grotesk', sans-serif;
    overflow-x: hidden;
}

.navbar {
    background: #fff;
    padding: 0 48px;
    min-height: 72px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    z-index: 200;
}

/* Ensure the inner flex container fills the full height */
.navbar>.container-fluid {
    min-height: 72px;
}

.navbar-brand {
    font-weight: 900;
    font-size: 1.45rem;
    color: #1a1a2e !important;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0;
    margin-right: 24px;
}

.navbar-brand img {
    width: 139px !important;
    height: auto;
    display: block;
}

/* Collapse wrapper takes all remaining space */
.navbar-collapse {
    flex-grow: 1;
    justify-content: flex-end;
}

.navbar-nav {
    flex-direction: row;
    align-items: center;
    gap: 4px;
    margin: 0;
    flex-shrink: 0;
    list-style: none;
    padding: 0;
}

.navbar-nav .nav-link {
    font-weight: 600;
    font-size: 0.87rem;
    color: #222 !important;
    padding: 8px 14px !important;
    letter-spacing: 0.2px;
    transition: color 0.2s;
    white-space: nowrap;
    text-decoration: none;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
    color: #e84118 !important;
}

/* Desktop Hover Dropdowns */
@media (min-width: 992px) {
    .navbar-nav .nav-item.dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition: all 0.3s ease;
    }

    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .navbar-nav .nav-item.dropdown:hover>.dropdown-menu {
        pointer-events: auto;
    }
}

.nav-phone {
    font-weight: 600;
    font-size: 0.87rem;
    color: #222;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 20px 0 8px;
    white-space: nowrap;
    /* prevents wrapping */
    flex-shrink: 0;
}

.nav-phone i {
    color: #e84118;
    font-size: 0.9rem;
}

.btn-cta {
    background: #e84118;
    color: #fff !important;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-cta:hover {
    background: #c1310f;
}

/* ============================================================
FOOTER
============================================================ */
.site-footer {
    background: #150501;
    padding: 64px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.75;
    max-width: 346px;
    margin: 0 0 28px;
}

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

.footer-socials a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer-socials a:hover {
    border-color: #e84118;
    color: #fff;
    background: #e84118;
}

.footer-col-title {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
    margin: 0 0 20px;
    display: block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links a {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '';
    width: 14px;
    height: 1px;
    background: #e84118;
    opacity: 0;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

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

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-icon {
    width: 32px;
    height: 32px;
    background: rgba(232, 65, 24, 0.10);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-contact-icon i {
    color: #e84118;
    font-size: 0.8rem;
}

.footer-contact-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.28);
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 3px;
}

.footer-contact-value {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    display: block;
}

.footer-contact-value:hover {
    color: #e84118;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.18);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.18);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
GLOBAL RESPONSIVE
============================================================ */
@media (max-width: 991px) {
    .navbar {
        padding: 0 20px !important;
        height: 72px !important;
        background: #fff !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        z-index: 1002;
    }

    /* Custom Toggler - Modern Minimal */
    .navbar-toggler {
        width: 30px;
        height: 20px;
        padding: 0;
        background: transparent !important;
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        border: none !important;
        outline: none !important;
        z-index: 1001;
    }

    .navbar-toggler span {
        width: 100%;
        height: 2px;
        background-color: #111110;
        transition: all 0.3s ease;
    }

    .navbar-toggler[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggler[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Mobile Overlay - Editorial Numbered Design */
    .navbar-collapse {
        position: fixed !important;
        top: 72px !important;
        left: 0 !important;
        width: 100% !important;
        background: #fff !important;
        z-index: 1050 !important;
        display: block !important;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
        padding: 20px 0 40px !important;
        overflow-y: auto !important;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
    }

    .navbar-collapse.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .navbar-nav {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        width: 100% !important;
        padding: 0 25px !important;
        align-items: flex-start !important;
        text-align: left;
    }

    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding: 14px 0;
        width: 100%;
    }

    .navbar-nav .nav-link {
        font-family: 'Bebas Neue', cursive !important;
        font-size: 1.8rem !important;
        color: #111110 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center;
        justify-content: flex-start !important;
        text-transform: uppercase;
        position: relative;
        text-align: left;
    }

    .dropdown-toggle::after {
        border: none;
        font-family: "bootstrap-icons";
        content: "\F282";
        font-size: 1rem;
        margin-left: auto;
        color: #ddd;
        transition: transform 0.3s ease;
    }

    .nav-link.show.dropdown-toggle::after {
        content: "\F286";
        color: #E8572A;
    }

    .dropdown-menu {
        position: static !important;
        background: transparent !important;
        border: none !important;
        padding: 10px 0 0 40px !important;
        margin: 0 !important;
        box-shadow: none !important;
    }

    .dropdown-item {
        font-family: 'DM Sans', sans-serif !important;
        font-size: 1rem !important;
        font-weight: 500 !important;
        padding: 8px 0 !important;
        color: #777 !important;
        display: flex !important;
        align-items: center;
        gap: 15px;
        background: transparent !important;
    }

    .dropdown-item::before {
        content: "";
        width: 20px;
        height: 1px;
        background: #ccc;
        opacity: 0.6;
    }

    /* Footer - Mockup Specifics */
    .mobile-menu-footer {
        padding: 40px 25px 30px;
        background: #fff;
    }

    .footer-row-modern {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 30px;
        border-top: 2px solid #E8572A;
    }

    .call-box-modern {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .call-icon-circle {
        width: 48px;
        height: 48px;
        background: #fff;
        border: 1px solid #FFEBE6;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
        border-radius: 50%;
        display: flex !important;
        align-items: center;
        justify-content: center;
        color: #E8572A;
        font-size: 1.2rem;
    }

    .call-info-modern {
        display: flex;
        flex-direction: column;
    }

    .call-label-small {
        font-family: 'DM Sans', sans-serif;
        font-size: 0.55rem;
        letter-spacing: 2px;
        font-weight: 700;
        color: #bbb;
        text-transform: uppercase;
    }

    .call-number-modern {
        font-family: 'DM Sans', sans-serif;
        font-size: 1.05rem;
        font-weight: 800;
        color: #111110;
        text-decoration: none;
        margin-top: -2px;
    }

    .btn-contact-modern {
        background: #E8572A;
        color: #fff !important;
        padding: 14px 24px;
        border-radius: 10px;
        font-family: 'DM Sans', sans-serif;
        font-weight: 700;
        font-size: 0.85rem;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        text-decoration: none;
        display: flex !important;
        align-items: center;
        gap: 10px;
        box-shadow: 0 8px 16px rgba(232, 87, 42, 0.2);
    }

    .mobile-menu-backdrop {
        display: none !important;
    }
}

@media (max-width: 575px) {
    .footer-inner {
        grid-template-columns: 1fr !important;
    }

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