/* Services Section - Advanced Large Cards - New Design */

/* Services Section */
.services {
    position: relative;
    background: transparent;
    padding: 80px 0;
}

.section-header-services {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-services h2 {
    font-size: 3.5rem;
    color: #00c8ff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 200, 255, 0.5);
}

.subtitle-services {
    font-size: 1.3rem;
    color: #a0b8d0;
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card-large {
    position: relative;
    height: 400px;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.service-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 200, 255, 0.4);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a2847 0%, #0f1b35 100%);
    transition: all 0.3s;
}

.service-card-large:hover .card-background {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 200, 255, 0.9) 0%, 
        rgba(0, 200, 255, 0.7) 50%,
        rgba(10, 22, 40, 0.8) 100%
    );
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card-large:hover .card-overlay {
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: all 0.3s;
}

/* SVG Icons Support */
.card-icon svg {
    width: 100%;
    height: 100%;
    padding: 10px;
    transition: all 0.3s ease;
}

.service-card-large:hover .card-icon {
    background: rgba(255, 215, 0, 0.15);
    border-color: #ffd700;
    border-width: 3px;
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.service-card-large:hover .card-icon svg {
    transform: scale(1.05);
}

.card-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
}

.card-body {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
}

.service-card-large:hover .card-body {
    opacity: 1;
    transform: translateY(0);
}

.card-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #fff;
    font-size: 0.9rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
}

.card-cta .cta-button {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
    display: inline-block;
}

.card-cta .cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid-new {
        gap: 1.5rem;
    }
    
    .service-card-large {
        height: 380px;
    }
    
    .card-content {
        padding: 2.5rem;
    }
}

@media (max-width: 968px) {
    .services-grid-new {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card-large {
        height: 420px;
    }
    
    .section-header-services h2 {
        font-size: 2.5rem;
    }
    
    .subtitle-services {
        font-size: 1.1rem;
    }
}

@media (max-width: 640px) {
    .services {
        padding: 60px 0;
    }
    
    .service-card-large {
        height: auto;
        min-height: 380px;
    }
    
    .card-content {
        padding: 2rem;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .card-description {
        font-size: 1rem;
    }
    
    .card-features {
        grid-template-columns: 1fr;
    }
    
    .card-number {
        font-size: 3rem;
    }
    
    .section-header-services h2 {
        font-size: 2rem;
    }
    
    .subtitle-services {
        font-size: 1rem;
    }
}
