/* Service Page Specific Styles */

.service-detail {
    padding: 80px 0;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-info h2 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.service-info p {
    color: #555;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.service-features {
    margin-top: 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #333;
}

.service-features i {
    color: var(--accent-orange);
    margin-right: 15px;
    font-size: 1.2rem;
}

.cta-section {
    margin-top: 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    padding: 60px;
    border-radius: 20px;
    color: #fff;
}

.cta-section h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.service-book-btn {
    background: #fff;
    color: var(--primary-blue);
    padding: 15px 40px;
    font-size: 1.1rem;
}

.service-book-btn:hover {
    background: var(--accent-orange);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Back Button Styles */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: fit-content;
}

.btn-back:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateX(-5px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .service-info h2 {
        font-size: 2rem;
    }

    .cta-section {
        padding: 40px 20px;
    }

    .service-image-img {
        height: 300px;
        /* Adjust height for mobile */
    }
}

/* Image Styles */
.service-image-img {
    width: 100%;
    height: 400px;
    /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}