/* Luxury Editorial Design System */

:root {
    --Cormorant: Cormorant Garamond;
    --font-sans: 'Montserrat', sans-serif;
    --primary-black: #000000;
    --accent-gold: #C9A887;
    --bg-light: #FBFBFB;
    --text-muted: #666666;
    --transition-base: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-sans);
    color: var(--primary-black);
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.Cormorant {
    font-family: var(--Cormorant);
}

.text-black {
    color: #1A1816 !important;
}

.bg-black {
    background: #1A1816 !important;
}

.text-accent {
    color: var(--accent-gold);
}

.tracking-extra {
    letter-spacing: 0.4em;
}

.tracking-widest {
    letter-spacing: 0.2em;
}

.section-padding {
    padding: 120px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 20px;
    }

    .footer-custom {
        padding: 20px;
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

/* Navigation */
.navbar {
    background-color: #00000033;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

    .navbar.scrolled {
        background-color: #fff !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .navbar.scrolled .navbar-toggler-icon {
        filter: invert(1);
    }

.logo-text {
    font-family: Cormorant Garamond;
    font-weight: 400;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.75px;
    color: #fff !important;
    transition: var(--transition-base);
}

.navbar.scrolled .logo-text {
    color: #1A1816 !important;
}

.nav-link {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    position: relative;
    color: #FFFFFF !important;
    transition: var(--transition-base);
}

.navbar.scrolled .nav-link {
    color: #1A1816 !important;
}

.nav-link:hover, .nav-link.active {
    color: #C9A887 !important;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #1A1816;
        margin: 0 -15px;
        padding: 30px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    .navbar.scrolled .navbar-collapse {
        background-color: #fff;
        border-top: 1px solid #eee;
    }
}

.navbar.scrolled .nav-link:hover {
    color: var(--accent-gold) !important;
}

.btn-nav-book {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    padding: 8px 24px;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition-base);
    border-radius: 0;
    text-decoration: none;
}

.navbar.scrolled .btn-nav-book {
    border-color: #1A1816;
    color: #1A1816;
}

    .btn-nav-book:hover {
        background-color: #fff;
        color: #1A1816;
    }

.navbar.scrolled .btn-nav-book:hover {
    background-color: #1A1816;
    color: #fff;
}

/* Hero Section */
.hero-section {
    position: relative;
    z-index: 1;
}

.hero-bg img {
    transform: scale(1.1);
    animation: slowZoom 10s ease-out forwards;
}

@keyframes slowZoom {
    to {
        transform: scale(1);
    }
}

.hero-section:hover .hero-bg img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content h1 {
    font-family: Cormorant Garamond;
    font-weight: 500;
    font-size: clamp(4rem, 15vw, 8rem);
    line-height: 0.9;
    letter-spacing: -0.03em;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: #FFFFFF;
}

.max-w-800 {
    max-width: 800px;
}

.max-w-700 {
    max-width: 700px;
}

.max-w-600 {
    max-width: 600px;
}

.max-w-500 {
    max-width: 500px;
}

.max-w-300 {
    max-width: 300px;
}

.btn-hero {
    background-color: #fff;
    color: #1A1816;
    padding: 18px 50px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 13px;
    font-weight: 500;
    font-family: Montserrat;
    transition: var(--transition-base);
    border: none;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0px 10px 15px -3px #0000001A;
}

    .btn-hero:hover {
        background-color: #f0f0f0;
        transform: translateY(-5px);
        color: #1A1816;
    }

.btn-outline-white-luxury {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    padding: 18px 40px;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: var(--transition-base);
    border-radius: 0;
    text-decoration: none;
    font-weight: 500;
}

    .btn-outline-white-luxury:hover {
        background-color: #fff;
        color: #1A1816;
        transform: translateY(-5px);
    }

.scroll-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

/* About Section V2 */
.image-grid-asym-v2 {
    position: relative;
    padding-bottom: 80px;
    padding-right: 40px;
}

.main-img-v2 {
    width: 90%;
    z-index: 1;
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}

.sub-img-v2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    z-index: 2;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

@media (max-width: 991px) {
    .image-grid-asym-v2 {
        padding-bottom: 40px;
        padding-right: 20px;
        max-width: 500px;
        margin: 0 auto;
    }
}

.stat-item-v2 h3 {
    font-family: Cormorant Garamond;
    font-weight: 300;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0px;
    color: #1A1816;
    margin-bottom: 5px;
}

.stat-item-v2 p {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #78716C;
    margin-bottom: 0;
}

/* Services V2 */
.service-card-v2 {
    background-color: #FAFAF9;
    border: 1px solid #00000014;
    padding: 50px 40px;
    height: 100%;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

    .service-card-v2:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    }

.service-icon-bg {
    width: 56px;
    height: 56px;
    background-color: #C9A8871A;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--accent-gold);
}

.service-title-v2 {
    font-family: Cormorant Garamond;
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 20px;
    color: #1A1816;
}

.service-feature-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

    .service-feature-list li {
        font-family: Montserrat;
        font-size: 14px;
        color: #1A1816;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
    }

        .service-feature-list li::before {
            content: '';
            display: inline-block;
            width: 6px;
            height: 6px;
            background-color: var(--accent-gold);
            margin-right: 12px;
            flex-shrink: 0;
        }

.service-price-v2 {
    margin-top: auto;
    font-family: Cormorant Garamond;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
    color: #1A1816;
    border-top: 1px solid #00000014;
    padding-top: 20px;
}

/* Portfolio */
.portfolio-item {
    cursor: pointer;
    background-color: #000;
}

    .portfolio-item img {
        opacity: 0.9;
        transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .portfolio-item:hover img {
        transform: scale(1.15);
        opacity: 0.6;
    }

.portfolio-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Testimonials */
.carousel-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: var(--transition-base);
}

    .carousel-btn:hover {
        background-color: var(--accent-gold);
        border-color: var(--accent-gold);
    }

/* Booking Card */
.booking-card {
    border-radius: 0;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.booking-img-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1445205170230-053b83016050?auto=format&fit=crop&q=80&w=1200');
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.luxury-input {
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.2) !important;
    border-radius: 0 !important;
    color: #fff !important;
    padding: 15px 0 !important;
    box-shadow: none !important;
}

    .luxury-input::placeholder {
        color: rgba(255,255,255,0.5);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-size: 0.75rem;
    }

    .luxury-input:focus {
        border-color: var(--accent-gold) !important;
    }

.btn-white {
    background-color: #fff;
    color: #000;
    border-radius: 0;
    border: none;
    transition: var(--transition-base);
}

    .btn-white:hover {
        background-color: var(--accent-gold);
        color: #fff;
    }

/* Newsletter */
.newsletter-form input:focus {
    border-color: var(--accent-gold) !important;
}

.hover-accent:hover {
    color: var(--accent-gold) !important;
}

/* General Utilities */
.opacity-10 {
    opacity: 0.1;
}

.opacity-20 {
    opacity: 0.2;
}

.opacity-30 {
    opacity: 0.3;
}

.opacity-40 {
    opacity: 0.4;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-60 {
    opacity: 0.6;
}

.opacity-80 {
    opacity: 0.8;
}

.f-12 {
    font-size: 12px !important;
}

.f-14 {
    font-size: 14px !important;
}

.f-16 {
    font-size: 16px !important;
}

.f-18 {
    font-size: clamp(14px, 1.5vw, 18px) !important;
}

.f-20 {
    font-size: clamp(16px, 2vw, 20px) !important;
}

.f-24 {
    font-size: clamp(16px, 2.5vw, 24px) !important;
}

.f-48 {
    font-size: clamp(32px, 5vw, 48px) !important;
}

.f-60 {
    font-size: clamp(36px, 6vw, 60px) !important;
}

.f-72 {
    font-size: clamp(40px, 8vw, 72px) !important;
}

.fw-500{
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.fw-900 {
    font-weight: 900 !important;
}

.Montserrat {
    font-family: Montserrat !important;
}

.light-white {
    color: #FAFAF9 !important;
}

.white80 {
    color: #FAFAF9CC !important;
}

.white70 {
    color: #FAFAF9B2 !important;
}

.white60 {
    color: #FAFAF999 !important;
}
/* Custom Footer Styles */
.footer-logo {
    font-family: Cormorant Garamond;
    font-weight: 500;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0px;
    color: #fff;
}
.footer-custom {
    background-color: #121110;
    color: #fff;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    transition: var(--transition-base);
}

    .social-icon:hover {
        border-color: rgba(255, 255, 255, 0.8);
        color: #fff;
        background-color: rgba(255, 255, 255, 0.05);
    }

.footer-link {
    color: #FAFAF9B2;
    text-decoration: none;
    transition: var(--transition-base);
    font-size: 16px;
    font-family: Montserrat;
    font-weight: 400;
    line-height: 24px;
}

    .footer-link:hover {
        color: #fff;
        padding-left: 5px;
    }

.footer-bottom-link {
    color: #FAFAF999;
    text-decoration: none;
    transition: var(--transition-base);
    font-family: Montserrat;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
}

    .footer-bottom-link:hover {
        color: #fff;
    }

.btn-portal {
    background-color: #FAFAF9;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #1A1816 !important;
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition-base);
    display: inline-block;
}

    .btn-portal:hover {
        background-color: #f0f0f0;
        transform: translateY(-2px);
    }

@media (max-width: 767px) {
    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Transform Section Styles */
.step-icon-box {
    width: 64px;
    height: 64px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #fff;
    font-size: 20px;
    background-color: #FAFAF91A;
    transition: var(--transition-base);
}

.step-card:hover .step-icon-box {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-luxury-white {
    background-color: #FAFAF9 !important;
    color: #1A1816 !important;
    padding: 16px 40px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    font-size: 14px;
    font-family: var(--font-sans);
    transition: var(--transition-base);
    border: none;
}

    .btn-luxury-white:hover {
        background-color: #f0f0f0;
        transform: translateY(-3px);
    }

/* Client Love / Testimonials V2 Styles */
.testimonials-owl .owl-stage {
    display: flex;
}

.testimonials-owl .owl-item {
    display: flex;
    flex: 1 0 auto;
}

.review-card {
    background-color: #FAFAF9 !important;
    border: 1px solid #00000014;
    padding: 40px;
    height: 100%;
    width: 100%;
    transition: var(--transition-base);
    text-align: left;
    display: flex;
    flex-direction: column;
}

    .review-card:hover {
        background-color: #fff !important;
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    }

.star-rating {
    color: #C9A887;
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    justify-content: start;
    gap: 5px;
}

.italic{
    font-style: italic !important;
}

.reviewer-name {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    border-top: 1px solid #00000014;
    margin-top: auto;
    padding-top: 30px;
    margin-bottom: 0px;
    color: #1A1816;
}

.reviewer-title {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    color: #78716C;
}

.testimonials-footer-stats {
    padding-top: 60px;
}

.testimonial-stat-item h4 {
    color: #1A1816;
    margin-bottom: 5px;
    font-family: Cormorant Garamond;
    font-weight: 400;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0px;
    text-align: center;
}

    .testimonial-stat-item p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #A1A19E;
    text-align: center;
}

.object-fit-cover{
    object-fit: cover;
}

@media (max-width: 767px) {
    .testimonials-footer-stats {
        padding-top: 40px;
    }
}

/* Portfolio Styles */
.portfolio-item {
    position: relative;
    overflow: hidden;
    background-color: #000;
    transition: var(--transition-base);
    aspect-ratio: 4 / 5;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    display: block;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 2;
    padding: 30px;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1 !important;
}

/* Portfolio Masonry Styles (Keeping for backward compatibility if needed) */
.portfolio-masonry-container {
    column-count: 4;
    column-gap: 20px;
}

.portfolio-masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

    .portfolio-masonry-item img {
        width: 100%;
        display: block;
        transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    }

    .portfolio-masonry-item:hover img {
        transform: scale(1.05);
    }

.btn-outline-dark-luxury {
    border: 2px solid #1A1816;
    background: transparent;
    color: #1A1816;
    padding: 12px 35px;
    font-family: var(--font-sans);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: var(--transition-base);
}

    .btn-outline-dark-luxury:hover {
        background-color: #1A1816;
        color: #fff;
    }

@media (max-width: 1200px) {
    .portfolio-masonry-container {
        column-count: 3;
    }
}

@media (max-width: 991px) {
    .portfolio-masonry-container {
        column-count: 2;
    }
}

@media (max-width: 575px) {
    .portfolio-masonry-container {
        column-count: 1;
    }
}

/* Newsletter V2 Styles */
.newsletter-input-v2 {
    background-color: #F5F5F4 !important;
    border: 1px solid #00000014 !important;
    border-radius: 0px !important;
    padding: 0px 25px !important;
    font-family: Montserrat;
    font-size: 15px !important;
    color: #1A1816 !important;
}

    .newsletter-input-v2::placeholder {
        color: #78716C;
    }

.btn-subscribe-v2 {
    background-color: #1A1816;
    color: #FAFAF9;
    text-wrap-mode: nowrap;
    padding: 18px 30px;
    border-radius: 4px !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    font-size: 14px;
    font-family: Montserrat;
    transition: var(--transition-base);
}

    .btn-subscribe-v2:hover {
        background-color: #000;
        color: #fff;
    }

@media (min-width: 768px) {
    .border-start-md {
        border-left: 1px solid #eee !important;
    }
}

@media (max-width: 767px) {
    .newsletter-input-v2 {
        border-radius: 4px !important;
        margin-bottom: 15px;
    }
    .btn-subscribe-v2 {
        border-radius: 4px;
        width: 100%;
    }
    .border-start-md {
        border-top: 1px solid #eee !important;
        padding-top: 20px;
    }
}

.bg-lightwhite {
    background: #FAFAF9 !important;
}

.subscribe-section h2 {
    font-family: Cormorant Garamond;
    font-weight: 500;
    font-size: 72px;
    line-height: 72px;
    letter-spacing: 0px;
    text-align: center;
}
.text-grey {
    color: #78716C !important;
}

/* Lightbox Gallery Popup */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    z-index: 10001;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition-base);
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img-wrapper {
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    background: #000;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    transition: opacity 0.4s ease; /* Added for smooth JS transitions */
    animation: zoomFade 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes zoomFade {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.lightbox-info {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.lightbox-title {
    font-family: var(--Cormorant);
    font-size: 28px;
    margin-bottom: 5px;
}

.lightbox-desc {
    font-family: var(--font-sans);
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10000;
}

.lightbox-btn {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-base);
    pointer-events: auto;
}

.lightbox-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

.lightbox-btn.prev {
    margin-right: auto;
}

.lightbox-btn.next {
    margin-left: auto;
}

.lightbox-count {
    position: absolute;
    top: 30px;
    left: 30px;
    color: rgba(255,255,255,0.5);
    font-family: var(--font-sans);
    font-size: 14px;
    letter-spacing: 0.2em;
}

@media (max-width: 768px) {
    .lightbox-nav {
        padding: 0 10px;
    }
    .lightbox-btn {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    .lightbox-info {
        bottom: -100px;
    }

    .stat-item-v2 h3 {
        font-size: 24px;
    }

    .stat-item-v2 p {
        font-size: 12px;
    }
}