:root {
    /* Refined Corporate Color Palette */
    --primary-dark: #111111;     /* Softer black for main elements */
    --secondary-dark: #1c1c1c;   /* Slightly lighter black for depth */
    --dark-gray: #222222;        /* Dark gray for subtle variations */
    --accent-gold: #BFA05C;      /* More sophisticated gold */
    --accent-gold-dark: #A68A4B; /* Darker gold for hover states */
    --accent-gold-light: #D4B876;/* Lighter gold for highlights */
    --off-white: #F9F9F9;        /* Slightly warm white */
    --pure-white: #FFFFFF;       /* Pure white for contrast */
    --text-dark: #2A2A2A;        /* Soft black for text */
    --text-light: #E8E8E8;       /* Light gray for text on dark */
    
    /* Gradients */
    --gradient-primary: linear-gradient(145deg, var(--primary-dark), #1a1a1a);
    --gradient-accent: linear-gradient(90deg, #b3945f, var(--accent-gold));
}

/* Navbar Styling */
.navbar {
    padding: 15px 0;
    transition: all 0.4s ease;
    margin-bottom: 0;
}

.navbar-scrolled {
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 5px 0;
}

.logo-img {
    width: 80px !important;
    height: auto;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
    color: var(--pure-white);
}

.brand-subtitle {
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--accent-gold);
    line-height: 1;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 10px 20px !important;
    position: relative;
    color: var(--pure-white) !important;
    margin: 0 5px;
}

.navbar-nav {
    margin-left: auto;
    align-items: center;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown-menu {
    background: var(--primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 0;
    min-width: 180px;
    display: none;
    position: absolute;
}

.dropdown-item {
    color: var(--text-light);
    padding: 8px 20px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    position: relative;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--accent-gold);
    border-radius: 0 2px 2px 0;
    transition: height 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(191, 160, 92, 0.1);
    color: var(--accent-gold);
    padding-left: 25px;
}

.dropdown-item:hover::before {
    height: 70%;
}

.dropdown-item.active {
    background: rgba(191, 160, 92, 0.15);
    color: var(--accent-gold);
    font-weight: 500;
}

.dropdown-item.active::before {
    height: 70%;
    background: var(--accent-gold);
}

.dropdown:hover .dropdown-menu {
    display: block;
    animation: dropdownFade 0.3s ease forwards;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    color: var(--primary-light);
    background: var(--accent-gold);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-btn:hover {
    background: var(--accent-gold-dark);
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--primary-dark);
        padding: 20px;
        margin-top: 15px;
        border-radius: 8px;
    }
    
    .nav-link {
        margin: 10px 0;
    }
    
    .navbar-nav {
        margin-left: 0;
    }
    
    .dropdown-menu {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        min-width: auto;
        position: static;
    }
    
    .dropdown-item {
        padding: 12px 0;
        margin: 0;
        color: var(--text-light);
    }
    
    .dropdown-item::before {
        display: none;
    }
    
    .dropdown-item:hover {
        padding-left: 0;
        background: transparent;
    }
    
    .dropdown-item.active {
        background: transparent;
    }
} 

@media(max-width: 400px){
    .brand-name {
        font-size: 24px;
        font-weight: 600;
        letter-spacing: 1px;
        line-height: 1.2;
        color: var(--pure-white);
    }

    .logo-img {
        width: 70px !important;
        height: auto;
        object-fit: contain;
    }
}

@media(max-width: 360px){
    .brand-name {
        font-size: 22px;
        font-weight: 600;
        letter-spacing: 1px;
        line-height: 1.2;
        color: var(--pure-white);
    }
    .logo-img {
        width: 60px !important;
        height: auto;
        object-fit: contain;
    }
}

@media(max-width: 340px){
    .brand-name {
        font-size: 18px;
        font-weight: 550;
        letter-spacing: 1px;
        line-height: 1.2;
        color: var(--pure-white);
    }
    .logo-img {
        width: 50px !important;
        height: auto;
        object-fit: contain;
    }
}