/* Services Categories Styling */

/* Services Categories Section */
.services-categories {
    padding: 60px 0;
    background-color: #fff;
}

/* Category Container */
.category-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 30px;
}

/* Category Item */
.category-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Category Image */
.category-image {
    height: 250px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-item:hover .category-image img {
    transform: scale(1.05);
}

/* Category Content */
.category-content {
    padding: 30px;
}

.category-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
    position: relative;
    padding-bottom: 12px;
}

.category-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, #a67c52, #d9b38c);
}

.category-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Service List */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.service-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dotted #e0e0e0;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-name {
    font-weight: 500;
}

.service-price {
    font-weight: 600;
    color: #a67c52;
}

/* Learn More Button */
.learn-more-btn {
    display: inline-block;
    background-color: #a67c52;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #8a6642;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(166, 124, 82, 0.3);
}

/* Booking Section */
.booking-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.booking-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.booking-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.book-now-btn {
    display: inline-block;
    background-color: #a67c52;
    color: white;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
}

.book-now-btn:hover {
    background-color: #8a6642;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(166, 124, 82, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .category-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .category-image {
        height: 200px;
    }
    
    .category-content {
        padding: 25px;
    }
    
    .category-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .category-content {
        padding: 20px;
    }
    
    .category-content h3 {
        font-size: 20px;
    }
    
    .service-list li {
        flex-direction: column;
        padding: 8px 0;
    }
    
    .service-price {
        margin-top: 5px;
    }
}
