/* Transparent Services Navigation */
.luxa-service-tabs {
    background: transparent;
    text-align: center;
    margin-bottom: 40px;
}

.luxa-service-tabs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.luxa-service-tabs li {
    display: inline-block;
    margin: 0 18px;
}

.luxa-service-tabs a {
    color: #d9a441;
    text-decoration: none;
    font-size: 15px;
    padding: 10px 0;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

/* Hover */
.luxa-service-tabs a:hover {
    color: #ffffff;
}

/* Underline animation */
.luxa-service-tabs a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -5px;
    background: #d9a441;
    transition: 0.3s;
}

.luxa-service-tabs a:hover:after {
    width: 100%;
}

/* Content area */
.luxa-service-content {
    background: transparent;
    padding: 40px 0;
}

.luxa-service-panel {
    display: none;
}

.luxa-service-panel.active {
    display: flex;
    align-items: center;
    gap: 40px;
}

.luxa-service-panel img {
    width: 420px;
    border-radius: 8px;
}

.luxa-service-text h2 {
    color: #ffffff;
}

.luxa-service-text p {
    color: #d0d0d0;
}