/* assets/css/service-detail.css */

:root {
    --premium-yellow: #D4AF37;
    /* Gold/Premium Yellow */
    --premium-yellow-hover: #b5952f;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f9f9f9;
}

/* Page Layout */
.service-detail-page {
    padding: 120px 0 80px;
    /* Space for fixed header */
    background-color: #fff;
    min-height: 80vh;
}

.service-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.service-header-section {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-title {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-transform: capitalize;
}

.service-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.service-cta-btn {
    display: inline-block;
    background-color: var(--premium-yellow);
    color: #fff;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.service-cta-btn:hover {
    background-color: var(--premium-yellow-hover);
    transform: translateY(-2px);
}

/* Carousel Section */
.service-carousel-section {
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    /* Animation handled by GSAP in JS */
}

.carousel-item {
    width: 400px;
    /* Fixed width for cards */
    height: 300px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.carousel-item:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .service-title {
        font-size: 2.5rem;
    }

    .service-description {
        font-size: 1rem;
    }

    .carousel-item {
        width: 300px;
        height: 225px;
    }
}