/* Luxury, modern, and responsive CSS for Noor Luxury Residence */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800&family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

:root {
    /* Colors */
    --lux-black: #1a1a1a;
    --lux-white: #ffffff;
    --lux-gray: #f8f8f8;
    --lux-gray-dark: #2a2a2a;
    --lux-gold: #38bdf8;
    --lux-gold-light: #7dd3fc;
    --lux-gold-dark: #0ea5e9;
    --lux-accent: #bae6fd;
    
    /* Shadows */
    --lux-shadow-sm: 0 2px 8px rgba(56, 189, 248, 0.08);
    --lux-shadow: 0 8px 32px rgba(56, 189, 248, 0.13);
    --lux-shadow-lg: 0 15px 50px rgba(56, 189, 248, 0.18);
    --lux-shadow-gold: 0 8px 28px rgba(56, 189, 248, 0.25);
    
    /* Border Radius */
    --lux-radius-sm: 12px;
    --lux-radius: 18px;
    --lux-radius-lg: 24px;
    --lux-radius-xl: 32px;
    
    /* Transitions - Optimized for Speed */
    --lux-transition: 0.2s cubic-bezier(0.23, 1, 0.32, 1);
    --lux-transition-fast: 0.15s cubic-bezier(0.23, 1, 0.32, 1);
    --lux-transition-slow: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}
/* Smooth Scrolling - Fast */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: var(--lux-gray);
    color: var(--lux-black);
    line-height: 1.8;
    min-height: 100vh;
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    /* Performance optimizations */
    will-change: scroll-position;
    overflow-x: hidden;
}

/* Selection Color */
::selection {
    background: var(--lux-gold);
    color: var(--lux-white);
}

::-moz-selection {
    background: var(--lux-gold);
    color: var(--lux-white);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--lux-gray);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #38bdf8 0%, #7dd3fc 100%);
    border-radius: 6px;
    border: 2px solid var(--lux-gray);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #0ea5e9 0%, #38bdf8 100%);
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--lux-black);
    letter-spacing: 0.5px;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-sm);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.9;
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--lux-transition);
}

a:hover {
    color: var(--lux-gold);
}

/* Hero Section with Video Background */
.hero {
}

body.dark-mode .hero-content,
body.dark-mode .hero-content h1,
body.dark-mode .hero-content h2,
body.dark-mode .hero-content h3,
body.dark-mode .hero-content p,
body.dark-mode .hero-content span,
body.dark-mode .hero-content a {
    color: #fff !important;
    text-shadow: 0 4px 18px #000, 0 2px 8px #38bdf833;
}
body.dark-mode .hero-content h1,
body.dark-mode .hero-content h2 {
    font-weight: 900;
    letter-spacing: 1.2px;
}
body.dark-mode .hero-content .btn-book {
    background: linear-gradient(90deg, #38bdf8 0%, #0ea5e9 100%) !important;
    color: #fff !important;
    border-radius: 32px;
    font-weight: 800;
    font-size: 1.15rem;
    box-shadow: 0 8px 28px #38bdf844;
    border: none;
    padding: 1rem 2.5rem;
    margin-top: 1.4rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
body.dark-mode .hero-content .btn-book:hover {
    background: linear-gradient(90deg, #0ea5e9 0%, #38bdf8 100%) !important;
    color: #fff !important;
    box-shadow: 0 16px 36px #38bdf866;
}

    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--lux-white);
    overflow: hidden;
}

/* Video Background with Effects */
.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
    animation: videoZoom 30s ease-in-out infinite alternate;
}

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

/* Luxury Video Overlay with Gradient */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        linear-gradient(
            135deg,
            rgba(26, 26, 26, 0.75) 0%,
            rgba(26, 26, 26, 0.5) 50%,
            rgba(26, 26, 26, 0.75) 100%
        );
    z-index: 1;
    backdrop-filter: blur(1px);
}

/* Animated Border Effect */
.hero-video-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(212, 175, 55, 0.3);
    animation: borderPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes borderPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.98);
    }
    50% {
        opacity: 0.6;
        transform: scale(1);
    }
}

