.dome-page-container {
    padding: 120px 5% 80px;
    background: #f8f4e9;
    min-height: 100vh;
}

.dome-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

/* --- Premium Carousel --- */
.dome-gallery-container {
    width: 100%;
}

.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(44, 85, 48, 0.15);
}

.carousel-inner {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-item {
    min-width: 100%;
}

.carousel-item img {
    width: 100%;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 0.5s ease;
}

.carousel-item img:hover {
    transform: scale(1.02);
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #2c5530;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
}

.carousel-control.prev {
    left: 20px;
}

.carousel-control.next {
    right: 20px;
}

.carousel-control:hover {
    background: #2c5530;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

/* --- Details Section --- */
.dome-details-container {
    position: sticky;
    top: 100px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #f97803;
}

.dome-details-container h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #2c5530;
    margin-bottom: 1.5rem;
}

.price-tag {
    display: inline-block;
    padding: 8px 24px;
    background: #f97803;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(249, 120, 3, 0.2);
}

.price-tag span {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
}

.dome-description p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.dome-amenities h2 {
    font-size: 1.5rem;
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.dome-amenities ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 25px;
    margin-bottom: 3rem;
}

.dome-amenities li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #444;
}

.dome-amenities i {
    color: #2c5530;
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

/* --- Action Area --- */
.book-now-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.book-now-section .btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    border-radius: 16px;
}

/* --- Also Check Out --- */
.also-check-out {
    margin-top: 100px;
    border-top: 1px solid rgba(44, 85, 48, 0.1);
    padding-top: 80px;
}

.also-check-out h2 {
    font-size: 2.2rem;
    color: #2c5530;
    margin-bottom: 3rem;
    text-align: center;
}

.check-out-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Reusing global styles for consistency */
.check-out-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.check-out-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 85, 48, 0.12);
}

.check-out-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.check-out-card:hover img {
    transform: scale(1.05);
}

.check-out-info {
    padding: 2rem;
    text-align: center;
}

.check-out-info h3 {
    color: #2c5530;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.check-out-info p {
    color: #777;
    font-size: 0.95rem;
}

/* --- Lightbox --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
}

.lightbox-content {
    height: 100%;
    display: flex;
    align-items: center;
}

.lightbox-slide {
    min-width: 100%;
    text-align: center;
    padding: 40px;
}

.lightbox-slide img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.close-lightbox:hover {
    color: #f97803;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .dome-page-container {
        padding: 100px 5% 60px;
    }
    
    .dome-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .dome-details-container {
        position: static;
    }
    
    .carousel-item img {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 768px) {
    .dome-amenities ul {
        grid-template-columns: 1fr;
    }
    
    .book-now-section {
        grid-template-columns: 1fr;
    }
    
    .check-out-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel {
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .price-tag {
        font-size: 1.2rem;
    }
    
    .dome-details-container h1 {
        font-size: 2.5rem;
    }
}
