/* ===== TOP BAR ===== */
.top-bar {
    background-color: #111;
    padding: 10px 0;
    border-bottom: 1px solid rgba(200, 169, 81, 0.15);
}

.top-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.top-bar-info li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #fff;
}

.top-bar-icon {
    color: #c8a951;
    font-size: 13px;
}

/* ===== MAIN NAVBAR ===== */
.navbar {
    background-color: #0a0a0a;
    padding: 18px 0;
    position: relative;
    z-index: 1000;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.navbar-logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #c8a951;
    text-decoration: none;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
    white-space: nowrap;
}

.navbar-logo:hover {
    color: #d4b95f;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    padding: 10px 18px;
    display: block;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #c8a951;
}

.nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: #111;
    border: 1px solid rgba(200, 169, 81, 0.15);
    border-radius: 4px;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 10px 20px;
    display: block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-link:hover {
    background-color: rgba(200, 169, 81, 0.1);
    color: #c8a951;
}

/* Call Now Button */
.nav-cta {
    background-color: #c8a951;
    color: #0a0a0a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.nav-cta:hover {
    background-color: #d4b95f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 169, 81, 0.3);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 24px;
    cursor: pointer;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    position: absolute;
}

.hamburger-line:nth-child(1) {
    top: 0;
}

.hamburger-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-line:nth-child(3) {
    bottom: 0;
}

/* Hamburger active (X) */
.hamburger.active .hamburger-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    background-color: #c8a951;
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
    background-color: #c8a951;
}

/* Sticky spacer */
.header-spacer {
    display: none;
}

.header-spacer.active {
    display: block;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .top-bar-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .top-bar-info li {
        font-size: 12px;
    }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0a0a0a;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        border-top: 1px solid rgba(200, 169, 81, 0.15);
    }

    .nav-menu.open {
        max-height: 500px;
    }

    .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link-dropdown {
        justify-content: space-between;
    }

    .dropdown-arrow {
        font-size: 12px;
    }

    .nav-item-dropdown .dropdown-arrow.rotated {
        transform: rotate(180deg);
    }

    /* Mobile dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background-color: #151515;
        padding: 0;
    }

    .nav-item-dropdown:hover .dropdown-menu {
        max-height: 0;
    }

    .nav-item-dropdown .dropdown-menu.open {
        max-height: 300px;
        padding: 5px 0;
    }

    .dropdown-link {
        padding: 12px 35px;
    }

    /* Show CTA in mobile menu */
    .nav-menu.open ~ .nav-cta-mobile {
        display: block;
    }
}
.logo-img {
  height: 65px;
  width: auto;
  object-fit: contain;
}