/* Fallback background if video doesn't load - Eiffel Tower Image */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://i.postimg.cc/LsYD16Gj/image.png') no-repeat center center/cover;
    z-index: -1;
    filter: brightness(0.8) contrast(1.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    animation: fadeInUp 1s ease-out;
    background: rgba(26, 26, 26, 0.88);
    border-radius: 24px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(212, 175, 55, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    color: #fff !important;
}
.hero-content h1, .hero-content h2, .hero-content h3 {
    color: #fff !important;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-shadow: 0 6px 24px rgba(0,0,0,0.7), 0 2px 8px rgba(56,189,248,0.18);
}
.hero-content p, .hero-content span, .hero-content a {
    color: #fff !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.hero-content .btn-book {
    background: linear-gradient(90deg, #38bdf8 0%, #0ea5e9 100%);
    color: #fff !important;
    border-radius: 32px;
    font-weight: 800;
    font-size: 1.15rem;
    box-shadow: 0 8px 28px #38bdf844;
    border: none;
    padding: 1rem 2.5rem;
    margin-top: 1.4rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.hero-content .btn-book:hover {
    background: linear-gradient(90deg, #0ea5e9 0%, #38bdf8 100%);
    color: #fff !important;
    box-shadow: 0 16px 36px #38bdf866;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent 0%,
        rgba(212, 175, 55, 0.3) 25%,
        transparent 50%,
        rgba(212, 175, 55, 0.3) 75%,
        transparent 100%
    );
    border-radius: 30px;
    z-index: -1;
    animation: borderShine 4s linear infinite;
    background-size: 400% 400%;
}

@keyframes borderShine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 400% 50%;
    }
}

/* Hero Text Effects */
.hero-title {
    text-shadow: 
        0 0 20px rgba(212, 175, 55, 0.5),
        0 0 40px rgba(212, 175, 55, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.8);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 
            0 0 20px rgba(212, 175, 55, 0.5),
            0 0 40px rgba(212, 175, 55, 0.3),
            0 4px 8px rgba(0, 0, 0, 0.8);
    }
    100% {
        text-shadow: 
            0 0 30px rgba(212, 175, 55, 0.8),
            0 0 60px rgba(212, 175, 55, 0.5),
            0 4px 12px rgba(0, 0, 0, 0.9);
    }
}

.hero-subtitle {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1.8s ease-out 0.3s both;
}

.hero-tagline {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 2s ease-out 0.6s both;
}

.hero-intro p {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 2.2s ease-out 0.9s both;
}

/* Sticky navbar with shadow */
.navbar {
    background: rgba(255,255,255,0.92);
    box-shadow: 0 4px 24px rgba(56,189,248,0.13), 0 1.5px 8px #bae6fd44;
    padding: 1.15rem 2.2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    border-radius: 0 0 24px 24px;
    backdrop-filter: blur(8px);
    transition: background 0.3s, box-shadow 0.3s;
}

.navbar .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--lux-gold-dark);
    letter-spacing: 1.2px;
    font-weight: 800;
    transition: color 0.2s;
}

.navbar .navbar-brand:hover {
    color: var(--lux-gold);
}

.navbar-nav .nav-link {
    font-size: 1.14rem;
    font-weight: 600;
    color: #222;
    padding: 0.7rem 1.4rem;
    margin: 0 0.3rem;
    border-radius: 18px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    position: relative;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link:focus {
    background: var(--lux-gold-dark);
    color: #fff !important;
    box-shadow: 0 4px 16px #38bdf833;
    transform: scale(1.06);
}

.navbar-nav .nav-link:hover {
    background: var(--lux-gold-light);
    color: #fff !important;
    box-shadow: 0 2px 8px #7dd3fc44;
    transform: translateY(-2px) scale(1.04);
}

@media (max-width: 991px) {
    .navbar {
        padding: 0.7rem 1rem;
        border-radius: 0 0 14px 14px;
    }
    .navbar-nav .nav-link {
        font-size: 1.07rem;
        padding: 0.7rem 1.1rem;
    }
}


/* Gold hover for all interactive elements */
.btn, .btn-book, .nav-link {
    transition: background var(--lux-transition), color var(--lux-transition), box-shadow var(--lux-transition), transform var(--lux-transition);
}
.btn:hover, .btn-book:hover, .nav-link:hover, .nav-link.active {
    background: var(--lux-black);
    color: var(--lux-gold) !important;
    box-shadow: 0 8px 24px #d4af3733;
    transform: translateY(-2px) scale(1.04);
}

/* Luxury testimonial cards */
.testimonial {
    background: var(--lux-white);
    border-radius: var(--lux-radius);
    box-shadow: 0 8px 32px 0 rgba(212,175,55,0.08);
    border-left: 6px solid var(--lux-gold);
    font-style: italic;
    padding: 2rem 1.5rem;
    margin: 28px 0;
    transition: box-shadow var(--lux-transition), transform var(--lux-transition);
}
.testimonial:hover {
    box-shadow: 0 16px 42px #d4af3733, 0 4px 16px #18181822;
    transform: translateY(-8px) scale(1.03);
}

/* Luxury Contact Action Buttons */
.contact-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}
.contact-actions a {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.6em 1.3em;
    border-radius: 40px;
    border: 2px solid var(--lux-gold);
    background: var(--lux-white);
    color: var(--lux-black);
    font-weight: 600;
    font-size: 1.08rem;
    box-shadow: 0 2px 8px #d4af3711;
    text-decoration: none;
    transition: background var(--lux-transition), color var(--lux-transition), box-shadow var(--lux-transition), border var(--lux-transition);
    position: relative;
}
.contact-actions a i {
    font-size: 1.15em;
    color: var(--lux-gold);
    margin-right: 0.3em;
}
.contact-actions a:hover {
    background: var(--lux-gold);
    color: var(--lux-white);
    border-color: var(--lux-black);
    box-shadow: 0 4px 16px #d4af3722;
}
.contact-actions a:hover i {
    color: var(--lux-white);
}

/* Subtle branding details */
.navbar-logo::after {
    content: '★';
    color: var(--lux-gold);
    font-size: 1.2rem;
    margin-left: 8px;
    vertical-align: middle;
    opacity: 0.7;
}

