/**
 * Bot Tab | Complete Redesign
 */

/* Bot Header Section */
.bot-header {
    padding: 2rem 0;
}

.bot-icon-wrapper {
    display: inline-block;
    position: relative;
}

.bot-icon {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid #5865F2;
    box-shadow: 0 8px 32px rgba(88, 101, 242, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bot-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(88, 101, 242, 0.6);
}

.bot-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #5865F2;
    text-shadow: 0 2px 10px rgba(88, 101, 242, 0.3);
}

.bot-subtitle {
    font-size: 1.25rem;
    color: #a0a0a0 !important;
}

.bot-add-btn {
    background: linear-gradient(135deg, #5865F2, #7289DA);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.bot-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.5);
    background: linear-gradient(135deg, #6b75f5, #8094de);
}

/* Features Section */
.bot-features-section {
    background: linear-gradient(180deg, rgba(45, 45, 45, 0.5) 0%, rgba(33, 33, 33, 0.8) 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Feature Tabs Navigation */
.bot-feature-tabs {
    gap: 0.5rem;
    flex-wrap: wrap;
}

.bot-feature-tabs .nav-link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0a0a0;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.bot-feature-tabs .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.bot-feature-tabs .nav-link.active {
    background: linear-gradient(135deg, #5865F2, #7289DA);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

/* Feature Card */
.feature-card {
    background: rgba(40, 40, 40, 0.6);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.feature-text {
    color: #c0c0c0;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

/* Feature Steps */
.feature-steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(88, 101, 242, 0.1);
    border-radius: 10px;
    border-left: 3px solid #5865F2;
}

.step-number {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.step-item span:last-child {
    color: #d0d0d0;
    font-size: 0.95rem;
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-list-item {
    display: flex;
    align-items: flex-start;
    color: #c0c0c0;
    font-size: 0.95rem;
    padding: 0.5rem 0;
}

.feature-list-item i {
    margin-top: 2px;
    flex-shrink: 0;
}

/* Feature Highlight Alert */
.feature-highlight {
    background: rgba(25, 135, 84, 0.15) !important;
    border: 1px solid rgba(25, 135, 84, 0.3);
    border-radius: 12px;
    color: #75d1a6 !important;
}

/* Feature Images */
.feature-images {
    padding-left: 1rem;
}

.feature-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-image-card .zoom-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.feature-image-card:hover .zoom-icon {
    opacity: 1;
}

.feature-image-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: rgba(88, 101, 242, 0.4);
}

.feature-image-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.feature-image-card:hover img {
    transform: scale(1.02);
}

.image-label {
    display: block;
    text-align: center;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.6);
    color: #a0a0a0;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .bot-title {
        font-size: 2rem;
    }
    
    .bot-icon {
        width: 100px;
        height: 100px;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-images {
        padding-left: 0;
        margin-top: 1.5rem;
    }
    
    .bot-feature-tabs .nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .bot-features-section {
        padding: 1rem;
    }
    
    .bot-feature-tabs {
        gap: 0.25rem;
    }
    
    .bot-feature-tabs .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .bot-feature-tabs .nav-link i {
        display: none;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .feature-title {
        font-size: 1.25rem;
    }
    
    .step-item {
        padding: 0.5rem 0.75rem;
    }
}
