/* Services Showcase Section Styles */
.services-showcase {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.services-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.showcase-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.showcase-header .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 0.8s ease-out;
}

.showcase-header .section-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.service-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.service-option {
    background: white;
    border-radius: 16px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    flex: 1;
    max-width: 350px;
    animation: slideInScale 0.6s ease-out;
    border: 1px solid rgba(86, 130, 177, 0.1);
}

.service-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(86, 130, 177, 0.1), transparent);
    transition: left 0.4s ease;
}

.service-option:hover::before {
    left: 100%;
}

.service-option:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(86, 130, 177, 0.15);
    border-color: rgba(86, 130, 177, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: iconFloat 3s ease-in-out infinite;
    box-shadow: 0 8px 20px rgba(86, 130, 177, 0.2);
}

.service-option:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    animation: none;
    box-shadow: 0 12px 25px rgba(86, 130, 177, 0.3);
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-option h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.service-description {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.service-features {
    margin-bottom: 1.8rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.6rem;
    padding: 0.3rem 0;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.feature-item:hover {
    transform: translateX(3px);
    color: var(--primary-color);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-item span {
    color: #555;
    font-weight: 500;
}

.service-cta {
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0.8rem;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 6px 15px rgba(86, 130, 177, 0.25);
}

.cta-button.secondary {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: white;
    box-shadow: 0 6px 15px rgba(115, 158, 201, 0.25);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(86, 130, 177, 0.3);
}

.cta-button.primary:hover {
    box-shadow: 0 10px 25px rgba(86, 130, 177, 0.35);
}

.cta-button.secondary:hover {
    box-shadow: 0 10px 25px rgba(115, 158, 201, 0.35);
}

.cta-note {
    font-size: 0.75rem;
    color: #7f8c8d;
    margin: 0;
    font-weight: 500;
}

.service-divider {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0 0.8rem;
    animation: fadeIn 1s ease-out 0.4s both;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.divider-text {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-showcase {
        padding: 40px 0;
    }
    
    .showcase-header {
        margin-bottom: 2rem;
    }
    
    .showcase-header .section-title {
        font-size: 1.8rem;
    }
    
    .showcase-header .section-subtitle {
        font-size: 0.9rem;
    }
    
    .service-options {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .service-option {
        padding: 1.5rem 1.2rem;
        max-width: 100%;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .service-icon i {
        font-size: 1.3rem;
    }
    
    .service-option h3 {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.85rem;
    }
    
    .feature-item {
        font-size: 0.8rem;
        gap: 0.6rem;
    }
    
    .feature-item i {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.3rem;
        font-size: 0.85rem;
    }
    
    .cta-note {
        font-size: 0.7rem;
    }
    
    .service-divider {
        flex-direction: column;
        gap: 0.8rem;
        margin: 1rem 0;
    }
    
    .divider-line {
        width: 80px;
        height: 1px;
    }
    
    .divider-text {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .services-showcase {
        padding: 30px 0;
    }
    
    .showcase-header .section-title {
        font-size: 1.6rem;
    }
    
    .service-option {
        padding: 1.2rem 1rem;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.8rem;
    }
    
    .service-icon i {
        font-size: 1.2rem;
    }
    
    .service-option h3 {
        font-size: 1rem;
    }
    
    .service-description {
        font-size: 0.8rem;
    }
    
    .feature-item {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .cta-note {
        font-size: 0.65rem;
    }
}

@media (max-width: 360px) {
    .showcase-header .section-title {
        font-size: 1.4rem;
    }
    
    .service-option h3 {
        font-size: 0.95rem;
    }
    
    .service-description {
        font-size: 0.75rem;
    }
    
    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}
