/* RK7 Farmhouse - Premium Landing Page Styles */

/* CSS Custom Properties (Design Tokens) */
:root {
    /* Color Palette */
    --primary-color: #1A331A; /* Primary: Deep Forest Green */
    --primary-dark: #0F2610;
    --primary-light: #2A4D2A;
    --secondary-color: #FEBF10; /* Secondary: Luxe Gold */
    --secondary-light: #FFD550;
    --accent-color: #FEBF10;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --background-primary: #FFFFFF;
    --background-secondary: #F8FAFC;
    --background-dark: #0F1724;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Enhanced Smooth Scrolling */
* {
    scroll-margin-top: 80px;
}

/* Universal smooth transitions */
section {
    transition: opacity 0.3s ease;
}

/* Ensure consistent focus styles */
*:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 3px;
    border-radius: 4px;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-primary);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-3xl); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

/* Utility Classes */
.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--spacing-md);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: #fff;
    margin-bottom: var(--spacing-2xl);
}

.text-center {
    text-align: center;
}

/* Glass Morphism Effect */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
}

/* ═══════════════════════════════════════════════════════════════════════
   INQUIRY FORM FIXES & ENHANCEMENTS
   ═══════════════════════════════════════════════════════════════════════ */

/* Fix dropdown text visibility - make text black/dark */
.inquiry-form-container .form-select,
.inquiry-form-container .form-select option,
.inquiry-form-container .form-control {
    color: #1F2937 !important;
    background-color: rgba(255, 255, 255, 0.95);
}

.inquiry-form-container .form-select:focus,
.inquiry-form-container .form-control:focus {
    background-color: #ffffff;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(254, 191, 16, 0.15);
}

.inquiry-form-container .form-select option {
    background-color: #ffffff;
    color: #1F2937;
}

/* Enhance form styling */
.inquiry-form-container {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inquiry-form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
    .inquiry-form-container:hover {
        transform: none;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    }
}

/* Inquiry Modal Styles */
#inquiryModal .modal-dialog {
    max-width: 90%;
    margin: 1rem auto;
}

#inquiryModal .modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

#inquiryModal .modal-header {
    border-bottom: 1px solid #e9ecef;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #1A331A 0%, #0F2610 100%);
    color: white;
    border-radius: 16px 16px 0 0;
}

#inquiryModal .modal-header .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

#inquiryModal .modal-header .btn-close:hover {
    opacity: 1;
}

#inquiryModal .modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

#inquiryModal .modal-body {
    padding: 1.5rem;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

#inquiryModal .modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 1rem 1.5rem;
    gap: 0.75rem;
}

#inquiryModal .form-control,
#inquiryModal .form-select {
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.95rem;
}

#inquiryModal .form-control:focus,
#inquiryModal .form-select:focus {
    border-color: #FEBF10;
    box-shadow: 0 0 0 0.2rem rgba(254, 191, 16, 0.25);
}

#inquiryModal .form-check-label {
    font-size: 0.875rem;
}

#inquiryModal .btn-primary {
    background: linear-gradient(135deg, #FEBF10 0%, #FFD550 100%);
    border: none;
    color: #1A331A;
    font-weight: 600;
}

#inquiryModal .btn-primary:hover {
    background: linear-gradient(135deg, #FFD550 0%, #FEBF10 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(254, 191, 16, 0.4);
}

@media (max-width: 576px) {
    #inquiryModal .modal-dialog {
        max-width: 95%;
        margin: 0.5rem auto;
    }

    #inquiryModal .modal-header {
        padding: 1rem 1.25rem;
    }

    #inquiryModal .modal-title {
        font-size: 1.25rem;
    }

    #inquiryModal .modal-body {
        padding: 1.25rem;
        max-height: calc(100vh - 180px);
    }

    #inquiryModal .modal-footer {
        padding: 0.75rem 1.25rem;
        flex-direction: column;
    }

    #inquiryModal .modal-footer .btn {
        width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   ENHANCED SCROLL ANIMATIONS & MICRO-INTERACTIONS
   ═══════════════════════════════════════════════════════════════════════ */

/* Smooth reveal animations for all sections */
[data-reveal], [data-rk7-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: opacity, transform;
}

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

/* Prevent animations on page load */
.preload * {
    transition: none !important;
    animation: none !important;
}

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

/* Enhanced hover effects for interactive elements */
.btn, .gallery-item, .simple-card, .nx-plan, .amenity-card {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Smooth image loading */
img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Ripple Effect for Buttons */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    justify-content: center;
    padding: 0.625rem 1.125rem; /* smaller */
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-2xl);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    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 var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
    color: white;
}

.btn-outline-primary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-outline-primary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-lg { padding: 0.8rem 1.25rem; font-size: 1rem; }

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar {
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: #000;
    box-shadow: var(--shadow-medium);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.logo {
    width: 80px;
    /* height: 56px; */
    margin-right: var(--spacing-sm);
    /* border-radius: var(--radius-md); */
}

.brand-text {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-md);
    margin: 0 var(--spacing-xs);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color);
    background: rgba(254, 191, 16, 0.12);
}

.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
    color: var(--secondary-color);
}

/* Elegant underline indicator */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 6px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    border-radius: 2px;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { opacity: 1; transform: translateY(0); }

.header-cta .btn {
    margin-left: var(--spacing-md);
}

.header-cta .btn.btn-primary {
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    color: #1A331A;
}
.header-cta .btn.btn-primary:hover {
    background: transparent;
    color: var(--secondary-color);
}

/* Mobile Menu Toggle Button */
.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    border-color: var(--secondary-color);
    background: rgba(254, 191, 16, 0.1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(254, 191, 16, 0.25);
    border-color: var(--secondary-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero { position: relative; height: auto; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; padding-top: 7.25rem; padding-bottom: 2.25rem; isolation: isolate; }

.hero-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }

/* Hero overlays and creative layers */
.hero-overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.58)); 
    z-index: 1; 
    pointer-events: none; 
}

.noise-overlay {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="2" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/><feComponentTransfer><feFuncA type="table" tableValues="0 0 0 0.03 0.06"/></feComponentTransfer></filter><rect width="100%" height="100%" filter="url(%23n)"/></svg>');
    opacity: 0.25;
    mix-blend-mode: soft-light;
    pointer-events: none;
    z-index: 2;
}

.gradient-blob { 
    position: absolute; 
    width: 45vmax; 
    height: 45vmax; 
    border-radius: 50%; 
    filter: blur(40px); 
    opacity: 0.35; 
    transform: translate(-50%, -50%); 
    z-index: 0;
    animation: blobFloat 8s ease-in-out infinite;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.blob-1 { 
    top: 20%; 
    left: 15%; 
    background: radial-gradient(closest-side, rgba(254, 191, 16, 0.9), rgba(254, 191, 16, 0.18), transparent 70%); 
    animation-delay: 0s;
}

.blob-2 { 
    bottom: -10%; 
    right: -5%; 
    background: radial-gradient(closest-side, rgba(26, 51, 26, 0.75), rgba(26, 51, 26, 0.25), transparent 70%); 
    animation-delay: 4s;
}

/* hero video removed */

.hero-image { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    z-index: 0; 
}

/* Ensure hero content is above all overlays */
.hero-content { 
    position: relative; 
    z-index: 3; 
    text-align: center; 
    color: white; 
}

.floating-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    margin-bottom: var(--spacing-md);
    color: #fff;
    font-weight: 500;
    box-shadow: var(--shadow-light);
    animation: fadeInUp var(--transition-slow) ease-out both;
}

.floating-badge i { color: var(--primary-light); }

/* Typography polish for hero */
.hero-title { letter-spacing: .2px; }
.hero-subtitle { letter-spacing: .15px; }
.hero-description { max-width: 720px; }

.hero-title {
    font-size: var(--font-size-6xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 8px 30px rgba(0,0,0,0.65), 0 2px 4px rgba(0,0,0,0.6);
    animation: fadeInUp 1s ease-out;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero-subtitle {
    font-size: var(--font-size-2xl);
    font-weight: 400;
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.96);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xl);
    color: rgba(255, 255, 255, 0.98);
   
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
    margin-bottom: var(--spacing-2xl);
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Premium hero refinements */
.hero-kicker { display:inline-block; margin-bottom:.35rem; color: rgba(255,255,255,0.85); }
.hero-gradient { 
    background: linear-gradient(135deg, #D4A00D 0%, #FEBF10 20%, #FFD550 40%, #FFE88A 60%, #FFEB3B 80%, #FEBF10 100%);
    -webkit-background-clip: text; 
    background-clip: text; 
    -webkit-text-fill-color: transparent;
    background-size: 300% 300%;
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: default;
    will-change: transform, filter;
    animation: gradientShift 4s ease infinite, luxuryPulse 3s ease-in-out infinite;
}

/* Luxury Hover Effects */
.hero-gradient:hover {
    transform: scale(1.05) translateY(-5px);
    filter: brightness(1.2);
    animation-duration: 2s;
}

.hero-gradient:hover::before {
    opacity: 1;
    transform: scale(1.1);
}

.hero-gradient:hover::after {
    opacity: 1;
    transform: scale(1.15);
}

/* Glowing effect on hover */
.hero-gradient::before {
    content: 'RK7Courtyard';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #D4A00D 0%, #FEBF10 20%, #FFD550 40%, #FFE88A 60%, #FFEB3B 80%, #FEBF10 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(15px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
    pointer-events: none;
}

/* Shimmer effect on hover */
.hero-gradient::after {
    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.8s ease;
    z-index: 1;
    pointer-events: none;
}

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

/* Scroll-based parallax and fade effects */
.hero-title {
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-title.scrolled {
    transform: translateY(-20px) scale(0.95);
    opacity: 0.7;
}

.hero-gradient.scrolled {
    animation-duration: 6s;
    filter: brightness(0.9);
}

/* Luxury shadow effects on scroll */
.hero-title.scrolled::before {
    opacity: 0.3;
    filter: blur(20px);
}

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

/* Pulsing glow animation */
@keyframes luxuryPulse {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(254, 191, 16, 0.3)) drop-shadow(0 0 20px rgba(254, 191, 16, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(254, 191, 16, 0.6)) drop-shadow(0 0 40px rgba(254, 191, 16, 0.4));
    }
}

.hero-gradient:hover {
    animation: gradientShift 2s ease infinite, luxuryPulse 1.5s ease-in-out infinite;
}
.hero-accent { position: relative; height: 2px; width: 140px; background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.9), rgba(255,255,255,0)); border-radius: 999px; margin: .35rem 0 1rem; }