/* Section highlights */
section {
    padding: 70px 0 40px 0;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--lux-white);
    border-radius: var(--lux-radius);
    box-shadow: 0 2px 12px #d4af3711;
    margin-bottom: 2.5rem;
}

/* Parallax and fade-in animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: none; }
}

/* Animated sky blue gradient for headings */
h1, h2, h3.gold-gradient {
    background: linear-gradient(
        90deg, 
        #38bdf8 0%, 
        #7dd3fc 25%,
        #bae6fd 50%,
        #7dd3fc 75%,
        #38bdf8 100%
    );
    background-size: 200% auto;
    color: #181823;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: luxuryGradientFlow 5s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(56, 189, 248, 0.4));
}

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

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

/* Button shimmer micro-interaction */
.btn, .btn-book {
    position: relative;
    overflow: hidden;
}
.btn::after, .btn-book::after {
    content: '';
    position: absolute;
    left: -75%;
    top: 0;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.18);
    transform: skewX(-20deg);
    transition: left 0.6s cubic-bezier(.23,1.12,.32,1);
}
.btn:hover::after, .btn-book:hover::after {
    left: 120%;
}

/* Carousel styles for testimonials */
.testimonials-carousel {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
}
.testimonial {
    min-width: 330px;
    scroll-snap-align: start;
    transition: box-shadow var(--lux-transition), transform var(--lux-transition);
}

/* Animated hero/video background */
.hero.animated-bg::before {
    background: linear-gradient(120deg, rgba(212,175,55,0.10) 0%, rgba(24,24,24,0.55) 100%);
    animation: heroBgAnim 8s infinite alternate;
}
@keyframes heroBgAnim {
    0% { filter: blur(0px); opacity: 0.7; }
    100% { filter: blur(8px); opacity: 1; }
}

/* Premium font for headings */
h1, h2, h3, .navbar-logo {
    font-family: 'Playfair Display', 'Montserrat', serif;
}

/* ============================================
   LUXURY TESTIMONIALS CAROUSEL STYLES
   ============================================ */

.testimonials-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 50px 0 30px 0 !important;
    overflow: hidden;
}

.testimonials-carousel-wrapper {
    position: relative;
    padding: 10px 0;
}

.testimonials-swiper {
    padding: 10px 0 40px 0;
    overflow: visible;
}

.testimonials-swiper .swiper-wrapper {
    align-items: stretch;
}

.swiper-slide {
    width: auto;
    height: auto;
}

/* Luxury Testimonial Card with Glassmorphism */
.testimonial-card-luxury {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 2rem 2rem;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15), 
                0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: visible;
    height: auto;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--lux-gold), #fffbe6, var(--lux-gold));
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

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

.testimonial-card-luxury:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25), 
                0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--lux-gold);
}

/* Testimonial Header */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

/* Guest Avatar with Ring Animation */
.guest-avatar {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.avatar-initials {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, var(--lux-gold) 0%, #f4d03f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.4rem;
}

.avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

/* Guest Info */
.guest-info {
    flex: 1;
}

.guest-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--lux-black);
    margin: 0 0 0.3rem 0;
    line-height: 1.3;
}

.guest-location {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    line-height: 1.3;
}

.guest-location i {
    color: var(--lux-gold);
    font-size: 0.85rem;
}

/* Rating Stars - Light Sky Blue Color */
.rating-stars {
    color: #7dd3fc !important;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    filter: drop-shadow(0 3px 6px rgba(125, 211, 252, 0.5));
}

.rating-stars i {
    color: #7dd3fc !important;
}

.rating-stars i {
    color: #7dd3fc !important;
    transition: transform 0.3s;
}

.testimonial-card-luxury:hover .rating-stars i {
    animation: star-bounce 0.6s ease-in-out;
    color: #7dd3fc !important;
}

/* Force light sky blue color on all star icons */
.fa-star {
    color: #7dd3fc !important;
}

.fas.fa-star,
.far.fa-star {
    color: #7dd3fc !important;
}

@keyframes star-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Testimonial Text */
.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    margin: 0;
    flex: 1;
    position: relative;
    z-index: 1;
    overflow: visible;
    display: block;
    font-weight: 400;
}

/* Quote Icon */
.testimonial-quote-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 2rem;
    color: var(--lux-gold);
    opacity: 0.08;
    z-index: 0;
    transition: all 0.4s;
}

.testimonial-card-luxury:hover .testimonial-quote-icon {
    opacity: 0.15;
    transform: scale(1.1) rotate(-5deg);
}

/* Review Actions (Delete Button) */
.review-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(56, 189, 248, 0.15);
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

