/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    padding: 8px;
    height: 80px;
}

.navbar.shrink {
    padding: 0.5rem;
    height: 60px;
    background: rgba(255, 255, 255, 0.98) !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    color: #333;
}

.navbar.shrink .navbar-brand {
    font-size: 1.5rem;
}

/* Nav Items */
.navbar-nav {
    align-items: center;
    margin-left: auto !important;
}

.nav-item {
    position: relative;
    padding: 0 0.5rem;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: #666 !important;
}

.nav-link:hover,
.nav-link.active {
    color: #775c41 !important;
}

.nav-link.active {
    font-weight: 700;
}

/* Dropdown styles */
.dropdown-menu {
    margin-top: 0.5rem;
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
    color: #666;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #775c41;
    transform: translateX(5px);
}

/* Mobile menu styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 5rem 2rem 2rem;
        height: 100vh;
        overflow-y: auto;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 1050;
    }

    .navbar-brand {
        position: relative;
        z-index: 2000;
    }

    .navbar-collapse.show {
        transform: translateY(0);
    }

    .navbar-toggler {
        padding: 0.5rem;
        border: none;
        background: transparent;
        position: fixed;
        top: 1.2rem;
        right: 1rem;
        z-index: 2000;
    }

    .navbar.shrink .navbar-toggler {
        top: 0.8rem;
    }

    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }

    /* Custom hamburger icon */
    .navbar-toggler-icon {
        background-image: none;
        position: relative;
        width: 24px;
        height: 2px;
        background-color: #333;
        transition: all 0.3s ease;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        width: 24px;
        height: 2px;
        background-color: #333;
        transition: all 0.3s ease;
        left: 0;
    }

    .navbar-toggler-icon::before {
        top: -8px;
    }

    .navbar-toggler-icon::after {
        bottom: -8px;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-color: transparent;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        transform: rotate(45deg);
        top: 0;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        transform: rotate(-45deg);
        bottom: 0;
    }

    .nav-item {
        opacity: 0;
        transform: translateY(-20px);
        animation: slideIn 0.3s forwards;
        text-align: center;
        margin: 1rem 0;
        padding: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem !important;
    }

    .dropdown-menu {
        background: transparent;
        box-shadow: none;
        text-align: center;
        margin-top: 0;
        padding: 0.5rem 0;
    }

    .dropdown-item {
        color: #666;
        padding: 0.5rem;
        font-size: 1rem;
    }

    @keyframes slideIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .nav-item:nth-child(2) { animation-delay: 0.2s; }
    .nav-item:nth-child(3) { animation-delay: 0.3s; }
    .nav-item:nth-child(4) { animation-delay: 0.4s; }
    .nav-item:nth-child(5) { animation-delay: 0.5s; }
}

/* Remove .scrolled class and only use .shrink */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Update service details checkmark color */
.service-details ul li:before {
    content: "✓";
    color: #775c41;
    position: absolute;
    left: 0;
    top: 0;
}

/* Update floating phone button color */
.floating-btn.phone {
    background: #775c41;
}

/* Update any other blue colors to match */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: #775c41;
}

.nav-pills .nav-link:hover {
    color: #775c41;
}

.navbar-logo {
    height: 50px;
    width: auto;
    transition: height 0.3s ease;
}

.navbar.shrink .navbar-logo {
    height: 35px;
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 35px;
    }
    .navbar.shrink .navbar-logo {
        height: 30px;
    }
} 