/* ========================================
   CLEAN NAVBAR STYLES - FRESH START
======================================== */

/* Header Container */
.alternative-header {
    background-color: var(--page-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Navigation Container */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo */
.nav-logo {
    flex-shrink: 0;
}

.nav-logo .logo {
    height: 40px;
    width: auto;
}

/* Desktop Navigation Menu */
.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Nav Links - Override ALL button styling */
.nav-menu .nav-link,
.nav-link {
    color: var(--accent-charcoal-black) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    transition: color 0.3s ease !important;
    position: relative !important;
    padding: 8px 0 !important;
    margin: 0 !important;
    /* Override ALL button properties */
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: inline !important;
    cursor: pointer !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    text-align: left !important;
    line-height: normal !important;
    width: auto !important;
    height: auto !important;
    min-width: auto !important;
    min-height: auto !important;
    max-width: none !important;
    max-height: none !important;
    overflow: visible !important;
    white-space: nowrap !important;
    vertical-align: baseline !important;
    outline: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}

.nav-menu .nav-link:hover,
.nav-link:hover {
    color: var(--primary-orange) !important;
    /* Ensure hover doesn't add button styling */
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    transform: none !important;
    box-shadow: none !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Desktop Dropdown - Mega Menu Overlay Style */
.nav-dropdown {
    position: static;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    margin-top: 2px;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Overlay backdrop */
.dropdown-overlay {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    pointer-events: none;
}

.nav-dropdown:hover .dropdown-overlay {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    transform: translateY(-20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    padding: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Left side - 30% white with links */
.dropdown-left {
    width: 30%;
    background: var(--page-white);
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-sizing: border-box;
}

.dropdown-heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-charcoal-black);
    margin: 0 0 30px 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

/* Right side - 70% orange with image */
.dropdown-right {
    width: 70%;
    background: var(--primary-orange);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.dropdown-image-placeholder {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-item {
    all: unset !important;
    display: block !important;
    padding: 0 !important;
    margin-bottom: 24px !important;
    color: var(--accent-charcoal-black) !important;
    text-decoration: none !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    transition: all 0.3s ease !important;
    background: transparent !important;
    border-bottom: none !important;
    width: auto !important;
    text-align: left !important;
    box-sizing: border-box !important;
    cursor: pointer !important;
    font-family: 'Montserrat', sans-serif !important;
}

.dropdown-item:last-child {
    margin-bottom: 0 !important;
}

.dropdown-item:hover {
    color: var(--primary-orange) !important;
}

/* Contact Button */
.nav-cta {
    flex-shrink: 0;
}

/* Mobile Burger Menu - Hidden on Desktop */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    width: 25px;
    height: 3px;
    background-color: var(--accent-charcoal-black);
    transition: 0.3s;
    border-radius: 3px;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
}

.mobile-nav-link {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    margin: 20px 0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary-orange);
}

.mobile-cta-btn {
    display: inline-block;
    background-color: var(--primary-orange);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 30px;
    transition: background-color 0.3s ease;
}

.mobile-cta-btn:hover {
    background-color: var(--secondary-red);
    color: white;
}

/* Mobile Dropdown */
.mobile-dropdown {
    width: 100%;
}

.mobile-dropdown-toggle {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none !important;
    border: none !important;
    cursor: pointer;
}

.mobile-dropdown-toggle .dropdown-arrow {
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 20px;
}

.mobile-dropdown-menu.active {
    max-height: 300px;
}

.mobile-dropdown-item {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    margin: 15px 0;
    transition: color 0.3s ease;
}

.mobile-dropdown-item:hover {
    color: var(--primary-orange);
}

/* Burger Animation */
.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Tablet and Mobile */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
        height: 60px;
    }
    
    /* Hide desktop menu on mobile */
    .nav-menu {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    /* Show burger menu on mobile */
    .burger-menu {
        display: flex;
    }
    
    .nav-logo .logo {
        height: 35px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
    }
    
    .mobile-nav-link {
        font-size: 20px;
        margin: 15px 0;
    }
    
    .mobile-cta-btn {
        padding: 12px 25px;
        font-size: 16px;
    }
}

/* AGGRESSIVE OVERRIDE - Ensure nav links are NEVER styled as buttons */
.alternative-header .nav-menu a,
.alternative-header .nav-link,
.nav-menu a,
.nav-link {
    all: unset !important;
    color: var(--accent-charcoal-black) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    cursor: pointer !important;
    display: inline !important;
    padding: 8px 0 !important;
    margin: 0 !important;
    position: relative !important;
    transition: color 0.3s ease !important;
}

.alternative-header .nav-menu a:hover,
.alternative-header .nav-link:hover,
.nav-menu a:hover,
.nav-link:hover {
    color: var(--primary-orange) !important;
}