.delete-review-btn {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 2px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.delete-review-btn:hover {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.delete-review-btn i {
    font-size: 0.85rem;
}

/* Swiper Navigation Buttons - Luxury Style */
.luxury-nav-btn {
    width: 55px !important;
    height: 55px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-radius: 50% !important;
    border: 2px solid var(--lux-gold) !important;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

.luxury-nav-btn::after {
    font-size: 1.2rem !important;
    color: var(--lux-gold) !important;
    font-weight: 900 !important;
}

.luxury-nav-btn:hover {
    background: var(--lux-gold) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4) !important;
}

.luxury-nav-btn:hover::after {
    color: var(--lux-white) !important;
}

/* Swiper Pagination - Luxury Style */
.luxury-pagination {
    bottom: 10px !important;
}

.luxury-pagination .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: #ccc !important;
    opacity: 1 !important;
    transition: all 0.3s !important;
}

.luxury-pagination .swiper-pagination-bullet-active {
    background: var(--lux-gold) !important;
    width: 32px !important;
    border-radius: 6px !important;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4) !important;
}

/* New Review Animation */
@keyframes slideInScale {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.new-review-animation {
    animation: slideInScale 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ============================================
   LUXURY REVIEW FORM STYLES
   ============================================ */

.luxury-review-form {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.98) 100%);
    border-radius: 32px;
    padding: 3.5rem;
    box-shadow: 0 15px 60px rgba(212, 175, 55, 0.18), 
                0 8px 24px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.25);
    position: relative;
    overflow: hidden;
}

.luxury-review-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--lux-gold), #f4d03f, #fffbe6, #f4d03f, var(--lux-gold));
    background-size: 300% 100%;
    animation: shimmer 4s infinite linear;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.luxury-review-form::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    color: var(--lux-black);
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, var(--lux-gold) 0%, #f4d03f 50%, var(--lux-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.1);
    position: relative;
}

.form-title::after {
    content: '✨';
    position: absolute;
    right: -35px;
    top: 0;
    font-size: 1.5rem;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.form-subtitle {
    color: #777;
    font-size: 1.05rem;
    margin: 0 0 1rem 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.review-notice {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1) 0%, rgba(186, 230, 253, 0.1) 100%);
    border: 2px solid rgba(56, 189, 248, 0.3);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.review-notice i {
    color: var(--lux-gold);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.review-notice span {
    color: #555;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}

/* Luxury Input Group */
.luxury-input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lux-gold);
    font-size: 1.2rem;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.2));
}

.luxury-textarea + .input-icon {
    top: 25px;
    transform: none;
}

.luxury-input {
    width: 100%;
    padding: 1.4rem 1.5rem 1.4rem 3.5rem;
    border: 3px solid rgba(212, 175, 55, 0.25);
    border-radius: 20px;
    font-size: 1.15rem;
    transition: all 0.2s ease-out;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    font-weight: 500;
}

.luxury-input:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.luxury-input:focus {
    outline: none;
    border-color: var(--lux-gold);
    background: var(--lux-white);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2), 
                0 0 0 4px rgba(212, 175, 55, 0.08);
    transform: translateY(-3px);
}

.luxury-input:focus + .input-icon {
    color: var(--lux-gold);
    transform: translateY(-50%) scale(1.15);
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

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

/* Rating Section */
.rating-section {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(244, 208, 63, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.25);
    box-shadow: inset 0 2px 8px rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.rating-section::before {
    content: '⭐';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 2rem;
    opacity: 0.15;
}

.rating-section::after {
    content: '⭐';
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 2rem;
    opacity: 0.15;
}

.rating-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--lux-black);
    margin-bottom: 1.3rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

.luxury-star-rating {
    display: inline-flex;
    gap: 0.6rem;
    font-size: 2.2rem;
    cursor: pointer;
}

.luxury-star-rating i {
    font-size: 3rem;
    color: #e0e0e0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    margin: 0 0.4rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.luxury-star-rating i:hover {
    transform: scale(1.3) rotate(-12deg);
    color: #7dd3fc;
}

.luxury-star-rating i.far:hover {
    color: #7dd3fc !important;
}

.luxury-star-rating i.fas {
    color: #7dd3fc !important;
    filter: drop-shadow(0 4px 10px rgba(125, 211, 252, 0.6));
    animation: starPop 0.4s ease-out;
}

.luxury-star-rating i.fas:hover {
    transform: scale(1.4) rotate(-15deg);
}

@keyframes starPop {
    0% { transform: scale(0.8); }
    50% { transform: scale(1.3) rotate(-15deg); }
    100% { transform: scale(1); }
}

/* Luxury Submit Button */
.btn-luxury-submit {
    background: linear-gradient(135deg, var(--lux-gold) 0%, #f4d03f 50%, var(--lux-gold) 100%);
    background-size: 200% 100%;
    color: var(--lux-white);
    border: none;
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.35),
                0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease-out;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.btn-luxury-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

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

.btn-luxury-submit:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.5),
                0 8px 20px rgba(0, 0, 0, 0.2);
    background-position: 100% 0;
}

