/* Modern Service Cards with Orange Theme */

.service-cards-section {
    width: 100%;
    padding: 3rem 1rem;
    margin: 3rem 0;
}

.service-cards-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-cards-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: #333;
    margin-bottom: 3rem;
    text-align: center;
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #fff9f5 100%);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.08);
    border: 1px solid rgba(255, 138, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b00, #ff8a00, #ff5722);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 107, 0, 0.15);
    border-color: rgba(255, 138, 0, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b00, #ff8a00);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
}

.service-card-title-wrapper {
    flex: 1;
}

.service-card-number {
    font-size: 0.75rem;
    font-weight: 600;
    color: #ff6b00;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.service-card-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-card-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.service-card-feature-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #ff6b00, #ff8a00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.service-card-feature-icon::after {
    content: '✓';
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
}

.service-card-feature strong {
    color: #333;
    font-weight: 600;
}

.service-card-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #fff3cd, #ffe8b8);
    border-radius: 0.75rem;
    border-left: 4px solid #ff8a00;
}

.service-card-price-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.service-card-price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b00, #ff8a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card-note {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 107, 0, 0.05);
    border-radius: 0.5rem;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

.service-card-note strong {
    color: #ff6b00;
}

/* Special styling for package card */
.service-card.package-card {
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d5 100%);
    border: 2px solid rgba(255, 138, 0, 0.2);
}

.service-card.package-card::before {
    height: 5px;
    transform: scaleX(1);
}

.service-card.package-card .service-card-features {
    background: white;
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .service-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
}

/* Animation on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
