 /* Booking Offer Section Styles */
.booking-offer-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--bg-start, #f0f4f8), var(--bg-end, #e0e7ee));
    font-family: 'Poppins', sans-serif;
    color: var(--text-color, #333);
}

.booking-offer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 10px;
    position: relative;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--primary-color, #4a90e2);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 30px auto 60px;
    color: var(--text-color, #333);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Updated Image Wrapper for a Square Shape */
.card-image-wrapper {
    width: 100%;
    /* Create a 1:1 aspect ratio */
    padding-top: 100%;
    position: relative;
    overflow: hidden;
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .card-image {
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 10px;
}

.card-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color, #4a90e2);
    margin-bottom: 20px;
}

.card-price span {
    font-size: 0.8rem;
    font-weight: 800;
    color: #ee0505;
}

.service-details {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

/* Key Points Icons */
.service-details li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-color, #333);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-details li i {
    color: var(--secondary-color, #50e3c2);
    font-size: 1.1em;
}

/* Updated Button Styles */
.book-now-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 50px;
    padding: 0;
    background: var(--primary-color, #4a90e2);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    margin: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.book-now-btn:hover {
    background: var(--secondary-color, #50e3c2);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.book-now-btn i {
    font-size: 1rem;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.book-now-btn:hover i {
    transform: translateX(5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    opacity: 0; /* Initially hidden */
}

/* Staggered animation delay */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .services-grid {
        gap: 20px;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .section-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    .service-card {
        max-width: 90%;
        margin: 0 auto;
    }
    .card-title {
        font-size: 1.2rem;
    }
    .card-price {
        font-size: 1.1rem;
    }
    .service-details li {
        font-size: 0.9rem;
    }
    .book-now-btn {
        width: 180px;
        height: 45px;
        font-size: 0.9rem;
    }
}

/* banner  */

        .only-desktop {
            display: block;
        }

        .only-mobile {
            display: none;
        }

        @media (max-width: 768px) {
            .only-desktop {
                display: none !important;
            }

            .only-mobile {
                display: block !important;
            }
        }