.btn-luxury-submit:active {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-icon {
    font-size: 1rem;
    transition: transform 0.3s;
}

.btn-luxury-submit:hover .btn-icon {
    transform: translateX(5px);
}

/* Luxury Alert */
.luxury-alert {
    border-radius: 16px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    animation: slideInScale 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.luxury-alert i {
    margin-right: 0.5rem;
}

/* ============================================
   LUXURY GALLERY ENHANCEMENTS
   ============================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 1rem 0;
    align-items: start;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Reduce padding on mobile */
    section {
        padding: 40px 0 20px 0 !important;
    }
    
    .container {
        padding: 0 15px !important;
    }
}

.gallery-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.12);
    transition: all 0.25s ease-out;
    cursor: pointer;
    border: 2px solid transparent;
    display: block;
    /* Maximum Image Quality - Like Reality */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    -ms-interpolation-mode: bicubic;
    filter: brightness(1.08) contrast(1.12) saturate(1.08) sharpen(0.5);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0) scale(1.001);
    -webkit-transform: translateZ(0) scale(1.001);
    /* Ultra Sharp */
    -webkit-font-smoothing: subpixel-antialiased;
    image-orientation: from-image;
}

/* Ensure all images same height on mobile */
@media (max-width: 768px) {
    .gallery-img {
        height: 200px;
    }
}

.gallery-img:hover {
    transform: translateY(-10px) scale(1.03) translateZ(0);
    box-shadow: 0 16px 48px rgba(212, 175, 55, 0.25);
    border-color: var(--lux-gold);
    filter: brightness(1.05);
}

/* 8K Image Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .gallery-img {
        image-rendering: -webkit-optimize-contrast;
    }
}

@media (-webkit-min-device-pixel-ratio: 3), (min-resolution: 288dpi) {
    .gallery-img {
        image-rendering: auto;
    }
}

/* GLightbox Custom Styles - Full Screen Images */
.glightbox-container {
    width: 100vw !important;
    height: 100vh !important;
}

.glightbox-clean .gslide-image img {
    max-width: 100vw !important;
    max-height: 100vh !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    /* Maximum Reality Image Rendering */
    image-rendering: -webkit-optimize-contrast !important;
    image-rendering: high-quality !important;
    -ms-interpolation-mode: bicubic !important;
    /* Ultra Clarity - Like Real Life */
    filter: brightness(1.1) contrast(1.15) saturate(1.1) !important;
    -webkit-filter: brightness(1.1) contrast(1.15) saturate(1.1) !important;
    /* Perfect Anti-aliasing */
    -webkit-font-smoothing: subpixel-antialiased !important;
    -moz-osx-font-smoothing: auto !important;
    /* GPU Acceleration */
    transform: translate3d(0, 0, 0) !important;
    -webkit-transform: translate3d(0, 0, 0) !important;
    will-change: transform !important;
    /* Preserve Quality */
    image-orientation: from-image !important;
}

.glightbox-clean .gslide-media {
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    background: #000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    /* Smooth rendering */
    -webkit-font-smoothing: subpixel-antialiased !important;
    text-rendering: optimizeLegibility !important;
}

/* Force high quality on Retina displays */
@media only screen and (-webkit-min-device-pixel-ratio: 2),
       only screen and (min-resolution: 192dpi),
       only screen and (min-resolution: 2dppx) {
    .glightbox-clean .gslide-image img {
        image-rendering: auto !important;
    }
}

/* 4K Display Support */
@media only screen and (-webkit-min-device-pixel-ratio: 3),
       only screen and (min-resolution: 288dpi),
       only screen and (min-resolution: 3dppx) {
    .glightbox-clean .gslide-image img {
        image-rendering: auto !important;
    }
}

.glightbox-clean .gslide-inner-content {
    width: 100% !important;
    height: 100% !important;
}

.glightbox-clean .gslide-description {
    background: rgba(0, 0, 0, 0.85) !important;
    color: white !important;
    padding: 15px 20px !important;
    font-size: 16px !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
}

/* Hide scrollbars in lightbox */
.glightbox-open {
    overflow: hidden !important;
}

/* Lightbox Controls - Larger and More Visible */
.glightbox-button-hidden {
    display: none !important;
}

.gclose, .gnext, .gprev {
    width: 50px !important;
    height: 50px !important;
    background: rgba(0, 0, 0, 0.7) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s !important;
}

.gclose:hover, .gnext:hover, .gprev:hover {
    background: rgba(56, 189, 248, 0.9) !important;
    transform: scale(1.1) !important;
}

/* Gallery Section Enhancements */
#gallery {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

#gallery .container {
    max-width: 1400px;
}

/* Gallery Image Overlay Effect */
.gallery-grid a {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    background: #f0f0f0;
}

.gallery-grid a::before {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 3rem;
    color: var(--lux-white);
    z-index: 10;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.gallery-grid a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 20px;
}

.gallery-grid a:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-grid a:hover::after {
    opacity: 1;
}

/* Floating WhatsApp Button Enhancement */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    animation: float-pulse 3s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 36px rgba(37, 211, 102, 0.6);
    color: white;
}

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

