/* ===============================
   Dog Day Care Theme
================================= */
body {
    background: #fdfdfd !important;
    color: #333333;
    font-family: 'Poppins', sans-serif;
}

.section {
    padding: 40px 0;
}

/* ===============================
   IMAGE BUNCH LAYOUT
================================= */
.image-bunch-container {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bunch-img {
    position: absolute;
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 8px solid #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

/* Static Square Grid (Default) */
.bunch-img:nth-child(1) { transform: translate(-90px, -90px) rotate(-3deg); z-index: 3; }
.bunch-img:nth-child(2) { transform: translate(90px, -90px) rotate(4deg); z-index: 2; width: 200px; height: 200px; }
.bunch-img:nth-child(3) { transform: translate(-90px, 90px) rotate(2deg); z-index: 1; width: 190px; height: 190px; }
.bunch-img:nth-child(4) { transform: translate(90px, 90px) rotate(-5deg); z-index: 4; }

/* Shuffle State 1 */
.image-bunch-container.shuffle-1 .bunch-img:nth-child(1) { transform: translate(90px, 90px) rotate(5deg); }
.image-bunch-container.shuffle-1 .bunch-img:nth-child(2) { transform: translate(-90px, -90px) rotate(-4deg); }
.image-bunch-container.shuffle-1 .bunch-img:nth-child(3) { transform: translate(90px, -90px) rotate(-2deg); }
.image-bunch-container.shuffle-1 .bunch-img:nth-child(4) { transform: translate(-90px, 90px) rotate(3deg); }

/* Shuffle State 2 */
.image-bunch-container.shuffle-2 .bunch-img:nth-child(1) { transform: translate(-90px, 90px) rotate(-8deg); }
.image-bunch-container.shuffle-2 .bunch-img:nth-child(2) { transform: translate(90px, 90px) rotate(6deg); }
.image-bunch-container.shuffle-2 .bunch-img:nth-child(3) { transform: translate(-90px, -90px) rotate(4deg); }
.image-bunch-container.shuffle-2 .bunch-img:nth-child(4) { transform: translate(90px, -90px) rotate(-2deg); }

/* ===============================
   PRICING CARD
================================= */
.daycare-price-card {
    background: #ffffff;
    border-radius: 40px;
    padding: 30px 40px;
    border: 2px solid #e8f5e9;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    max-width: 450px;
    margin: 0 auto;
}

.daycare-price-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: #e8f5e9;
    border-radius: 0 0 0 100%;
    z-index: 0;
}

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

.daycare-price-card h3 {
    font-weight: 800;
    color: #2e7d32;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.daycare-amount {
    font-size: 3rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 15px;
}

.daycare-amount span {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

.daycare-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.daycare-features li {
    padding: 8px 0;
    font-size: 1rem;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.daycare-features li i {
    color: #2e7d32;
    margin-right: 15px;
    font-size: 1.3rem;
}

.daycare-features li:last-child {
    border-bottom: none;
}

.badge-all-in {
    background: #2e7d32;
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

/* ===============================
   ACTIVITY CARDS
================================= */
.activity-card {
    padding: 40px 30px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: all 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border-color: #e8f5e9;
}

.activity-card h4 {
    color: #2e7d32;
    font-weight: 700;
}

/* ===============================
   DAY CARE BOOKING REDESIGN
================================= */
.daycare-booking-section {
    padding: 50px 0;
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
}

.daycare-booking-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: #e8f5e9;
    border-radius: 50%;
    opacity: 0.5;
    z-index: 0;
}

.booking-card-premium {
    background: #ffffff;
    border-radius: 40px;
    padding: 0;
    box-shadow: 0 40px 100px rgba(46, 125, 50, 0.1);
    border: 1px solid rgba(46, 125, 50, 0.05);
    position: relative;
    z-index: 1;
    display: flex;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.booking-visual-side {
    background: #1b5e20;
    padding: 50px;
    color: white;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-form-side {
    padding: 50px;
    width: 60%;
    background: #fff;
}

.booking-visual-side h3 {
    color: #fff;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.booking-visual-side ul {
    list-style: none;
    padding: 0;
}

.booking-visual-side li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    opacity: 0.9;
}

.booking-visual-side li i {
    margin-right: 12px;
    font-size: 1.2rem;
    color: #81c784;
}

.booking-header {
    margin-bottom: 30px;
}

.booking-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 5px;
}

.booking-header p {
    font-size: 0.95rem;
    color: #777;
}

@media (max-width: 991px) {
    .booking-card-premium {
        flex-direction: column;
    }
    .booking-visual-side, .booking-form-side {
        width: 100%;
        padding: 40px;
    }
}

/* Custom Input Styling for Daycare */
.daycare-booking-section .grooming-input {
    background: #f8faf9;
    border: 2px solid #edf2f0;
    padding: 15px 20px;
    border-radius: 15px;
    color: #333;
}

.daycare-booking-section .grooming-input:focus {
    background: #ffffff;
    border-color: #2e7d32;
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.05);
}
