/*--------------------------------------------------------------*/
/* Professional Tab Styles */
/*--------------------------------------------------------------*/

.professional-tab-section {
    padding: 60px 0 40px;
    position: relative;
}

.professional-tabs-wrapper {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.tabs-header {
    text-align: center;
    padding: 40px 20px 30px;
    background: linear-gradient(135deg, #dc143c 0%, #b91c1c 100%);
    color: #fff;
}

.tabs-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    animation: fadeInDown 0.6s ease;
}

.tabs-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.professional-tabs-container {
    background: #fff;
    padding: 0;
}

.professional-tabs {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #e5e7eb;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tab-item {
    flex: 1;
    min-width: 200px;
}

.tab-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 15px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    color: #6b7280;
    min-height: 80px;
}

.tab-link:hover {
    background: #f9fafb;
    color: #dc143c;
}

.tab-link.active {
    color: #dc143c;
    background: #fef2f2;
}

.tab-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.tab-link:hover .tab-icon {
    transform: translateY(-2px);
}

.tab-link.active .tab-icon {
    animation: bounceIn 0.6s ease;
}

.tab-text {
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
}

.tab-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #dc143c;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-link.active .tab-indicator {
    transform: scaleX(1);
}

/* Tab Content Styles */
.tab-content-wrapper {
    background: #fff;
}

.content-header {
    text-align: center;
    margin-bottom: 50px;
}

.content-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.content-lead {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
}

.content-section.animate-on-scroll {
    animation: fadeInUp 0.6s ease forwards;
}

/* Styled Elements */
.styled-list {
    list-style: none;
    padding: 0;
}

.styled-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #4b5563;
}

.styled-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #dc143c;
    font-weight: bold;
}

.highlight-box {
    background: #fef2f2;
    border-left: 4px solid #dc143c;
    padding: 25px 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.highlight-box h4 {
    color: #dc143c;
    margin-bottom: 10px;
    font-weight: 600;
}

.styled-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: #6b7280;
    border-left: 4px solid #dc143c;
    padding-left: 25px;
    margin: 30px 0;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:not(:last-child):after {
    content: '';
    position: absolute;
    left: 25px;
    top: 50px;
    bottom: -40px;
    width: 2px;
    background: #e5e7eb;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    background: #dc143c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 25px;
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

.timeline-content h4 {
    margin-bottom: 8px;
    color: #1f2937;
}

.timeline-content p {
    color: #6b7280;
    margin: 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: #f9fafb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #dc143c;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #6b7280;
}

/* Icon Features */
.icon-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.icon-feature-item {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #fef2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #dc143c;
    transition: all 0.3s ease;
}

.icon-feature-item:hover .feature-icon {
    transform: scale(1.1);
    background: #dc143c;
    color: #fff;
}

.icon-feature-item h4 {
    margin-bottom: 10px;
    color: #1f2937;
}

.icon-feature-item p {
    color: #6b7280;
}

/* Info Card */
.info-card {
    background: #f9fafb;
    padding: 40px;
    border-radius: 12px;
    margin: 30px 0;
}

.info-card h3 {
    color: #1f2937;
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.check-list li {
    padding: 10px 0;
    color: #4b5563;
}

.check-list li i {
    color: #10b981;
    margin-right: 10px;
}

/* Certificates Grid */
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.certificate-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #dc143c;
}

.certificate-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #dc143c;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.certificate-card:hover:before {
    transform: scaleX(1);
}

.certificate-icon {
    font-size: 3rem;
    color: #dc143c;
    margin-bottom: 20px;
}

.certificate-card h3 {
    font-size: 1.5rem;
    color: #dc143c;
    margin-bottom: 10px;
}

.certificate-card h4 {
    font-size: 1.125rem;
    color: #1f2937;
    margin-bottom: 15px;
}

.certificate-card p {
    color: #6b7280;
    font-size: 0.95rem;
}

.certificate-footer {
    margin-top: 50px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes bounceIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .tabs-title {
        font-size: 1.875rem;
    }

    .professional-tabs {
        justify-content: flex-start;
    }

    .tab-link {
        padding: 15px 10px;
    }

    .tab-icon {
        font-size: 1.5rem;
    }

    .tab-text {
        font-size: 0.875rem;
    }

    .content-title {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .icon-features,
    .certificates-grid {
        grid-template-columns: 1fr;
    }
}