/* Footer Enhancement */
footer {
    background: linear-gradient(135deg, var(--lux-black) 0%, #2a2a2a 100%);
    color: var(--lux-white);
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    border-top: 3px solid var(--lux-gold);
    font-size: 1rem;
}

/* Amenity Icons Enhancement with 3D Effects */
.amenity-icon {
    font-size: 3.5rem;
    color: var(--lux-gold);
    margin-bottom: 1rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    filter: drop-shadow(0 8px 16px rgba(212, 175, 55, 0.3));
    display: inline-block;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.amenity-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
}

.amenity-icon:hover {
    transform: scale(1.3) rotateY(360deg) translateZ(50px);
    filter: drop-shadow(0 12px 24px rgba(212, 175, 55, 0.6));
    animation: icon3DFloat 0.8s ease-in-out;
}

@keyframes icon3DFloat {
    0%, 100% { 
        transform: scale(1.3) rotateY(360deg) translateZ(50px);
    }
    50% { 
        transform: scale(1.4) rotateY(180deg) translateZ(70px);
    }
}

.amenity-icon:hover::before {
    opacity: 1;
    animation: rippleOut 0.8s ease-out;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1.2) rotate(10deg); }
    50% { transform: scale(1.3) rotate(15deg); }
}

@keyframes rippleOut {
    0% {
        width: 80px;
        height: 80px;
        opacity: 0.8;
    }
    100% {
        width: 120px;
        height: 120px;
        opacity: 0;
    }
}

/* Pricing Card */
.pricing-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    border: 2px solid rgba(56, 189, 248, 0.2);
    box-shadow: 0 15px 50px rgba(56, 189, 248, 0.15);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--lux-gold);
    box-shadow: 0 25px 70px rgba(56, 189, 248, 0.25);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--lux-gold) 0%, var(--lux-gold-light) 100%);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(56, 189, 248, 0.4);
}

.pricing-badge.popular {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    animation: pulse 2s infinite;
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    color: var(--lux-black);
}

.pricing-card .lead {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    margin-bottom: 2rem;
}

.pricing-card ul li {
    padding: 0.8rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid #eee;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

/* Luxury Review Form - Ultra Premium */
.luxury-review-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 252, 252, 0.95) 100%);
    backdrop-filter: blur(30px);
    border-radius: 32px;
    padding: 4rem 3.5rem;
    box-shadow: 
        0 25px 70px rgba(212, 175, 55, 0.3),
        0 0 0 1px rgba(212, 175, 55, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.9);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.luxury-review-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, 
        var(--lux-gold) 0%, 
        #f4d03f 25%,
        var(--lux-gold) 50%,
        #f4d03f 75%,
        var(--lux-gold) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
    border-color: var(--lux-gold);
}

.trust-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    margin: 0.3rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    color: var(--lux-black);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.trust-badge:hover {
    background: var(--lux-gold);
    color: var(--lux-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.trust-badge i {
    margin-right: 0.4rem;
}

/* Contact Cards */
.contact-card {
    display: block;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--lux-gold), var(--lux-gold-light));
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    border-color: var(--lux-gold);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
    transition: all 0.3s;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(10deg);
}

.contact-card h4 {
    font-size: 1.8rem;
    color: var(--lux-black);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.contact-card p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
}

/* Contact Buttons Enhancement */
.contact-buttons {
    display: flex;
    gap: 1rem;
}

.contact-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--lux-gold);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-whatsapp .contact-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-email .contact-icon {
    background: linear-gradient(135deg, #EA4335, #c5221f);
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--lux-gold) 0%, var(--lux-gold-light) 100%);
    z-index: 10000;
    transition: width 0.1s ease-out;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-container {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.toast {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    min-width: 300px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-left: 4px solid var(--lux-gold);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideInRight 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.toast::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--lux-gold);
    animation: toastProgress 3s linear;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toastProgress {
    from { width: 100%; }
    to { width: 0%; }
}

.toast-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.toast-success { border-left-color: #4CAF50; }
.toast-success .toast-icon { color: #4CAF50; }

.toast-error { border-left-color: #f44336; }
.toast-error .toast-icon { color: #f44336; }

.toast-info { border-left-color: var(--lux-gold); }
.toast-info .toast-icon { color: var(--lux-gold); }

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--lux-black);
}

.toast-message {
    font-size: 0.9rem;
    color: #666;
}

/* ============================================
   SOCIAL PROOF NOTIFICATION
   ============================================ */
.social-proof {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9997;
    transform: translateX(-400px);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.social-proof.show {
    transform: translateX(0);
}

.social-proof-content {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 280px;
}

.social-proof-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--lux-gold) 0%, var(--lux-gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

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

.social-proof-text {
    display: flex;
    flex-direction: column;
}

.social-proof-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lux-black);
    margin-bottom: 0.2rem;
}

.social-proof-message {
    font-size: 0.85rem;
    color: #666;
}

/* ============================================
   BUTTON RIPPLE EFFECT
   ============================================ */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

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

.btn, .btn-book, .btn-luxury-submit, .btn-contact {
    position: relative;
    overflow: hidden;
}

/* ============================================
   LOADING SPINNER (Luxury)
   ============================================ */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--lux-white) 0%, var(--lux-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.luxury-spinner {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(212, 175, 55, 0.1);
    border-top: 4px solid var(--lux-gold);
    border-radius: 50%;
    animation: spin 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
    margin: 0 auto var(--spacing-md);
    position: relative;
}

.luxury-spinner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-bottom: 3px solid var(--lux-gold-light);
    border-radius: 50%;
    animation: spin 1.5s linear infinite reverse;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--lux-gold);
    font-weight: 600;
    letter-spacing: 2px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--lux-gold) 0%, #f4d03f 100%);
    border: none;
    border-radius: 50%;
    color: var(--lux-white);
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 36px rgba(212, 175, 55, 0.6);
}

