/* ============================================
   LUXURY ENHANCEMENTS - Premium UI/UX Effects
   ============================================ */

/* ===== GLOBAL LUXURY TRANSITIONS ===== */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== HERO BUTTON STYLES - PREMIUM & MODERN ===== */
.btn-hero-gallery {
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-hero-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 0;
}

.btn-hero-gallery::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.btn-hero-gallery:hover::before {
    left: 100%;
}

.btn-hero-gallery:hover::after {
    width: 300px;
    height: 300px;
}

.btn-hero-gallery:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.65);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.25),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.btn-hero-gallery:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-hero-gallery > * {
    position: relative;
    z-index: 1;
}

.btn-hero-whatsapp {
    background: #25D366;
    border: 2px solid #25D366;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-hero-whatsapp::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transform: translate(-50%, -50%);
    transition: width 0.7s cubic-bezier(0.23, 1, 0.32, 1), 
                height 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 0;
}

.btn-hero-whatsapp::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 0;
}

.btn-hero-whatsapp:hover::before {
    width: 350px;
    height: 350px;
}

.btn-hero-whatsapp:hover::after {
    left: 100%;
}

.btn-hero-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6),
                0 0 0 2px rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: #128C7E;
}

.btn-hero-whatsapp:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-hero-whatsapp > * {
    position: relative;
    z-index: 1;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* ===== PREMIUM BUTTON ENHANCEMENTS ===== */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform, box-shadow;
    border: 2px solid transparent;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn > * {
    position: relative;
    z-index: 1;
}

/* Primary Button Luxury Effects */
.btn-primary {
    background: linear-gradient(135deg, #FEBF10 0%, #FFD550 100%);
    border-color: #FEBF10;
    box-shadow: 0 4px 15px rgba(254, 191, 16, 0.3),
                0 0 0 0 rgba(254, 191, 16, 0);
    color: #1A331A;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(254, 191, 16, 0.5),
                0 0 0 4px rgba(254, 191, 16, 0.1);
    background: linear-gradient(135deg, #FFD550 0%, #FEBF10 100%);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

/* Outline Button Luxury Effects */
.btn-outline-primary,
.btn-outline-light {
    position: relative;
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
}

.btn-outline-primary::after,
.btn-outline-light::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.btn-outline-primary:hover::after,
.btn-outline-light:hover::after {
    left: 100%;
}

.btn-outline-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(254, 191, 16, 0.3),
                inset 0 0 0 1px rgba(254, 191, 16, 0.5);
    background: rgba(254, 191, 16, 0.1);
}

.btn-outline-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2),
                inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

/* ===== NAVIGATION LUXURY EFFECTS ===== */
.navbar {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.navbar.scrolled {
    background: rgba(15, 23, 36, 0.95) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 0.5rem 0;
}

.nav-link {
    position: relative;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    margin: 0 0.25rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FEBF10, transparent);
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.nav-link:hover {
    color: #FEBF10 !important;
    transform: translateY(-2px);
    background: rgba(254, 191, 16, 0.1);
}

.nav-link.active {
    color: #FEBF10 !important;
    background: rgba(254, 191, 16, 0.15);
}

/* ===== CARD LUXURY EFFECTS ===== */
.amenity-card,
.nx-plan,
.testimonial-card {
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    overflow: hidden;
}

.amenity-card::before,
.nx-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(254, 191, 16, 0.05), rgba(254, 191, 16, 0));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.amenity-card:hover::before,
.nx-plan:hover::before {
    opacity: 1;
}

.amenity-card:hover,
.nx-plan:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(254, 191, 16, 0.2);
}

.amenity-card > *,
.nx-plan > * {
    position: relative;
    z-index: 1;
}

/* Icon Halo Animation */
.icon-halo {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.amenity-card:hover .icon-halo {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 30px rgba(254, 191, 16, 0.4);
}

/* ===== GALLERY LUXURY EFFECTS ===== */
.gallery-item {
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(254, 191, 16, 0.2), rgba(254, 191, 16, 0));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3),
                0 0 0 2px rgba(254, 191, 16, 0.3);
    z-index: 10;
}

