/* ── Gallery Tabs & Main Grid ── */
.gallery-tabs {
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    padding-bottom: 20px;
}

.gallery-tab-btn {
    border: 1.5px solid rgba(197, 168, 128, 0.3);
    color: var(--primary-dark);
    font-family: var(--font-body);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 0px;
    background: transparent;
    transition: var(--transition-premium);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.gallery-tab-btn:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.gallery-tab-btn.active {
    background: #0E8388;
    color: var(--text-white);
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(197, 168, 128, 0.25);
}

/* Tab Content & Transitions */
.gallery-tab-pane {
    display: none;
    opacity: 0;
}

.gallery-tab-pane.active {
    display: block;
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* Gallery Grid Items */
.gallery-item {
    background: var(--card-bg);
    border: var(--border-gold);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
    transition: var(--transition-premium);
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--box-shadow-gold);
    border-color: #0E8388;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Gallery Grid Items - Vertical Split */
.gallery-item-vertical {
    background: var(--card-bg);
    border: var(--border-gold);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
    transition: var(--transition-premium);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-item-vertical:hover {
    transform: translateY(-6px);
    box-shadow: var(--box-shadow-gold);
    border-color: var(--accent-gold);
}

.vertical-comparison {
    display: flex;
    flex-direction: column;
    position: relative;
    background: #000;
}

.comparison-half {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.comparison-half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item-vertical:hover .comparison-half img {
    transform: scale(1.04);
}

.comparison-half .label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(19, 26, 30, 0.85);
    color: var(--text-white);
    padding: 3px 10px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(197, 168, 128, 0.3);
    z-index: 2;
}

/* White separator line between before and after */
.vertical-comparison::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: #ffffff;
    z-index: 3;
    box-shadow: 0 0 8px rgba(0,0,0,0.5);
    transform: translateY(-50%);
}

.vertical-comparison-single {
    position: relative;
    overflow: hidden;
    height: 403px; /* 200px * 2 + 3px separator */
    background: #000;
}

.vertical-comparison-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item-vertical:hover .vertical-comparison-single img {
    transform: scale(1.04);
}

.gallery-item-vertical .p-3.bg-white.border-top {
    border-top: 1px solid rgba(197, 168, 128, 0.15) !important;
    background-color: var(--card-bg) !important;
    transition: var(--transition-fast);
}

.gallery-item-vertical .p-3.bg-white.border-top h5 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.gallery-item-vertical .p-3.bg-white.border-top small {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Gallery Item Descriptions */
.gallery-item .p-3.bg-white.border-top {
    border-top: 1px solid rgba(197, 168, 128, 0.15) !important;
    transition: var(--transition-fast);
}

.gallery-item .p-3.bg-white.border-top h5 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.gallery-item .p-3.bg-white.border-top small {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Outline Button */
.btn-outline-custom {
    background-color: transparent;
    color: var(--primary-color) !important;
    font-family: var(--font-body);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 0px;
    border: 1.5px solid var(--primary-color);
    transition: var(--transition-premium);
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 1.8px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-outline-custom:hover {
    background: var(--primary-color);
    color: var(--text-white) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 131, 136, 0.25);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

        /* ── Instagram CTA ── */
        .instagram-section {
            background: linear-gradient(135deg, #131A1E 0%, #1E3737 60%, #0E8388 100%);
            position: relative;
            overflow: hidden;
        }

        .instagram-section::before {
            content: '';
            position: absolute;
            top: -50%; right: -15%;
            width: 55%;
            height: 200%;
            background: radial-gradient(ellipse, rgba(197, 168, 128, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .instagram-section::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 3px;
            background: var(--gradient-gold);
        }

        .insta-handle {
            font-family: var(--font-heading);
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 700;
            color: var(--text-white);
            line-height: 1.1;
        }

        .insta-handle span { color: #0E8388; }
        .insta-handle p{
            color:rgba(255,255,255,0.65);
            font-size:1rem;
            font-weight:300;
            line-height:1.8;
            max-width:480px;
            width: 100%;
        }

        .insta-icon-ring {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.8rem;
            box-shadow: 0 12px 40px rgba(220, 39, 67, 0.35);
            margin: 0 auto 20px;
            animation: float 4s ease-in-out infinite;
        }
        .insta-icon-ring a{
            color: white;
        }

        .insta-stat-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(197, 168, 128, 0.2);
            color: rgba(255,255,255,0.8);
            font-family: var(--font-body);
            font-size: 0.82rem;
            font-weight: 500;
            padding: 8px 20px;
            margin: 6px 5px;
        }

        .insta-stat-pill i { color: var(--accent-gold); }

        .insta-posts-row {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .insta-post-thumb {
            width: 90px;
            height: 90px;
            border-radius: 3px;
            border: 1.5px solid rgba(197, 168, 128, 0.2);
            overflow: hidden;
            position: relative;
            transition: var(--transition-fast);
        }

        .insta-post-thumb:hover {
            border-color: var(--accent-gold);
            transform: scale(1.06);
        }

        .insta-post-inner {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: rgba(255,255,255,0.75);
        }
        .insta-post-inner:hover{
            border:1px solid #0E8388;
        }

        /* ── Booking CTA Banner ── */
        .booking-cta-section {
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
        }

        .booking-cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .booking-cta-section::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 3px;
            background: var(--gradient-gold);
        }

        .cta-pill-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 24px;
        }

        .cta-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            color: rgba(255,255,255,0.85);
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 500;
            padding: 8px 18px;
            letter-spacing: 0.5px;
        }

        .cta-pill i { color: var(--accent-gold); }

        /* ── Lightbox overlay (pure CSS) ── */
        .gallery-card-visual { position: relative; }
        
        /* ── Decorative number on sliders ── */
        .slider-num {
            position: absolute;
            top: 18px;
            left: 18px;
            font-family: var(--font-heading);
            font-size: 4.5rem;
            font-weight: 700;
            color: rgba(255,255,255,0.07);
            line-height: 1;
            z-index: 1;
            pointer-events: none;
            user-select: none;
        }

        /* ── Gallery heading pill ── */
        .count-badge {
            display: inline-block;
            background: rgba(14, 131, 136, 0.08);
            border: 1px solid rgba(14, 131, 136, 0.2);
            color: var(--primary-color);
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 4px 14px;
            margin-left: 10px;
            vertical-align: middle;
        }

        /* ── Empty state ── */
        .gallery-empty {
            display: none;
            text-align: center;
            padding: 80px 20px;
            color: var(--text-muted);
        }

        /* ── Responsive tweaks ── */
        @media (max-width: 768px) {
            .before-after-container { height: 260px; }
            .insta-post-thumb { width: 70px; height: 70px; }
            .insta-icon-ring { width: 70px; height: 70px; font-size: 2.2rem; }
        }

    
