/* Services Page Specific Styles */
:root {
    --primary-soft: rgba(99, 102, 241, 0.1);
    --success-soft: rgba(16, 185, 129, 0.1);
    --warning-soft: rgba(245, 158, 11, 0.1);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-primary: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

/* Section Spacing */
.section-padding {
    padding: 6rem 0;
}

/* Page Header Styling */
.page-header {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    overflow: hidden;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Service Cards */
.service-category-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.service-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
}

/* Feature Boxes */
.feature-box {
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color) !important;
}

/* Service Tiers */
.service-tier-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-tier-card.bg-primary {
    transform: scale(1.03);
    z-index: 1;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    transform: rotate(45deg);
    width: 120px;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Partner Cards */
.partner-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.partner-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

/* DeFi Section Styles */
.defi-section {
    position: relative;
    overflow: hidden;
    background: var(--gradient-dark);
}

.defi-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.defi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

.defi-icon-wrapper {
    transition: all 0.3s ease;
}

.defi-card:hover .defi-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bg-success-soft {
    background-color: rgba(16, 185, 129, 0.1) !important;
}

.bg-primary-soft {
    background-color: rgba(99, 102, 241, 0.1) !important;
}

.bg-warning-soft {
    background-color: rgba(245, 158, 11, 0.1) !important;
}

.defi-cta {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.defi-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.2;
    z-index: -1;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .defi-card {
        margin-bottom: 1.5rem;
    }
    
    .defi-cta .btn {
        width: 100%;
        margin-top: 1rem;
    }
}

/* Contact CTA */
.contact-cta-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a1d96 100%);
}

.cta-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.contact-item {
    padding: 0.5rem 0;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 4rem 0;
    }
    
    .service-tier-card.bg-primary {
        transform: none;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 3rem 0;
    }
    
    .page-header {
        padding: 80px 0;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}

/* Animation Delays */
.wow:nth-child(2) { animation-delay: 0.1s; }
.wow:nth-child(3) { animation-delay: 0.2s; }
.wow:nth-child(4) { animation-delay: 0.3s; }
.wow:nth-child(5) { animation-delay: 0.4s; }
