/* Cabin Bento Section - About Us Style */
.cabin-bento-section {
    background: #fff;
    padding: 100px 0;
}

.cabin-bento-section .section-header {
    margin-bottom: 50px;
}

/* Bento Grid - Same as About Us */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bento-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid #f0f3f5;
}

.bento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.bento-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.bento-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
}

.bento-content {
    padding: 30px;
}

.bento-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.bento-card:hover .bento-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.bento-icon-box i {
    font-size: 1.5rem;
    color: #fff;
}

.bento-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--top-bar-bg);
    margin-bottom: 12px;
}

.bento-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .cabin-bento-section {
        padding: 80px 0;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bento-image {
        height: 200px;
    }

    .bento-content {
        padding: 25px;
    }

    .bento-content h3 {
        font-size: 1.3rem;
    }
}

.cabin-showcase-huge {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 120px 0;
    overflow: hidden;
}

.container-full {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.cabin-showcase-huge .section-header {
    margin-bottom: 60px;
}

.cabin-showcase-huge .section-header h2 {
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.cabin-showcase-huge .section-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.3rem;
}

.cabin-showcase-huge .badge {
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
}

/* Hero Cabin Image - HUGE */
.cabin-hero-large {
    margin-bottom: 50px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.cabin-hero-image {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.cabin-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 60px;
}

.cabin-hero-content h3 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.cabin-hero-content p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Gallery Grid - Complex Layout */
.cabin-gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 300px);
    gap: 20px;
}

/* Card Positioning */
.cabin-card-1 {
    grid-column: 1 / 4;
    grid-row: 1 / 3;
}

.cabin-card-2 {
    grid-column: 4 / 6;
    grid-row: 1 / 2;
}

.cabin-card-3 {
    grid-column: 6 / 7;
    grid-row: 1 / 2;
}

.cabin-card-4 {
    grid-column: 4 / 7;
    grid-row: 2 / 3;
}

.cabin-card-5 {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
}

.cabin-card-6 {
    grid-column: 3 / 7;
    grid-row: 3 / 4;
}

/* Card Styles */
.cabin-card-large,
.cabin-card-medium,
.cabin-card-wide {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
}

.cabin-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.cabin-card-large:hover .cabin-card-bg,
.cabin-card-medium:hover .cabin-card-bg,
.cabin-card-wide:hover .cabin-card-bg {
    transform: scale(1.1);
}

.cabin-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: all 0.4s ease;
}

.cabin-card-large:hover .cabin-card-overlay,
.cabin-card-medium:hover .cabin-card-overlay,
.cabin-card-wide:hover .cabin-card-overlay {
    background: linear-gradient(180deg, rgba(255, 102, 0, 0.2) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.cabin-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    color: #fff;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    width: fit-content;
}

.cabin-card-overlay h4 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.cabin-card-large .cabin-card-overlay h4 {
    font-size: 2.2rem;
}

.cabin-card-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

/* Hover Effects */
.cabin-card-large:hover,
.cabin-card-medium:hover,
.cabin-card-wide:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(255, 102, 0, 0.3);
}

/* Responsive */
@media (max-width: 1200px) {
    .cabin-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(4, 280px);
    }

    .cabin-card-1 {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }

    .cabin-card-2 {
        grid-column: 3 / 5;
        grid-row: 1 / 2;
    }

    .cabin-card-3 {
        grid-column: 3 / 5;
        grid-row: 2 / 3;
    }

    .cabin-card-4 {
        grid-column: 1 / 5;
        grid-row: 3 / 4;
    }

    .cabin-card-5 {
        grid-column: 1 / 3;
        grid-row: 4 / 5;
    }

    .cabin-card-6 {
        grid-column: 3 / 5;
        grid-row: 4 / 5;
    }
}

@media (max-width: 768px) {
    .cabin-showcase-huge {
        padding: 80px 0;
    }

    .container-full {
        padding: 0 20px;
    }

    .cabin-showcase-huge .section-header h2 {
        font-size: 2.5rem;
    }

    .cabin-hero-image {
        height: 400px;
    }

    .cabin-hero-content h3 {
        font-size: 2rem;
    }

    .cabin-gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }

    .cabin-card-1,
    .cabin-card-2,
    .cabin-card-3,
    .cabin-card-4,
    .cabin-card-5,
    .cabin-card-6 {
        grid-column: 1 / 2;
        grid-row: auto;
        min-height: 300px;
    }

    .cabin-card-overlay {
        padding: 25px;
    }
}