/* Professional Services Page Styles */

.professional-page {
    background: #000000;
}

/* Professional Hero */
.professional-hero {
    position: relative;
}

.professional-overlay {
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.2) 0%,
        rgba(0, 0, 0, 0.8) 50%,
        rgba(59, 130, 246, 0.2) 100%);
}

.hero-title.professional-title {
    color: #ffffff !important;
    text-shadow: 
        0 0 20px rgba(139, 92, 246, 0.6),
        0 0 40px rgba(139, 92, 246, 0.4),
        0 0 60px rgba(59, 130, 246, 0.3);
    opacity: 1 !important;
    visibility: visible !important;
}

/* Animated Professional Icons */
.professional-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.pro-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(139, 92, 246, 0.6);
    backdrop-filter: blur(10px);
    animation: proFloat 6s ease-in-out infinite;
}

.icon-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.icon-2 {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.icon-3 {
    bottom: 25%;
    left: 25%;
    animation-delay: 4s;
}

@keyframes proFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.8;
    }
}

/* Professional Buttons */
.btn-professional {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-professional:hover::before {
    left: 100%;
}

.btn-professional:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.6);
}

/* Professional Stats */
.professional-stats {
    background: linear-gradient(135deg, #000000 0%, #0f0320 50%, #000000 100%);
    position: relative;
}

.professional-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

.professional-stat {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    border: 2px solid rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.professional-stat::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.8), transparent);
    transition: left 0.6s ease;
}

.professional-stat:hover::after {
    left: 100%;
}

.professional-stat:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    border-color: rgba(139, 92, 246, 0.6);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3);
}

.professional-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    border: 2px solid rgba(139, 92, 246, 0.4);
}

.professional-stat:hover .professional-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(59, 130, 246, 0.3) 100%);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

/* Professional Services Section */
.professional-services {
    background: linear-gradient(180deg, #000000 0%, #0f0320 50%, #000000 100%);
    padding: 120px 0;
}

.professional-subtitle {
    color: #a78bfa;
    text-shadow: 0 0 20px rgba(167, 139, 250, 0.5);
}

.professional-grid {
    gap: 30px;
}

.professional-item {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.professional-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #8b5cf6, #3b82f6);
    transition: height 0.4s ease;
}

.professional-item:hover::before {
    height: 100%;
}

.professional-item:hover {
    background: rgba(139, 92, 246, 0.05);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.2);
}

.service-item-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 64px;
    font-weight: 700;
    color: rgba(139, 92, 246, 0.1);
    line-height: 1;
    transition: all 0.4s ease;
}

.professional-item:hover .service-item-number {
    color: rgba(139, 92, 246, 0.2);
    transform: scale(1.1);
}

.professional-service-icon {
    width: 80px;
    height: 80px;
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a78bfa;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.professional-item:hover .professional-service-icon {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features-list li {
    padding: 8px 0 8px 28px;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    transition: all 0.3s ease;
}

.service-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: 700;
}

.service-features-list li:hover {
    color: rgba(255, 255, 255, 0.9);
    padding-left: 32px;
}

.service-button {
    margin-top: 20px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 8px;
    color: #a78bfa;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.service-button:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.6);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

/* Requirements Section */
.requirements-section {
    background: #000000;
    padding: 100px 0;
    position: relative;
}

.requirements-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.requirement-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.requirement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.requirement-card:hover::before {
    opacity: 1;
}

.requirement-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.requirement-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a78bfa;
    transition: all 0.4s ease;
}

.requirement-card:hover .requirement-icon {
    background: rgba(139, 92, 246, 0.2);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.requirement-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.requirement-description {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Professional CTA */
.professional-cta {
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.1) 0%, 
        rgba(0, 0, 0, 0.8) 50%, 
        rgba(59, 130, 246, 0.1) 100%);
}

.professional-cta-content {
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.1) 0%, 
        rgba(0, 0, 0, 0.5) 50%, 
        rgba(59, 130, 246, 0.1) 100%);
    border: 3px solid rgba(139, 92, 246, 0.3);
}

.professional-cta-content::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #8b5cf6, #3b82f6, #8b5cf6);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: borderRotate 3s linear infinite;
}

.professional-cta-content:hover::after {
    opacity: 0.3;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .requirements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .professional-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .professional-hero {
        min-height: 70vh;
    }
    
    .professional-icons {
        display: none;
    }
    
    .professional-services {
        padding: 80px 0;
    }
    
    .professional-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .professional-item {
        padding: 30px 25px;
    }
    
    .service-item-number {
        font-size: 48px;
        top: 15px;
        right: 15px;
    }
    
    .professional-service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-features-list li {
        font-size: 13px;
    }
    
    .requirements-section {
        padding: 80px 0;
    }
    
    .requirements-container {
        padding: 0 20px;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .requirement-card {
        padding: 30px 25px;
    }
    
    .requirement-icon {
        width: 60px;
        height: 60px;
    }
    
    .requirement-title {
        font-size: 18px;
    }
    
    .requirement-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .professional-item {
        padding: 25px 20px;
    }
    
    .service-item-number {
        font-size: 40px;
    }
    
    .professional-service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-button {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .requirement-card {
        padding: 25px 20px;
    }
}