/* Enhanced Service Cards CSS */

/* Reduce whitespace between sections */
.section-divider {
    height: 60px !important; /* Reduced from 100px */
    margin-bottom: 0;
    margin-top: 0;
}

.content-section {
    padding: 60px 0; /* Reduced from 80px */
}

/* Enhanced Service Card Styling */
.service-item {
    background: white !important; /* Change from light gray to white */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Service card hover effect */
.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.1);
    border-color: rgba(0, 123, 255, 0.2);
}

/* Smooth transition for all properties */
.service-item, 
.service-item:before, 
.service-item * {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Add colored accent to top of card */
.service-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #0d6efd;
    transform: scaleX(0);
    transform-origin: left;
}

.service-item:hover:before {
    transform: scaleX(1);
}

/* Icon container styling */
.service-item .icon-container {
    background: #f8f9fa;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover .icon-container {
    background: rgba(13, 110, 253, 0.1);
    border-color: rgba(13, 110, 253, 0.3);
    transform: scale(1.1);
}

/* Icon styling */
.service-item .icon-container i {
    color: #0d6efd;
    font-size: 26px;
    transition: all 0.3s ease;
}

.service-item:hover .icon-container i {
    transform: scale(1.1);
}

/* Card title styling */
.service-item h4 {
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    font-size: 20px !important;
}

/* Card description styling */
.service-item p {
    color: #6c757d;
    font-size: 15px !important;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Button styling */
.service-item .view-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #0d6efd;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #0d6efd;
    margin-top: auto; /* Push button to bottom of flex container */
    align-self: flex-start; /* Align button to the left */
}

.service-item .view-btn:hover {
    background-color: #0b5ed7;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

/* Add a subtle hover background effect */
.service-item:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(13, 110, 253, 0.03), transparent);
    z-index: -1;
    transition: height 0.5s ease;
}

.service-item:hover:after {
    height: 100%;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .service-item {
        margin-bottom: 30px;
    }
}

/* Reservations section extra spacing adjustment */
.reservations-section {
    margin-top: 40px; /* Reduced from 80px */
}

/* Container padding adjustments */
.container-xxl {
    padding-top: 0 !important;
    padding-bottom: 20px !important;
}

/* Service banner adjustments */
.section-banner {
    margin: 20px 0 30px;
}

/* Adjust spacing for About section */
#about {
    padding-bottom: 20px;
}

/* Adjust spacing for Services section */
#services {
    padding-top: 20px;
}

/* Adjust container spacing */
.container-xxl.py-5 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}