/* Modern Suites Section Styles */

/* Main Suites Section */
.modern-suites-section {
    background: #ffffff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Section Header */
.suites-header {
    text-align: center;
    margin-bottom: 4rem;
}

.suites-subtitle {
    color: #007bff;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(0, 123, 255, 0.2);
}

.suites-title {
    color: #000000;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.suites-description {
    color: #495057;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Modern Tab Navigation */
.suites-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    padding: 1rem;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.suite-tab {
    padding: 0.8rem 1.5rem;
    background: #ffffff;
    border: 2px solid transparent;
    border-radius: 12px;
    color: #495057;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.suite-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.suite-tab:hover {
    color: #007bff;
    border-color: rgba(0, 123, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.suite-tab:hover::before {
    left: 100%;
}

.suite-tab.active {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #ffffff;
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

/* Suite Content Cards */
.suite-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.suite-overview-card {
    background: #ffffff;
    border: 1px solid rgba(0, 123, 255, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.suite-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
}

.suite-logo {
    margin-bottom: 1.5rem;
}

.suite-logo img {
    max-height: 80px;
    border-radius: 12px;
    border: 2px solid rgba(0, 123, 255, 0.2);
    padding: 0.5rem;
    background: #ffffff;
}

.suite-overview-title {
    color: #000000;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.suite-overview-text {
    color: #495057;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Modules Grid */
.modules-card {
    background: #ffffff;
    border: 1px solid rgba(0, 123, 255, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.modules-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
}

.modules-title {
    color: #000000;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.module-item {
    background: rgba(248, 249, 250, 0.8);
    border: 1px solid rgba(0, 123, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.module-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 123, 255, 0.05));
    transition: width 0.3s ease;
}

.module-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 123, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
    background: #ffffff;
}

.module-item:hover::before {
    width: 100%;
}

.module-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.module-item:hover .module-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.module-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.module-title {
    color: #000000;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 2;
    line-height: 1.4;
}

/* Learn More Button */
.suite-learn-more {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-suite-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.btn-suite-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-suite-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    color: #ffffff;
}

.btn-suite-primary:hover::before {
    left: 100%;
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Hidden content for inactive tabs */
.suite-tab-content {
    display: none;
}

.suite-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .suites-title {
        font-size: 2.2rem;
    }
    
    .suites-description {
        font-size: 1.1rem;
    }
    
    .suites-nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .suite-tab {
        text-align: center;
        width: 100%;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .suite-overview-card,
    .modules-card {
        padding: 1.5rem;
    }
    
    .module-item {
        padding: 1.2rem;
    }
    
    .module-icon {
        width: 50px;
        height: 50px;
    }
    
    .module-icon i {
        font-size: 1.2rem;
    }
    
    .module-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .modern-suites-section {
        padding: 4rem 0;
    }
    
    .suites-title {
        font-size: 1.8rem;
    }
    
    .suite-overview-card,
    .modules-card {
        padding: 1.2rem;
    }
    
    .modules-title {
        font-size: 1.5rem;
    }
    
    .module-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
}