/* Working Hours Section */
.working-hours {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(14, 19, 35, 0.97) 0%, rgba(28, 38, 70, 0.97) 100%);
    position: relative;
    overflow: hidden;
}

.working-hours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 25%);
    pointer-events: none;
}

.working-hours .container {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.working-hours-card {
    background: rgba(19, 25, 46, 0.95);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    transform: perspective(1000px) rotateX(0deg);
    transition: transform 0.5s ease;
    position: relative;
}

.working-hours-card:hover {
    transform: perspective(1000px) rotateX(2deg);
}

.working-hours-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.card-header {
    background: rgba(212, 175, 55, 0.1);
    padding: 35px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: rotateGradient 10s linear infinite;
}

@keyframes rotateGradient {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.card-header h2 {
    color: #ffd700;
    font-size: 2.4rem;
    margin: 0;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.schedule-list {
    padding: 30px 40px;
    background: transparent;
    position: relative;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.1),
        transparent
    );
    transition: 0.5s;
}

.schedule-item:hover::before {
    left: 100%;
}

.schedule-item:hover {
    transform: translateX(10px);
    background: rgba(212, 175, 55, 0.05);
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 12px;
}

.day {
    color: #ffd700;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.day::before {
    content: '•';
    color: #ffd700;
    opacity: 0.7;
}

.hours {
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 1.15rem;
    background: linear-gradient(90deg, #ffffff, #ffd700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.closed {
    color: #ff4757;
    font-weight: 600;
    background: linear-gradient(90deg, #ff4757, #ff6b81);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-color: rgba(255, 71, 87, 0.3);
}

/* Animation for items */
.schedule-item {
    animation: slideIn 0.5s ease forwards;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    overflow: hidden;
}

.schedule-item::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    transition: 0.5s;
}

.schedule-item:hover::before {
    left: 100%;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles */
/* Add delay for each item */
.schedule-item:nth-child(1) { animation-delay: 0.1s; }
.schedule-item:nth-child(2) { animation-delay: 0.2s; }
.schedule-item:nth-child(3) { animation-delay: 0.3s; }
.schedule-item:nth-child(4) { animation-delay: 0.4s; }
.schedule-item:nth-child(5) { animation-delay: 0.5s; }
.schedule-item:nth-child(6) { animation-delay: 0.6s; }
.schedule-item:nth-child(7) { animation-delay: 0.7s; }

/* Responsive Styles */
@media (max-width: 992px) {
    .working-hours .container {
        max-width: 700px;
    }

    .card-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .working-hours {
        padding: 80px 0;
    }

    .working-hours .container {
        max-width: 90%;
        padding: 0 20px;
    }
    
    .working-hours-card {
        margin: 0 auto;
        transform: none !important;
    }
    
    .card-header {
        padding: 25px 20px;
    }

    .card-header h2 {
        font-size: 1.8rem;
    }
    
    .schedule-list {
        padding: 20px;
    }
    
    .schedule-item {
        padding: 18px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .schedule-item:hover {
        transform: translateX(5px);
        background: rgba(212, 175, 55, 0.03);
    }

    .day {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }

    .day::before {
        font-size: 1.2rem;
    }

    .hours {
        font-size: 1rem;
        padding: 4px 12px;
        opacity: 0.9;
        border-width: 0.5px;
    }
}

@media (max-width: 480px) {
    .working-hours {
        padding: 60px 0;
    }

    .working-hours .container {
        padding: 0 15px;
    }

    .card-header {
        padding: 20px 15px;
    }

    .card-header h2 {
        font-size: 1.5rem;
    }

    .schedule-list {
        padding: 15px;
    }

    .schedule-item {
        padding: 15px 0;
    }

    .day {
        font-size: 1rem;
    }

    .hours {
        font-size: 0.95rem;
        padding: 3px 10px;
    }
}

@media (max-width: 360px) {
    .working-hours {
        padding: 50px 0;
    }

    .card-header h2 {
        font-size: 1.3rem;
    }

    .schedule-list {
        padding: 12px;
    }

    .schedule-item {
        padding: 12px 0;
    }

    .day {
        font-size: 0.95rem;
    }

    .hours {
        font-size: 0.9rem;
        padding: 3px 8px;
    }
}