/* Professionals Page Specific Styles */

/* Hero Section */
.professionals-hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--text-dark);
}

.hero-features .feature-item i {
    font-size: 1.2rem;
}

/* Professional Categories Section */
.professional-categories {
    background-color: #ffffff;
}

.professional-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.professional-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;
}

.professional-icon {
    display: inline-block;
    padding: 1rem;
    border-radius: 50%;
    background: rgba(218, 161, 76, 0.1);
    transition: all 0.3s ease;
}

.professional-card:hover .professional-icon {
    background: rgba(218, 161, 76, 0.2);
    transform: scale(1.1);
}

.professional-benefits .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
}

/* Partnership Benefits Section */
.partnership-benefits {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.benefit-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;
}

.benefit-icon {
    display: inline-block;
    padding: 1rem;
    border-radius: 50%;
    background: rgba(218, 161, 76, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: rgba(218, 161, 76, 0.2);
    transform: scale(1.1);
}

.benefit-card h5 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Professional Services Section */
.professional-services {
    background-color: #ffffff;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(218, 161, 76, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    background: rgba(218, 161, 76, 0.2);
    transform: scale(1.1);
}

.service-icon i {
    font-size: 1.5rem;
}

.service-item h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Success Stories Section */
.success-stories {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.story-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;
}

.story-image {
    position: relative;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-content h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.story-details .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
}

/* Partnership Process Section */
.partnership-process {
    background-color: #ffffff;
}

.process-timeline {
    position: relative;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.process-step {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 2;
}

.step-content h5 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b98b4e 100%);
    color: white;
}

.cta-section .main-heading {
    color: white !important;
}

.cta-section .paragraph {
    color: rgba(255,255,255,0.9) !important;
}

.btn-outline-primary {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-primary:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 991px) {
    .professionals-hero-section {
        padding: 60px 0;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .cta-section .text-lg-end {
        text-align: center !important;
        margin-top: 2rem;
    }
    
    .service-item {
        margin-bottom: 2rem;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .process-step {
        padding-left: 60px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .main-heading {
        font-size: 2rem !important;
    }
    
    .professional-card {
        margin-bottom: 1rem;
    }
    
    .benefit-card {
        margin-bottom: 1rem;
    }
    
    .story-card {
        margin-bottom: 1rem;
    }
    
    .story-image img {
        height: 180px;
    }
    
    .process-timeline::before {
        left: 15px;
    }
    
    .process-step {
        padding-left: 50px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .professionals-hero-section {
        padding: 40px 0;
    }
    
    .hero-features .feature-item {
        justify-content: center;
    }
    
    .professional-benefits .badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }
    
    .story-details .badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
    }
    
    .service-icon i {
        font-size: 1.2rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b98b4e;
}

/* Loading Animation */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Professional Card Hover Effects */
.professional-card:hover h4 {
    color: var(--primary-color);
}

.professional-benefits .badge {
    transition: all 0.3s ease;
}

.professional-benefits .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Benefit Card Icon Animations */
.benefit-card:hover .benefit-icon {
    background: rgba(218, 161, 76, 0.2);
    transform: scale(1.1);
}

.benefit-card:hover h5 {
    color: var(--primary-color);
}

/* Service Item Animations */
.service-item {
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateX(10px);
}

.service-item:hover h5 {
    color: var(--primary-color);
}

/* Story Card Animations */
.story-card:hover .story-content h5 {
    color: var(--primary-color);
}

.story-details .badge {
    transition: all 0.3s ease;
}

.story-details .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Process Timeline Animations */
.process-step {
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(218, 161, 76, 0.3);
}

/* Button Hover Effects */
.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(218, 161, 76, 0.3);
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Timeline Animation */
.process-step {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.process-step.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered Animation for Process Steps */
.process-step:nth-child(1) { transition-delay: 0.1s; }
.process-step:nth-child(2) { transition-delay: 0.2s; }
.process-step:nth-child(3) { transition-delay: 0.3s; }
.process-step:nth-child(4) { transition-delay: 0.4s; }

/* Staggered Animation for Cards */
.professional-card:nth-child(1) { transition-delay: 0.1s; }
.professional-card:nth-child(2) { transition-delay: 0.2s; }
.professional-card:nth-child(3) { transition-delay: 0.3s; }

.benefit-card:nth-child(1) { transition-delay: 0.1s; }
.benefit-card:nth-child(2) { transition-delay: 0.2s; }
.benefit-card:nth-child(3) { transition-delay: 0.3s; }
.benefit-card:nth-child(4) { transition-delay: 0.4s; }

.story-card:nth-child(1) { transition-delay: 0.1s; }
.story-card:nth-child(2) { transition-delay: 0.2s; }
.story-card:nth-child(3) { transition-delay: 0.3s; }

/* Service Item Staggered Animation */
.service-item:nth-child(1) { transition-delay: 0.1s; }
.service-item:nth-child(2) { transition-delay: 0.2s; }
.service-item:nth-child(3) { transition-delay: 0.3s; }
.service-item:nth-child(4) { transition-delay: 0.4s; }

/* Image Hover Effects */
.services-image img {
    transition: all 0.3s ease;
}

.services-image:hover img {
    transform: scale(1.02);
}

/* Content Fade In Animation */
.services-content {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.services-content.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Professional Icon Animations */
.professional-icon {
    transition: all 0.3s ease;
}

.professional-card:hover .professional-icon {
    background: rgba(218, 161, 76, 0.2);
    transform: scale(1.1);
}

/* Benefit Icon Animations */
.benefit-icon {
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: rgba(218, 161, 76, 0.2);
    transform: scale(1.1);
}

/* Service Icon Animations */
.service-icon {
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    background: rgba(218, 161, 76, 0.2);
    transform: scale(1.1);
}

/* Story Image Animations */
.story-image img {
    transition: all 0.3s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

/* Step Number Animations */
.step-number {
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(218, 161, 76, 0.3);
}

/* Content Animations */
.process-step {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.process-step.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Professional Card Animations */
.professional-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.professional-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Benefit Card Animations */
.benefit-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.benefit-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Story Card Animations */
.story-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.story-card.visible {
    opacity: 1;
    transform: translateY(0);
} 