/* ============================================
   ENHANCED SERVICES PAGE STYLES
   ============================================ */

/* Services Hero Enhanced */
.services-hero-enhanced {
    background: linear-gradient(135deg, #F0F4FF 0%, #E8EFFF 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.services-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.services-main-title {
    font-family: "Playfair Display", serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.services-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-stats-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 4rem;
}

.stat-inline {
    text-align: center;
}

.stat-inline h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-family: "Playfair Display", serif;
}

.stat-inline p {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 500;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, transparent 0%, #2D5BFF 50%, transparent 100%);
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: -100px;
    right: -50px;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: #458BC9;
    bottom: 50px;
    left: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    top: 50%;
    left: 10%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Services Introduction */
.services-intro-section {
    padding: 5rem 0 3rem;
    background: var(--white);
}

.section-header-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.section-title-large {
    font-family: "Playfair Display", serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description-large {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Enhanced Services Grid */
.main-services-section {
    padding: 4rem 0 6rem;
    background: var(--white);
}

.services-enhanced-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card-enhanced {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #E5E7EB;
}

.service-card-enhanced:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(45, 91, 255, 0.15);
    border-color: var(--primary-color);
}

.service-card-inner {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.service-icon-enhanced {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #458BC9 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.service-icon-enhanced.purple-icon {
    background: linear-gradient(135deg, #9333EA 0%, #C084FC 100%);
}

.service-icon-enhanced.teal-icon {
    background: linear-gradient(135deg, #14B8A6 0%, #5EEAD4 100%);
}

.service-icon-enhanced.orange-icon {
    background: linear-gradient(135deg, #F97316 0%, #FDBA74 100%);
}

.service-icon-enhanced.pink-icon {
    background: linear-gradient(135deg, #EC4899 0%, #F9A8D4 100%);
}

.service-card-enhanced:hover .service-icon-enhanced {
    transform: scale(1.1) rotate(10deg);
}

.service-icon-enhanced i {
    font-size: 2rem;
    color: var(--white);
}

.service-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(45, 91, 255, 0.1);
    font-family: "Playfair Display", serif;
    line-height: 1;
}

.service-title-enhanced {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: "Playfair Display", serif;
}

.service-desc-enhanced {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features-enhanced {
    list-style: none;
    
}

.service-features-enhanced li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.98rem;
    color: var(--text-gray);
    margin-bottom: 0.4rem;
    padding: 0.5rem 0;
}

.service-features-enhanced i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.service-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    font-size: 1rem;
}

.service-cta-btn:hover {
    background: var(--secondary-color);
    gap: 1.2rem;
    transform: translateX(5px);
}

.service-bg-shape {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(45, 91, 255, 0.05) 0%, rgba(45, 91, 255, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.5s;
    z-index: 1;
}

.service-bg-shape.purple-shape {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.05) 0%, rgba(147, 51, 234, 0.1) 100%);
}

.service-bg-shape.teal-shape {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(20, 184, 166, 0.1) 100%);
}

.service-bg-shape.orange-shape {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(249, 115, 22, 0.1) 100%);
}

.service-bg-shape.pink-shape {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.05) 0%, rgba(236, 72, 153, 0.1) 100%);
}

.service-card-enhanced:hover .service-bg-shape {
    transform: scale(1.5);
    opacity: 0.5;
}

/* Compact How We Work Section */
.how-we-work-compact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
}

.process-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.process-card-compact {
    background: var(--white);
    border: 2px solid #E5E7EB;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.process-card-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #458BC9 100%);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.process-card-compact:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(45, 91, 255, 0.15);
}

.process-card-compact:hover::before {
    transform: scaleX(1);
}

.process-icon-compact {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.4s;
}

.process-card-compact:hover .process-icon-compact {
    transform: scale(1.1) rotate(5deg);
}

.process-icon-compact i {
    font-size: 2rem;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.process-icon-compact.blue-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, #458BC9 100%);
}

