:root {
    --primary-teal: #008080;
    --brand-blue: #0056b3;
    --accent-orange: #c79538;
    --border: #ddd;
    --muted: #6c757d;
}

.services-section {
    padding: 200px 0;
    overflow: visible; /* Required for sticky to work */
}

/* Layout Grid */
.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 90px;
    align-items: stretch;
    position: relative;
}

.image-column {
    flex: 1;
    min-width: 500px;
}

.services-list {
    flex: 1;
    min-width: 400px;
}

/* Sticky Image Logic */
.sticky-preview {
    position: sticky;
    top: 200px; /* Distance from top of viewport when sticking */
    height: 80vh;
    border-radius: 20px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.sticky-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease, transform 0.5s ease;
}

/* Service Items */
.service-item {
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
}

.service-title-group {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.service-title {
    color: var(--muted);
    line-height: 1.1;
    transition: 0.3s;
}

.room-type {
    font-size: 1.2rem;
    font-weight: 500;
}

.plus-btn {
    width: 45px;
    height: 45px;
    background: #eee;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    transition: 0.4s;
}

/* Accordion Logic */
.details-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}

.details-content { overflow: hidden; }

.service-item.active .details-wrapper { grid-template-rows: 1fr; }
.service-item.active .service-title { color: var(--accent-orange); }
.service-item.active .plus-btn { 
    transform: rotate(45deg); 
    background: var(--accent-orange); 
    color: white; 
}

/* Dotted Spec Rows */
.spec-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.spec-row::after {
    content: "";
    flex-grow: 1;
    border-bottom: 2px dotted #ccc;
    margin-left: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 1199px) {
    .image-column { display: none; } /* Hide sticky on mobile */
    .mobile-service-img {
        display: block;
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 15px;
        margin-bottom: 20px;
    }
    .content-grid { flex-direction: column; }
}

@media (min-width: 1200px) {
    .mobile-service-img { display: none; }
    .room-catagraytext{
    font-size: 0.85rem;
}
}




.room-catagraytext{
    font-size: 0.65rem;
}