/* Wired & Wireless Solutions Widget Styles */
.kurve-wired-wireless-solutions {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Main Title */
.kurve-solutions-title {
    font-size: 48px;
    font-weight: 700;
    color: #251b4e;
    text-align: center;
    margin: 0 0 40px 0;
    line-height: 1.2;
}

/* Tab Buttons */
.kurve-tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.kurve-tab-button {
    background-color: #ffffff;
    border: 1px solid #251b4e;
    color: #000000;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: fit-content;
    text-align: center;
    outline: none;
}

.kurve-tab-button:hover {
    background-color: #251b4e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.kurve-tab-button.active {
    background-color: #251b4e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Tab Content */
.kurve-tab-content {
    position: relative;
    min-height: 500px;
}

.kurve-tab-panel {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.kurve-tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.kurve-tab-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Tab Image */
.kurve-tab-image {
    position: relative;
}

.kurve-tab-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.kurve-tab-image img:hover {
    transform: scale(1.02);
}

/* Tab Text Content */
.kurve-tab-text {
    padding: 20px 0;
}

.kurve-content-title {
    font-size: 32px;
    font-weight: 700;
    color: #251b4e;
    margin: 0 0 24px 0;
    line-height: 1.3;
}

.kurve-content-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
}

.kurve-content-text p {
    margin: 0 0 16px 0;
}

.kurve-content-text p:last-child {
    margin-bottom: 0;
}

.kurve-content-text ul {
    margin: 16px 0;
    padding-left: 20px;
}

.kurve-content-text li {
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .kurve-solutions-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .kurve-tab-buttons {
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .kurve-tab-button {
        padding: 10px 10px;
        font-size: 12px;
    }
    
    .kurve-tab-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .kurve-content-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .kurve-content-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .kurve-wired-wireless-solutions {
        padding: 20px 15px;
    }
    
    .kurve-solutions-title {
        font-size: 28px;
    }
    
    .kurve-tab-buttons {
        flex-direction: row;
        align-items: center;
        gap: 5px;
    }
    
    .kurve-tab-button {
        width: fit-content;
        max-width: 280px;
    }
    
    .kurve-tab-content-wrapper {
        gap: 30px;
    }
    
    .kurve-content-title {
        font-size: 24px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .kurve-tab-button {
        border-width: 3px;
    }
    
    .kurve-tab-button.active {
        background-color: #251b4e;
        color: #ffffff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .kurve-tab-button,
    .kurve-tab-image img,
    .kurve-tab-panel {
        transition: none;
        animation: none;
    }
}