/* ============================================
   DARK MODE TOGGLE
   ============================================ */
.dark-mode-toggle {
    position: fixed;
    top: 100px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--lux-gold);
    border-radius: 50%;
    color: var(--lux-gold);
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.dark-mode-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
}

/* Dark Mode Styles */
body.dark-mode {
    --lux-black: #f5f5f5;
    --lux-white: #1a1a1a;
    --lux-gray: #2a2a2a;
    background: #1a1a1a;
    color: #f5f5f5;
}

body.dark-mode .navbar,
body.dark-mode section,
body.dark-mode .testimonial-card-luxury,
body.dark-mode .luxury-review-form,
body.dark-mode .pricing-card {
    background: rgba(42, 42, 42, 0.95);
    color: #f5f5f5;
}

body.dark-mode .nav-link,
body.dark-mode .guest-name,
body.dark-mode .form-title,
body.dark-mode h1, body.dark-mode h2, body.dark-mode h3,
body.dark-mode .testimonial-text {
    color: #f5f5f5 !important;
}

body.dark-mode .luxury-input {
    background: rgba(60, 60, 60, 0.9);
    color: #f5f5f5;
    border-color: #444;
}

body.dark-mode .dark-mode-toggle {
    background: rgba(42, 42, 42, 0.95);
}

.calculator-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.calculator-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--lux-black);
    background: linear-gradient(90deg, var(--lux-gold), #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.calculator-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.calc-input-group {
    position: relative;
}

.calc-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    color: var(--lux-black);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calc-label i {
    color: var(--lux-gold);
    font-size: 1.3rem;
}

.calc-input {
    width: 100%;
    padding: 1.3rem 1.5rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    font-size: 1.15rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-weight: 500;
}

.calc-input:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.1);
}

.calc-input:focus {
    outline: none;
    border-color: var(--lux-gold);
    box-shadow: 
        0 0 0 4px rgba(212, 175, 55, 0.15),
        0 8px 20px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.price-result {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 208, 63, 0.1) 100%);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--lux-gold);
}

.price-breakdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.3);
}

.price-label {
    font-size: 1rem;
    color: #666;
}

.price-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lux-gold);
}

.total-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lux-gold);
    margin-top: 1rem;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.feature-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid rgba(56, 189, 248, 0.2);
    box-shadow: 0 15px 50px rgba(56, 189, 248, 0.12);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--lux-gold), var(--lux-gold-light));
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: var(--lux-gold);
    box-shadow: 0 25px 70px rgba(56, 189, 248, 0.25);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--lux-gold) 0%, var(--lux-gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.4);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(56, 189, 248, 0.6);
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lux-black);
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
}

.feature-card p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1) 0%, rgba(186, 230, 253, 0.1) 100%);
    border: 2px solid rgba(56, 189, 248, 0.3);
    color: var(--lux-gold);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ============================================
   STATISTICS SECTION
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: var(--lux-white);
    padding: 60px 0 !important;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    border: 2px solid rgba(56, 189, 248, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--lux-gold);
    box-shadow: 0 20px 60px rgba(56, 189, 248, 0.3);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--lux-gold) 0%, var(--lux-gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 24px rgba(56, 189, 248, 0.4);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--lux-gold), var(--lux-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1.1rem;
    color: #ccc;
    font-weight: 500;
}

/* ============================================
   VIRTUAL TOUR SECTION
   ============================================ */
.virtual-tour-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.virtual-tour-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.tour-viewer {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1) 0%, rgba(186, 230, 253, 0.1) 100%);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    border: 3px solid rgba(56, 189, 248, 0.2);
    box-shadow: 0 20px 60px rgba(56, 189, 248, 0.15);
    position: relative;
    overflow: hidden;
}

.tour-viewer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.tour-placeholder {
    position: relative;
    z-index: 1;
}

.tour-placeholder i {
    font-size: 6rem;
    color: var(--lux-gold);
    margin-bottom: 1.5rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

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

.tour-placeholder h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--lux-black);
}

.tour-placeholder p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.tour-hotspots {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hotspot-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 2px solid rgba(56, 189, 248, 0.2);
    box-shadow: 0 8px 24px rgba(56, 189, 248, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.hotspot-item:hover {
    transform: translateX(10px);
    border-color: var(--lux-gold);
    box-shadow: 0 12px 36px rgba(56, 189, 248, 0.2);
}

.hotspot-item i {
    font-size: 2rem;
    color: var(--lux-gold);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1) 0%, rgba(186, 230, 253, 0.1) 100%);
    border-radius: 12px;
}

.hotspot-item span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--lux-black);
}

/* ============================================
   SPECIAL OFFERS SECTION
   ============================================ */
.special-offers-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: var(--lux-white);
}

.special-offers-section h2,
.special-offers-section .text-muted {
    color: var(--lux-white) !important;
}

.offer-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    border: 2px solid rgba(56, 189, 248, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--lux-gold), var(--lux-gold-light));
}