.gallery-item img {
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item__overlay {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item__zoom {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item:hover .gallery-item__zoom {
    transform: scale(1.2) rotate(90deg);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* ===== FORM LUXURY EFFECTS ===== */
.form-control,
.form-select {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.form-control:focus,
.form-select:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(254, 191, 16, 0.2),
                0 0 0 3px rgba(254, 191, 16, 0.1);
    border-color: #FEBF10;
}

.form-control::placeholder {
    transition: opacity 0.3s ease;
}

.form-control:focus::placeholder {
    opacity: 0.5;
}

/* ===== HERO SECTION LUXURY ===== */
.hero-title {
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-description {
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Hero Badge Pills */
.badge-pill {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.badge-pill:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(254, 191, 16, 0.3);
    background: rgba(254, 191, 16, 0.2);
    border-color: rgba(254, 191, 16, 0.5);
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
[data-reveal],
[data-rk7-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

[data-reveal].revealed,
[data-rk7-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations */
[data-reveal].revealed:nth-child(1) { transition-delay: 0.1s; }
[data-reveal].revealed:nth-child(2) { transition-delay: 0.2s; }
[data-reveal].revealed:nth-child(3) { transition-delay: 0.3s; }
[data-reveal].revealed:nth-child(4) { transition-delay: 0.4s; }
[data-reveal].revealed:nth-child(5) { transition-delay: 0.5s; }

/* ===== SECTION TRANSITIONS ===== */
section {
    position: relative;
    transition: opacity 0.6s ease;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(254, 191, 16, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
}

section.in-view::before {
    opacity: 1;
}

/* ===== PREMIUM CURSOR EFFECTS (Desktop Only) ===== */
@media (min-width: 992px) {
    body {
        cursor: default;
    }

    a, button, .gallery-item, .nav-link {
        cursor: pointer;
    }

    .btn:hover,
    .gallery-item:hover,
    .nav-link:hover {
        cursor: pointer;
    }
}

/* ===== LOADING STATES ===== */
.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== SMOOTH SCROLL BEHAVIOR ===== */
html {
    scroll-behavior: smooth;
}

/* ===== PREMIUM SHADOWS ===== */
.shadow-luxury {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.1);
}

.shadow-luxury-hover {
    transition: box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.shadow-luxury-hover:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(254, 191, 16, 0.2);
}

/* ===== GLASSMORPHISM ENHANCEMENTS ===== */
.glass {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.glass:hover {
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* ===== PREMIUM TEXT EFFECTS ===== */
.text-gradient {
    background: linear-gradient(135deg, #FEBF10 0%, #FFD550 50%, #FEBF10 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

/* ===== PACKAGE CARD ENHANCEMENTS ===== */
.nx-plan {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.nx-plan:hover {
    transform: translateY(-15px) scale(1.02);
}

.nx-plan--prime {
    position: relative;
}

.nx-plan--prime::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #FEBF10, #FFD550, #FEBF10);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    animation: borderGlow 3s ease infinite;
}

.nx-plan--prime:hover::before {
    opacity: 0.5;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* ===== TESTIMONIAL CARD ENHANCEMENTS ===== */
.testimonial-card {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ===== FOOTER ENHANCEMENTS ===== */
.nx-foot-nav a,
.nx-foot-social a {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.nx-foot-nav a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #FEBF10;
    transition: width 0.3s ease;
}

.nx-foot-nav a:hover::before {
    width: 100%;
}

.nx-foot-social a:hover {
    transform: translateY(-5px) scale(1.15);
    color: #FEBF10;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(254, 191, 16, 0.4);
    background: rgba(254, 191, 16, 0.9);
}

/* ===== ABOUT SECTION ENHANCEMENTS - PREMIUM REDESIGN ===== */
.about {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: 5.5rem 0;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(254, 191, 16, 0.12), transparent);
}

.about-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem 0;
}

.about-content.minimal {
    max-width: 680px;
}

/* Section Title - Premium Redesign */
.about-content .section-title {
    font-size: 3.25rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 1.25rem;
    line-height: 1.15;
    letter-spacing: -1.2px;
    font-family: var(--font-heading);
}

.about-content .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, #FEBF10, #FFD550);
    border-radius: 2px;
}

/* About Quote - Premium Redesign */
.about-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #1E293B;
    margin: 0 0 2rem 0;
    padding: 0;
    position: relative;
    line-height: 1.65;
    font-weight: 400;
    font-family: var(--font-heading);
    text-align: left;
    padding-left: 1.5rem;
    border-left: 3px solid #FEBF10;
}

.about-content .lead {
    font-size: 1.15rem;
    line-height: 1.85;
    color: #475569;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.02px;
}

.about-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #64748B;
    margin-bottom: 2.25rem;
    font-weight: 400;
    letter-spacing: 0.01px;
}

.about-cta {
    margin-top: 2.25rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive adjustments for premium design */
@media (max-width: 992px) {
    .about {
        padding: 4.5rem 0;
    }
    
    .about-content.minimal {
        max-width: 100%;
        text-align: center;
    }
    
    .about-content {
        padding: 1rem 0;
    }
    
    .about-content .section-title {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .about-content .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-quote {
        text-align: center;
        padding-left: 0;
        border-left: none;
        border-top: 3px solid #FEBF10;
        padding-top: 1.25rem;
        margin-bottom: 1.75rem;
    }
    
    .about-cta {
        justify-content: center;
        margin-top: 2rem;
    }
    
    .about-image {
        padding: 1.25rem;
        margin-top: 2rem;
    }
    
    .about-ribbon {
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 3.5rem 0;
    }
    
    .about-content .section-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
        padding-bottom: 0.875rem;
        letter-spacing: -0.8px;
    }
    
    .about-content .section-title::after {
        width: 40px;
        height: 3px;
    }
    
    .about-quote {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        padding-top: 1rem;
        line-height: 1.6;
    }
    
    .about-content .lead {
        font-size: 1.05rem;
        margin-bottom: 1.25rem;
        line-height: 1.8;
    }
    
    .about-description {
        font-size: 1rem;
        margin-bottom: 1.75rem;
        line-height: 1.75;
    }
    
    .about-cta {
        flex-direction: column;
        gap: 0.875rem;
        margin-top: 1.75rem;
    }
    
    .about-cta .btn {
        width: 100%;
    }
    
    .about-image {
        padding: 1rem;
    }
    
    .about-image .image-frame {
        border-radius: 16px;
    }
    
    .about-image img {
        border-radius: 16px;
    }
    
    .image-caption {
        font-size: 0.75rem;
        margin-top: 1.25rem;
        padding-top: 1rem;
        letter-spacing: 0.8px;
    }
    
    .image-caption::before {
        width: 30px;
    }
}

/* About Image Enhancements - Premium Modern Redesign */
.about-image {
    position: relative;
    padding: 1.5rem;
}

.about-image .image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: #ffffff;
    padding: 0;
    transform-style: preserve-3d;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.about-image:hover .image-frame {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(254, 191, 16, 0.25);
    border-color: rgba(254, 191, 16, 0.35);
}

.about-image img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    filter: brightness(1) contrast(1.03);
}

.about-image:hover img {
    transform: scale(1.04);
    filter: brightness(1.02) contrast(1.06);
}

.about-image .image-glow {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(254, 191, 16, 0.25), transparent 70%);
    filter: blur(40px);
    opacity: 0.3;
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
    z-index: -1;
}

.about-image:hover .image-glow {
    opacity: 0.5;
    transform: scale(1.1);
    filter: blur(60px);
}

/* About Ribbon - Modern Premium Design */
.about-ribbon {
    position: absolute;
    top: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateY(-8px) scale(0.95);
}

.about-image:hover .about-ribbon {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.r-dot {
    width: 8px;
    height: 8px;
    background: #FEBF10;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(254, 191, 16, 0.5);
    transition: all 0.3s ease;
}

.about-image:hover .r-dot {
    transform: scale(1.15);
    box-shadow: 0 4px 14px rgba(254, 191, 16, 0.7);
}

.r-line {
    width: 45px;
    height: 1.5px;
    background: linear-gradient(90deg, #FEBF10, rgba(254, 191, 16, 0.4));
    transition: width 0.3s ease;
    border-radius: 1px;
}

.about-image:hover .r-line {
    width: 55px;
}

/* Image Caption - Modern Premium Design */
.image-caption {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: #94A3B8;
    font-style: normal;
    text-align: center;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    padding-top: 1.25rem;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.image-caption::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #CBD5E1, transparent);
}

/* View Packages Button - White Text */
.btn-about-packages {
    color: #ffffff !important;
    background: linear-gradient(135deg, #FEBF10 0%, #FFD550 100%);
    border-color: #FEBF10;
}

.btn-about-packages:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, #FFD550 0%, #FEBF10 100%);
}

/* Most Popular Card Enhancements - Minimal Single Color Design */
.nx-plan--prime {
    position: relative;
    background: #ffffff;
    border: 2px solid #E5E7EB;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(0, 0, 0, 0.04);
    transform: scale(1.05);
    z-index: 3;
    overflow: visible;
}

.nx-plan--prime::before {
    display: none;
}

.nx-plan--prime::after {
    display: none;
}


.nx-plan--prime:hover {
    transform: scale(1.08) translateY(-12px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(0, 0, 0, 0.08);
    border-color: #D1D5DB;
}

.nx-plan__chip {
    background: #1F2937;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: -18px;
    right: 24px;
    z-index: 15;
    text-transform: uppercase;
    border: none;
}

.nx-plan--prime .nx-plan__name {
    color: #111827;
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

.nx-plan--prime .nx-plan__tag {
    color: #6B7280;
    font-weight: 400;
}

.nx-plan--prime .nx-plan__price {
    color: #111827;
    position: relative;
    display: block;
}

.nx-plan--prime .nx-plan__price::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #111827;
    border-radius: 1px;
}

.nx-plan--prime .nx-plan__price .nx-cur {
    color: #111827;
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
}

.nx-plan--prime .nx-plan__price .nx-amt {
    font-size: 2.75rem;
    font-weight: 700;
    color: #111827;
    display: inline-block;
    line-height: 1;
}

.nx-plan--prime .nx-plan__price .nx-per {
    color: #6B7280;
    font-size: 1rem;
    font-weight: 400;
    margin-left: 0.25rem;
}

.nx-plan--prime .nx-plan__list li {
    position: relative;
    padding-left: 1.5rem;
}

.nx-plan--prime .nx-plan__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #111827;
    font-size: 1rem;
    font-weight: 700;
}

/* ===== RESPONSIVE ENHANCEMENTS ===== */
@media (max-width: 768px) {
    .btn:hover {
        transform: none;
    }
    
    .amenity-card:hover,
    .nx-plan:hover {
        transform: translateY(-5px);
    }
    
    .gallery-item:hover {
        transform: translateY(-5px) scale(1.02);
    }
    
    .nx-plan--prime {
        transform: scale(1);
    }
    
    .nx-plan--prime:hover {
        transform: scale(1.02) translateY(-8px);
    }
}

/* ===== ACCESSIBILITY ENHANCEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== PREMIUM FOCUS STATES ===== */
*:focus-visible {
    outline: 2px solid #FEBF10;
    outline-offset: 4px;
    border-radius: 4px;
}

.btn:focus-visible {
    box-shadow: 0 0 0 4px rgba(254, 191, 16, 0.3);
}

