/* Header */
.custom-header {
    background: #f5f5f5;
    padding: 10px 0;
    z-index: 999;
}

/* Logo */
.logo-circle {
    width: 60px;
    height: 60px;
    background: #d87a00;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.logo-text {
    font-weight: 600;
    font-size: 18px;
    color: #333;
}

/* Nav links */
.navbar-nav .nav-link {
    font-weight: 500;
    color: #333;
    position: relative;
}

.navbar-nav .nav-link.active {
    color: #d87a00;
    border-bottom: 2px solid #d87a00;
}

/* Book button */
.book-btn {
    background: #d87a00;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.book-btn:hover {
    background: #b86500;
    color: #fff;
}

/* Mobile spacing */
@media (max-width: 991px) {
    .navbar-nav {
        padding-top: 15px;
        gap: 10px !important;
    }

    .book-btn {
        width: 100%;
        text-align: center;
    }
}