.process-icon-compact.purple-gradient {
    background: linear-gradient(135deg, #9333EA 0%, #C084FC 100%);
}

.process-icon-compact.teal-gradient {
    background: linear-gradient(135deg, #14B8A6 0%, #5EEAD4 100%);
}

.process-icon-compact.orange-gradient {
    background: linear-gradient(135deg, #F97316 0%, #FDBA74 100%);
}

.process-icon-compact.pink-gradient {
    background: linear-gradient(135deg, #EC4899 0%, #F9A8D4 100%);
}

.process-icon-compact.green-gradient {
    background: linear-gradient(135deg, #10B981 0%, #6EE7B7 100%);
}

.process-num {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: "Playfair Display", serif;
    box-shadow: 0 4px 12px rgba(45, 91, 255, 0.2);
    z-index: 3;
}

.process-card-compact h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.process-card-compact p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.process-features {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E5E7EB;
}

.process-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.8rem;
}

.process-features i {
    color: var(--primary-color);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Responsive for Compact Process */
@media (max-width: 1024px) {
    .process-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .how-we-work-compact {
        padding: 4rem 0;
    }
    
    .process-grid-compact {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-card-compact {
        padding: 2rem 1.5rem;
    }
    
    .process-icon-compact {
        width: 70px;
        height: 70px;
    }
    
    .process-icon-compact i {
        font-size: 1.6rem;
    }
    
    .process-num {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    
    .process-card-compact h3 {
        font-size: 1.2rem;
    }
    
    .process-features li {
        font-size: 0.85rem;
    }
}

/* Enhanced CTA Section */
.cta-section-enhanced {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1E40AF 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg-decoration {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content-enhanced {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-title-big {
    font-family: "Playfair Display", serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight-white {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cta-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
    font-weight: 600;
}

.benefit-item i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.cta-right {
    text-align: center;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: var(--white);
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.15rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    gap: 1.5rem;
}

.cta-contact-alt {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.cta-contact-alt a {
    color: var(--white);
    font-weight: 700;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.cta-contact-alt a:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-enhanced-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2.5rem;
    }
    
    .process-visual-timeline {
        padding: 0 2rem;
    }
    
    .timeline-line {
        left: 35px;
    }
    
    .process-step-visual {
        grid-template-columns: auto 1fr;
        gap: 2rem;
    }
    
    .process-step-visual.reverse {
        direction: ltr;
    }
    
    .step-badge {
        grid-column: 1;
    }
    
    .step-content-visual {
        grid-column: 2;
    }
    
    .step-content-visual:hover {
        transform: translateX(0) translateY(-5px);
    }
    
    .cta-content-enhanced {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .cta-benefits {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .services-main-title {
        font-size: 3rem;
    }
    
    .hero-stats-inline {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-divider {
        width: 50px;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, #2D5BFF 50%, transparent 100%);
    }
    
    .section-title-large {
        font-size: 2.5rem;
    }
    
    .services-enhanced-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card-inner {
        padding: 2rem;
    }
    
    .service-icon-enhanced {
        width: 70px;
        height: 70px;
    }
    
    .service-number {
        font-size: 2.5rem;
    }
    
    .step-badge {
        width: 50px;
        height: 50px;
    }
    
    .step-num {
        font-size: 1.2rem;
    }
    
    .step-content-visual {
        padding: 2rem;
    }
    
    .cta-title-big {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .services-hero-enhanced {
        padding: 3rem 0;
    }
    
    .services-main-title {
        font-size: 2.2rem;
    }
    
    .services-hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title-large {
        font-size: 2rem;
    }
    
    .service-card-inner {
        padding: 1.5rem;
    }
    
    .service-icon-enhanced {
        width: 60px;
        height: 60px;
    }
    
    .service-title-enhanced {
        font-size: 1.5rem;
    }
    
    .cta-title-big {
        font-size: 2rem;
    }
    
    .cta-button-large {
        padding: 1.2rem 2.5rem;
        font-size: 1rem;
    }
}
