/* ========================================
   BORU HEADER - FIXED & MOBILE OPTIMIZED
   ======================================== */

.boru-header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.boru-header.scrolled {
    padding: 10px 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
}

.boru-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
}

.boru-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.boru-logo img {
    height: 100px;
    width: auto;
    transition: all 0.3s ease;
}

.boru-logo:hover img {
    transform: scale(1.05);
}

.boru-nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.boru-nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.boru-nav-menu a:hover {
    color: #4ECDC4;
}

.boru-nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #4ECDC4;
    transition: width 0.3s;
}

.boru-nav-menu a:hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.boru-nav-menu li {
    position: relative;
}

.boru-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

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

.boru-dropdown li {
    width: 100%;
    list-style: none;
    margin: 0;
}

.boru-dropdown a {
    display: block;
    padding: 15px 25px;
    color: #333;
    font-size: 15px;
    transition: all 0.3s;
    border: none;
    margin: 0;
}

.boru-dropdown a:hover {
    background: #4ECDC4;
    color: white;
    padding-left: 30px;
}

.boru-dropdown a::after {
    display: none;
}

.boru-has-dropdown > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 12px;
}

.boru-header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.boru-phone-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.boru-phone-info i {
    color: #4ECDC4;
    font-size: 18px;
}

.boru-phone-info a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.boru-phone-info a:hover {
    color: #4ECDC4;
}

.boru-quote-btn {
    background: #4ECDC4;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.boru-quote-btn:hover {
    background: #45B7AA;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

/* Mobile Menu */
.boru-mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 8px;
    z-index: 2000;
}

.boru-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}

.boru-mobile-menu.active {
    display: flex;
}

.boru-mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 2001;
}

.boru-mobile-nav-menu {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

.boru-mobile-nav-menu li {
    margin-bottom: 30px;
}

.boru-mobile-nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    transition: color 0.3s;
}

.boru-mobile-nav-menu a:hover {
    color: #4ECDC4;
}

.boru-mobile-contact-info {
    margin-top: 40px;
    text-align: center;
}

.boru-mobile-contact-info .boru-phone-info {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.boru-mobile-contact-info .boru-phone-info i {
    color: #4ECDC4;
    margin-right: 10px;
}

.boru-mobile-contact-info .boru-phone-info a {
    color: white;
    text-decoration: none;
}

.boru-mobile-contact-info .boru-phone-info a:hover {
    color: #4ECDC4;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .boru-nav-menu {
        display: none;
    }

    .boru-header-contact {
        display: none;
    }

    .boru-mobile-menu-toggle {
        display: block;
    }

    .boru-logo img {
        height: 80px;
    }

    .boru-nav-container {
        padding: 0 15px;
    }

    .boru-mobile-menu {
        overflow-y: auto;
    }
}

@media (max-width: 480px) {
    .boru-logo img {
        height: 70px;
    }

    .boru-header {
        padding: 10px 0;
    }

    .boru-mobile-menu-toggle {
        font-size: 22px;
        padding: 6px;
    }
}

body.menu-open {
    overflow: hidden;
}