/* ===== SECTION 007: BOOKING SLOTS ===== */
.section-007 {
    max-width: 1200px;
    width: 100%;
    padding: 40px 20px;
    margin: 0 auto; /* Center the section */
}

.header-007 {
    text-align: center;
    margin-bottom: 40px;
}

.title-007 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #1877F2, #0a5dc2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.subtitle-007 {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Ad Results Card */
.ad-card-007 {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin-bottom: 40px;
    display: flex;
    gap: 30px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.ad-image-007 {
    width: 250px;
    height: 445px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
    flex-shrink: 0;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ad-image-007 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ad-image-placeholder-007 {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1877F2, #0a5dc2);
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 20px;
}

.ad-content-007 {
    flex: 1;
}

.ad-title-007 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1877F2, #0a5dc2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ad-bullets-007 {
    list-style-type: none;
}

.ad-bullet-007 {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.5;
}

.ad-bullet-007:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #1877F2, #0a5dc2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
}

.cards-container-007 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.card-007 {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-007:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(24, 119, 242, 0.15);
}

.card-header-007 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.month-007 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}

.status-007 {
    font-size: 0.9rem;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.status-available-007 {
    background-color: rgba(76, 175, 80, 0.15);
    color: #2e7d32;
}

.status-booked-007 {
    background-color: rgba(255, 152, 0, 0.15);
    color: #ef6c00;
}

.status-complete-007 {
    background-color: rgba(158, 158, 158, 0.15);
    color: #616161;
}

.slots-container-007 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.slot-007 {
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.slot-booked-007 {
    background-color: #ff9800;
    color: white;
    box-shadow: 0 4px 8px rgba(255, 152, 0, 0.3);
}

.slot-completed-007 {
    background-color: #9e9e9e;
    color: white;
    box-shadow: 0 4px 8px rgba(158, 158, 158, 0.3);
}

.slot-available-007 {
    background-color: #4caf50;
    color: white;
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
    cursor: pointer;
    animation: bright-glow-007 1.5s infinite alternate;
}

@keyframes bright-glow-007 {
    0% {
        box-shadow: 0 0 5px #4caf50, 0 0 10px #4caf50, 0 0 15px #4caf50;
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 10px #4caf50, 0 0 20px #4caf50, 0 0 30px #4caf50;
        transform: scale(1.05);
    }
}

.slot-available-007:hover {
    animation: bright-glow-hover-007 0.5s infinite alternate;
}

@keyframes bright-glow-hover-007 {
    0% {
        box-shadow: 0 0 10px #4caf50, 0 0 20px #4caf50, 0 0 30px #4caf50;
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 15px #4caf50, 0 0 30px #4caf50, 0 0 45px #4caf50;
        transform: scale(1.1);
    }
}

.slot-empty-007 {
    background-color: #f5f5f5;
    color: #bdbdbd;
}

.card-footer-007 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.clients-count-007 {
    font-size: 1rem;
    color: #555;
}

.action-btn-007 {
    background: linear-gradient(135deg, #1877F2, #0a5dc2);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.action-btn-007:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.action-btn-007:active {
    transform: translateY(0);
}

.legend-007 {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.legend-item-007 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #555;
}

.legend-color-007 {
    width: 20px;
    height: 20px;
    border-radius: 5px;
}

.legend-available-007 {
    background-color: #4caf50;
    animation: bright-glow-007 1.5s infinite alternate;
}

.legend-booked-007 {
    background-color: #ff9800;
}

.legend-complete-007 {
    background-color: #9e9e9e;
}

.urgency-note-007 {
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    color: #d32f2f;
    animation: glow-007 2s infinite alternate;
}

@keyframes glow-007 {
    from {
        box-shadow: 0 5px 15px rgba(211, 47, 47, 0.2);
    }
    to {
        box-shadow: 0 5px 20px rgba(211, 47, 47, 0.4);
    }
}

.emoji-007 {
    font-size: 1.2rem;
    margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-007 {
        padding: 30px 15px;
    }
    
    .title-007 {
        font-size: 2rem;
    }
    
    .subtitle-007 {
        font-size: 1.1rem;
    }
    
    .ad-card-007 {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .ad-image-007 {
        width: 200px;
        height: 355px;
    }
    
    .ad-title-007 {
        font-size: 1.5rem;
    }
    
    .cards-container-007 {
        gap: 20px;
    }
    
    .card-007 {
        width: 100%;
        max-width: 400px;
        padding: 25px;
    }
    
    .slots-container-007 {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .month-007 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-007 {
        padding: 20px 10px;
    }
    
    .title-007 {
        font-size: 1.8rem;
    }
    
    .subtitle-007 {
        font-size: 1rem;
    }
    
    .ad-card-007 {
        padding: 15px;
        gap: 20px;
    }
    
    .ad-image-007 {
        width: 150px;
        height: 267px;
    }
    
    .ad-title-007 {
        font-size: 1.3rem;
    }
    
    .ad-bullet-007 {
        font-size: 1rem;
    }
    
    .card-007 {
        padding: 20px;
    }
    
    .slots-container-007 {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .slot-007 {
        height: 35px;
        font-size: 0.8rem;
    }
    
    .month-007 {
        font-size: 1.3rem;
    }
    
    .legend-007 {
        gap: 15px;
    }
    
    .legend-item-007 {
        font-size: 0.8rem;
    }
}