/* Booking Process Widget Styles */
.booking-process-wrapper {
    width: 100%;
    padding: 0;
}

.booking-process-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

.booking-step {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.booking-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    z-index: 2;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ffffff;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
    position: relative;
    overflow: hidden;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.booking-step:hover .step-icon::before {
    left: 100%;
}

.booking-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(79, 70, 229, 0.4);
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin: 20px 0 15px 0;
    line-height: 1.3;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: color 0.3s ease;
}

.step-description {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
}

/* Connection Lines */
.booking-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #e2e8f0, transparent);
    transform: translateY(-50%);
    z-index: 0;
}

.booking-step:last-child::after {
    display: none;
}

/* Decorative Elements */
.booking-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed, #f093fb);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-step:hover::before {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .booking-process-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .booking-step::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .booking-process-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .booking-step {
        padding: 25px 20px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .step-title {
        font-size: 18px;
        margin: 15px 0 12px 0;
    }
    
    .step-description {
        font-size: 13px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 12px;
        top: -12px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .booking-step {
        padding: 20px 15px;
    }
    
    .step-icon {
        width: 55px;
        height: 55px;
        font-size: 18px;
    }
    
    .step-title {
        font-size: 16px;
    }
    
    .step-description {
        font-size: 12px;
    }
}

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

.booking-step {
    animation: fadeInUp 0.6s ease-out;
}

/* Pulse Animation for Icons */
@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5);
    }
    100% {
        box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
    }
}

.step-icon {
    animation: pulse 2s infinite;
}

/* Glassmorphism Effect */
.booking-step {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

/* Modern Gradient Backgrounds */
.booking-step:nth-child(1) .step-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.booking-step:nth-child(2) .step-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.booking-step:nth-child(3) .step-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.booking-step:nth-child(4) .step-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.booking-step:nth-child(1) .step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.booking-step:nth-child(2) .step-number {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.booking-step:nth-child(3) .step-number {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.booking-step:nth-child(4) .step-number {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}