.offer-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--lux-gold);
    box-shadow: 0 30px 80px rgba(56, 189, 248, 0.3);
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--lux-gold) 0%, #f4d03f 100%);
    color: var(--lux-white);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(56, 189, 248, 0.4);
}

.offer-badge.popular {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    animation: pulse 2s infinite;
}

.offer-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--lux-gold) 0%, var(--lux-gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 24px rgba(56, 189, 248, 0.4);
}

.offer-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--lux-white);
    text-align: center;
}

.offer-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.old-price {
    display: block;
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.new-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--lux-gold), var(--lux-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-description {
    text-align: center;
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.offer-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex: 1;
}

.offer-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ddd;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.offer-features li:last-child {
    border-bottom: none;
}

.offer-features i {
    color: var(--lux-gold);
    font-size: 1.1rem;
}

.offer-card .btn-book {
    margin-top: auto;
}

/* ============================================
   PRICE COMPARISON SECTION
   ============================================ */
.price-comparison {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.05) 0%, rgba(186, 230, 253, 0.05) 100%);
    border-radius: 24px;
    padding: 3rem;
    margin-top: 3rem;
    border: 2px solid rgba(56, 189, 248, 0.2);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 1rem;
}

.comparison-table th {
    background: linear-gradient(135deg, var(--lux-gold) 0%, var(--lux-gold-light) 100%);
    color: white;
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.comparison-table th:first-child {
    border-radius: 16px 0 0 16px;
}

.comparison-table th:last-child {
    border-radius: 0 16px 16px 0;
}

.comparison-table td {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.comparison-table td:first-child {
    border-left: 1px solid #eee;
    border-radius: 16px 0 0 16px;
    font-weight: 600;
}

.comparison-table td:last-child {
    border-right: 1px solid #eee;
    border-radius: 0 16px 16px 0;
}

.comparison-table .highlight {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1) 0%, rgba(186, 230, 253, 0.1) 100%);
    font-weight: 700;
    color: var(--lux-gold);
}

/* ============================================
   MOBILE OPTIMIZATION - COMPACT LAYOUT
   ============================================ */
@media (max-width: 768px) {
    /* Reduce Hero Section Height */
    .hero {
        min-height: 70vh !important;
    }
    
    .hero-content {
        padding: 2rem 1.5rem !important;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.3rem !important;
    }
    
    .hero-intro p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    
    /* Compact Sections */
    h2 {
        font-size: 1.8rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    h3 {
        font-size: 1.4rem !important;
    }
    
    p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 0.8rem !important;
    }
    
    /* Compact Cards */
    .feature-card,
    .pricing-card {
        padding: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Compact Testimonials */
    .testimonial-card-luxury {
        padding: 1.2rem !important;
        min-height: auto;
        height: auto;
    }
    
    .guest-avatar,
    .avatar-initials {
        width: 50px;
        height: 50px;
    }
    
    .avatar-ring {
        width: 58px;
        height: 58px;
    }
    
    .guest-name {
        font-size: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .rating-stars {
        font-size: 0.85rem;
    }
    
    .luxury-review-form {
        padding: 2.5rem 1.8rem;
        border-radius: 24px;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .form-title::after {
        right: -25px;
        font-size: 1.2rem;
    }
    
    .luxury-star-rating {
        font-size: 1.8rem;
        gap: 0.4rem;
    }
    
    .rating-section {
        padding: 1.5rem;
    }
    
    .btn-luxury-submit {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
    
    .luxury-nav-btn {
        width: 45px !important;
        height: 45px !important;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gallery-img {
        height: 180px;
    }
    
    /* Compact Amenities */
    .amenity-icon {
        font-size: 2.5rem !important;
    }
    
    /* Compact Buttons */
    .btn, .btn-book {
        padding: 0.8rem 1.5rem !important;
        font-size: 0.95rem !important;
    }
    
    /* Hide some text on mobile for shorter page */
    .hero-intro p:nth-child(n+3) {
        display: none !important;
    }
    
    /* Compact Review Form */
    .luxury-review-form {
        padding: 2rem 1.5rem !important;
    }
    
    .luxury-input {
        padding: 1rem 1rem 1rem 3rem !important;
        font-size: 1rem !important;
    }
    
    /* Reduce spacing */
    .row.g-4 {
        gap: 1rem !important;
    }
    
    .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    .mt-5 {
        margin-top: 2rem !important;
    }
    
    .floating-whatsapp {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-to-top {
        width: 50px;
        height: 50px;
        bottom: 85px;
        right: 20px;
    }
    
    .dark-mode-toggle {
        width: 50px;
        height: 50px;
        top: 80px;
        right: 20px;
    }
    
    .calculator-inputs {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .total-price {
        font-size: 2rem;
    }
    
    .virtual-tour-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tour-viewer {
        padding: 2.5rem 1.5rem;
    }
    
    .tour-placeholder i {
        font-size: 4rem;
    }
    
    .tour-placeholder h3 {
        font-size: 1.5rem;
    }
    
    .offer-card {
        margin-bottom: 1.5rem;
    }
    
    .offer-card h3 {
        font-size: 1.5rem;
    }
    
    .new-price {
        font-size: 2rem;
    }
    
    .offer-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
}