.hero-badges { display:flex; gap:.6rem .7rem; flex-wrap: wrap; margin-top: 1rem; }
.badge-pill { display:inline-flex; align-items:center; gap:.45rem; padding:.45rem .7rem; border-radius: 9999px; background: rgba(0,0,0,0.35); border:1px solid rgba(255,255,255,0.18); color:#fff; font-weight:500; font-size:.95rem; }
.badge-pill i { color: var(--secondary-color); }

/* Sparkles */
.hero-sparkles { position:absolute; inset:0; pointer-events:none; z-index:1; }
.sparkle { position:absolute; width:3px; height:3px; background:#fff; border-radius:50%; opacity:.7; box-shadow:0 0 12px rgba(255,255,255,.65); animation: floatSparkle 10s linear infinite; }
.sparkle.s1 { top:18%; left:12%; animation-duration: 12s; }
.sparkle.s2 { top:36%; right:14%; animation-duration: 11s; }
.sparkle.s3 { top:62%; left:22%; animation-duration: 10s; }
.sparkle.s4 { bottom:20%; right:22%; animation-duration: 13s; }
.sparkle.s5 { top:48%; left:48%; animation-duration: 9s; }
@keyframes floatSparkle { 0% { transform: translateY(0) translateX(0); opacity:.2; } 50% { opacity:.9; } 100% { transform: translateY(-20px) translateX(6px); opacity:.2; } }

/* Stronger overlay on small screens for legibility */
/* ═══════════════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE - NAVBAR & HERO
   ═══════════════════════════════════════════════════════════════════════ */

/* Tablet & Mobile - Navigation */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 12px;
        margin-top: 1rem;
        padding: 1.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.1);
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .navbar-nav {
        gap: 0.5rem;
    }

    .navbar-nav .nav-link {
        padding: 0.875rem 1rem;
        margin: 0;
        border-radius: 8px;
        display: block;
        text-align: left;
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
        background: rgba(254, 191, 16, 0.15);
        transform: translateX(5px);
    }

    .navbar-nav .nav-link.active {
        background: rgba(254, 191, 16, 0.2);
        border-left: 3px solid var(--secondary-color);
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .header-cta {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .header-cta .btn {
        margin-left: 0;
        width: 100%;
        display: block;
        text-align: center;
    }

    .logo {
        width: 60px;
    }
}

/* Mobile - Hero Section */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        height: auto;
        padding-top: 5.5rem;
        padding-bottom: 2.5rem;
        overflow-x: hidden;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-background {
        position: absolute;
    }

    .hero-overlay {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.75)) !important;
    }

    .hero-content {
        padding: 1.5rem 0;
        position: relative;
        z-index: 3;
    }

    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 0.875rem;
        line-height: 1.15;
        text-shadow: 0 4px 20px rgba(0,0,0,0.8), 0 2px 4px rgba(0,0,0,0.7);
    }

    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 0.875rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
        line-height: 1.6;
    }

    .hero-kicker {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .hero-accent {
        margin: 0.5rem auto 1rem;
        width: 100px;
    }

    .hero-cta {
        margin-bottom: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
        padding: 0 0.5rem;
    }

    .hero-cta .btn {
        width: 100%;
        margin: 0 !important;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .hero-cta .btn-primary {
        background: linear-gradient(135deg, #FEBF10 0%, #FFD550 100%);
        border: none;
        color: #1A331A;
        font-weight: 600;
        margin-top: 0.5rem;
    }

    .hero-cta .btn-primary:hover {
        background: linear-gradient(135deg, #FFD550 0%, #FEBF10 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(254, 191, 16, 0.4);
        color: #1A331A;
    }

    .hero-cta .btn .me-2,
    .hero-cta .btn .me-3 {
        margin-right: 0.5rem !important;
    }

    .hero-badges {
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1.25rem;
        padding: 0 0.5rem;
        flex-wrap: wrap;
    }

    .badge-pill {
        font-size: 0.8rem;
        padding: 0.45rem 0.75rem;
        flex-shrink: 0;
    }

    .hero .row {
        margin-left: 0;
        margin-right: 0;
    }

    .hero .col-lg-7,
    .hero .col-lg-5 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .inquiry-form-container {
        margin-top: 1.5rem;
        padding: 1rem;
        max-width: 100%;
        width: 100%;
    }

    .inquiry-form-container .section-title {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
        line-height: 1.2;
    }

    .inquiry-form-container .section-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
        display: none;
    }

    .inquiry-form-container .row.g-3 {
        --bs-gutter-y: 0.5rem;
        --bs-gutter-x: 0.5rem;
    }

    .inquiry-form-container .form-control,
    .inquiry-form-container .form-select {
        padding: 0.6rem 0.75rem;
        font-size: 0.875rem;
        border-radius: 6px;
    }

    .inquiry-form-container textarea.form-control {
        min-height: 60px;
        max-height: 80px;
    }

    .inquiry-form-container .form-check {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .inquiry-form-container .form-check-label {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .inquiry-form-container .btn {
        padding: 0.7rem 1rem;
        font-size: 0.875rem;
        margin-top: 0.5rem;
    }

    .inquiry-form-container .text-center.mb-3 {
        margin-bottom: 0.75rem !important;
    }

    .inquiry-form-container .text-center.mb-3 p {
        display: none;
    }

    .gradient-blob {
        width: 50vmax;
        height: 50vmax;
        filter: blur(50px);
        opacity: 0.25;
    }

    .hero-image {
        filter: brightness(0.7);
    }
}

@media (max-width: 576px) {
    .hero {
        padding-top: 5rem;
        padding-bottom: 2rem;
        min-height: auto;
    }

    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .hero-overlay { 
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.82)) !important; 
    }

    .hero-content {
        padding: 1rem 0;
    }

    .hero-title {
        font-size: 1.875rem;
        margin-bottom: 0.75rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
        line-height: 1.25;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        padding: 0 0.25rem;
        line-height: 1.55;
    }

    .hero-kicker {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .hero-accent {
        width: 80px;
        margin: 0.4rem auto 0.875rem;
    }

    .hero-cta {
        margin-bottom: 1.25rem;
        padding: 0 0.25rem;
    }

    .hero-cta .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .hero-cta .btn-primary {
        background: linear-gradient(135deg, #FEBF10 0%, #FFD550 100%);
        border: none;
        color: #1A331A;
        font-weight: 600;
        margin-top: 0.25rem;
    }

    .hero-cta .btn-primary:hover {
        background: linear-gradient(135deg, #FFD550 0%, #FEBF10 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(254, 191, 16, 0.4);
        color: #1A331A;
    }

    .hero-badges {
        margin-top: 1rem;
        gap: 0.4rem;
    }

    .badge-pill {
        font-size: 0.75rem;
        padding: 0.4rem 0.65rem;
    }

    .badge-pill i {
        font-size: 0.8rem;
    }

    .hero .col-lg-7,
    .hero .col-lg-5 {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }

    .inquiry-form-container {
        margin-top: 1rem;
        padding: 0.875rem;
        border-radius: 12px;
        width: 100%;
    }

    .inquiry-form-container .section-title {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
        line-height: 1.2;
    }

    .inquiry-form-container .section-subtitle {
        font-size: 0.75rem;
        margin-bottom: 0.6rem;
        display: none;
    }

    .inquiry-form-container .row.g-3 {
        --bs-gutter-y: 0.4rem;
        --bs-gutter-x: 0.4rem;
        margin-left: -0.2rem;
        margin-right: -0.2rem;
    }

    .inquiry-form-container .row.g-3 > * {
        padding-left: 0.2rem;
        padding-right: 0.2rem;
    }

    .inquiry-form-container .form-control,
    .inquiry-form-container .form-select {
        padding: 0.5rem 0.65rem;
        font-size: 0.8rem;
        border-radius: 5px;
        min-height: 38px;
    }

    .inquiry-form-container textarea.form-control {
        min-height: 50px;
        max-height: 65px;
        resize: vertical;
    }

    .inquiry-form-container .form-check {
        margin-top: 0.4rem;
        margin-bottom: 0.4rem;
    }

    .inquiry-form-container .form-check-input {
        width: 0.9rem;
        height: 0.9rem;
        margin-top: 0.15rem;
    }

    .inquiry-form-container .form-check-label {
        font-size: 0.75rem;
        line-height: 1.3;
        padding-left: 0.25rem;
    }

    .inquiry-form-container .btn {
        padding: 0.6rem 0.875rem;
        font-size: 0.85rem;
        margin-top: 0.4rem;
    }

    .inquiry-form-container .text-center.mb-3 {
        margin-bottom: 0.5rem !important;
    }

    .inquiry-form-container .invalid-feedback {
        font-size: 0.7rem;
    }

    /* Hide subtitle and reduce header spacing on mobile */
    .inquiry-form-container .text-center.mb-3 p {
        display: none;
    }

    .gradient-blob {
        width: 40vmax;
        height: 40vmax;
        filter: blur(40px);
        opacity: 0.2;
    }

    .hero-image {
        filter: brightness(0.65);
    }

    .logo {
        width: 50px;
    }

    .navbar-brand {
        font-size: 1.125rem;
    }

    .navbar-toggler {
        padding: 0.375rem 0.625rem;
        font-size: 1rem;
    }
}

/* availability bar removed */

.visually-hidden {
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

/* hero stats removed */

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem 1rem;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
    padding: 0 0.5rem;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    border-radius: 9999px;
    background: rgba(15,23,36,0.55);
    border: 1px solid rgba(212,175,55,0.35);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.trust-item i {
    color: var(--primary-light);
    font-size: 1rem;
}

@media (max-width: 576px) {
    .trust-item {
        padding: 0.45rem 0.75rem;
        font-size: 0.9rem;
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

/* hero divider removed */

.scroll-down {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: white;
    font-size: var(--font-size-lg);
    transition: all var(--transition-normal);
}

.scroll-down:hover {
    background: var(--secondary-color);
    transform: translateX(-50%) translateY(-5px);
    color: white;
}

/* Section Styles */
section {
    padding: var(--spacing-4xl) 0;
}

section:nth-child(even) {
    background: var(--background-secondary);
}

/* About Section */
.about {
    background: var(--background-primary);
    padding-top: var(--spacing-2xl);
}

.about-content {
    padding-right: var(--spacing-xl);
}

.about-text {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xl);
}

.about-features {
    margin-bottom: var(--spacing-xl);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
}

.feature-item i {
    font-size: var(--font-size-xl);
    color: var(--secondary-color);
    margin-right: var(--spacing-md);
    margin-top: var(--spacing-xs);
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

.feature-item p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

.about-image img {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-heavy);
    transition: transform var(--transition-normal);
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Amenities Section */
/* Premium Amenities Redesign */
/* ═══════════════════════════════════════════════════════════════════════
   UNIQUE SECTION BACKGROUNDS & IMPROVEMENTS
   ═══════════════════════════════════════════════════════════════════════ */

/* About Section - Light gradient with subtle pattern */
.about {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20px 20px, rgba(254,191,16,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* Amenities Section - Premium dark with golden accents */
.amenities-premium {
    position: relative;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #0d1117 100%);
    color: #fff;
    overflow: hidden;
}

.amenities-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.amenities-premium .section-title { 
    color: #fff; 
    text-shadow: 0 2px 20px rgba(254,191,16,0.3);
}
.amenities-premium .section-subtitle { 
    color: rgba(255,255,255,0.85); 
}

.amenities-decor .ring {
    position: absolute;
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 50%;
    pointer-events: none;
}
.amenities-decor .ring-lg { width: 900px; height: 900px; top: -300px; right: -200px; }
.amenities-decor .ring-sm { width: 420px; height: 420px; bottom: -120px; left: -100px; }

.amenities-decor .glow {
    position: absolute;
    filter: blur(80px);
    opacity: 0.35;
}
.amenities-decor .glow-1 { width: 480px; height: 480px; top: 10%; left: 10%; background: radial-gradient(closest-side, rgba(212,175,55,0.7), transparent 70%); }
.amenities-decor .glow-2 { width: 560px; height: 560px; bottom: 5%; right: 8%; background: radial-gradient(closest-side, rgba(245,158,11,0.6), transparent 70%); }

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
}

.amenity-card.premium {
    grid-column: span 4;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
    transition: all .4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.amenity-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.amenity-card.premium:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(254,191,16,0.3);
    border-color: rgba(254,191,16,0.6);
    background: rgba(255,255,255,0.12);
}

.amenity-card.premium:hover::before {
    opacity: 1;
}

.amenity-head {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-bottom: .35rem;
}

.icon-halo {
    width: 58px; height: 58px;
    border-radius: 50%;
    display: grid; place-items: center;
    background: radial-gradient(circle at 30% 30%, rgba(212,175,55,0.95), rgba(184,134,11,0.6));
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.25), 0 10px 20px rgba(212,175,55,0.25);
}

.icon-halo i { font-size: 1.1rem; color: #0F1724; }

.amenity-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    letter-spacing: .2px;
    margin: 0;
}

.amenity-copy {
    margin: 0;
    color: rgba(255,255,255,0.86);
}

/* Staggered animation */
.premium { opacity: 0; transform: translateY(22px); animation: amenityFade .8s ease forwards; }
.a-delay-1 { animation-delay: .1s; }
.a-delay-2 { animation-delay: .2s; }
.a-delay-3 { animation-delay: .3s; }

@keyframes amenityFade {
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive grid spans */
@media (max-width: 1200px) {
    .amenity-card.premium { grid-column: span 6; }
}

@media (max-width: 768px) {
    .amenities-grid { grid-template-columns: repeat(6, 1fr); }
    .amenity-card.premium { grid-column: span 6; }
}

@media (max-width: 576px) {
    .amenities-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
    .amenity-card.premium { grid-column: span 4; padding: 1rem; }
    .icon-halo { width: 52px; height: 52px; }
    .amenity-title { font-size: 1.15rem; }
}

/* Gallery Section */
.gallery {
    position: relative;
    background: linear-gradient(180deg, #FFF7E6 0%, #F8FAFC 100%);
    overflow: hidden;
}
.gallery::before {
    content: '';
    position: absolute;
    inset: -10% -10% auto -10%;
    height: 60%;
    background: radial-gradient(60% 60% at 10% 10%, rgba(254,191,16,0.10) 0%, rgba(254,191,16,0.04) 35%, rgba(254,191,16,0.00) 70%);
    filter: blur(6px);
    pointer-events: none;
    z-index: 0;
}
.gallery .section-title { color: var(--primary-color); }
.gallery .section-subtitle { color: var(--text-secondary); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition-normal);
}

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

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.55));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

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

.gallery-overlay i {
    font-size: var(--font-size-3xl);
    color: white;
}

/* Gallery – video variant */
.gallery-item.video .gallery-overlay i { content: '\f04b'; }
.gallery .modal-body video, .gallery .modal-body img { border-radius: var(--radius-xl); box-shadow: var(--shadow-medium); }
.gallery .modal-content { border-radius: var(--radius-xl); overflow: hidden; }
.gallery .modal-header { border-bottom: 0; }
.gallery .modal-body { padding-top: 0; }

@media (max-width: 576px) {
    .gallery-item img { height: 220px; }
}

/* Removed legacy Packages styles */

/* Inquiry Form Section */
.inquiry {
    background: var(--background-primary);
}

.inquiry-form-container {
    background: white;
    padding: var(--spacing-3xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-heavy);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.form-control,
.form-select {
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    font-size: var(--font-size-base);
    transition: all var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
    outline: none;
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #EF4444;
}

.invalid-feedback {
    display: block;
    color: #EF4444;
    font-size: var(--font-size-sm);
    margin-top: var(--spacing-xs);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.alert-success {
    background: #D1FAE5;
    border: 1px solid #A7F3D0;
    color: #065F46;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
}

/* Removed legacy Location styles */

/* Removed legacy Testimonials styles */

/* Removed legacy Contact styles */

/* Theme refinements for premium flow */
.section-dark { background: linear-gradient(180deg, #0F1724 0%, #121a28 100%); color: #fff; }
.section-dark .section-title { color: #fff; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.85); }

.section-dark-lite { background: #0f1724; color: #fff; }
.section-dark-lite .section-title { color: #fff; }
.section-dark-lite .section-subtitle { color: rgba(255,255,255,0.8); }

.section-cream { background: #F8FAFC; }

.card-premium {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(15,23,36,0.06);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Removed legacy Footer styles */

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: var(--spacing-xl);
    right: var(--spacing-xl);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border: none;
    border-radius: var(--radius-full);
    color: white;
    font-size: var(--font-size-lg);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: var(--font-size-5xl);
    }
    
    .hero-stats {
        gap: var(--spacing-2xl);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: var(--font-size-4xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-xl);
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: var(--spacing-xl);
    }
    
    .location-info {
        padding-right: 0;
        margin-bottom: var(--spacing-xl);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-4xl: 3rem;
        --spacing-3xl: 2.5rem;
        --spacing-2xl: 2rem;
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: var(--spacing-md);
    }
    
    .header-cta {
        text-align: center;
        margin-top: var(--spacing-md);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .footer-links-bottom {
        justify-content: center;
    }
    
    .back-to-top {
        bottom: var(--spacing-md);
        right: var(--spacing-md);
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .btn-lg {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: var(--font-size-base);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .amenity-card,
    .package-card,
    .testimonial-card,
    .contact-card {
        padding: var(--spacing-lg);
    }
}

/* Print Styles */
@media print {
    .header,
    .back-to-top,
    .scroll-indicator {
        display: none;
    }
    
    .hero {
        height: auto;
        min-height: auto;
    }
    
    .hero-background {
        display: none;
    }
    
    .hero-content {
        color: var(--text-primary);
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --secondary-color: #000000;
        --text-primary: #000000;
        --text-secondary: #000000;
        --background-primary: #FFFFFF;
        --background-secondary: #FFFFFF;
    }
    
    .btn-primary {
        background: #000000;
        border: 2px solid #000000;
    }
    
    .btn-outline-primary {
        border: 2px solid #000000;
        color: #000000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .hero-title,
    .hero-subtitle,
    .hero-description,
    .hero-cta,
    .hero-stats {
        animation: none;
    }
}

/* Flat minimal form styling in hero */
.hero-inquiry {
    background: #ffffff;
    border: 1px solid rgba(26,51,26,0.12);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 14px;
    padding: 1rem 1rem .9rem;
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}
.hero-inquiry .form-label { display: none; }
.hero-inquiry .form-control,
.hero-inquiry .form-select {
    background: #ffffff;
    border: 1px solid rgba(26,51,26,0.18);
    color: var(--text-primary);
    padding: .55rem .75rem;
    height: 40px;
    border-radius: 3px;
}
.hero-inquiry textarea.form-control { min-height: 90px; }
.hero-inquiry .form-control::placeholder { color: #6b7280; }
.hero-inquiry .form-control:focus,
.hero-inquiry .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(254,191,16,0.14);
}
.hero-inquiry .form-check-label { color: var(--text-primary); }
.hero-inquiry .btn.btn-primary { background: var(--secondary-color); border-color: var(--secondary-color); color: #1A331A; }
.hero-inquiry .btn.btn-primary:hover { background: transparent; color: var(--secondary-color); }

@media (max-width: 992px) {
    .hero-inquiry { margin-top: 1.1rem; }
}
@media (max-width: 576px) {
    .hero-inquiry { padding: 1rem; }
}

.hero .container { position: relative; z-index: 3; }
.hero .row { width: 100%; margin-left: 0; margin-right: 0; }
.hero .col-lg-5, .hero .col-lg-6 { max-width: 100%; }

@media (max-width: 992px) {
    .hero .row { gap: 1rem; }
    .hero-cta .btn { margin-bottom: .5rem; }
}

/* Fix hero overlay background override */
.hero-overlay { background: linear-gradient(135deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.68)) !important; }

/* Glassmorphism for hero Request a Quote form (overrides) */
.hero-inquiry {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
}
.hero-inquiry::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(120% 80% at 0% 0%, rgba(254,191,16,0.15) 0%, rgba(255,255,255,0.0) 60%),
                linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.02) 100%);
    pointer-events: none;
    mix-blend-mode: screen;
}
.hero-inquiry .form-control,
.hero-inquiry .form-select {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #ffffff;
}
.hero-inquiry .form-control::placeholder { color: rgba(255,255,255,0.78); }
.hero-inquiry .form-control:focus,
.hero-inquiry .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(254,191,16,0.22);
}
.hero-inquiry .form-check-input { background-color: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }
.hero-inquiry .form-check-label { color: rgba(255,255,255,0.92); }
.hero-inquiry .btn.btn-primary { background: linear-gradient(135deg, var(--secondary-color), #ffd866); border-color: var(--secondary-color); color: #1A331A; }
.hero-inquiry .btn.btn-primary:hover { background: transparent; color: var(--secondary-color); }

/* Overlay polish */
.hero-overlay { background: linear-gradient(120deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.72)) !important; }

/* Hero typography & rhythm */
.hero-title { letter-spacing: .3px; line-height: 1.1; }
.hero-subtitle { letter-spacing: .2px; line-height: 1.25; margin-bottom: .75rem; }


/* CTA sheen effect */
.btn.btn-primary { position: relative; overflow: hidden; }
.btn.btn-primary::after { content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%; background: linear-gradient(100deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0.0) 100%); transform: skewX(-20deg); transition: left .5s ease; }
.btn.btn-primary:hover::after { left: 140%; }

/* Mobile image adjustments for legibility - handled in media queries above */

/* Form max width to avoid overflow */
.hero .col-lg-5 > .hero-inquiry { max-width: 520px; margin-left: auto; margin-right: auto; }

@media (max-width: 768px) {
    .hero .col-lg-5 > .hero-inquiry {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

/* Smooth divider between hero and about */
.hero-divider { position: relative; margin-top: 1rem; }
.hero-divider svg { display:block; width:100%; height: 100px; }
.hero-divider path { fill: #F8FAFC; }

/* Remove gap above About */
.about-elevated { padding-top: 0; }

/* Blob size handled in main media queries above */

/* Premium About (Our Story) */
.about { background: var(--background-primary); padding-top: 50px; background-color: #fff; }
.about-content.premium { padding-right: var(--spacing-xl); }
.overline { display:inline-block; font-size:.8rem; letter-spacing:.2em; text-transform:uppercase; color: var(--secondary-color); margin-bottom:.5rem; }
.about .lead { font-family: var(--font-heading); font-size: 1.2rem; color: var(--text-primary); margin-bottom: .75rem; }
.about-text { font-size: 1.05rem; color: var(--text-secondary); }

.about-highlights { list-style:none; padding:0; margin: 1rem 0 var(--spacing-xl); }
.about-highlights li { display:flex; align-items:flex-start; gap:.6rem; margin-bottom:.65rem; color: var(--text-primary); }
.about-highlights li i { color: var(--secondary-color); margin-top:.2rem; }
.about-highlights li span { font-weight:600; }
.about-highlights li em { color: var(--text-secondary); font-style: normal; }

.about-cta .btn { margin-top:.25rem; }

.about-image.premium .image-frame { position: relative; border-radius: 18px; overflow:hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.15); border:1px solid rgba(26,51,26,0.12); }
.about-image.premium img { display:block; width:100%; height:auto; }
.about-image.premium .image-glow { position:absolute; inset:auto auto 0 0; width:70%; height:60%; filter: blur(40px); background: radial-gradient(closest-side, rgba(254,191,16,0.35), rgba(254,191,16,0.0) 70%); pointer-events:none; }
.about-image.premium .image-caption { font-size:.95rem; color: var(--text-secondary); margin-top:.75rem; }

@media (max-width: 992px) {
  .about-content.premium { padding-right: 0; margin-bottom: var(--spacing-xl); }
}

/* About – Elevated visuals */
.about-elevated { position: relative; overflow: hidden; }
.about-elevated .brand-emblem { position:absolute; font-family: var(--font-heading); font-weight:700; letter-spacing:.12em;
    font-size: 22vw; line-height: 1; color: rgba(26,51,26,0.035); left: -2vw; top: -4vw; user-select:none; pointer-events:none; }

.about-cards { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; margin: 1rem 0 1.25rem; }
.about-card { display:flex; align-items:flex-start; gap:.85rem; padding: .9rem 1rem; border-radius: 14px; background:#fff;
    border:1px solid rgba(26,51,26,0.08); box-shadow: 0 12px 26px rgba(0,0,0,0.06); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.about-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(0,0,0,0.1); border-color: rgba(254,191,16,0.28); }
.about-card .card-icon { width:40px; height:40px; border-radius: 10px; display:grid; place-items:center; background: linear-gradient(135deg, var(--secondary-color), #ffd866); color:#0F1724; box-shadow: 0 6px 16px rgba(254,191,16,0.28); flex-shrink:0; }
.about-card h3 { font-size: 1.05rem; margin: 0 0 .25rem; color: var(--primary-color); }
.about-card p { margin:0; color: var(--text-secondary); }

.about-ribbon { position: absolute; left: -24px; top: 14px; display:flex; align-items:center; gap:.35rem; transform: rotate(-6deg); }
.about-ribbon .r-dot { width:8px; height:8px; border-radius:50%; background: var(--secondary-color); box-shadow: 0 0 0 4px rgba(254,191,16,0.18); }
.about-ribbon .r-line { width: 120px; height:2px; border-radius:2px; background: linear-gradient(90deg, rgba(254,191,16,.0), rgba(254,191,16,.9), rgba(254,191,16,.0)); }

/* Subtle entrance animations */
.a-reveal { opacity: 0; transform: translateY(18px); animation: aReveal .8s ease forwards; }
.a-delay-2 { animation-delay: .15s; }
@keyframes aReveal { to { opacity:1; transform: translateY(0); } }

@media (max-width: 992px) {
  .about-cards { grid-template-columns: 1fr; }
}

/* Our Story – luxury ornaments */
.story-crest { position: relative; height: 18px; margin: .35rem 0 1rem; display: inline-block; }
.story-crest .crest-ring { position:absolute; inset:auto 0 0 0; height: 1px; background: linear-gradient(90deg, rgba(26,51,26,0), rgba(26,51,26,.45), rgba(26,51,26,0)); }
.story-crest .crest-dot { position:absolute; left:50%; top:-3px; width:6px; height:6px; background: var(--secondary-color); border-radius:50%; transform: translateX(-50%); box-shadow: 0 0 0 3px rgba(254,191,16,0.18); }
.about .about-quote { font-size:1.05rem; color:#6b7280; font-style: italic; }
.about .lead { font-size:1.15rem; }

/* Signature Amenities – Luxury Enhancements */
.amenities-premium.lux { position: relative; background: linear-gradient(180deg, #0F1724 0%, #121a28 100%); color:#fff; overflow:hidden; }
.lux-head .overline { display:inline-block; font-size:.8rem; letter-spacing:.22em; text-transform:uppercase; color: var(--secondary-color); margin-bottom:.4rem; }
.lux-head .section-title { color:#fff; }
.lux-head .section-subtitle { color: rgba(255,255,255,0.82); }

.lux-grid { gap: 1.25rem; }
.lux-card { position: relative; border-radius: 18px; padding: 1.25rem 1.25rem 1.1rem; background: rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12); box-shadow: 0 10px 30px rgba(0,0,0,0.25); transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
.lux-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.35); border-color: rgba(254,191,16,0.35); }

.lux-card .amenity-head { display:flex; align-items:center; gap:.85rem; margin-bottom:.35rem; }
.lux-card .amenity-title { font-family: var(--font-heading); font-size: 1.25rem; letter-spacing:.2px; margin:0; color:#fff; }
.lux-card .amenity-copy { margin:0; color: rgba(255,255,255,0.86); }

/* Refined halo icon */
.icon-halo { width: 58px; height: 58px; border-radius: 50%; display:grid; place-items:center; background: radial-gradient(circle at 30% 30%, rgba(254,191,16,0.95), rgba(254,191,16,0.55)); box-shadow: inset 0 0 0 2px rgba(255,255,255,0.22), 0 8px 18px rgba(254,191,16,0.22); }
.icon-halo i { font-size: 1.1rem; color: #0F1724; }

/* Subtle card highlight sweep */
.lux-card::after { content:''; position:absolute; inset:0; border-radius: inherit; background: linear-gradient(120deg, rgba(255,255,255,0.08), rgba(255,255,255,0)); opacity:0; transition: opacity .35s ease; }
.lux-card:hover::after { opacity:1; }

/* Staggered animation on load */
.lux-card { opacity:0; transform: translateY(22px); animation: amenityFade .8s ease forwards; }
.lux-card.a-delay-1 { animation-delay: .1s; }
.lux-card.a-delay-2 { animation-delay: .2s; }
.lux-card.a-delay-3 { animation-delay: .3s; }

@keyframes amenityFade { to { opacity:1; transform: translateY(0); } }

/* Responsive refinements */
@media (max-width: 1200px) { .lux-card { padding: 1.1rem 1.1rem 1rem; } }
@media (max-width: 768px) { .lux-grid { gap: 1rem; } .icon-halo { width: 54px; height: 54px; } .lux-card .amenity-title { font-size: 1.15rem; } }
@media (max-width: 576px) { .lux-grid { gap: .9rem; } .lux-card { border-radius: 16px; } }

/* Luxury – Event Packages */
.packages.lux .section-title { color: var(--secondary-color); }
.packages.lux .package-card { border-radius: 20px; border:1px solid rgba(26,51,26,0.08); box-shadow: 0 16px 36px rgba(0,0,0,0.08); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.packages.lux .package-card:hover { transform: translateY(-8px); box-shadow: 0 28px 56px rgba(0,0,0,0.14); border-color: rgba(254,191,16,0.35); }
.packages.lux .package-badge { background: linear-gradient(135deg, var(--secondary-color), #ffd866); color:#0F1724; }
.packages.lux .package-price .currency, .packages.lux .amount { color: var(--secondary-color); }

/* Luxury – Testimonials */
.testimonials.lux { position: relative; }
.testimonials.lux .testimonial-card { border-radius: 18px; border:1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06); box-shadow: 0 10px 30px rgba(0,0,0,0.25); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.testimonials.lux .testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.35); border-color: rgba(254,191,16,0.35); }
.testimonials.lux .testimonial-rating i { color: var(--secondary-color); }

/* Luxury – Contact (Get in Touch) */
.contact.lux .contact-card { border-radius: 18px; border:1px solid rgba(26,51,26,0.08); box-shadow: 0 16px 36px rgba(0,0,0,0.08); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.contact.lux .contact-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.12); border-color: rgba(254,191,16,0.28); }
.contact.lux .contact-icon { background: linear-gradient(135deg, var(--secondary-color), #ffd866); }

/* Luxury – Location (Find Us) */
.location.lux .location-item i { color: var(--secondary-color); }
.location.lux .map-container { border-radius: 18px; box-shadow: 0 20px 50px rgba(0,0,0,0.12); border:1px solid rgba(26,51,26,0.08); overflow:hidden; }
.location.lux .map-container iframe { border-radius: 18px; }

/* Entrance animations */
.packages.lux .package-card, .testimonials.lux .testimonial-card, .contact.lux .contact-card { opacity:0; transform: translateY(18px); animation: luxFade .7s ease forwards; }
.packages.lux .package-card:nth-child(1) { animation-delay: .05s; }
.packages.lux .package-card:nth-child(2) { animation-delay: .1s; }
.packages.lux .package-card:nth-child(3) { animation-delay: .15s; }

@keyframes luxFade { to { opacity:1; transform: translateY(0); } }

/* Clean luxury variant for Our Story */
.about-cream { background: #FFF9E6; }
.about-content.clean .section-title { color: #1A331A; }
.about-content.clean .about-quote { font-family: var(--font-heading); font-style: italic; color: #6b6f76; margin: .25rem 0 .75rem; }
.about-stats { display:none !important; }
.about-content.clean .lead { margin-bottom: .9rem; }
.about-content.clean .about-highlights { margin: .5rem 0 var(--spacing-xl); }

@media (max-width: 992px) { .about-stats { justify-content: space-between; } }
@media (max-width: 576px) { .about-stats { gap: .6rem; } .about-stats .stat { padding: .5rem .6rem; min-width: 80px; } }

/* Packages – premium clean visuals */

/* Luxury About refinements */
.about-lux { --gold: #FEBF10; --gold-ink: #b08800; }
.about-lux .section-title { letter-spacing: .02em; font-weight: 700; }
.about-lux .story-crest .crest-ring { background: linear-gradient(90deg, rgba(26,51,26,0), rgba(26,51,26,.35), rgba(26,51,26,0)); }
.about-lux .story-crest .crest-dot { box-shadow: 0 0 0 3px rgba(254,191,16,0.18); }

/* Minimal pillars */
.about-pillars { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.2rem; margin: 1.1rem 0 1.25rem; }
.about-pillars .pillar { padding: 1.1rem 1.1rem; border-radius: 16px; background: #fff; border: 1px solid rgba(26,51,26,0.08);
  box-shadow: 0 12px 26px rgba(0,0,0,0.06); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; text-align:left; }
.about-pillars .pillar:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(0,0,0,0.10); border-color: rgba(254,191,16,0.28); }
.about-pillars .pillar-icon { width:42px; height:42px; border-radius: 12px; display:grid; place-items:center; margin-bottom:.5rem;
  background: linear-gradient(135deg, var(--secondary-color), #ffd866); color:#0F1724; box-shadow: 0 6px 16px rgba(254,191,16,0.28); }
.about-pillars .pillar-title { font-size: 1.05rem; margin: 0 0 .25rem; color: var(--primary-color); }
.about-pillars .pillar-copy { margin: 0; color: var(--text-secondary); }

@media (max-width: 992px) { .about-pillars { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 576px) { .about-pillars { grid-template-columns: 1fr; } }

/* Understated key points */
.about-points { display:flex; flex-wrap:wrap; gap:.5rem 1rem; padding:0; margin: .6rem 0 1.2rem; list-style:none; }
.about-points li { position:relative; padding-left: 0; color: var(--text-primary); }
.about-points li + li { padding-left: 1rem; }
.about-points li + li:before { content:""; position:absolute; left:-.5rem; top:50%; transform:translateY(-50%);
  width:6px; height:6px; border-radius:50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(254,191,16,.16); }

/* Subtle CTA refinement */
.about-lux .about-cta .btn.btn-outline-primary { border-color: var(--gold-ink); color: var(--gold-ink); }
.about-lux .about-cta .btn.btn-outline-primary:hover { background: var(--gold); border-color: var(--gold); color: #0F1724; }
.about-lux .about-cta .btn.btn-primary { background: var(--primary-color); border-color: var(--primary-color); }
.packages.lux .overline { display:inline-block; font-size:.8rem; letter-spacing:.22em; text-transform:uppercase; color: var(--secondary-color); margin-bottom:.4rem; }
.packages.lux .package-card .package-note { margin-top:.6rem; font-size:.9rem; color: var(--text-secondary); text-align:center; }
.packages.lux .package-card:hover .package-note { color:#374151; }

/* Emphasize primary CTAs */
.packages.lux .btn.btn-primary { background: var(--secondary-color); border-color: var(--secondary-color); color: #1A331A; }
.packages.lux .btn.btn-primary:hover { background: transparent; color: var(--secondary-color); }

/* Event Packages – refined visuals */
.packages.lux .package-header { position: relative; }
.packages.lux .package-header .package-meta { margin-top:.35rem; font-size:.95rem; color: var(--text-secondary); }
.packages.lux .package-card { overflow: hidden; }
.packages.lux .package-card::before { content:''; position:absolute; top:-40%; left:-40%; width:120%; height:120%; background: radial-gradient(closest-side, rgba(254,191,16,0.06), rgba(254,191,16,0)); transform: rotate(12deg); pointer-events:none; }
.packages.lux .package-card:hover { border-color: rgba(254,191,16,0.45); }
.packages.lux .package-features li { color:#4b5563; }
.packages.lux .amount { letter-spacing:.2px; }

@media (max-width: 576px) {
    .packages.lux .package-header .package-meta { font-size:.9rem; }
}

/* --- Redesigned Gallery Styles --- */
.gallery-grid {
    gap: 2.2rem 2.5rem;
    padding-bottom: 1rem;
}
.gallery-item {
    border-radius: 22px;
    background: rgba(255,255,255,0.06);
    box-shadow: 0 10px 44px rgba(26,51,26,0.12);
    border: 1.5px solid rgba(245,191,46,0.09);
    position: relative;
    transition: transform 0.35s cubic-bezier(.18,.75,.32,1.15), box-shadow 0.28s, border-color 0.35s;
    overflow: hidden;
    isolation: isolate;
}
.gallery-item:hover {
    transform: translateY(-8px) scale(1.035);
    box-shadow: 0 16px 54px 0 rgba(254,191,16,0.13), 0 22px 60px rgba(0,0,0,0.14);
    border-color: var(--secondary-color);
    z-index: 2;
}
.gallery-item img {
    height: 270px;
    min-width: 100%;
    object-fit: cover;
    filter: brightness(1.03) saturate(1.07);
    transition: transform 0.38s cubic-bezier(.22,.72,.28,1.12);
}
.gallery-item:hover img {
    transform: scale(1.09);
}
.gallery-overlay {
    background: linear-gradient(110deg, rgba(15,23,36,0.05) 25%, rgba(254,191,16,0.17) 98%) !important;
    mix-blend-mode: lighten;
    border-radius: inherit;
    opacity: 0.91;
    transition: opacity 0.3s;
    filter: blur(0.2px);
    box-shadow: 0 1px 12px 0 rgba(254,191,16,0.05);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
    mix-blend-mode: normal;
    background: linear-gradient(102deg, rgba(26,51,26,0.14) 22%, rgba(254,191,16,0.19) 99%);
}
.gallery-overlay i {
    font-size: 2.7rem;
    color: var(--secondary-color);
    filter: drop-shadow(0 2px 16px rgba(254,191,16,0.17));
    opacity: 0.93;
    transition: transform 0.23s cubic-bezier(.23,.7,.19,1.1);
}
.gallery-item:hover .gallery-overlay i {
    color: #fff;
    text-shadow: 0 0 18px var(--secondary-color);
    transform: scale(1.12) rotate(-4deg) skew(-1deg,1deg);
}
@media (max-width: 576px) {
  .gallery-item img { height: 180px; }
  .gallery-item { border-radius: 14px; }
}

/* --- Redesigned Packages Styles --- */
.packages .row.g-4 { gap: 1.9rem 1.2rem; }
.packages .package-card {
    border-radius: 22px;
    background: rgba(255,255,255,0.88);
    border: 1.6px solid rgba(26,51,26,0.10);
    box-shadow: 0 10px 44px rgba(26,51,26,0.10), 0 2px 9px rgba(254,191,16,0.04);
    transition: transform 0.36s cubic-bezier(.2,.73,.28,1.18), box-shadow 0.33s, border 0.28s;
    padding-top: 2.3rem;
    overflow: visible;
    position: relative;
}
.packages .package-card:hover {
    transform: translateY(-11px) scale(1.03);
    border-color: var(--secondary-color);
    box-shadow: 0 22px 62px 0 rgba(254,191,16,0.11), 0 30px 58px rgba(0,0,0,0.12);
    z-index: 2;
}
.packages .package-card .package-header {
    margin-bottom: 1.3rem;
    background: none;
    position: relative;
    padding-bottom: 0.1rem;
}
.packages .package-card .package-header::before {
    content: '';
    display: block;
    margin: 0 auto 1rem auto;
    width: 46px; height: 46px;
    background: linear-gradient(135deg, #ffd550 55%, rgba(26,51,26,0.19) 95%);
    border-radius: 50%;
    box-shadow: 0 2px 20px rgba(254,191,16,0.10);
    opacity: 0.13;
}
.packages .package-card.featured {
    border-width: 2.5px;
    border-color: var(--secondary-color);
    background: linear-gradient(127deg, #fff 80%, #fff4b7 100%);
    box-shadow: 0 25px 80px 0 rgba(254,191,16,0.11), 0 30px 44px rgba(26,51,26,0.07);
    transform: scale(1.035);
    z-index: 3;
}
.packages .package-badge {
    top: -22px !important;
    right: 18px !important;
    font-size: 1rem !important;
    background: linear-gradient(120deg, var(--secondary-color), #fff4b7 92%);
    color: #0f2610 !important;
    letter-spacing: 0.2em;
    box-shadow: 0 1px 8px 0 rgba(254,191,16,0.15);
}
.packages .package-header h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.28rem;
    color: var(--primary-color);
    letter-spacing: .5px;
    margin-bottom: .44rem;
}
.packages .amount {
    font-size: 2.2rem;
    font-family: 'Outfit', monospace, sans-serif;
    color: var(--secondary-color);
    letter-spacing: .8px;
}
.packages .period {
    color: var(--text-secondary);
}
.packages .package-card .btn-primary { margin-top: .29rem; }
.packages .package-note {
    margin-top: 1rem;
    font-size: .92rem;
    color: #6b7280;
    text-align: center;
    background: rgba(254,191,16,0.045);
    border-radius: 8px;
    padding: .38rem .25rem .25rem;
}
@media (max-width: 576px) {
 .packages .package-card { border-radius: 12px; }
 .packages .package-card .package-header::before { width: 34px; height: 34px; }
}

/* --- Elite Minimal Variant --- */
.packages.packages-elite { --gold:#FEBF10; --ink:#1A331A; }
.packages.packages-elite .section-title { letter-spacing:.02em; }
.packages.packages-elite .section-subtitle { color:#6b7280; }
.packages.packages-elite .package-card { background: #fff; border:1px solid rgba(26,51,26,0.08); box-shadow: 0 14px 34px rgba(0,0,0,0.08); }
.packages.packages-elite .package-card:hover { box-shadow: 0 26px 56px rgba(0,0,0,0.14); }
.packages.packages-elite .package-header { display:flex; align-items:flex-start; justify-content:space-between; gap:1rem; }
.packages.packages-elite .package-header h3 { margin-bottom:.2rem; }
.packages.packages-elite .package-price { text-align:right; }
.packages.packages-elite .package-price .currency, .packages.packages-elite .amount { color: var(--secondary-color); }
.packages.packages-elite .package-features.minimal ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:.55rem; }
.packages.packages-elite .package-features.minimal li { position:relative; padding-left:0; border-bottom:1px dashed rgba(26,51,26,0.12); padding-bottom:.55rem; }
.packages.packages-elite .package-features.minimal li:last-child { border-bottom:none; padding-bottom:0; }
.packages.packages-elite .package-badge { background: linear-gradient(135deg, var(--secondary-color), #ffd866); color:#0F1724; border-radius:999px; padding:.35rem .7rem; font-weight:600; box-shadow: 0 6px 16px rgba(254,191,16,0.28); }
.packages.packages-elite .btn.btn-primary { background: var(--secondary-color); border-color: var(--secondary-color); color: #0F1724; }
.packages.packages-elite .btn.btn-primary:hover { background: var(--gold); border-color: var(--gold); color:#0F1724; }

/* Heading chips for included essentials */
.packages.packages-elite .package-tags { display:flex; gap:.5rem; justify-content:center; flex-wrap:wrap; margin-top:.75rem; }
.packages.packages-elite .package-tags .tag { display:inline-flex; align-items:center; gap:.4rem; padding:.38rem .7rem; border-radius:999px; font-size:.9rem;
  background: #fff; color: var(--ink); border:1px solid rgba(26,51,26,0.12); box-shadow: 0 6px 18px rgba(0,0,0,0.05); }
.packages.packages-elite .package-tags .tag:before { content:""; width:6px; height:6px; border-radius:50%; background: var(--gold); box-shadow: 0 0 0 3px rgba(254,191,16,.16); }

/* Removed legacy Testimonials elite variants */

/* Removed legacy Contact elite variants */

/* Removed legacy Location elite variants */

/* Removed legacy Footer elite variants */

/* ========================================================================
   LUXE REDESIGN: Gallery, Packages, Testimonials, Contact, Location, Footer
   ======================================================================== */

/* ═══════════════════════════════════════════════════════════════════════
   GALLERY SECTION - Sophisticated Masonry with Parallax Hover
   ═══════════════════════════════════════════════════════════════════════ */
.nx-gallery { 
    position: relative; 
    background: linear-gradient(180deg, #FFFAF0 0%, #FFF8E7 40%, #F8FAFC 100%); 
    overflow: hidden;
    padding: 6rem 0;
}

.nx-gallery::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 60%;
    background: radial-gradient(ellipse at top, rgba(254,191,16,0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.nx-gallery .container { position: relative; z-index: 1; }

.nx-gallery .nx-title { 
    color: var(--primary-color); 
    position: relative;
    display: inline-block;
}

.nx-gallery .nx-title::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    border-radius: 999px;
    opacity: 0.5;
}

.nx-grid { 
    display: grid; 
    grid-template-columns: repeat(12, 1fr); 
    gap: 1.8rem; 
    margin-top: 1rem;
}

.nx-item { 
    grid-column: span 4; 
    position: relative; 
    border-radius: 24px; 
    overflow: hidden; 
    cursor: pointer; 
    background: #fff; 
    border: 2px solid rgba(26,51,26,0.06); 
    box-shadow: 0 8px 32px rgba(0,0,0,0.06), 
                0 4px 16px rgba(254,191,16,0.04);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center;
}

.nx-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(254,191,16,0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.nx-item::after {
    content: '';
    position: absolute;
    inset: -100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.8) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2;
    pointer-events: none;
}

.nx-item img { 
    width: 100%; 
    height: 280px; 
    object-fit: cover; 
    display: block; 
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1),
                filter 0.6s ease;
    filter: brightness(1) saturate(1);
}

.nx-item:hover { 
    transform: translateY(-12px) scale(1.02); 
    box-shadow: 0 24px 68px rgba(0,0,0,0.12), 
                0 12px 40px rgba(254,191,16,0.15),
                inset 0 0 0 2px rgba(254,191,16,0.3);
    border-color: var(--secondary-color);
    z-index: 10;
}

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

.nx-item:hover::after { 
    opacity: 0.6; 
    inset: 0;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translate(-100%, -100%) rotate(45deg); }
    100% { transform: translate(100%, 100%) rotate(45deg); }
}

.nx-item:hover img { 
    transform: scale(1.15) rotate(1deg); 
    filter: brightness(1.05) saturate(1.1);
}

.nx-item figcaption { 
    position: absolute; 
    left: 16px; 
    bottom: 16px; 
    padding: 0.6rem 1rem; 
    border-radius: 999px; 
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.88) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #1A331A; 
    font-weight: 600; 
    font-size: 0.9rem; 
    box-shadow: 0 8px 24px rgba(0,0,0,0.15),
                inset 0 1px 0 rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.4);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 3;
}

.nx-item:hover figcaption { 
    opacity: 1; 
    transform: translateY(0); 
}

.nx-item.nx-item--wide { grid-column: span 8; }
.nx-item.nx-item--tall img { height: 580px; }

/* Video play overlay */
.nx-item.video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0,0,0,0.3) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.nx-item.video:hover::after { opacity: 1; }

/* Gallery Modal Enhancement */
#galleryModal .modal-dialog { max-width: 90vw; }
#galleryModal .modal-content { 
    background: #0F1724; 
    border: 1px solid rgba(254,191,16,0.2); 
    border-radius: 20px;
    overflow: hidden;
}
#galleryModal .modal-header { 
    border-bottom: 1px solid rgba(255,255,255,0.1); 
    background: rgba(0,0,0,0.3);
}
#galleryModal .modal-title { color: #fff; }
#galleryModal .btn-close { 
    filter: invert(1); 
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
#galleryModal .btn-close:hover { opacity: 1; }
#galleryModal .modal-body { 
    padding: 2rem; 
    background: #0F1724;
}
#galleryModal img, #galleryModal video { 
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* ═══════════════════════════════════════════════════════════════════════
   PACKAGES SECTION - Premium Pricing Cards with Luxury Accents
   ═══════════════════════════════════════════════════════════════════════ */
.nx-packages { 
    position: relative; 
    background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 50%, #fffbf0 100%);
    padding: 6rem 0;
    overflow: hidden;
}

.nx-packages::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(254,191,16,0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.nx-packages::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.nx-packages::before {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(254,191,16,0.06) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.nx-packages .nx-title { color: var(--primary-color); }

.nx-plans { 
    display: grid; 
    grid-template-columns: repeat(12, 1fr); 
    gap: 2rem; 
    perspective: 1000px;
}

.nx-plan { 
    grid-column: span 4; 
    position: relative; 
    display: flex;
    will-change: transform; 
    flex-direction: column; 
    border-radius: 24px; 
    background: #fff; 
    border: 2px solid rgba(26,51,26,0.08); 
    box-shadow: 0 12px 48px rgba(0,0,0,0.08); 
    padding: 2rem 1.8rem; 
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

.nx-plan::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(254,191,16,0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.nx-plan:hover { 
    transform: translateY(-16px) rotateX(2deg);
    box-shadow: 0 32px 84px rgba(0,0,0,0.16), 
                0 16px 48px rgba(254,191,16,0.12),
                inset 0 0 0 2px rgba(254,191,16,0.2);
    border-color: rgba(254,191,16,0.4);
}

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

.nx-plan__head { 
    margin-bottom: 1.5rem; 
    position: relative;
    padding-bottom: 1rem;
}

.nx-plan__head::after { 
    content: '';
    position: absolute;
    left: 0; 
    right: 0; 
    bottom: 0; 
    height: 1px; 
    background: linear-gradient(90deg, rgba(26,51,26,0), rgba(26,51,26,0.15), rgba(26,51,26,0)); 
}

.nx-plan__name { 
    margin: 0 0 0.5rem; 
    font-size: 1.5rem; 
    color: var(--primary-color); 
    letter-spacing: 0.5px; 
    font-weight: 700;
}

.nx-plan__tag { 
    margin: 0; 
    color: #6b7280; 
    font-size: 0.95rem; 
    font-style: italic;
}

.nx-plan__price { 
    margin: 1rem 0 0; 
    font-weight: 700; 
    color: var(--secondary-color); 
    line-height: 1; 
    display: flex; 
    align-items: baseline; 
    gap: 0.3rem;
}

.nx-cur { 
    font-size: 1.5rem; 
    opacity: 0.8; 
}

.nx-amt { 
    font-size: 2.8rem; 
    letter-spacing: -1px; 
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nx-per { 
    margin-left: 0.3rem; 
    color: #6b7280; 
    font-weight: 500; 
    font-size: 1rem;
}

.nx-plan__list { 
    list-style: none; 
    padding: 0; 
    margin: 1.5rem 0; 
    display: flex; 
    flex-direction: column; 
    gap: 1rem; 
    flex-grow: 1;
}

.nx-plan__list li { 
    position: relative; 
    padding-left: 2rem; 
    color: #374151; 
    line-height: 1.6;
    transition: color 0.3s ease;
}

.nx-plan__list li::before { 
    content: '✦'; 
    position: absolute; 
    left: 0; 
    top: 0; 
    color: var(--secondary-color); 
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.nx-plan:hover .nx-plan__list li::before {
    transform: rotate(180deg) scale(1.2);
}

.nx-plan__foot { 
    margin-top: auto; 
    padding-top: 1.5rem; 
}

.nx-plan__note { 
    margin: 1rem 0 0; 
    font-size: 0.88rem; 
    color: #9ca3af; 
    text-align: center; 
    font-style: italic;
}

.nx-plan__chip { 
    position: absolute; 
    top: -16px; 
    right: 24px; 
    padding: 0.5rem 1.2rem; 
    border-radius: 999px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #FFD700 100%); 
    color: #1A331A; 
    font-weight: 800; 
    letter-spacing: 0.15em; 
    font-size: 0.75rem; 
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(254,191,16,0.4),
                inset 0 1px 0 rgba(255,255,255,0.5);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 8px 24px rgba(254,191,16,0.4), inset 0 1px 0 rgba(255,255,255,0.5); }
    50% { box-shadow: 0 8px 32px rgba(254,191,16,0.6), inset 0 1px 0 rgba(255,255,255,0.7); }
}

.nx-plan--prime { 
    border-width: 3px; 
    border-color: var(--secondary-color); 
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFCF5 100%); 
    box-shadow: 0 24px 72px rgba(254,191,16,0.15), 
                0 12px 40px rgba(0,0,0,0.08); 
    transform: scale(1.05);
    z-index: 5;
}

.nx-plan--prime:hover {
    transform: scale(1.05) translateY(-20px) rotateX(3deg);
}

.nx-plan .btn.btn-primary { 
    background: linear-gradient(135deg, var(--secondary-color) 0%, #FFD700 100%); 
    border: none;
    color: #1A331A; 
    position: relative;
    overflow: hidden;
    font-weight: 700;
    padding: 0.9rem 1.5rem;
    box-shadow: 0 8px 24px rgba(254,191,16,0.3);
    transition: all 0.4s ease;
}

.nx-plan .btn.btn-primary::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.6s ease;
}

.nx-plan .btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(254,191,16,0.5);
}

.nx-plan .btn.btn-primary:hover::before { 
    left: 100%; 
}

/* ═══════════════════════════════════════════════════════════════════════
   SIMPLE GALLERY SECTION - 4-COLUMN GRID
   ═══════════════════════════════════════════════════════════════════════ */

.simple-gallery {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
}

.simple-gallery::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(254,191,16,0.2), transparent);
}

/* Gallery Header */
.simple-gallery__header {
    text-align: center;
    margin-bottom: 3rem;
}

.simple-gallery__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.simple-gallery__title {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.simple-gallery__subtitle {
    font-size: 1.125rem;
    color: #6c757d;
}

/* Simple 4-Column Grid */
.simple-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    perspective: 1000px;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.18), 0 0 0 1px rgba(254,191,16,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

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

/* Gallery Item Overlay */
.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
}

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

.gallery-item__overlay h3 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 1rem;
    text-align: center;
    transform: translateY(10px);
    transition: transform 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-item__overlay h3 {
    transform: translateY(0);
}

.gallery-item__zoom {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transform: translateY(10px) scale(0.9);
    transition: all 0.3s ease 0.15s;
}

.gallery-item:hover .gallery-item__zoom {
    transform: translateY(0) scale(1);
}

.gallery-item__zoom:hover {
    background: var(--secondary-color);
    color: #ffffff;
    transform: translateY(0) scale(1.1);
}

/* Hide gallery items by default */
.gallery-item--hidden {
    display: none;
}

/* Gallery Controls */
.gallery-controls {
    margin-top: 2.5rem;
}

.gallery-controls .btn {
    min-width: 160px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.gallery-controls .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Lightbox (Keep existing functionality) */
.rk7-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.rk7-lightbox[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
}

.rk7-lightbox__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: #ffffff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.rk7-lightbox__close:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: rotate(90deg);
}

.rk7-lightbox__content {
    max-width: 90vw;
    max-height: 90vh;
    padding: 2rem;
}

.rk7-lightbox__image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
}

/* Responsive Gallery Grid */
@media (max-width: 1200px) {
    .simple-gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .simple-gallery {
        padding: 4rem 0;
    }
    
    .simple-gallery__title {
        font-size: 2rem;
    }
    
    .simple-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .simple-gallery {
        padding: 3rem 0;
    }
    
    .simple-gallery__title {
        font-size: 1.75rem;
    }
    
    .simple-gallery__subtitle {
        font-size: 1rem;
    }
    
    .simple-gallery__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item__overlay h3 {
        font-size: 1rem;
    }
    
    .gallery-item__zoom {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* RK7 CONNECT SECTION - CONTACT & LOCATION UNIFIED
   ═══════════════════════════════════════════════════════════════════════ */

.rk7-connect {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f5f6f7 50%, #fafbfc 100%);
    position: relative;
}

.rk7-connect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.rk7-connect-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Connect Grid */
.rk7-connect-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 992px) {
    .rk7-connect-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 3rem;
    }
}

.rk7-connect-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.rk7-connect-card:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.rk7-connect-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f8f9fa;
}

.rk7-connect-card__header i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.rk7-connect-card__header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* Form Styles */
.rk7-form-group {
    margin-bottom: 1.5rem;
}

.rk7-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .rk7-form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.rk7-form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.rk7-form-group input,
.rk7-form-group textarea {
    width: 100%;
    padding: 0.875rem 1.125rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.rk7-form-group input:focus,
.rk7-form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(254,191,16,0.1);
}

.rk7-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.rk7-form-error {
    display: block;
    font-size: 0.875rem;
    color: #dc3545;
    margin-top: 0.5rem;
}

.rk7-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.rk7-btn--primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e6a600 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(254,191,16,0.3);
}

.rk7-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(254,191,16,0.4);
}

.rk7-btn--outline {
    background: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.rk7-btn--outline:hover {
    background: var(--secondary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.rk7-form-alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.rk7-form-alert--success {
    background: #d1f2eb;
    color: #0f5132;
}

.rk7-form-alert--error {
    background: #f8d7da;
    color: #842029;
}

/* Contact Info */
.rk7-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.rk7-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.rk7-info-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.rk7-info-item__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e6a600 100%);
    color: #ffffff;
    border-radius: 12px;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.rk7-info-item__content {
    flex: 1;
}

.rk7-info-item__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.rk7-info-item__value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.rk7-info-item__value:hover {
    color: var(--secondary-color);
}

.rk7-connect-social {
    padding-top: 2rem;
    border-top: 2px solid #f8f9fa;
}

.rk7-connect-social p {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 1rem;
}

.rk7-social-links {
    display: flex;
    gap: 1rem;
}

.rk7-social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: var(--text-dark);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.rk7-social-links a:hover {
    background: var(--secondary-color);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Location Section */
.rk7-location-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

@media (min-width: 992px) {
    .rk7-location-section {
        grid-template-columns: 0.9fr 1.1fr;
    }
}

.rk7-location-info {
    padding: 3rem;
}

.rk7-location-info__header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.rk7-location-info__header i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.rk7-location-info__header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem;
}

.rk7-location-info__header p {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
}

.rk7-location-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.rk7-location-detail {
    display: flex;
    gap: 1.25rem;
}

.rk7-location-detail i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 0.25rem;
}

.rk7-location-detail strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.rk7-location-detail p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.rk7-location-map {
    position: relative;
    min-height: 400px;
}

.rk7-location-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .rk7-gallery {
        padding: 4rem 0;
    }
    
    .rk7-section-header {
        margin-bottom: 3rem;
    }
    
    .rk7-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .rk7-gallery-item--featured,
    .rk7-gallery-item--wide,
    .rk7-gallery-item--tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .rk7-connect {
        padding: 4rem 0;
    }
    
    .rk7-connect-wrapper {
        padding: 0 1rem;
    }
    
    .rk7-connect-card {
        padding: 2rem 1.5rem;
    }
    
    .rk7-location-info {
        padding: 2rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   TESTIMONIALS SECTION - Elegant Carousel with Premium Cards
   ═══════════════════════════════════════════════════════════════════════ */
.nx-testimonials { 
    background: linear-gradient(135deg, #0A1018 0%, #0F1724 50%, #121a28 100%); 
    color: #fff; 
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.nx-testimonials::before,
.nx-testimonials::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.15;
}

.nx-testimonials::before {
    top: -20%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(254,191,16,0.5) 0%, transparent 70%);
}

.nx-testimonials::after {
    bottom: -20%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(26,51,26,0.5) 0%, transparent 70%);
}

.nx-testimonials .container { position: relative; z-index: 1; }

.nx-testimonials .nx-title { 
    color: #fff; 
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nx-carousel { 
    position: relative; 
    display: flex; 
    align-items: center; 
    gap: 2rem; 
    margin-top: 2rem;
}

.nx-slides { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
    overflow: hidden; 
    position: relative; 
    width: 100%; 
    min-height: 280px;
}

.nx-slide { 
    position: absolute; 
    inset: 0; 
    opacity: 0; 
    transform: translateX(100px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
}

.nx-slide.is-active { 
    position: relative; 
    opacity: 1; 
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.nx-quote { 
    background: rgba(255,255,255,0.08); 
    border: 2px solid rgba(255,255,255,0.15); 
    border-radius: 24px; 
    padding: 2.5rem 2rem; 
    box-shadow: 0 20px 60px rgba(0,0,0,0.4),
                inset 0 1px 0 rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    transition: all 0.5s ease;
}

.nx-quote::before {
    content: '"';
    position: absolute;
    top: -20px; left: 30px;
    font-family: var(--font-heading);
    font-size: 8rem;
    line-height: 1;
    color: rgba(254,191,16,0.15);
    pointer-events: none;
}

.nx-slide.is-active .nx-quote {
    background: rgba(255,255,255,0.1);
    border-color: rgba(254,191,16,0.3);
    box-shadow: 0 24px 72px rgba(0,0,0,0.5),
                0 12px 40px rgba(254,191,16,0.15),
                inset 0 1px 0 rgba(255,255,255,0.15);
}

.nx-quote blockquote { 
    margin: 0 0 1.5rem; 
    color: #e5e7eb; 
    font-style: italic; 
    font-size: 1.15rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.nx-quote figcaption { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
}

.nx-avatar { 
    width: 56px; 
    height: 56px; 
    border-radius: 50%; 
    object-fit: cover; 
    box-shadow: 0 0 0 3px rgba(254,191,16,0.3),
                0 8px 24px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
}

.nx-slide.is-active .nx-avatar {
    box-shadow: 0 0 0 4px rgba(254,191,16,0.5),
                0 12px 32px rgba(0,0,0,0.4);
}

.nx-author strong {
    display: block;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.nx-author span {
    display: block;
    font-size: 0.9rem;
    color: rgba(254,191,16,0.9);
}

.nx-car-btn { 
    background: rgba(255,255,255,0.08); 
    color: #fff; 
    border: 2px solid rgba(255,255,255,0.2); 
    width: 56px; 
    height: 56px; 
    border-radius: 50%; 
    display: grid; 
    place-items: center; 
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.nx-car-btn:hover { 
    transform: translateY(-4px) scale(1.05);
    background: rgba(254,191,16,0.2); 
    border-color: rgba(254,191,16,0.5);
    box-shadow: 0 12px 32px rgba(254,191,16,0.3);
}

.nx-car-btn:active {
    transform: translateY(-2px) scale(1);
}

.nx-dots { 
    display: flex; 
    gap: 0.6rem; 
    justify-content: center; 
    margin-top: 2rem; 
}

.nx-dots button { 
    width: 12px; 
    height: 12px; 
    border-radius: 999px; 
    border: 0; 
    background: rgba(255,255,255,0.25); 
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    position: relative;
}

.nx-dots button::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.nx-dots button[aria-selected="true"] { 
    background: var(--secondary-color); 
    width: 32px;
}

.nx-dots button[aria-selected="true"]::after {
    border-color: rgba(254,191,16,0.3);
}

/* ═══════════════════════════════════════════════════════════════════════
   CONTACT SECTION - Premium Form with Micro-interactions
   ═══════════════════════════════════════════════════════════════════════ */
.nx-contact { 
    background: linear-gradient(135deg, #0F1724 0%, #1a2332 100%); 
    color: #fff; 
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.nx-contact::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(254,191,16,0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.nx-contact .container { position: relative; z-index: 1; }

.nx-contact .nx-title { color: #fff; }

.nx-form { 
    background: rgba(255,255,255,0.06); 
    border: 2px solid rgba(255,255,255,0.12); 
    border-radius: 24px; 
    padding: 2rem; 
    box-shadow: 0 20px 60px rgba(0,0,0,0.3),
                inset 0 1px 0 rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s ease;
}

.nx-form:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(254,191,16,0.3);
    box-shadow: 0 24px 72px rgba(0,0,0,0.4),
                0 12px 40px rgba(254,191,16,0.1),
                inset 0 1px 0 rgba(255,255,255,0.15);
}

.nx-field { 
    display: flex; 
    flex-direction: column; 
    gap: 0.6rem; 
    margin-bottom: 1.5rem; 
}

.nx-field label { 
    font-weight: 600; 
    color: #e5e7eb; 
    font-size: 0.95rem; 
    letter-spacing: 0.3px;
}

.nx-field input, 
.nx-field textarea { 
    background: rgba(255,255,255,0.08); 
    border: 2px solid rgba(255,255,255,0.15); 
    color: #fff; 
    border-radius: 14px; 
    padding: 0.9rem 1.2rem; 
    outline: none; 
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    font-family: var(--font-primary);
}

.nx-field input::placeholder,
.nx-field textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.nx-field input:focus, 
.nx-field textarea:focus { 
    background: rgba(255,255,255,0.12);
    border-color: var(--secondary-color); 
    box-shadow: 0 0 0 4px rgba(254,191,16,0.15),
                0 8px 24px rgba(254,191,16,0.2);
    transform: translateY(-2px);
}

.nx-field textarea {
    resize: vertical;
    min-height: 120px;
}

.nx-error { 
    min-height: 1em; 
    color: #ffd97a; 
    font-size: 0.85rem; 
}

.nx-hp { 
    position: absolute; 
    left: -10000px; 
    top: auto; 
    width: 1px; 
    height: 1px; 
    overflow: hidden; 
}

.nx-submit { 
    display: inline-flex; 
    align-items: center; 
    gap: 0.6rem;
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #FFD700 100%);
    border: none;
    border-radius: 14px;
    color: #1A331A;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 24px rgba(254,191,16,0.3);
    position: relative;
    overflow: hidden;
}

.nx-submit::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.6s ease;
}

.nx-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(254,191,16,0.5);
}

.nx-submit:hover::before {
    left: 100%;
}

.nx-submit:active {
    transform: translateY(-2px);
}

.nx-contacts { 
    display: flex; 
    flex-direction: column; 
    gap: 1rem; 
}

.nx-pill { 
    display: inline-flex; 
    align-items: center; 
    gap: 0.8rem; 
    padding: 1rem 1.5rem; 
    border-radius: 16px; 
    background: rgba(255,255,255,0.95); 
    color: #1A331A; 
    border: 2px solid rgba(255,255,255,0.2); 
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    font-weight: 600;
}

.nx-pill i {
    width: 24px;
    text-align: center;
    color: var(--secondary-color);
    transition: transform 0.4s ease;
}

.nx-pill:hover { 
    transform: translateY(-4px) translateX(4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25),
                0 8px 20px rgba(254,191,16,0.2);
    background: #fff;
    border-color: rgba(254,191,16,0.3);
    color: #1A331A;
}

.nx-pill:hover i {
    transform: scale(1.2) rotate(5deg);
}

.nx-social { 
    display: flex; 
    gap: 0.8rem; 
    margin-top: 1rem; 
}

.nx-soc { 
    display: inline-flex; 
    width: 48px; 
    height: 48px; 
    border-radius: 50%; 
    align-items: center; 
    justify-content: center; 
    color: #1A331A; 
    background: rgba(255,255,255,0.95); 
    border: 2px solid rgba(255,255,255,0.2); 
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nx-soc:hover { 
    transform: translateY(-6px) rotate(5deg);
    box-shadow: 0 12px 32px rgba(254,191,16,0.35);
    background: linear-gradient(135deg, var(--secondary-color) 0%, #FFD700 100%);
    color: #1A331A;
}

.nx-alert { 
    margin-top: 1rem; 
    border-radius: 14px; 
    padding: 1rem 1.2rem; 
    display: flex; 
    align-items: center; 
    gap: 0.8rem; 
}

.nx-alert--ok { 
    background: rgba(16, 185, 129, 0.15); 
    color: #D1FAE5; 
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.nx-alert--err { 
    background: rgba(239, 68, 68, 0.15); 
    color: #FEE2E2; 
    border: 2px solid rgba(239, 68, 68, 0.3);
}

/* ═══════════════════════════════════════════════════════════════════════
   LOCATION SECTION - Elegant Map Integration
   ═══════════════════════════════════════════════════════════════════════ */
.nx-location { 
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%); 
    padding: 6rem 0;
}

.nx-loc { 
    background: #fff; 
    border: 2px solid rgba(26,51,26,0.08); 
    border-radius: 24px; 
    padding: 2rem; 
    box-shadow: 0 12px 48px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.nx-loc:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 72px rgba(0,0,0,0.12),
                0 12px 40px rgba(254,191,16,0.08);
    border-color: rgba(254,191,16,0.2);
}

.nx-loc__item { 
    display: flex; 
    gap: 1.2rem; 
    padding: 1.5rem 0; 
    border-bottom: 1px dashed rgba(26,51,26,0.1);
    transition: all 0.3s ease;
}

.nx-loc__item:hover {
    padding-left: 0.5rem;
}

.nx-loc__item:last-child { 
    border-bottom: 0; 
}

.nx-loc__item i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #FFD700 100%);
    border-radius: 50%;
    color: #1A331A;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(254,191,16,0.3);
    transition: all 0.4s ease;
}

.nx-loc__item:hover i {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 28px rgba(254,191,16,0.5);
}

.nx-loc__item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.nx-loc__item p {
    color: #6b7280;
    margin: 0;
    line-height: 1.7;
}

.nx-actions { 
    display: flex; 
    gap: 1rem; 
    margin-top: 1.5rem; 
    flex-wrap: wrap; 
}

.nx-map { 
    border-radius: 24px; 
    overflow: hidden; 
    box-shadow: 0 20px 60px rgba(0,0,0,0.12); 
    border: 2px solid rgba(26,51,26,0.08); 
    height: 100%; 
    min-height: 400px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.nx-map::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(254,191,16,0);
    transition: box-shadow 0.5s ease;
    pointer-events: none;
}

.nx-map:hover {
    transform: scale(1.02);
    box-shadow: 0 28px 80px rgba(0,0,0,0.16),
                0 14px 40px rgba(254,191,16,0.1);
    border-color: rgba(254,191,16,0.3);
}

.nx-map:hover::after {
    box-shadow: inset 0 0 0 2px rgba(254,191,16,0.2);
}

.nx-map iframe { 
    width: 100%; 
    height: 100%; 
    min-height: 400px;
    display: block; 
    border: 0; 
}

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER - Luxurious & Refined
   ═══════════════════════════════════════════════════════════════════════ */
.nx-footer { 
    background: linear-gradient(135deg, #0A1018 0%, #0F1724 50%, #121a28 100%); 
    color: #cbd5e1; 
    padding: 4rem 0 2rem; 
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

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

.nx-footer::after {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(254,191,16,0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.nx-footer .container { position: relative; z-index: 1; }

.nx-foot-brand .nx-foot-logo { 
    width: 64px; 
    height: auto; 
    border-radius: 12px; 
    margin-bottom: 1rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.nx-foot-brand h3 { 
    color: #fff; 
    margin-bottom: 0.5rem; 
    font-size: 1.5rem;
}

.nx-foot-brand p { 
    color: #94a3b8; 
    line-height: 1.7;
}

.nx-foot-nav h4, 
.nx-foot-contact h4, 
.nx-foot-news h4 { 
    color: #fff; 
    font-size: 1.1rem; 
    margin-bottom: 1rem; 
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nx-foot-nav ul { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
    display: flex; 
    flex-direction: column; 
    gap: 0.6rem; 
}

.nx-foot-nav a { 
    color: #cbd5e1; 
    text-decoration: none;
    background-image: linear-gradient(var(--secondary-color), var(--secondary-color)); 
    background-size: 0% 2px; 
    background-position: 0% 100%;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.2rem 0;
}

.nx-foot-nav a:hover { 
    color: var(--secondary-color); 
    background-size: 100% 2px;
    transform: translateX(4px);
}

.nx-foot-contact p {
    color: #94a3b8;
    line-height: 1.8;
}

.nx-foot-contact a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nx-foot-contact a:hover {
    color: var(--secondary-color);
}

.nx-foot-social { 
    display: flex; 
    gap: 0.8rem; 
    margin-top: 1rem;
}

.nx-foot-social a { 
    display: inline-flex; 
    width: 44px; 
    height: 44px; 
    border-radius: 50%; 
    align-items: center; 
    justify-content: center; 
    color: #1A331A; 
    background: rgba(255,255,255,0.9); 
    border: 2px solid rgba(255,255,255,0.2); 
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.nx-foot-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--secondary-color);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: -1;
}

.nx-foot-social a:hover { 
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 12px 32px rgba(254,191,16,0.4);
    background: linear-gradient(135deg, var(--secondary-color) 0%, #FFD700 100%);
    color: #1A331A;
}

.nx-foot-news .nx-news-row { 
    display: flex; 
    gap: 0.6rem; 
}

.nx-foot-news input { 
    flex: 1; 
    min-width: 0; 
    border-radius: 12px; 
    border: 2px solid rgba(255,255,255,0.15); 
    background: rgba(255,255,255,0.08); 
    color: #fff; 
    padding: 0.8rem 1.2rem;
    transition: all 0.4s ease;
}

.nx-foot-news input::placeholder { 
    color: rgba(255,255,255,0.4); 
}

.nx-foot-news input:focus {
    outline: none;
    background: rgba(255,255,255,0.12);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(254,191,16,0.15);
}

.nx-foot-news .btn { 
    border-radius: 12px;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #FFD700 100%);
    border: none;
    color: #1A331A;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 4px 16px rgba(254,191,16,0.3);
}

.nx-foot-news .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(254,191,16,0.5);
}

.nx-news-msg {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.nx-foot-divide { 
    border: 0; 
    border-top: 1px solid rgba(255,255,255,0.08); 
    margin: 3rem 0 1.5rem; 
}

.nx-foot-bottom { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 1.5rem; 
    color: #94a3b8; 
    font-size: 0.95rem;
}

.nx-foot-legal { 
    display: flex; 
    gap: 1.5rem;
}

.nx-foot-legal a { 
    color: #94a3b8; 
    text-decoration: none;
    transition: color 0.3s ease;
}

.nx-foot-legal a:hover { 
    color: var(--secondary-color); 
}

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE REFINEMENTS
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) { 
    .nx-item { grid-column: span 6; } 
    .nx-item--wide { grid-column: span 12; }
    .nx-plan { grid-column: span 6; }
}

@media (max-width: 768px) { 
    .nx-grid { grid-template-columns: repeat(6, 1fr); gap: 1.2rem; } 
    .nx-item { grid-column: span 6; } 
    .nx-item--tall img { height: 360px; }
    .nx-plans { grid-template-columns: repeat(6, 1fr); gap: 1.5rem; } 
    .nx-plan { grid-column: span 6; }
    .nx-carousel { flex-direction: column; }
    .nx-car-btn { width: 48px; height: 48px; }
    .nx-foot-bottom { flex-direction: column; text-align: center; } 
    .nx-foot-legal { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 576px) { 
    .nx-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } 
    .nx-item { grid-column: span 4; border-radius: 16px; } 
    .nx-item img { height: 200px; }
    .nx-plans { grid-template-columns: repeat(4, 1fr); } 
    .nx-plan { grid-column: span 4; padding: 1.5rem 1.3rem; }
    .nx-amt { font-size: 2.2rem; }
    .nx-testimonials, .nx-packages, .nx-gallery, .nx-contact, .nx-location { padding: 4rem 0; }
    .nx-form, .nx-loc { padding: 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════ */
[data-reveal] { 
    opacity: 0;
    transform: translateY(30px); 
}

@media (prefers-reduced-motion: reduce) { 
    [data-reveal] { 
        opacity: 1 !important; 
        transform: none !important; 
    } 
}

/* ================= New NX Section Styles (scoped) ================= */
:root {
    --nx-brand: var(--primary-color);
    --nx-accent: var(--secondary-color);
}

/* ╔════════════════════════════════════════════════════════════════════════╗
   ║                    COMPLETE SECTION REDESIGNS                          ║
   ║            Premium, Unique, Modern & Luxurious Layouts                 ║
   ╚════════════════════════════════════════════════════════════════════════╝ */

/* ═══════════════════════════════════════════════════════════════════════════
   SHARED PREMIUM COMPONENTS
   ═══════════════════════════════════════════════════════════════════════════ */

/* Premium Section Header */
.section-header-luxe {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header-luxe--left {
    text-align: left;
}

.section-header-luxe__decor {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    border-radius: 999px;
}

.section-header-luxe--left .section-header-luxe__decor {
    left: 0;
    transform: none;
}

.section-kicker {
    display: inline-block;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.section-title-luxe {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-header-luxe--light .section-title-luxe {
    color: #fff;
}

.gradient-text {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc-luxe {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.section-header-luxe--left .section-desc-luxe {
    margin: 0;
}

.section-header-luxe--light .section-desc-luxe {
    color: rgba(255,255,255,0.8);
}

/* ═══════════════════════════════════════════════════════════════════════════
   GALLERY SECTION - BENTO GRID LAYOUT
   ═══════════════════════════════════════════════════════════════════════════ */

.gallery-luxe {
    position: relative;
    background: linear-gradient(180deg, #FFFCF8 0%, #FFFAF5 50%, #F8FAFC 100%);
    padding: 6rem 0;
    overflow: hidden;
}

.gallery-luxe__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.glow-orb--1 {
    width: 600px;
    height: 600px;
    top: -15%;
    left: -10%;
    background: radial-gradient(circle, rgba(254,191,16,0.6) 0%, transparent 70%);
}

.glow-orb--2 {
    width: 500px;
    height: 500px;
    bottom: -15%;
    right: -8%;
    background: radial-gradient(circle, rgba(26,51,26,0.5) 0%, transparent 70%);
}

/* Bento Grid Container */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    perspective: 1500px;
}

/* Bento Card Base */
.bento-card {
    grid-column: span 4;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    border: 2px solid rgba(26,51,26,0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08), 
                0 4px 16px rgba(254,191,16,0.06);
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

/* Hero Card - Large Featured */
.bento-card--hero {
    grid-column: span 6;
    grid-row: span 2;
}

/* Tall Card */
.bento-card--tall {
    grid-row: span 2;
}

/* Wide Card */
.bento-card--wide {
    grid-column: span 8;
}

/* Card Media Container */
.bento-card__media {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.bento-card--hero .bento-card__media {
    height: 620px;
}

.bento-card--tall .bento-card__media {
    height: 620px;
}

.bento-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1),
                filter 0.6s ease;
    filter: brightness(1) saturate(1.05);
}

/* Card Overlay */
.bento-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,51,26,0.6) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.bento-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #FFD700 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A331A;
    font-size: 1.5rem;
    box-shadow: 0 12px 40px rgba(254,191,16,0.4),
                inset 0 2px 0 rgba(255,255,255,0.3);
    transform: scale(0.8);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.bento-card__icon--play {
    padding-left: 4px;
}

/* Card Content */
.bento-card__content {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.bento-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.bento-card__subtitle {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

/* Video Badge */
.bento-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    z-index: 2;
}

/* Shine Effect */
.bento-card__shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg);
    transition: left 0.8s ease;
    pointer-events: none;
}

/* Hover States */
.bento-card:hover {
    transform: translateY(-12px) rotateX(2deg) scale(1.02);
    box-shadow: 0 28px 76px rgba(0,0,0,0.16), 
                0 12px 44px rgba(254,191,16,0.18),
                inset 0 0 0 3px rgba(254,191,16,0.3);
    border-color: var(--secondary-color);
    z-index: 10;
}

.bento-card:hover .bento-card__media img {
    transform: scale(1.12);
    filter: brightness(1.05) saturate(1.15);
}

.bento-card:hover .bento-card__overlay {
    opacity: 1;
}

.bento-card:hover .bento-card__icon {
    transform: scale(1);
}

.bento-card:hover .bento-card__shine {
    left: 100%;
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .bento-card {
        grid-column: span 6;
    }
    .bento-card--hero,
    .bento-card--wide {
        grid-column: span 12;
    }
    .bento-card--tall {
        grid-row: span 1;
    }
    .bento-card--tall .bento-card__media,
    .bento-card--hero .bento-card__media {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        gap: 1rem;
    }
    .bento-card {
        grid-column: span 12;
        border-radius: 20px;
    }
    .bento-card__media,
    .bento-card--tall .bento-card__media,
    .bento-card--hero .bento-card__media {
        height: 280px;
    }
    .section-title-luxe {
        font-size: 2.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   TESTIMONIALS SECTION - SIMPLE & CLEAN
   ═══════════════════════════════════════════════════════════════════════════ */

.testimonials-simple {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.testimonials-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(254,191,16,0.2), transparent);
}

/* Simple Header */
.simple-header {
    text-align: center;
    margin-bottom: 3rem;
}

.simple-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.simple-subtitle {
    font-size: 1.125rem;
    color: #6c757d;
}

/* Testimonials Slider */
.testimonials-slider {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

/* Simple Card */
.simple-card {
    min-width: calc(50% - 1rem);
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.simple-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.simple-card__stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.simple-card__stars i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.simple-card__text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #495057;
    margin: 0 0 2rem;
    font-style: italic;
}

.simple-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.simple-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
}

.simple-card__info {
    flex: 1;
}

.simple-card__name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.25rem;
}

.simple-card__role {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

/* Navigation */
.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonials-nav__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #dee2e6;
    background: #ffffff;
    color: #495057;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.testimonials-nav__btn:hover {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
    color: #ffffff;
    transform: scale(1.1);
}

.testimonials-nav__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.testimonials-nav__btn:disabled:hover {
    border-color: #dee2e6;
    background: #ffffff;
    color: #495057;
    transform: scale(1);
}

.testimonials-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonials-dots__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dee2e6;
    border: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonials-dots__dot:hover {
    background: #adb5bd;
    transform: scale(1.2);
}

.testimonials-dots__dot.is-active {
    background: var(--secondary-color);
    width: 32px;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 992px) {
    .simple-card {
        min-width: calc(100% - 2rem);
    }
}

@media (max-width: 768px) {
    .testimonials-simple {
        padding: 4rem 0;
    }
    
    .simple-title {
        font-size: 2rem;
    }
    
    .testimonials-slider {
        padding: 0 50px;
    }
    
    .simple-card {
        padding: 2rem 1.5rem;
        min-width: 100%;
    }
    
    .simple-card__text {
        font-size: 1.05rem;
    }
    
    .testimonials-nav__btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .testimonials-simple {
        padding: 3rem 0;
    }
    
    .simple-title {
        font-size: 1.75rem;
    }
    
    .simple-subtitle {
        font-size: 1rem;
    }
    
    .testimonials-slider {
        padding: 0 40px;
    }
    
    .simple-card {
        padding: 1.75rem 1.25rem;
    }
    
    .simple-card__text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .simple-card__avatar {
        width: 48px;
        height: 48px;
    }
    
    .simple-card__name {
        font-size: 0.95rem;
    }
    
    .simple-card__role {
        font-size: 0.85rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT + LOCATION COMBINED SECTION - SPLIT SCREEN
   ═══════════════════════════════════════════════════════════════════════════ */

.contact-location-luxe {
    position: relative;
    min-height: 100vh;
    background: #F8FAFC;
}

/* Split Container */
.contact-location-luxe__split {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    min-height: 100vh;
}

/* Panel Base */
.contact-location-luxe__panel {
    padding: 6rem 3rem;
    display: flex;
    align-items: center;
}

/* Form Panel */
.contact-location-luxe__panel--form {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFCF8 100%);
}

.contact-location-luxe__content {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

/* Map Panel */
.contact-location-luxe__panel--map {
    background: #F8FAFC;
    position: relative;
}

/* Vertical Divider */
.contact-location-luxe__divider {
    position: relative;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-location-luxe__divider-line {
    position: absolute;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: linear-gradient(180deg, 
        transparent,
        rgba(26,51,26,0.2) 20%,
        rgba(26,51,26,0.2) 80%,
        transparent);
}

.contact-location-luxe__divider-ornament {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #FFD700 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A331A;
    font-size: 1.5rem;
    box-shadow: 0 12px 40px rgba(254,191,16,0.4),
                inset 0 2px 0 rgba(255,255,255,0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Contact Form */
.contact-form-luxe {
    margin-top: 2.5rem;
}

.contact-form-luxe__row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-form-luxe__field {
    position: relative;
    flex: 1;
}

.contact-form-luxe__field--half {
    flex: 1;
}

.contact-form-luxe__field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.contact-form-luxe__field input,
.contact-form-luxe__field textarea {
    width: 100%;
    padding: 1rem 0.5rem 0.75rem;
    background: transparent;
    border: 0;
    border-bottom: 2px solid rgba(26,51,26,0.15);
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    outline: none;
}

.contact-form-luxe__field textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form-luxe__field input::placeholder,
.contact-form-luxe__field textarea::placeholder {
    color: #9ca3af;
}

.contact-form-luxe__field input:focus,
.contact-form-luxe__field textarea:focus {
    border-bottom-color: var(--secondary-color);
}

.contact-form-luxe__underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, #FFD700 100%);
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.contact-form-luxe__field input:focus ~ .contact-form-luxe__underline,
.contact-form-luxe__field textarea:focus ~ .contact-form-luxe__underline {
    width: 100%;
}

.contact-form-luxe__error {
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    color: #EF4444;
    min-height: 1.2em;
}

/* Submit Button */
.contact-form-luxe__submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0F2610 100%);
    border: 0;
    border-radius: 16px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 12px 32px rgba(26,51,26,0.3);
    position: relative;
    overflow: hidden;
}

.contact-form-luxe__submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.contact-form-luxe__submit:hover::before {
    transform: translateX(100%);
}

.contact-form-luxe__submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(26,51,26,0.4);
}

.contact-form-luxe__submit:active {
    transform: translateY(-2px);
}

.contact-form-luxe__submit-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.contact-form-luxe__submit:hover .contact-form-luxe__submit-icon {
    background: var(--secondary-color);
    color: #1A331A;
    transform: translateX(4px);
}

/* Form Alerts */
.contact-form-luxe__alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.contact-form-luxe__alert--success {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.contact-form-luxe__alert--error {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Quick Contact Links */
.contact-quick-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-quick-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(26,51,26,0.05);
    border: 1px solid rgba(26,51,26,0.1);
    border-radius: 12px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.contact-quick-link:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.contact-quick-link i {
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.contact-quick-link:hover i {
    color: #fff;
}

/* Location Info Card */
.location-info-card {
    position: relative;
    z-index: 10;
    max-width: 450px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 24px 72px rgba(0,0,0,0.15),
                inset 0 1px 0 rgba(255,255,255,0.5);
    border: 2px solid rgba(255,255,255,0.5);
    margin: 0 auto 2rem;
}

.location-info-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(26,51,26,0.1);
}

.location-info-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #FFD700 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A331A;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(254,191,16,0.3);
    flex-shrink: 0;
}

.location-info-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.25rem;
}

.location-info-card__subtitle {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.location-info-card__details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.location-detail {
    display: flex;
    gap: 1rem;
}

.location-detail__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(254,191,16,0.15) 0%, rgba(254,191,16,0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.location-detail__content h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.375rem;
}

.location-detail__content p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.location-info-card__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--primary-color);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 24px rgba(26,51,26,0.25);
}

.location-info-card__cta:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(26,51,26,0.35);
}

.location-info-card__cta i {
    transition: transform 0.3s ease;
}

.location-info-card__cta:hover i {
    transform: translateX(4px);
}

/* Map Container */
.location-map-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.location-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,23,36,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.4s ease;
}

.location-map-overlay.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.location-map-overlay__content {
    text-align: center;
    color: #fff;
}

.location-map-overlay__content i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    animation: bounce-hand 2s ease-in-out infinite;
}

@keyframes bounce-hand {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.location-map-overlay__content p {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 500;
}

/* Social Links */
.location-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.location-social__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
}

.location-social__links {
    display: flex;
    gap: 0.75rem;
}

.location-social__links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(26,51,26,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.location-social__links a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(26,51,26,0.25);
}

/* Responsive Split Screen */
@media (max-width: 1200px) {
    .contact-location-luxe__split {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    .contact-location-luxe__divider {
        width: 100%;
        height: 80px;
        flex-direction: row;
    }
    .contact-location-luxe__divider-line {
        top: 50%;
        bottom: auto;
        left: 10%;
        right: 10%;
        width: auto;
        height: 1px;
    }
    .contact-location-luxe__panel {
        padding: 4rem 2rem;
    }
    .location-map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .section-title-luxe {
        font-size: 2.5rem;
    }
    .contact-form-luxe__row {
        flex-direction: column;
        gap: 1.5rem;
    }
    .contact-form-luxe__field--half {
        width: 100%;
    }
    .location-info-card {
        padding: 1.5rem;
    }
    .contact-quick-links {
        flex-direction: column;
    }
    .contact-quick-link {
        width: 100%;
        justify-content: center;
    }
}
    --nx-bg: #0F1724;
    --nx-text: #1F2937;
}

.nx-head { text-align:center; margin-bottom: 2.25rem; }
.nx-overline { display:inline-block; letter-spacing:.22em; text-transform:uppercase; color: var(--nx-accent); font-size:.85rem; margin-bottom:.35rem; }
.nx-title { font-family: var(--font-heading); color: var(--primary-color); }
.nx-sub { color: var(--text-secondary); }

/* Gallery */
.nx-gallery { position: relative; background: linear-gradient(180deg, #FFF7E6 0%, #F8FAFC 100%); }
.nx-gallery .nx-title { color: var(--nx-brand); }
.nx-grid { display:grid; grid-template-columns: repeat(12, 1fr); gap: 1.1rem; }
.nx-item { grid-column: span 4; position: relative; border-radius: 18px; overflow: hidden; cursor: pointer; background:#fff; border:1px solid rgba(26,51,26,0.08); box-shadow: 0 12px 28px rgba(0,0,0,0.08); transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
.nx-item img { width:100%; height: 260px; object-fit: cover; display:block; transition: transform .4s cubic-bezier(.2,.7,.3,1); }
.nx-item:hover { transform: translateY(-8px); box-shadow: 0 22px 56px rgba(0,0,0,0.14); border-color: rgba(254,191,16,0.35); }
.nx-item:hover img { transform: scale(1.06); }
.nx-item figcaption { position:absolute; left:12px; bottom:12px; padding:.35rem .6rem; border-radius:999px; background: rgba(255,255,255,0.86); color:#0F1724; font-weight:600; font-size:.9rem; box-shadow: 0 6px 16px rgba(0,0,0,0.08); }
.nx-item--wide { grid-column: span 8; }
.nx-item--tall img { height: 540px; }
@media (max-width: 1200px){ .nx-item{ grid-column: span 6; } .nx-item--wide{ grid-column: span 12; } }
@media (max-width: 768px){ .nx-grid{ grid-template-columns: repeat(6,1fr);} .nx-item{ grid-column: span 6; } .nx-item--tall img{ height: 360px; } }
@media (max-width: 576px){ .nx-grid{ grid-template-columns: repeat(4,1fr);} .nx-item{ grid-column: span 4; } .nx-item img{ height: 200px; } }

/* Packages */
.nx-packages { position: relative; background: linear-gradient(180deg, #FFFFFF 0%, #FFF9E8 80%, #FFF6D8 100%); }
.nx-packages .nx-title { color: var(--nx-brand); }

/* Reimagined plans */
.nx-plans { display:grid; grid-template-columns: repeat(12, 1fr); gap: 1.1rem; }
.nx-plan { grid-column: span 4; position: relative; display:flex; flex-direction:column; border-radius:18px; background:#fff; border:1px solid rgba(26,51,26,0.10); box-shadow: 0 16px 36px rgba(0,0,0,0.08); padding: 1.15rem 1.15rem 1rem; transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
.nx-plan::after { content:''; position:absolute; inset:0; border-radius:inherit; background: linear-gradient(120deg, rgba(254,191,16,0.08), rgba(255,255,255,0)); opacity:0; transition: opacity .35s ease; pointer-events:none; }
.nx-plan:hover { transform: translateY(-8px); box-shadow: 0 28px 56px rgba(0,0,0,0.14); border-color: rgba(254,191,16,0.35); }
.nx-plan:hover::after { opacity:1; }
.nx-plan__head { margin-bottom: .45rem; }
.nx-plan__head { position: relative; padding-bottom: .5rem; }
.nx-plan__head::after { content:''; position:absolute; left:0; right:0; bottom:0; height:1px; background: linear-gradient(90deg, rgba(26,51,26,0), rgba(26,51,26,0.12), rgba(26,51,26,0)); }
.nx-plan__name { margin:0; font-size: 1.18rem; color: var(--primary-color); letter-spacing:.2px; }
.nx-plan__tag { margin:0; color: var(--text-secondary); font-size:.95rem; }
.nx-plan__price { margin:.25rem 0 0; font-weight:700; color: var(--nx-accent); line-height:1; }
.nx-cur { margin-right:.12rem; }
.nx-amt { font-size: 2.05rem; letter-spacing:.2px; }
.nx-per { margin-left:.25rem; color:#6b7280; font-weight:500; }
.nx-plan__list { list-style:none; padding:0; margin:.6rem 0 .9rem; display:flex; flex-direction:column; gap:.55rem; }
.nx-plan__list li { position:relative; padding:.1rem 0 .55rem .95rem; border-bottom: 1px dashed rgba(26,51,26,0.12); }
.nx-plan__list li::before { content:''; position:absolute; left:0; top:.6rem; width:6px; height:6px; border-radius:50%; background: var(--nx-accent); box-shadow: 0 0 0 3px rgba(254,191,16,.16); }
.nx-plan__list li:last-child { border-bottom:0; }
.nx-plan__foot { margin-top:auto; padding-top:.55rem; }
.nx-plan__note { margin:.45rem 0 0; font-size:.92rem; color:#6b7280; text-align:center; }
.nx-plan__chip { position:absolute; top:-14px; right:16px; padding:.38rem .72rem; border-radius:999px; background: linear-gradient(135deg, var(--nx-accent), #ffd866); color:#0F1724; font-weight:700; letter-spacing:.18em; font-size:.88rem; box-shadow: 0 6px 16px rgba(254,191,16,0.28); }
.nx-plan--prime { border-width:2px; border-color: var(--nx-accent); background: linear-gradient(127deg, #fff 78%, #fff7c4 100%); box-shadow: 0 26px 64px rgba(254,191,16,0.12), 0 20px 40px rgba(0,0,0,0.06); z-index:2; }
.nx-plan--prime .nx-amt { color: var(--nx-accent); }

/* Buttons inside plans: subtle premium sheen */
.nx-plan .btn.btn-primary { background: var(--nx-accent); border-color: var(--nx-accent); color:#0F1724; position:relative; overflow:hidden; }
.nx-plan .btn.btn-primary::after { content:''; position:absolute; top:0; left:-120%; width:60%; height:100%; background: linear-gradient(100deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0.0) 100%); transform: skewX(-20deg); transition: left .5s ease; }
.nx-plan .btn.btn-primary:hover::after { left: 140%; }

/* Focus visibility for accessibility */
.nx-plan a.btn:focus { outline: 3px solid rgba(254,191,16,0.45); outline-offset: 2px; }

@media (max-width: 1200px){ .nx-plan{ grid-column: span 6; } }
@media (max-width: 768px){ .nx-plans{ grid-template-columns: repeat(6,1fr);} .nx-plan{ grid-column: span 6; } }
@media (max-width: 576px){ .nx-plans{ grid-template-columns: repeat(4,1fr);} .nx-plan{ grid-column: span 4; padding: 1rem; } .nx-amt{ font-size:1.85rem; } }

/* Testimonials */
.nx-testimonials { background: linear-gradient(180deg, #0F1724 0%, #121a28 100%); color:#fff; }
.nx-testimonials .nx-title { color:#fff; }
.nx-carousel { position: relative; display:flex; align-items:center; gap: 1rem; }
.nx-slides { list-style:none; padding:0; margin:0; overflow:hidden; position: relative; width: 100%; }
.nx-slide { position:absolute; inset:0; opacity:0; transform: translateX(6%); transition: opacity .5s ease, transform .5s ease; }
.nx-slide.is-active { position:relative; opacity:1; transform: translateX(0); }
.nx-quote { background: rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 1rem 1.1rem; box-shadow: 0 14px 34px rgba(0,0,0,0.25); }
.nx-quote blockquote { margin:0 0 .9rem; color:#e5e7eb; font-style: italic; }
.nx-quote figcaption { display:flex; align-items:center; gap:.7rem; }
.nx-avatar { width:42px; height:42px; border-radius:50%; object-fit:cover; box-shadow: 0 0 0 3px rgba(254,191,16,0.18); }
.nx-car-btn { background: transparent; color:#fff; border:1px solid rgba(255,255,255,0.25); width:42px; height:42px; border-radius:999px; display:grid; place-items:center; transition: transform .25s ease, background .25s ease, border-color .25s ease; }
.nx-car-btn:hover { transform: translateY(-2px); background: rgba(255,255,255,0.08); border-color: rgba(254,191,16,0.35); }
.nx-dots { display:flex; gap:.35rem; justify-content:center; margin-top: .75rem; }
.nx-dots button { width:8px; height:8px; border-radius:999px; border:0; background:#ffffff33; transition: transform .2s ease, background .2s ease; }
.nx-dots button[aria-selected="true"] { background: var(--nx-accent); transform: scale(1.2); }

/* Contact */
.nx-contact { background: #0f1724; color:#fff; }
.nx-contact .nx-title { color:#fff; }
.nx-form { background: rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12); border-radius:16px; padding: 1rem; box-shadow: 0 14px 34px rgba(0,0,0,0.25); }
.nx-field { display:flex; flex-direction:column; gap:.4rem; margin-bottom:.8rem; }
.nx-field label { font-weight:600; color:#e5e7eb; font-size:.95rem; }
.nx-field input, .nx-field textarea { background: rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.22); color:#fff; border-radius:10px; padding:.6rem .7rem; outline:none; transition: border-color .25s ease, box-shadow .25s ease; }
.nx-field input:focus, .nx-field textarea:focus { border-color: var(--nx-accent); box-shadow: 0 0 0 3px rgba(254,191,16,0.22); }
.nx-error { min-height: 1em; color:#ffd97a; font-size:.9rem; }
.nx-hp { position:absolute; left:-10000px; top:auto; width:1px; height:1px; overflow:hidden; }
.nx-submit { display:inline-flex; align-items:center; gap:.5rem; }
.nx-contacts { display:flex; flex-direction:column; gap:.6rem; }
.nx-pill { display:inline-flex; align-items:center; gap:.5rem; padding:.55rem .8rem; border-radius:999px; background:#fff; color:#0F1724; border:1px solid rgba(255,255,255,0.18); box-shadow: 0 10px 24px rgba(0,0,0,0.18); transition: transform .25s ease, box-shadow .25s ease; }
.nx-pill:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(0,0,0,0.25); }
.nx-social { display:flex; gap:.5rem; margin-top:.4rem; }
.nx-soc { display:inline-flex; width:40px; height:40px; border-radius:999px; align-items:center; justify-content:center; color:#0F1724; background:#fff; border:1px solid rgba(255,255,255,0.1); transition: transform .25s ease, box-shadow .25s ease; }
.nx-soc:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(254,191,16,0.25); }
.nx-alert { margin-top:.75rem; border-radius:10px; padding:.6rem .7rem; display:flex; align-items:center; gap:.5rem; }
.nx-alert--ok { background:#D1FAE5; color:#065F46; }
.nx-alert--err { background:#FEE2E2; color:#991B1B; }

/* Location */
.nx-location { background: #F8FAFC; }
.nx-loc { background:#fff; border:1px solid rgba(26,51,26,0.08); border-radius:16px; padding: 1rem; box-shadow: 0 12px 28px rgba(0,0,0,0.08); }
.nx-loc__item { display:flex; gap:.75rem; padding:.55rem 0; border-bottom:1px dashed rgba(26,51,26,0.12); }
.nx-loc__item:last-child { border-bottom:0; }
.nx-actions { display:flex; gap:.6rem; margin-top:.8rem; flex-wrap:wrap; }
.nx-map { border-radius:16px; overflow:hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.12); border:1px solid rgba(26,51,26,0.08); height: 100%; }
.nx-map iframe { width:100%; height: 400px; display:block; border:0; }

/* Footer */
.nx-footer { background:#0F1724; color:#cbd5e1; padding: 3rem 0 1.5rem; }
.nx-foot-brand .nx-foot-logo { width:52px; height:auto; border-radius:8px; margin-bottom:.5rem; }
.nx-foot-brand h3 { color:#fff; margin-bottom:.25rem; }
.nx-foot-brand p { color:#cbd5e1; }
.nx-foot-nav h4, .nx-foot-contact h4, .nx-foot-news h4 { color:#fff; font-size:1.05rem; margin-bottom:.6rem; }
.nx-foot-nav ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:.35rem; }
.nx-foot-nav a { color:#cbd5e1; text-decoration:none; background-image: linear-gradient(currentColor, currentColor); background-size:0% 1px; background-position:0% 100%; background-repeat:no-repeat; transition: background-size .25s ease, color .25s ease; }
.nx-foot-nav a:hover { color: var(--nx-accent); background-size:100% 1px; }
.nx-foot-social a { display:inline-flex; width:40px; height:40px; border-radius:999px; align-items:center; justify-content:center; color:#0F1724; background:#fff; border:1px solid rgba(255,255,255,0.1); transition: transform .25s ease, box-shadow .25s ease; }
.nx-foot-social a:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(254,191,16,0.25); }
.nx-foot-news .nx-news-row { display:flex; gap:.4rem; }
.nx-foot-news input { flex:1; min-width: 0; border-radius:999px; border:1px solid rgba(255,255,255,0.22); background: rgba(255,255,255,0.12); color:#fff; padding:.55rem .8rem; }
.nx-foot-news input::placeholder { color:#e5e7eb; }
.nx-foot-news .btn { border-radius:999px; }
.nx-foot-divide { border:0; border-top:1px solid rgba(255,255,255,0.08); margin: 1.4rem 0 .9rem; }
.nx-foot-bottom { display:flex; align-items:center; justify-content:space-between; gap:1rem; color:#94a3b8; }
.nx-foot-legal a { color:#94a3b8; margin-left:.9rem; }
@media (max-width: 768px){ .nx-foot-bottom{ flex-direction:column; text-align:center; } .nx-foot-legal a{ margin-left:.5rem; } }

/* Reveal */
[data-reveal]{ opacity:0; transform: translateY(18px); }
@media (prefers-reduced-motion: reduce){ [data-reveal]{ opacity:1 !important; transform:none !important; } }