.accommodation-section {
    max-width: 1200px;
    margin: 0 auto;
}

.accommodation-header {
    text-align: center;
    margin-bottom: 3rem;
}

.accommodation-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #6b9746;
    margin-bottom: 1rem;
}

.accommodation-subheading {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.accommodation-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.accommodation-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.accommodation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.accommodation-image-container {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.accommodation-gallery {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.accommodation-gallery-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.accommodation-gallery-slide {
    flex-shrink: 0;
    height: 100%;
}

.accommodation-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accommodation-gallery-nav {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.accommodation-gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.accommodation-gallery-dot.active {
    background: white;
}

.accommodation-gallery-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    z-index: 5;
}

.accommodation-gallery-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.accommodation-image-container:hover .accommodation-gallery-arrow {
    opacity: 1;
}

.accommodation-gallery-arrow:hover {
    background: rgba(255, 255, 255, 0.9);
}

.accommodation-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #6b9746;
    color: #1a202c; /* Much darker text */
    background-color: #f7fafc; /* Slightly lighter background if needed */
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 10;
}

.accommodation-card-content {
    padding: 1.5rem;
}

.accommodation-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.accommodation-card-description {
    color: #2d3748;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.accommodation-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.accommodation-feature {
    background: #f2f7f2;
    color: #2d3748;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.accommodation-card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accommodation-price {
    font-weight: 600;
    color: #3e6b1a;
    font-size: 1.2rem;
}

.accommodation-btn {
    background: #3e6b1a; /* darker green for better contrast */
    color: #ffffff; /* keep text white */
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.accommodation-btn:hover {
    background: #5a8040;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .accommodation-heading {
        font-size: 2rem;
    }

    .accommodation-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .accommodation-gallery-arrow {
        opacity: 1;
    }
}

/* Animation for gallery change */
@keyframes fadeIn {
    from {
        opacity: 0.6;
    }

    to {
        opacity: 1;
    }
}

.accommodation-gallery-slide {
    animation: fadeIn 0.5s ease;
}