:root {
    --primary: #8B4513;
    --primary-dark: #654321;
    --primary-light: #A0522D;
    --secondary: #D4AF37;
    --secondary-dark: #B8961F;
    --secondary-light: #F4E19C;
    --accent: #2E8B57;
    --accent-light: #3CB371;
    
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --text-muted: #95a5a6;
    
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-cream: #faf8f5;
    --bg-dark: #1a252f;
    
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-md: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 25px 50px rgba(0,0,0,0.25);
    
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(139,69,19,0.9) 0%, rgba(212,175,55,0.7) 100%);
    
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 25px;
    --radius-xl: 50px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #8B4513 0%, 
        #A0522D 25%, 
        #D4AF37 50%, 
        #A0522D 75%, 
        #8B4513 100%);
    background-size: 400% 400%;
    animation: gradientShift 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.loading-screen.fade-out {
    opacity: 0;
    transform: scale(1.1);
}

.loading-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    max-width: 500px;
    padding: 2rem;
}

.loading-logo-container {
    position: relative;
    margin-bottom: 2rem;
}

.loading-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: logoEntrance 2s ease-out;
}

.logo-mountain {
    width: 120px;
    height: 60px;
    margin-bottom: 1rem;
}

.mountain-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.mountain-path {
    fill: none;
    stroke: white;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawMountain 3s ease-in-out infinite;
}

.mountain-peak {
    fill: rgba(255,255,255,0.8);
    animation: peakGlow 2s ease-in-out infinite alternate;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.logo-line-1 {
    display: block;
    font-size: 3.5rem;
    letter-spacing: 8px;
    margin-bottom: 0.2rem;
    animation: textSlideIn 1s ease-out 0.5s both;
}

.logo-line-2 {
    display: block;
    font-size: 2.8rem;
    letter-spacing: 4px;
    opacity: 0.9;
    animation: textSlideIn 1s ease-out 0.8s both;
}

.loading-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    animation: particleFloat 4s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 3s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 0.5s;
    animation-duration: 4s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 30%;
    animation-delay: 1s;
    animation-duration: 3.5s;
}

.particle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 1.5s;
    animation-duration: 4.5s;
}

.particle:nth-child(5) {
    top: 70%;
    left: 60%;
    animation-delay: 2s;
    animation-duration: 3.8s;
}

.loading-tagline {
    margin-bottom: 3rem;
    position: relative;
}

.tagline-text {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s both;
    letter-spacing: 1px;
}

.tagline-underline {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.8) 20%, 
        rgba(255,255,255,1) 50%, 
        rgba(255,255,255,0.8) 80%, 
        transparent 100%);
    margin: 0.8rem auto 0;
    animation: underlineExpand 2s ease-out 1.5s both;
}

.loading-progress-container {
    margin-bottom: 1.5rem;
    position: relative;
}

.progress-track {
    width: 300px;
    height: 6px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0.8) 0%, 
        rgba(255,255,255,1) 50%, 
        rgba(255,255,255,0.8) 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
    position: relative;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.progress-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.3) 50%, 
        transparent 100%);
    border-radius: 12px;
    opacity: 0;
    animation: progressGlow 2s ease-in-out infinite;
}

.progress-percentage {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
}

.loading-status {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 400;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.loading-bg-effects {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(255,255,255,0.1) 0%, 
        rgba(255,255,255,0.05) 40%, 
        transparent 70%);
    animation: circleFloat 8s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes logoEntrance {
    0% { 
        opacity: 0; 
        transform: translateY(30px) scale(0.9); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

@keyframes drawMountain {
    0%, 100% { stroke-dashoffset: 300; }
    50% { stroke-dashoffset: 0; }
}

@keyframes peakGlow {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

@keyframes textSlideIn {
    0% { 
        opacity: 0; 
        transform: translateX(-20px); 
    }
    100% { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
        opacity: 0.6; 
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
        opacity: 1; 
    }
}

@keyframes fadeInUp {
    0% { 
        opacity: 0; 
        transform: translateY(15px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes underlineExpand {
    0% { width: 0; }
    100% { width: 120px; }
}

@keyframes progressGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

@keyframes circleFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1); 
        opacity: 0.3; 
    }
    50% { 
        transform: translate(20px, -15px) scale(1.1); 
        opacity: 0.6; 
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    z-index: 10;
}

.logo-image {
    height: 60px;
    background: var(--primary-light);
    border-radius: 15px;
    margin-top: 5px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: 
        sepia(100%) 
        saturate(200%) 
        hue-rotate(42deg) 
        brightness(1.1);
}

.logo:hover .logo-image {
    transform: scale(1.05);
    filter: sepia(100%) 
        saturate(200%) 
        hue-rotate(25deg) 
        brightness(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-self: end;
    flex-shrink: 0;
}

.btn-book-now {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-book-now::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-book-now:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-book-now:hover::before {
    left: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: var(--transition);
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    filter: brightness(1.1) contrast(1.05);
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139,69,19,0.2) 0%, rgba(212,175,55,0.15) 50%, rgba(139,69,19,0.25) 100%);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 3rem;
    z-index: 3;
    pointer-events: none;
}

.slider-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1000px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: #ffd700;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.7rem;
    backdrop-filter: blur(10px);
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-line-1 {
   font-family: 'Playfair Display', serif;
   display: block;
   font-size: clamp(3rem, 6vw, 5rem);
   font-weight: 700;
   letter-spacing: 3px;
   text-shadow: 2px 2px 8px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.5);
   background-clip: text;
   filter: contrast(1.2) brightness(1.1);
}

.title-line-2 {
   display: block;
   font-size: clamp(1.5rem, 3vw, 2.5rem);
   font-weight: 400;
   color: #F4E19C;
   margin-top: 0.5rem;
   text-shadow: 1px 1px 6px rgba(0,0,0,0.8), 0 0 15px rgba(0,0,0,0.4);
   filter: contrast(1.1) brightness(1.05);
}

.hero-description {
   font-size: 1.2rem;
   line-height: 1.8;
   margin-bottom: 3rem;
   text-shadow: 1px 1px 6px rgba(0,0,0,0.8), 0 0 10px rgba(0,0,0,0.4);
   color: #ffffff;
   filter: contrast(1.1) brightness(1.02);
}

.quick-booking {
   display: flex;
   gap: 1rem;
   background: rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(20px);
   padding: 1.5rem;
   border-radius: var(--radius-md);
   border: 1px solid rgba(255, 255, 255, 0.2);
   flex-wrap: wrap;
   justify-content: center;
   margin-bottom: 5rem;
}

.booking-item {
   flex: 1;
   min-width: 150px;
}

.booking-item label {
   display: block;
   font-size: 0.85rem;
   margin-bottom: 0.5rem;
   opacity: 0.9;
}

.booking-item input,
.booking-item select {
   width: 100%;
   padding: 0.75rem;
   background: rgba(255, 255, 255, 0.9);
   border: 1px solid rgba(255, 255, 255, 0.3);
   border-radius: var(--radius-sm);
   color: var(--text-dark);
   font-size: 0.95rem;
   transition: var(--transition);
}

.booking-item input:focus,
.booking-item select:focus {
   outline: none;
   background: white;
   border-color: var(--secondary);
   box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.btn-search-rooms {
   background: var(--gradient-secondary);
   color: var(--text-dark);
   border: none;
   padding: 0.75rem 2rem;
   border-radius: var(--radius-lg);
   font-weight: 600;
   cursor: pointer;
   display: flex;
   align-items: center;
   gap: 0.5rem;
   transition: var(--transition);
   align-self: flex-end;
}

.btn-search-rooms:hover {
   transform: translateY(-2px);
   box-shadow: var(--shadow-lg);
}

.hero-testimonials {
   position: absolute;
   bottom: 50px;
   left: 50%;
   transform: translateX(-50%);
   width: 100%;
   max-width: 600px;
   padding: 0 2rem;
}

.testimonial-carousel {
   position: relative;
   height: 120px;
}

.testimonial-item {
   position: absolute;
   width: 100%;
   text-align: center;
   color: white;
   opacity: 0;
   transition: opacity 0.5s ease;
}

.testimonial-item.active {
   opacity: 1;
}

.testimonial-item .stars {
   color: var(--secondary);
   margin-bottom: 0.5rem;
}

.testimonial-item p {
   font-style: italic;
   margin-bottom: 0.5rem;
   text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.testimonial-item cite {
   font-size: 0.9rem;
   opacity: 0.8;
}

.scroll-indicator {
   position: absolute;
   bottom: 5px;
   left: 50%;
   transform: translateX(-50%);
   text-align: center;
   color: white;
   font-size: 0.9rem;
   opacity: 0.8;
   animation: bounce 2s infinite;
}

.scroll-indicator i {
   display: block;
   margin-top: 0.5rem;
   font-size: 1.2rem;
}

@keyframes bounce {
   0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
   40% { transform: translateX(-50%) translateY(-10px); }
   60% { transform: translateX(-50%) translateY(-5px); }
}

.section {
   padding: 100px 0;
}

.container {
   max-width: 1400px;
   margin: 0 auto;
   padding: 0 2rem;
}

.section-header {
   text-align: center;
   margin-bottom: 4rem;
}

.section-badge {
   display: inline-block;
   background: var(--gradient-secondary);
   color: var(--text-dark);
   padding: 0.4rem 1.2rem;
   border-radius: var(--radius-xl);
   font-size: 0.85rem;
   font-weight: 600;
   margin-bottom: 1rem;
}

.section-title {
   color: var(--primary);
   margin-bottom: 1rem;
}

.section-subtitle {
   font-size: 1.1rem;
   color: var(--text-light);
   max-width: 700px;
   margin: 0 auto;
   line-height: 1.7;
}

.about-section {
   background: var(--bg-cream);
}

.about-content {
   display: grid;
   grid-template-columns: 1fr;
   gap: 4rem;
   margin-bottom: 4rem;
}

.story-chapter {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items: center;
   margin-bottom: 4rem;
   padding: 0;
   background: transparent;
   box-shadow: none;
   position: relative;
   opacity: 0;
   transform: translateY(50px);
   transition: all 0.8s ease;
}

.story-chapter.animate-visible {
   opacity: 1;
   transform: translateY(0);
}

.story-chapter:nth-child(even) {
   grid-template-columns: 1fr 1fr;
}

.story-chapter:nth-child(even) .chapter-content {
   order: 2;
}

.story-chapter:nth-child(even) .chapter-image {
   order: 1;
}

.chapter-number {
   position: absolute;
   top: -30px;
   left: -20px;
   font-size: 6rem;
   font-weight: 700;
   color: rgba(212, 175, 55, 0.15);
   font-family: 'Playfair Display', serif;
   z-index: 1;
}

.chapter-content {
   background: white;
   padding: 3rem;
   border-radius: var(--radius-md);
   box-shadow: var(--shadow-sm);
   position: relative;
   z-index: 2;
}

.chapter-content h3 {
   color: var(--primary);
   margin-bottom: 1.5rem;
   font-size: 1.8rem;
}

.chapter-content p {
   color: var(--text-light);
   line-height: 1.8;
   font-size: 1.1rem;
}

.chapter-image {
   position: relative;
   height: 400px;
   border-radius: var(--radius-md);
   overflow: hidden;
   box-shadow: var(--shadow-lg);
   transform: scale(0.95);
   transition: transform 0.8s ease;
}

.story-chapter.animate-visible .chapter-image {
   transform: scale(1);
}

.chapter-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.5s ease;
}

.chapter-image:hover img {
   transform: scale(1.1);
}

.about-timeline {
   margin-top: 5rem;
   opacity: 0;
   transform: translateY(50px);
   transition: all 0.8s ease;
}

.about-timeline.animate-visible {
   opacity: 1;
   transform: translateY(0);
}

.about-timeline h3 {
   text-align: center;
   color: var(--primary);
   margin-bottom: 3rem;
   font-size: 2.5rem;
}

.timeline {
   position: relative;
   padding: 3rem 0;
   max-width: 1000px;
   margin: 0 auto;
}

.timeline::before {
   content: '';
   position: absolute;
   left: 50%;
   transform: translateX(-50%);
   width: 4px;
   height: 100%;
   background: linear-gradient(to bottom, var(--secondary), var(--secondary-light), var(--secondary));
   border-radius: 2px;
}

.timeline-item {
   position: relative;
   padding: 2rem;
   width: calc(50% - 40px);
   margin-bottom: 3rem;
   opacity: 0;
   transform: translateX(-50px);
   transition: all 0.8s ease;
}

.timeline-item.animate-visible {
   opacity: 1;
   transform: translateX(0);
}

.timeline-item:nth-child(odd) {
   margin-left: auto;
   transform: translateX(50px);
}

.timeline-item:nth-child(odd).animate-visible {
   transform: translateX(0);
}

.timeline-dot {
   position: absolute;
   width: 24px;
   height: 24px;
   background: var(--secondary);
   border: 4px solid white;
   border-radius: 50%;
   top: 3rem;
   box-shadow: var(--shadow-md);
   transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-dot {
   left: -52px;
}

.timeline-item:nth-child(even) .timeline-dot {
   right: -52px;
}

.timeline-item:hover .timeline-dot {
   background: var(--primary);
   transform: scale(1.2);
}

.timeline-content {
   background: white;
   padding: 2rem;
   border-radius: var(--radius-md);
   box-shadow: var(--shadow-sm);
   position: relative;
   transition: var(--transition);
   display: grid;
   grid-template-columns: 150px 1fr;
   gap: 1.5rem;
   align-items: center;
}

.timeline-content::before {
   content: '';
   position: absolute;
   width: 0;
   height: 0;
   border-style: solid;
   top: 50%;
   transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
   right: -15px;
   border-left: 15px solid white;
   border-top: 15px solid transparent;
   border-bottom: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
   left: -15px;
   border-right: 15px solid white;
   border-top: 15px solid transparent;
   border-bottom: 15px solid transparent;
}

.timeline-content:hover {
   transform: translateY(-5px);
   box-shadow: var(--shadow-lg);
}

.timeline-image {
   width: 120px;
   height: 120px;
   border-radius: 50%;
   overflow: hidden;
   border: 3px solid var(--secondary);
   transition: var(--transition);
}

.timeline-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.3s ease;
}

.timeline-content:hover .timeline-image {
   border-color: var(--primary);
}

.timeline-content:hover .timeline-image img {
   transform: scale(1.1);
}

.timeline-text {
   flex: 1;
}

.timeline-date {
   color: var(--secondary);
   font-weight: 700;
   font-size: 1.2rem;
   margin-bottom: 0.5rem;
   font-family: 'Playfair Display', serif;
}

.timeline-content h4 {
   margin: 0.5rem 0;
   color: var(--primary);
   font-size: 1.3rem;
}

.timeline-content p {
   color: var(--text-light);
   font-size: 1rem;
   line-height: 1.6;
}

.customer-feedback {
   margin-top: 5rem;
   opacity: 0;
   transform: translateY(50px);
   transition: all 0.8s ease;
}

.customer-feedback.animate-visible {
   opacity: 1;
   transform: translateY(0);
}

.customer-feedback h3 {
   text-align: center;
   color: var(--primary);
   margin-bottom: 3rem;
   font-size: 2.5rem;
   position: relative;
}

.customer-feedback h3::after {
   content: '';
   position: absolute;
   bottom: -10px;
   left: 50%;
   transform: translateX(-50%);
   width: 100px;
   height: 3px;
   background: var(--gradient-secondary);
   border-radius: 2px;
}

.feedback-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
   margin-top: 3rem;
}

.feedback-item {
   background: white;
   padding: 2rem;
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-sm);
   transition: var(--transition);
   opacity: 0;
   transform: translateY(30px);
   border: 2px solid transparent;
   position: relative;
   overflow: hidden;
}

.feedback-item::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 4px;
   background: var(--gradient-secondary);
   opacity: 0;
   transition: var(--transition);
}

.feedback-item.animate-visible {
   opacity: 1;
   transform: translateY(0);
}

.feedback-item:hover {
   transform: translateY(-10px);
   box-shadow: var(--shadow-xl);
   border-color: var(--secondary);
}

.feedback-item:hover::before {
   opacity: 1;
}

.feedback-photo {
   width: 80px;
   height: 80px;
   margin: 0 auto 1.5rem;
   border-radius: 50%;
   overflow: hidden;
   border: 3px solid var(--secondary);
   transition: var(--transition);
   position: relative;
}

.feedback-photo::after {
   content: '';
   position: absolute;
   top: -3px;
   left: -3px;
   right: -3px;
   bottom: -3px;
   border-radius: 50%;
   border: 2px solid transparent;
   background: var(--gradient-secondary);
   opacity: 0;
   transition: var(--transition);
   z-index: -1;
}

.feedback-item:hover .feedback-photo::after {
   opacity: 0.3;
   animation: pulse 2s infinite;
}

.feedback-photo img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.3s ease;
}

.feedback-item:hover .feedback-photo img {
   transform: scale(1.1);
}

.feedback-content {
   text-align: center;
}

.feedback-stars {
   display: flex;
   justify-content: center;
   gap: 0.25rem;
   margin-bottom: 1rem;
}

.feedback-stars i {
   color: #ffd700;
   font-size: 1.1rem;
   animation: starTwinkle 2s ease-in-out infinite;
}

.feedback-stars i:nth-child(1) { animation-delay: 0s; }
.feedback-stars i:nth-child(2) { animation-delay: 0.2s; }
.feedback-stars i:nth-child(3) { animation-delay: 0.4s; }
.feedback-stars i:nth-child(4) { animation-delay: 0.6s; }
.feedback-stars i:nth-child(5) { animation-delay: 0.8s; }

@keyframes starTwinkle {
   0%, 100% { opacity: 1; transform: scale(1); }
   50% { opacity: 0.7; transform: scale(1.1); }
}

.feedback-text {
   font-style: italic;
   color: var(--text-light);
   line-height: 1.7;
   margin-bottom: 1.5rem;
   font-size: 0.95rem;
   position: relative;
   padding: 0 1rem;
}

.feedback-text::before,
.feedback-text::after {
   content: '"';
   font-size: 2rem;
   color: var(--secondary);
   font-family: 'Playfair Display', serif;
   position: absolute;
   line-height: 1;
}

.feedback-text::before {
   top: -5px;
   left: 0;
}

.feedback-text::after {
   bottom: -15px;
   right: 0;
}

.feedback-info h4 {
   color: var(--primary);
   margin-bottom: 0.5rem;
   font-size: 1.2rem;
   font-weight: 600;
}

.feedback-info span {
   color: var(--text-muted);
   font-size: 0.9rem;
   display: block;
   margin-bottom: 0.75rem;
}

.feedback-source {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   background: var(--bg-cream);
   color: var(--text-dark);
   padding: 0.4rem 0.8rem;
   border-radius: var(--radius-xl);
   font-size: 0.85rem;
   font-weight: 500;
}

.feedback-source i {
   font-size: 0.9rem;
}

.feedback-source i.fab.fa-google {
   color: #4285f4;
}

.feedback-source i.fab.fa-facebook {
   color: #1877f2;
}

.feedback-source i.fas.fa-bed {
   color: #ff5722;
}

.feedback-source i.fas.fa-quote-left {
   color: var(--secondary);
}

.feedback-stats {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
   margin-top: 3rem;
   padding: 2rem;
   background: var(--gradient-primary);
   border-radius: var(--radius-lg);
   opacity: 0;
   transform: translateY(50px);
   transition: all 0.8s ease;
}

.feedback-stats.animate-visible {
   opacity: 1;
   transform: translateY(0);
}

.stat-item {
   text-align: center;
   color: white;
   padding: 1rem;
   border-radius: var(--radius-md);
   background: rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(10px);
   transition: var(--transition);
}

.stat-item:hover {
   background: rgba(255, 255, 255, 0.2);
   transform: translateY(-5px);
}

.stat-number {
   font-size: 2.5rem;
   font-weight: 700;
   font-family: 'Playfair Display', serif;
   margin-bottom: 0.5rem;
   color: var(--secondary-light);
   text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
   font-size: 0.9rem;
   opacity: 0.9;
   font-weight: 500;
}

.about-video {
   margin-top: 4rem;
   text-align: center;
   opacity: 0;
   transform: translateY(50px);
   transition: all 0.8s ease;
}

.about-video.animate-visible {
   opacity: 1;
   transform: translateY(0);
}

.about-video h3 {
   color: var(--primary);
   margin-bottom: 2rem;
   font-size: 2.5rem;
}

.video-container {
   position: relative;
   max-width: 900px;
   margin: 2rem auto;
   border-radius: var(--radius-md);
   overflow: hidden;
   box-shadow: var(--shadow-xl);
}

.video-container iframe {
   width: 100%;
   height: 500px;
   border: none;
}

.video-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0,0,0,0.5);
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   transition: var(--transition);
}

.video-overlay:hover {
   background: rgba(0,0,0,0.3);
}

.play-btn {
   width: 100px;
   height: 100px;
   background: var(--gradient-secondary);
   border: none;
   border-radius: 50%;
   color: var(--text-dark);
   font-size: 2.5rem;
   cursor: pointer;
   transition: var(--transition);
   box-shadow: var(--shadow-lg);
}

.play-btn:hover {
   transform: scale(1.2);
   box-shadow: var(--shadow-xl);
}

.animate-on-scroll {
   opacity: 0;
   transform: translateY(50px);
   transition: all 0.8s ease;
}

.animate-on-scroll.animate-visible {
   opacity: 1;
   transform: translateY(0);
}

.rooms-section {
   background: var(--bg-white);
}

.space-gallery {
   margin-bottom: 4rem;
}

.gallery-main {
   position: relative;
   height: 500px;
   border-radius: var(--radius-md);
   overflow: hidden;
   box-shadow: var(--shadow-lg);
   margin-bottom: 1rem;
}

.gallery-main img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: var(--transition);
}

.gallery-controls {
   position: absolute;
   bottom: 20px;
   left: 50%;
   transform: translateX(-50%);
   display: flex;
   gap: 1rem;
}

.gallery-nav {
   width: 50px;
   height: 50px;
   background: rgba(255, 255, 255, 0.9);
   border: none;
   border-radius: 50%;
   font-size: 1.2rem;
   cursor: pointer;
   transition: var(--transition);
   box-shadow: var(--shadow-md);
}

.gallery-nav:hover {
   background: white;
   transform: scale(1.1);
}

.gallery-360 {
   background: var(--gradient-secondary);
   color: var(--text-dark);
   border: none;
   padding: 0.75rem 1.5rem;
   border-radius: var(--radius-xl);
   font-weight: 600;
   cursor: pointer;
   display: flex;
   align-items: center;
   gap: 0.5rem;
   transition: var(--transition);
}

.gallery-360:hover {
   transform: translateY(-2px);
   box-shadow: var(--shadow-lg);
}

.gallery-thumbs {
   display: flex;
   gap: 1rem;
   justify-content: center;
   flex-wrap: wrap;
}

.gallery-thumbs img {
   width: 120px;
   height: 80px;
   object-fit: cover;
   border-radius: var(--radius-sm);
   cursor: pointer;
   opacity: 0.6;
   transition: var(--transition);
   border: 2px solid transparent;
}

.gallery-thumbs img:hover,
.gallery-thumbs img.active {
   opacity: 1;
   border-color: var(--secondary);
}

.room-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2rem;
   margin-top: 3rem;
}

.room-card {
   background: white;
   border-radius: var(--radius-md);
   overflow: hidden;
   box-shadow: var(--shadow-sm);
   transition: var(--transition);
}

.room-card:hover {
   transform: translateY(-10px);
   box-shadow: var(--shadow-xl);
}

.room-image {
   position: relative;
   height: 250px;
   overflow: hidden;
}

.room-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
   transform: scale(1.1);
}

.room-badge {
   position: absolute;
   top: 15px;
   right: 15px;
   background: var(--gradient-secondary);
   color: var(--text-dark);
   padding: 0.4rem 1rem;
   border-radius: var(--radius-xl);
   font-size: 0.85rem;
   font-weight: 600;
}

.room-details {
   padding: 2rem;
}

.room-details h4 {
   color: var(--primary);
   margin-bottom: 1rem;
}

.room-features {
   display: flex;
   gap: 1rem;
   margin-bottom: 1rem;
   flex-wrap: wrap;
}

.room-features span {
   display: flex;
   align-items: center;
   gap: 0.3rem;
   color: var(--text-light);
   font-size: 0.9rem;
}

.room-features i {
   color: var(--secondary);
}

.room-details p {
   color: var(--text-light);
   margin-bottom: 1.5rem;
   line-height: 1.6;
}

.room-amenities {
   display: flex;
   gap: 1rem;
   margin-bottom: 1.5rem;
}

.room-amenities i {
   font-size: 1.2rem;
   color: var(--text-muted);
   cursor: help;
   transition: var(--transition);
}

.room-amenities i:hover {
   color: var(--secondary);
   transform: scale(1.2);
}

.room-price {
   display: flex;
   align-items: baseline;
   gap: 0.5rem;
   margin-bottom: 1rem;
}

.price-from {
   color: var(--text-muted);
   font-size: 0.9rem;
}

.price-amount {
   font-family: 'Playfair Display', serif;
   font-size: 1.8rem;
   font-weight: 700;
   color: var(--primary);
}

.price-unit {
   color: var(--text-light);
   font-size: 0.9rem;
}

.btn-select-room {
   width: 100%;
   background: var(--gradient-primary);
   color: white;
   border: none;
   padding: 1rem;
   border-radius: var(--radius-md);
   font-weight: 600;
   cursor: pointer;
   transition: var(--transition);
}

.btn-select-room:hover {
   transform: translateY(-2px);
   box-shadow: var(--shadow-md);
}



.cta-section {
   text-align: center;
   margin-top: 3rem;
}

.btn-view-availability {
   background: var(--gradient-secondary);
   color: var(--text-dark);
   border: none;
   padding: 1rem 3rem;
   border-radius: var(--radius-xl);
   font-size: 1.1rem;
   font-weight: 600;
   cursor: pointer;
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   transition: var(--transition);
}

.btn-view-availability:hover {
   transform: translateY(-3px);
   box-shadow: var(--shadow-lg);
}

.amenities-section {
   background: linear-gradient(135deg, #faf8f5 0%, #f5f3f0 50%, #faf8f5 100%);
   position: relative;
   overflow: hidden;
}

.amenities-section::before {
   content: '';
   position: absolute;
   width: 300px;
   height: 300px;
   background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
   top: 100px;
   left: -150px;
   animation: float 15s ease-in-out infinite;
}

.amenities-section::after {
   content: '';
   position: absolute;
   width: 400px;
   height: 400px;
   background: radial-gradient(circle, rgba(139, 69, 19, 0.05) 0%, transparent 70%);
   bottom: -200px;
   right: -200px;
   animation: float 20s ease-in-out infinite reverse;
}

.amenities-container {
   position: relative;
   margin-bottom: 4rem;
}

.amenities-slider-wrapper {
   position: relative;
   overflow: hidden;
   border-radius: var(--radius-md);
   padding: 1rem 0;
}

.amenities-grid {
   display: flex;
   gap: 2rem;
   padding: 1rem 0 2rem 0;
   overflow-x: auto;
   scroll-behavior: smooth;
   scroll-snap-type: x mandatory;
   -webkit-overflow-scrolling: touch;
   scrollbar-width: none;
   -ms-overflow-style: none;
}

.amenities-grid::-webkit-scrollbar {
   display: none;
}

.amenities-nav {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   width: 55px;
   height: 55px;
   background: rgba(255, 255, 255, 0.95);
   border: 2px solid var(--secondary);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   transition: var(--transition);
   z-index: 10;
   font-size: 1.3rem;
   color: var(--primary);
   box-shadow: var(--shadow-lg);
   backdrop-filter: blur(10px);
}

.amenities-nav:hover {
   background: var(--secondary);
   color: white;
   transform: translateY(-50%) scale(1.1);
   box-shadow: var(--shadow-xl);
}

.amenities-nav.prev {
   left: -25px;
}

.amenities-nav.next {
   right: -25px;
}

.amenity-card {
   background: white;
   padding: 2.5rem 2rem;
   border-radius: var(--radius-lg);
   text-align: center;
   transition: var(--transition);
   border: 1px solid rgba(212, 175, 55, 0.15);
   min-width: 320px;
   max-width: 320px;
   flex-shrink: 0;
   height: auto;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   position: relative;
   overflow: hidden;
   scroll-snap-align: start;
   box-shadow: var(--shadow-sm);
}

.amenity-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 4px;
   background: var(--gradient-secondary);
   opacity: 0;
   transition: var(--transition);
}

.amenity-card:hover {
   transform: translateY(-15px);
   box-shadow: var(--shadow-xl);
   border-color: var(--secondary);
}

.amenity-card:hover::before {
   opacity: 1;
}

.amenity-card.featured {
   background: var(--gradient-primary);
   color: white;
   border-color: var(--primary-dark);
   position: relative;
}

.amenity-card.featured::before {
   background: var(--gradient-secondary);
   opacity: 1;
}

.amenity-card.featured::after {
   content: '⭐ VIP';
   position: absolute;
   top: 15px;
   right: 15px;
   background: rgba(212, 175, 55, 0.9);
   color: var(--text-dark);
   padding: 0.3rem 0.8rem;
   border-radius: var(--radius-xl);
   font-size: 0.75rem;
   font-weight: 600;
}

.amenity-icon {
   width: 80px;
   height: 80px;
   margin: 0 auto 1.5rem;
   background: var(--gradient-secondary);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 2.2rem;
   color: var(--text-dark);
   transition: var(--transition);
   position: relative;
   box-shadow: var(--shadow-md);
}

.amenity-icon::before {
   content: '';
   position: absolute;
   inset: -5px;
   border-radius: 50%;
   background: var(--gradient-secondary);
   opacity: 0;
   transition: var(--transition);
   z-index: -1;
}

.amenity-card:hover .amenity-icon {
   transform: scale(1.1) rotate(5deg);
   box-shadow: var(--shadow-lg);
}

.amenity-card:hover .amenity-icon::before {
   opacity: 0.3;
   animation: pulse 2s infinite;
}

.amenity-card.featured .amenity-icon {
   background: rgba(255, 255, 255, 0.2);
   color: white;
   border: 2px solid rgba(255, 255, 255, 0.3);
}

.amenity-card h4 {
   margin-bottom: 1rem;
   font-size: 1.3rem;
   color: var(--primary);
}

.amenity-card.featured h4 {
   color: white;
}

.amenity-card p {
   color: var(--text-light);
   line-height: 1.6;
   margin-bottom: 1.5rem;
   font-size: 0.95rem;
}

.amenity-card.featured p {
   color: rgba(255, 255, 255, 0.9);
}

.amenity-features {
   display: flex;
   gap: 0.75rem;
   justify-content: center;
   flex-wrap: wrap;
   margin-bottom: 1rem;
}

.amenity-features span {
   background: var(--bg-cream);
   color: var(--text-dark);
   padding: 0.4rem 0.8rem;
   border-radius: var(--radius-xl);
   font-size: 0.8rem;
   font-weight: 500;
   display: flex;
   align-items: center;
   gap: 0.3rem;
}

.amenity-features span i {
   color: var(--accent);
   font-size: 0.7rem;
}

.amenity-features.special span {
   background: rgba(212, 175, 55, 0.2);
   color: var(--secondary-dark);
   border: 1px solid rgba(212, 175, 55, 0.3);
}

.amenity-features.special span i {
   color: var(--secondary);
}

.btn-demo {
   background: rgba(255, 255, 255, 0.2);
   color: white;
   border: 2px solid rgba(255, 255, 255, 0.3);
   padding: 0.8rem 1.5rem;
   border-radius: var(--radius-xl);
   font-weight: 600;
   cursor: pointer;
   margin-top: 1rem;
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   transition: var(--transition);
   backdrop-filter: blur(10px);
}

.btn-demo:hover {
   background: white;
   color: var(--primary);
   border-color: white;
   transform: translateY(-2px);
   box-shadow: var(--shadow-md);
}

.amenities-indicators {
   display: flex;
   justify-content: center;
   gap: 0.75rem;
   margin-top: 2rem;
}

.amenities-indicator {
   width: 14px;
   height: 14px;
   border-radius: 50%;
   background: rgba(212, 175, 55, 0.3);
   cursor: pointer;
   transition: var(--transition);
   position: relative;
}

.amenities-indicator::before {
   content: '';
   position: absolute;
   inset: -3px;
   border-radius: 50%;
   border: 2px solid transparent;
   transition: var(--transition);
}

.amenities-indicator:hover {
   background: rgba(212, 175, 55, 0.6);
   transform: scale(1.2);
}

.amenities-indicator.active {
   background: var(--secondary);
   transform: scale(1.3);
}

.amenities-indicator.active::before {
   border-color: var(--secondary);
}

/* Why Choose Section */
.why-choose-section {
    margin-top: 5rem;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-cream) 100%);
    padding: 5rem 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.why-choose-header .section-badge {
    display: inline-block;
    background: var(--gradient-secondary);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.why-choose-header h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3.5rem);
    position: relative;
}

.why-choose-header h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.why-choose-header .section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Statistics Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.02) 100%);
    z-index: 1;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.feature-card.premium {
    border: 2px solid var(--secondary);
    position: relative;
}

.feature-card.premium::after {
    content: 'PREMIUM';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-secondary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 3;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.feature-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.feature-list {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-list li i {
    color: var(--accent);
    margin-right: 0.8rem;
    font-size: 0.9rem;
    width: 16px;
}

/* Trust Section */
.trust-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--secondary);
}

.trust-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.trust-content h5 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.trust-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* Counter Animation */
@keyframes countUp {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-number.animate {
    animation: countUp 0.8s ease-out;
}

/* Responsive Design for Why Choose Section */
@media (max-width: 1024px) {
    .why-choose-section {
        padding: 4rem 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .stats-section {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }
    
    .trust-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 3rem 1.5rem;
        margin-top: 3rem;
    }
    
    .why-choose-header {
        margin-bottom: 3rem;
    }
    
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .stat-item {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .trust-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .trust-icon {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-section {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .why-choose-header .section-badge {
        padding: 0.5rem 1.5rem;
        font-size: 0.8rem;
    }
}

@keyframes pulse {
   0% {
       opacity: 0.3;
       transform: scale(1);
   }
   50% {
       opacity: 0.1;
       transform: scale(1.1);
   }
   100% {
       opacity: 0.3;
       transform: scale(1);
   }
}

@keyframes float {
   0%, 100% { transform: translate(0, 0) rotate(0deg); }
   33% { transform: translate(-50px, 50px) rotate(120deg); }
   66% { transform: translate(50px, -50px) rotate(240deg); }
}

.dining-section {
   background: var(--bg-white);
   position: relative;
   overflow: hidden;
}

.menu-item,
.event-item {
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.menu-item.active,
.event-item.active {
    background: var(--gradient-secondary);
    transform: translateX(15px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.menu-item.active .menu-item-info h4,
.event-item.active .event-info h4 {
    color: white;
}

.menu-item.active .menu-item-info p,
.event-item.active .event-info p {
    color: rgba(255, 255, 255, 0.9);
}

.menu-item.active .price,
.event-item.active .event-price {
    color: white;
    font-weight: 800;
}

.menu-item.active::before,
.event-item.active::before {
    content: '✓';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: var(--shadow-md);
}

.slide-image img {
    transition: opacity 0.5s ease, transform 0.8s ease;
}

.slide-image.changing img {
    opacity: 0.7;
    transform: scale(1.05);
}

.dining-section::before {
   content: '';
   position: absolute;
   width: 400px;
   height: 400px;
   background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
   top: -200px;
   right: -200px;
   animation: float 25s ease-in-out infinite;
}

.dining-events-slider {
   position: relative;
   margin-top: 3rem;
}

.dining-nav {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   width: 60px;
   height: 60px;
   background: rgba(255, 255, 255, 0.95);
   border: 2px solid var(--secondary);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   transition: var(--transition);
   z-index: 10;
   font-size: 1.4rem;
   color: var(--primary);
   box-shadow: var(--shadow-lg);
   backdrop-filter: blur(15px);
}

.dining-nav:hover {
   background: var(--secondary);
   color: white;
   transform: translateY(-50%) scale(1.1);
   box-shadow: var(--shadow-xl);
}

.dining-nav.prev {
   left: -30px;
}

.dining-nav.next {
   right: -30px;
}

.dining-slider-wrapper {
   overflow: hidden;
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-xl);
   background: white;
}

.dining-slides {
   display: flex;
   transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dining-slide {
   min-width: 100%;
   opacity: 0;
   transition: opacity 0.8s ease;
}

.dining-slide.active {
   opacity: 1;
}

.slide-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
   min-height: 600px;
}

.slide-info {
   padding: 3rem;
   display: flex;
   flex-direction: column;
   justify-content: center;
   background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.slide-info h3 {
   color: var(--primary);
   font-size: 2.5rem;
   margin-bottom: 2rem;
   font-family: 'Playfair Display', serif;
   position: relative;
}

.slide-info h3::after {
   content: '';
   position: absolute;
   bottom: -10px;
   left: 0;
   width: 60px;
   height: 3px;
   background: var(--gradient-secondary);
   border-radius: 2px;
}

.menu-categories {
   display: flex;
   gap: 0.5rem;
   margin-bottom: 2rem;
   flex-wrap: wrap;
}

.menu-tab {
   background: none;
   border: 2px solid var(--bg-light);
   padding: 0.8rem 1.5rem;
   border-radius: var(--radius-xl);
   font-weight: 600;
   color: var(--text-light);
   cursor: pointer;
   transition: var(--transition);
   font-size: 0.9rem;
}

.menu-tab:hover {
   border-color: var(--secondary);
   color: var(--primary);
}

.menu-tab.active {
   background: var(--gradient-secondary);
   border-color: var(--secondary);
   color: var(--text-dark);
}

.menu-category {
   display: none;
}

.menu-category.active {
   display: block;
   animation: fadeInUp 0.5s ease;
}

.menu-items {
   display: grid;
   gap: 1.5rem;
   margin-bottom: 2rem;
}

.menu-item {
   background: white;
   padding: 1.5rem;
   border-radius: var(--radius-md);
   border-left: 4px solid var(--secondary);
   box-shadow: var(--shadow-sm);
   transition: var(--transition);
   display: flex;
   gap: 1rem;
   align-items: center;
}

.menu-item:hover {
   transform: translateX(10px);
   box-shadow: var(--shadow-md);
}

.menu-item-icon {
   width: 50px;
   height: 50px;
   background: var(--gradient-secondary);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.3rem;
   color: var(--text-dark);
   flex-shrink: 0;
   transition: var(--transition);
}

.menu-item:hover .menu-item-icon {
   transform: scale(1.1) rotate(5deg);
}

.menu-item-info {
   flex: 1;
}

.menu-item-info h4 {
   color: var(--primary);
   margin-bottom: 0.5rem;
   font-size: 1.2rem;
}

.menu-item-info p {
   color: var(--text-light);
   font-size: 0.9rem;
   margin-bottom: 0.8rem;
   line-height: 1.5;
}

.menu-item-details {
   display: flex;
   gap: 1rem;
   margin-bottom: 0.5rem;
   flex-wrap: wrap;
}

.menu-item-details span {
   display: flex;
   align-items: center;
   gap: 0.3rem;
   color: var(--text-muted);
   font-size: 0.85rem;
   background: var(--bg-cream);
   padding: 0.3rem 0.6rem;
   border-radius: var(--radius-sm);
}

.menu-item-details i {
   color: var(--secondary);
}

.menu-item .price {
   color: var(--secondary);
   font-weight: 700;
   font-size: 1.1rem;
   font-family: 'Playfair Display', serif;
}

.events-list {
   display: grid;
   gap: 1.5rem;
   margin-bottom: 2rem;
}

.event-item {
   background: white;
   padding: 1.5rem;
   border-radius: var(--radius-md);
   box-shadow: var(--shadow-sm);
   transition: var(--transition);
   position: relative;
   display: flex;
   gap: 1rem;
   align-items: flex-start;
}

.event-item:hover {
   transform: translateY(-5px);
   box-shadow: var(--shadow-lg);
}

.event-icon {
   width: 60px;
   height: 60px;
   background: var(--gradient-secondary);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5rem;
   color: var(--text-dark);
   flex-shrink: 0;
   transition: var(--transition);
}

.event-item:hover .event-icon {
   transform: scale(1.1) rotate(5deg);
}

.event-info {
   flex: 1;
}

.event-info h4 {
   color: var(--primary);
   margin-bottom: 0.5rem;
   font-size: 1.2rem;
}

.event-info p {
   color: var(--text-light);
   font-size: 0.9rem;
   margin-bottom: 1rem;
   line-height: 1.5;
}

.event-details {
   display: flex;
   gap: 1rem;
   margin-bottom: 0.8rem;
   flex-wrap: wrap;
}

.event-details span {
   display: flex;
   align-items: center;
   gap: 0.3rem;
   color: var(--text-muted);
   font-size: 0.85rem;
   background: var(--bg-cream);
   padding: 0.3rem 0.6rem;
   border-radius: var(--radius-sm);
}

.event-details i {
   color: var(--secondary);
}

.event-price {
   color: var(--secondary);
   font-weight: 600;
   font-size: 1.1rem;
   font-family: 'Playfair Display', serif;
}

.event-badge {
   position: absolute;
   top: 10px;
   right: 10px;
   padding: 0.3rem 0.8rem;
   border-radius: var(--radius-xl);
   font-size: 0.75rem;
   font-weight: 600;
}

.event-badge.hot {
   background: #e74c3c;
   color: white;
   animation: pulse 2s infinite;
}

.slide-image {
   position: relative;
   overflow: hidden;
}

.slide-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.8s ease;
}

.dining-slide.active .slide-image img {
   transform: scale(1.05);
}

.image-overlay {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: linear-gradient(135deg, rgba(139,69,19,0.3) 0%, rgba(212,175,55,0.2) 100%);
   display: flex;
   align-items: flex-end;
   padding: 2rem;
}

.overlay-badge {
   background: rgba(255, 255, 255, 0.9);
   color: var(--primary);
   padding: 0.8rem 1.5rem;
   border-radius: var(--radius-xl);
   display: flex;
   align-items: center;
   gap: 0.5rem;
   font-weight: 600;
   backdrop-filter: blur(10px);
   box-shadow: var(--shadow-md);
}

.overlay-badge i {
   font-size: 1.2rem;
   color: var(--secondary);
}

.btn-custom-menu,
.btn-event-request {
   width: 100%;
   background: var(--gradient-primary);
   color: white;
   border: none;
   padding: 1rem 2rem;
   border-radius: var(--radius-lg);
   font-weight: 600;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 0.5rem;
   transition: var(--transition);
   font-size: 1rem;
}

.btn-custom-menu:hover,
.btn-event-request:hover {
   background: var(--gradient-secondary);
   color: var(--text-dark);
   transform: translateY(-2px);
   box-shadow: var(--shadow-lg);
}

.dining-indicators {
   display: flex;
   justify-content: center;
   gap: 2rem;
   margin-top: 2rem;
}

.dining-indicator {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 0.5rem;
   padding: 1rem 1.5rem;
   background: white;
   border: 2px solid var(--bg-light);
   border-radius: var(--radius-md);
   cursor: pointer;
   transition: var(--transition);
   min-width: 120px;
}

.dining-indicator:hover {
   border-color: var(--secondary);
   transform: translateY(-3px);
   box-shadow: var(--shadow-lg);
}

.dining-indicator.active {
   background: var(--gradient-secondary);
   border-color: var(--secondary);
   color: var(--text-dark);
}

.dining-indicator i {
   font-size: 1.5rem;
   color: var(--secondary);
   transition: var(--transition);
}

.dining-indicator.active i {
   color: var(--primary);
}

.dining-indicator span {
   font-weight: 600;
   font-size: 0.9rem;
}

@keyframes fadeInUp {
   from {
       opacity: 0;
       transform: translateY(30px);
   }
   to {
       opacity: 1;
       transform: translateY(0);
   }
}

.attractions-list {
   display: grid;
   gap: 1.5rem;
   margin-bottom: 2rem;
}

.attraction-item {
   background: white;
   padding: 1.5rem;
   border-radius: var(--radius-md);
   box-shadow: var(--shadow-sm);
   transition: var(--transition);
   position: relative;
   display: flex;
   gap: 1rem;
   align-items: flex-start;
   cursor: pointer;
   border-left: 4px solid var(--accent);
}

.attraction-item:hover {
   transform: translateX(10px);
   box-shadow: var(--shadow-md);
}

.attraction-item.active {
   background: var(--gradient-secondary);
   transform: translateX(15px) scale(1.02);
   box-shadow: var(--shadow-xl);
}

.attraction-item.active .attraction-info h4 {
   color: white;
}

.attraction-item.active .attraction-info p {
   color: rgba(255, 255, 255, 0.9);
}

.attraction-item.active::before {
   content: '✓';
   position: absolute;
   right: 1rem;
   top: 50%;
   transform: translateY(-50%);
   width: 30px;
   height: 30px;
   background: white;
   color: var(--primary);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: bold;
   box-shadow: var(--shadow-md);
}

.attraction-icon {
   width: 60px;
   height: 60px;
   background: var(--gradient-secondary);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5rem;
   color: var(--text-dark);
   flex-shrink: 0;
   transition: var(--transition);
}

.attraction-item:hover .attraction-icon {
   transform: scale(1.1) rotate(5deg);
}

.attraction-info {
   flex: 1;
}

.attraction-info h4 {
   color: var(--primary);
   margin-bottom: 0.5rem;
   font-size: 1.2rem;
}

.attraction-info p {
   color: var(--text-light);
   font-size: 0.9rem;
   margin-bottom: 1rem;
   line-height: 1.5;
}

.attraction-details {
   display: flex;
   gap: 1rem;
   margin-bottom: 0.8rem;
   flex-wrap: wrap;
}

.attraction-details span {
   display: flex;
   align-items: center;
   gap: 0.3rem;
   color: var(--text-muted);
   font-size: 0.85rem;
   background: var(--bg-cream);
   padding: 0.3rem 0.6rem;
   border-radius: var(--radius-sm);
}

.attraction-details i {
   color: var(--secondary);
}

.btn-explore-tour {
   width: 100%;
   background: var(--gradient-primary);
   color: white;
   border: none;
   padding: 1rem 2rem;
   border-radius: var(--radius-lg);
   font-weight: 600;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 0.5rem;
   transition: var(--transition);
   font-size: 1rem;
}

.btn-explore-tour:hover {
   background: var(--gradient-secondary);
   color: var(--text-dark);
   transform: translateY(-2px);
   box-shadow: var(--shadow-lg);
}

.explore-section {
   background: var(--bg-cream);
}

.explore-map-new {
   display: grid;
   grid-template-columns: 1fr 2fr 1fr;
   gap: 2rem;
   margin-bottom: 3rem;
   align-items: center;
}

.map-container-center {
   border-radius: var(--radius-md);
   overflow: hidden;
   box-shadow: var(--shadow-xl);
   height: 500px;
   position: relative;
}

.map-container-center iframe {
   width: 100%;
   height: 100%;
   border: none;
}

.attractions-left,
.attractions-right {
   display: flex;
   flex-direction: column;
   gap: 2rem;
}

.attraction-card {
   background: white;
   border-radius: var(--radius-lg);
   overflow: hidden;
   box-shadow: var(--shadow-sm);
   transition: var(--transition);
   cursor: pointer;
   aspect-ratio: 1;
   display: flex;
   flex-direction: column;
}

.attraction-card:hover {
   transform: translateY(-8px);
   box-shadow: var(--shadow-xl);
}

.attraction-image {
   width: 100%;
   height: 40%;
   overflow: hidden;
   position: relative;
}

.attraction-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.5s ease;
}

.attraction-card:hover .attraction-image img {
   transform: scale(1.1);
}

.attraction-content {
   padding: 1.5rem;
   flex: 1;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}

.attraction-content h4 {
   color: var(--primary);
   margin-bottom: 0.5rem;
   font-size: 1.1rem;
   line-height: 1.3;
}

.distance {
   color: var(--secondary);
   font-size: 0.85rem;
   margin-bottom: 0.8rem;
   display: flex;
   align-items: center;
   gap: 0.3rem;
}

.distance i {
   font-size: 0.8rem;
}

.attraction-content p {
   color: var(--text-light);
   font-size: 0.9rem;
   line-height: 1.5;
   margin-bottom: 1rem;
   flex: 1;
}

.btn-explore-more {
   background: var(--gradient-secondary);
   color: var(--text-dark);
   border: none;
   padding: 0.6rem 1rem;
   border-radius: var(--radius-md);
   font-size: 0.85rem;
   font-weight: 600;
   cursor: pointer;
   transition: var(--transition);
   align-self: flex-start;
}

.btn-explore-more:hover {
   transform: translateY(-2px);
   box-shadow: var(--shadow-md);
}

.tour-package {
   background: white;
   border-radius: var(--radius-lg);
   overflow: hidden;
   box-shadow: var(--shadow-xl);
   display: grid;
   grid-template-columns: 1fr 1fr;
   max-width: 900px;
   margin: 0 auto;
   aspect-ratio: 2/1;
   align-items: stretch;
}

.tour-content {
   padding: 2rem;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   gap: 1rem;
}

.tour-header h3 {
   color: var(--primary);
   margin-bottom: 0.8rem;
   font-size: 1.6rem;
   line-height: 1.3;
}

.tour-header p {
   color: var(--text-light);
   margin-bottom: 0;
   line-height: 1.6;
   font-size: 1rem;
}

.tour-features {
   flex: 1;
}

.tour-features ul {
   list-style: none;
   margin: 0;
   padding: 0;
   display: grid;
   gap: 0.5rem;
}

.tour-features li {
   padding: 0.4rem 0;
   color: var(--text-light);
   display: flex;
   align-items: center;
   gap: 0.6rem;
   font-size: 0.9rem;
   line-height: 1.3;
}

.tour-features li i {
   color: var(--accent);
   font-size: 1rem;
   flex-shrink: 0;
}

.tour-booking {
   display: flex;
   flex-direction: column;
   gap: 1rem;
   margin-top: auto;
}

.tour-price {
   display: flex;
   align-items: baseline;
   gap: 0.5rem;
   justify-content: center;
   padding: 1rem;
   background: var(--bg-cream);
   border-radius: var(--radius-md);
}

.price-label {
   color: var(--text-muted);
   font-size: 0.9rem;
}

.price-amount {
   font-family: 'Playfair Display', serif;
   font-size: 1.8rem;
   font-weight: 700;
   color: var(--primary);
}

.price-unit {
   color: var(--text-light);
   font-size: 0.9rem;
}

.tour-image {
   position: relative;
   overflow: hidden;
}

.image-container {
   position: relative;
   width: 100%;
   height: 100%;
}

.tour-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.5s ease;
}

.tour-image:hover img {
   transform: scale(1.05);
}

.image-overlay {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: linear-gradient(135deg, 
       rgba(139,69,19,0.3) 0%, 
       rgba(212,175,55,0.2) 50%, 
       rgba(139,69,19,0.4) 100%);
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   transition: var(--transition);
}

.tour-image:hover .image-overlay {
   opacity: 1;
}

.overlay-content {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 0.5rem;
   color: white;
   text-align: center;
}

.overlay-content i {
   font-size: 3rem;
   color: rgba(255,255,255,0.9);
}

.overlay-content span {
   font-weight: 600;
   font-size: 1.1rem;
}

.btn-book-tour {
   background: var(--gradient-primary);
   color: white;
   border: none;
   padding: 0.8rem 1.5rem;
   border-radius: var(--radius-xl);
   font-weight: 600;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 0.5rem;
   transition: var(--transition);
   font-size: 0.95rem;
   width: 100%;
}

.btn-book-tour:hover {
   transform: translateY(-2px);
   box-shadow: var(--shadow-lg);
   background: var(--gradient-secondary);
   color: var(--text-dark);
}

.offers-section {
   background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
   position: relative;
   overflow: hidden;
}

.offers-section::before {
   content: '';
   position: absolute;
   width: 500px;
   height: 500px;
   background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
   top: -250px;
   right: -250px;
   animation: float 20s ease-in-out infinite;
}

.offers-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.offer-card {
   background: white;
   border-radius: var(--radius-md);
   overflow: hidden;
   box-shadow: var(--shadow-sm);
   transition: var(--transition);
   position: relative;
}

.offer-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 5px;
   background: var(--gradient-secondary);
}

.offer-card:hover {
   transform: translateY(-10px);
   box-shadow: var(--shadow-xl);
}

.offer-header {
   padding: 2rem 2rem 1rem;
   text-align: center;
}

.offer-badge {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   background: rgba(212, 175, 55, 0.1);
   color: var(--secondary-dark);
   padding: 0.5rem 1rem;
   border-radius: var(--radius-xl);
   font-size: 0.85rem;
   font-weight: 600;
   margin-bottom: 1rem;
}

.offer-header h3 {
   color: var(--primary);
   margin-bottom: 0;
}

.offer-content {
   padding: 1rem 2rem;
}

.offer-discount {
   text-align: center;
   margin-bottom: 1.5rem;
}

.discount-amount {
   display: block;
   font-size: 3rem;
   font-weight: 700;
   color: var(--secondary);
   line-height: 1;
}

.discount-label {
   color: var(--text-light);
   font-size: 0.9rem;
}

.offer-price {
   text-align: center;
   margin-bottom: 1.5rem;
}

.offer-price .price-from {
   display: block;
   color: var(--text-muted);
   font-size: 0.9rem;
}

.offer-price .price-amount {
   display: block;
   font-family: 'Playfair Display', serif;
   font-size: 2rem;
   font-weight: 700;
   color: var(--primary);
}

.offer-price .price-unit {
   color: var(--text-light);
   font-size: 0.9rem;
}

.offer-special {
   text-align: center;
   margin-bottom: 1.5rem;
}

.special-text {
   display: inline-block;
   background: var(--gradient-primary);
   color: white;
   padding: 0.5rem 1.5rem;
   border-radius: var(--radius-xl);
   font-weight: 600;
}

.offer-features {
   list-style: none;
   margin-bottom: 1.5rem;
}

.offer-features li {
   padding: 0.5rem 0;
   color: var(--text-light);
   display: flex;
   align-items: center;
   gap: 0.5rem;
}

.offer-features i {
   color: var(--accent);
   flex-shrink: 0;
}

.offer-validity {
   background: var(--bg-cream);
   padding: 0.75rem;
   border-radius: var(--radius-sm);
   text-align: center;
   margin-bottom: 1rem;
   font-size: 0.9rem;
   color: var(--text-light);
}

.offer-validity i {
   margin-right: 0.5rem;
   color: var(--secondary);
}

.countdown {
   font-weight: 600;
   color: var(--primary);
}

.offer-footer {
   padding: 0 2rem 2rem;
}

.btn-apply-offer {
   width: 100%;
   background: var(--gradient-primary);
   color: white;
   border: none;
   padding: 1rem;
   border-radius: var(--radius-md);
   font-weight: 600;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 0.5rem;
   transition: var(--transition);
}

.btn-apply-offer:hover {
   transform: translateY(-2px);
   box-shadow: var(--shadow-md);
}

.newsletter-section {
   margin-top: 4rem;
   background: var(--gradient-primary);
   padding: 3rem;
   border-radius: var(--radius-md);
   text-align: center;
   color: white;
}

.newsletter-content h3 {
   color: white;
   margin-bottom: 1rem;
}

.newsletter-content p {
   color: rgba(255, 255, 255, 0.9);
   margin-bottom: 2rem;
}

.newsletter-form {
   display: flex;
   gap: 1rem;
   max-width: 500px;
   margin: 0 auto;
}

.newsletter-form input {
   flex: 1;
   padding: 1rem;
   border: 1px solid rgba(255, 255, 255, 0.3);
   border-radius: var(--radius-md);
   background: rgba(255, 255, 255, 0.1);
   color: white;
   font-size: 1rem;
}

.newsletter-form input::placeholder {
   color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
   outline: none;
   background: rgba(255, 255, 255, 0.2);
   border-color: white;
}

.newsletter-form button {
   background: white;
   color: var(--primary);
   border: none;
   padding: 1rem 2rem;
   border-radius: var(--radius-md);
   font-weight: 600;
   cursor: pointer;
   display: flex;
   align-items: center;
   gap: 0.5rem;
   transition: var(--transition);
}

.newsletter-form button:hover {
   transform: translateY(-2px);
   box-shadow: var(--shadow-lg);
}

.contact-section {
   background: var(--bg-white);
}

.contact-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
   margin-bottom: 3rem;
}

.contact-info {
   display: block;
}




.contact-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 1.5rem;
   margin-bottom: 2rem;
}

.contact-card {
   background: white;
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-md);
   overflow: hidden;
   transition: var(--transition);
   border: 2px solid transparent;
   position: relative;
   padding: 2rem 1.5rem;
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   min-height: 250px;
}

.contact-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 4px;
   background: var(--gradient-secondary);
}

.contact-card:hover {
   transform: translateY(-5px);
   box-shadow: var(--shadow-xl);
   border-color: var(--secondary);
}

.contact-card.primary-card {
   background: var(--gradient-primary);
   color: white;
}

.contact-card.primary-card .card-icon {
   background: rgba(255, 255, 255, 0.2);
   color: white;
}

.contact-card.primary-card .contact-link {
   color: white;
   font-size: 1.8rem;
   font-weight: 700;
   text-decoration: none;
   transition: var(--transition);
}

.contact-card.primary-card .contact-link:hover {
   transform: scale(1.05);
   display: inline-block;
}

.card-icon {
   width: 60px;
   height: 60px;
   background: var(--gradient-secondary);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5rem;
   color: var(--text-dark);
   margin-bottom: 1rem;
   flex-shrink: 0;
}

.card-content {
   flex: 1;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
}

.card-content h3 {
   color: var(--primary);
   font-size: 1.1rem;
   margin-bottom: 0.5rem;
}

.contact-card.primary-card .card-content h3 {
   color: white;
}

.location-list {
   text-align: left;
   margin-top: 1rem;
   width: 100%;
}

.location-item {
   margin-bottom: 1rem;
   font-size: 0.9rem;
   line-height: 1.4;
   text-align: left;
}

.location-item strong {
   color: var(--primary);
   display: block;
   margin-bottom: 0.3rem;
   font-size: 0.95rem;
}

.location-item span {
   display: block;
   color: var(--text-light);
   font-size: 0.85rem;
}

.social-links {
   display: flex;
   gap: 0.5rem;
   justify-content: center;
   margin-top: 1rem;
   flex-wrap: wrap;
}

.route-info {
   text-align: center;
   width: 100%;
}

.route-info p {
   margin-bottom: 0.5rem;
}

.route-detail {
   color: var(--text-light);
   font-size: 0.85rem;
   margin: 0.5rem 0 1rem;
   line-height: 1.5;
}

.btn-get-directions {
   background: var(--gradient-secondary);
   color: var(--text-dark);
   border: none;
   padding: 0.75rem 1.5rem;
   border-radius: var(--radius-md);
   font-weight: 600;
   cursor: pointer;
   transition: var(--transition);
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   margin-top: 0.5rem;
}

.hours-list {
   display: flex;
   flex-direction: column;
   gap: 0.5rem;
   margin-top: 0.5rem;
}

.hour-item {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 0.5rem;
   background: var(--bg-cream);
   border-radius: var(--radius-sm);
   font-size: 0.85rem;
}

.hour-item.special {
   background: var(--gradient-secondary);
   color: var(--text-dark);
   font-weight: 600;
}

.hour-item .day {
   font-weight: 500;
}

.hour-item .time {
   color: var(--text-light);
}

.hour-item.special .time {
   color: var(--text-dark);
}













.booking-form {
   background: var(--bg-cream);
   padding: 2rem;
   border-radius: var(--radius-md);
   box-shadow: var(--shadow-sm);
   height: fit-content;
   display: flex;
   flex-direction: column;
}

.booking-form h3 {
   color: var(--primary);
   margin-bottom: 1.5rem;
   text-align: center;
   font-size: 1.5rem;
}

.form-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 0.75rem;
   margin-bottom: 0.75rem;
}

.form-group {
   margin-bottom: 0.75rem;
}

.form-group label {
   display: block;
   color: var(--text-dark);
   font-weight: 500;
   margin-bottom: 0.4rem;
   font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
   padding: 0.6rem;
   border: 2px solid #e0e0e0;
   border-radius: var(--radius-sm);
   font-size: 0.9rem;
   transition: var(--transition);
   font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
   border-color: var(--secondary);
   box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-actions {
   margin-top: 1.5rem;
   text-align: center;
}

.btn-submit {
   background: var(--gradient-primary);
   color: white;
   border: none;
   padding: 0.8rem 2rem;
   border-radius: var(--radius-xl);
   font-weight: 600;
   font-size: 0.95rem;
   cursor: pointer;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 0.5rem;
   transition: var(--transition);
   width: 100%;
}

.form-note {
   margin-top: 0.75rem;
   color: var(--text-light);
   font-size: 0.8rem;
   text-align: center;
}

.btn-submit:hover {
   transform: translateY(-2px);
   box-shadow: var(--shadow-lg);
}

.faq-section {
   margin-top: 3rem;
}

.faq-list {
   margin-top: 2rem;
}

.faq-item {
   background: white;
   border-radius: var(--radius-md);
   margin-bottom: 1rem;
   box-shadow: var(--shadow-sm);
   overflow: hidden;
}

.faq-question {
   width: 100%;
   background: none;
   border: none;
   padding: 1.5rem;
   text-align: left;
   font-size: 1rem;
   font-weight: 600;
   color: var(--text-dark);
   cursor: pointer;
   display: flex;
   align-items: center;
   gap: 0.5rem;
   transition: var(--transition);
}

.faq-question:hover {
   background: var(--bg-cream);
}

.faq-question i:first-child {
   color: var(--secondary);
}

.faq-question i:last-child {
   margin-left: auto;
   transition: transform 0.3s;
}

.faq-item.active .faq-question i:last-child {
   transform: rotate(180deg);
}

.faq-answer {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
   max-height: 300px;
}

.faq-answer p {
   padding: 0 1.5rem 1.5rem;
   color: var(--text-light);
   line-height: 1.6;
}

.footer {
   background: linear-gradient(135deg, var(--bg-dark) 0%, #0f1419 100%);
   color: white;
   padding: 4rem 0 2rem;
}

.footer-content {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 2fr;
   gap: 3rem;
   margin-bottom: 3rem;
}

.footer-brand h3 {
   font-family: 'Playfair Display', serif;
   color: var(--secondary);
   margin-bottom: 1rem;
}

.footer-brand p {
   color: rgba(255, 255, 255, 0.7);
   line-height: 1.6;
   margin-bottom: 1.5rem;
}

.footer-social {
   display: flex;
   gap: 0.5rem;
}

.footer-social a {
   width: 40px;
   height: 40px;
   background: rgba(255, 255, 255, 0.1);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
   transition: var(--transition);
}

.footer-social a:hover {
   background: var(--gradient-secondary);
   color: var(--text-dark);
   transform: translateY(-3px);
}

.footer-links h4 {
   color: var(--secondary);
   margin-bottom: 1.5rem;
   font-size: 1.1rem;
}

.footer-links a {
   display: block;
   color: rgba(255, 255, 255, 0.7);
   margin-bottom: 0.75rem;
   transition: var(--transition);
}

.footer-links a:hover {
   color: white;
   transform: translateX(5px);
}

.footer-contact h4 {
   color: var(--secondary);
   margin-bottom: 1.5rem;
   font-size: 1.1rem;
}

.footer-contact p {
   color: rgba(255, 255, 255, 0.7);
   margin-bottom: 0.75rem;
   display: flex;
   align-items: center;
   gap: 0.5rem;
}

.footer-contact i {
   color: var(--secondary);
   width: 20px;
}

.footer-badges {
   display: flex;
   gap: 1rem;
   margin-top: 1rem;
}

.footer-badges img {
   height: 40px;
   opacity: 0.7;
   transition: var(--transition);
}

.footer-badges img:hover {
   opacity: 1;
}

.footer-bottom {
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding-top: 2rem;
   text-align: center;
   color: rgba(255, 255, 255, 0.5);
}

.back-to-top {
   position: fixed;
   bottom: 30px;
   right: 30px;
   width: 50px;
   height: 50px;
   background: var(--gradient-secondary);
   border: none;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--text-dark);
   font-size: 1.2rem;
   cursor: pointer;
   box-shadow: var(--shadow-lg);
   opacity: 0;
   visibility: hidden;
   transition: var(--transition);
   z-index: 999;
}

.back-to-top.show {
   opacity: 1;
   visibility: visible;
}

.back-to-top:hover {
   transform: translateY(-5px);
   box-shadow: var(--shadow-xl);
}

.chat-widget {
   position: fixed;
   bottom: 100px;
   right: 30px;
   z-index: 998;
}

.chat-toggle {
   width: 60px;
   height: 60px;
   background: var(--gradient-primary);
   border: none;
   border-radius: 50%;
   color: white;
   font-size: 1.5rem;
   cursor: pointer;
   box-shadow: var(--shadow-lg);
   position: relative;
   transition: var(--transition);
}

.chat-toggle:hover {
   transform: scale(1.1);
}

.chat-badge {
   position: absolute;
   top: -5px;
   right: -5px;
   background: #e74c3c;
   color: white;
   width: 20px;
   height: 20px;
   border-radius: 50%;
   font-size: 0.75rem;
   display: flex;
   align-items: center;
   justify-content: center;
}

.chat-box {
   position: absolute;
   bottom: 70px;
   right: 0;
   width: 350px;
   background: white;
   border-radius: var(--radius-md);
   box-shadow: var(--shadow-xl);
   display: none;
   flex-direction: column;
   height: 450px;
}

.chat-box.show {
   display: flex;
}

.chat-header {
   background: var(--gradient-primary);
   color: white;
   padding: 1rem;
   border-radius: var(--radius-md) var(--radius-md) 0 0;
   display: flex;
   align-items: center;
   justify-content: space-between;
}

.chat-header h4 {
   margin: 0;
   font-size: 1rem;
}

.chat-close {
   background: none;
   border: none;
   color: white;
   font-size: 1.5rem;
   cursor: pointer;
   width: 30px;
   height: 30px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   transition: var(--transition);
}

.chat-close:hover {
   background: rgba(255, 255, 255, 0.2);
}

.chat-body {
   flex: 1;
   padding: 1rem;
   overflow-y: auto;
}

.chat-message {
   margin-bottom: 1rem;
}

.chat-message.bot {
   background: var(--bg-cream);
   padding: 0.75rem;
   border-radius: var(--radius-sm);
   margin-right: 3rem;
}

.chat-message.user {
   background: var(--gradient-primary);
   color: white;
   padding: 0.75rem;
   border-radius: var(--radius-sm);
   margin-left: 3rem;
   text-align: right;
}

.chat-footer {
   display: flex;
   gap: 0.5rem;
   padding: 1rem;
   border-top: 1px solid var(--bg-light);
}

.chat-footer input {
   flex: 1;
   padding: 0.75rem;
   border: 1px solid #e0e0e0;
   border-radius: var(--radius-xl);
   font-size: 0.9rem;
}

.chat-footer button {
   background: var(--gradient-primary);
   color: white;
   border: none;
   width: 40px;
   height: 40px;
   border-radius: 50%;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: var(--transition);
}

.chat-footer button:hover {
   transform: scale(1.1);
}

.offer-popup {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.8);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 9999;
}

.offer-popup.show {
   display: flex;
}

.popup-content {
   background: white;
   padding: 3rem;
   border-radius: var(--radius-md);
   text-align: center;
   max-width: 500px;
   position: relative;
   animation: popupSlide 0.5s ease;
}

@keyframes popupSlide {
   from {
       transform: translateY(-50px);
       opacity: 0;
   }
   to {
       transform: translateY(0);
       opacity: 1;
   }
}

.popup-close {
   position: absolute;
   top: 15px;
   right: 15px;
   background: none;
   border: none;
   font-size: 2rem;
   color: var(--text-light);
   cursor: pointer;
   width: 40px;
   height: 40px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   transition: var(--transition);
}

.popup-close:hover {
   background: var(--bg-light);
   color: var(--text-dark);
}

.popup-content h3 {
   color: var(--primary);
   margin-bottom: 1rem;
}

.popup-content p {
   color: var(--text-light);
   margin-bottom: 1.5rem;
   font-size: 1.1rem;
}

.popup-timer {
   background: var(--bg-cream);
   padding: 1rem;
   border-radius: var(--radius-sm);
   margin-bottom: 1.5rem;
   font-weight: 600;
   color: var(--primary);
}

.btn-popup-cta {
   background: var(--gradient-primary);
   color: white;
   border: none;
   padding: 1rem 3rem;
   border-radius: var(--radius-xl);
   font-size: 1.1rem;
   font-weight: 600;
   cursor: pointer;
   transition: var(--transition);
}

.btn-popup-cta:hover {
   transform: translateY(-2px);
   box-shadow: var(--shadow-lg);
}

@media (max-width: 1200px) {
    .contact-grid {
       grid-template-columns: repeat(2, 1fr);
    }
    .slide-content {
       min-height: 550px;
    }
   
   .slide-info {
       padding: 2.5rem;
   }
   
   .slide-info h3 {
       font-size: 2.2rem;
   }
   
   .dining-nav {
       width: 55px;
       height: 55px;
       font-size: 1.3rem;
   }
   
   .dining-nav.prev {
       left: -25px;
   }
   
   .dining-nav.next {
       right: -25px;
   }

   .timeline-content {
       grid-template-columns: 1fr;
       text-align: center;
   }
   
   .timeline-image {
       justify-self: center;
   }

   .amenities-nav {
       width: 50px;
       height: 50px;
       font-size: 1.2rem;
   }
   
   .amenities-nav.prev {
       left: -20px;
   }
   
   .amenities-nav.next {
       right: -20px;
   }
   
   .comparison-section {
       padding: 2.5rem 2rem;
   }

   .feedback-grid {
       grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
       gap: 1.8rem;
   }
   
   .feedback-stats {
       gap: 1.8rem;
       padding: 1.8rem;
   }
   
   .stat-number {
       font-size: 2.2rem;
   }

   .explore-map-new {
       grid-template-columns: 1fr;
       gap: 3rem;
   }

   .attractions-left,
   .attractions-right {
       flex-direction: row;
       gap: 1.5rem;
   }

   .attraction-card {
       flex: 1;
       aspect-ratio: 1.2;
   }

   .map-container-center {
       order: -1;
       height: 400px;
   }
}

@media (max-width: 992px) {
   

   .nav-menu {
       position: fixed;
       top: 80px;
       left: -100%;
       width: 100%;
       height: calc(100vh - 80px);
       background: white;
       flex-direction: column;
       align-items: center;
       justify-content: flex-start;
       padding: 2rem 0;
       transition: left 0.3s ease;
       box-shadow: var(--shadow-lg);
   }
   
   .nav-menu.show {
       left: 0;
   }
   
   .mobile-menu-btn {
       display: block;
   }
   
   .slider-nav {
       padding: 0 1rem;
   }
   
   .slider-btn {
       width: 50px;
       height: 50px;
       font-size: 1.2rem;
   }
   
   .story-chapter {
       grid-template-columns: 1fr;
       gap: 2rem;
       text-align: center;
   }
   
   .story-chapter:nth-child(even) .chapter-content {
       order: 1;
   }
   
   .story-chapter:nth-child(even) .chapter-image {
       order: 2;
   }
   
   .chapter-image {
       height: 300px;
   }
   
   .timeline::before {
       left: 20px;
   }
   
   .timeline-item {
       width: calc(100% - 40px);
       margin-left: 40px !important;
   }
   
   .timeline-item .timeline-dot {
       left: -30px !important;
   }
   
   .timeline-content::before {
       display: none;
   }
   
   .about-content,
   .contact-content {
       grid-template-columns: 1fr;
   }
   
   .footer-content {
       grid-template-columns: repeat(2, 1fr);
   }

   .amenities-nav {
       display: none;
   }
   
   .amenities-grid {
       padding: 1rem 0.5rem 2rem 0.5rem;
   }
   
   .amenities-section::before,
   .amenities-section::after {
       display: none;
   }
   
   .comparison-header,
   .comparison-row {
       grid-template-columns: 1fr;
       text-align: center;
   }
   
   .feature-name {
       text-align: center !important;
       justify-content: center !important;
       border-bottom: 1px solid rgba(212, 175, 55, 0.1);
       margin-bottom: 0.5rem;
       padding-bottom: 0.5rem;
   }
   
   .comparison-section {
       padding: 2rem 1.5rem;
   }
   
   .comparison-header > div {
       padding: 1.5rem 1rem;
   }
   
   .comparison-row > div {
       padding: 1rem;
   }

   .feedback-grid {
       grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
       gap: 1.5rem;
   }
   
   .feedback-stats {
       grid-template-columns: repeat(2, 1fr);
       gap: 1.5rem;
       padding: 1.5rem;
   }
   
   .customer-feedback h3 {
       font-size: 2.2rem;
       margin-bottom: 2.5rem;
   }
   
   .feedback-item {
       padding: 1.8rem;
   }
   
   .feedback-photo {
       width: 75px;
       height: 75px;
   }
   
   .stat-item {
       padding: 0.8rem;
   }

   .slide-content {
       grid-template-columns: 1fr;
       min-height: auto;
   }
   
   .slide-info {
       padding: 2rem;
       order: 2;
   }
   
   .slide-image {
       height: 300px;
       order: 1;
   }
   
   .slide-info h3 {
       font-size: 2rem;
       margin-bottom: 1.5rem;
   }
   
   .menu-categories {
       gap: 0.3rem;
       margin-bottom: 1.5rem;
   }
   
   .menu-tab {
       padding: 0.6rem 1rem;
       font-size: 0.85rem;
   }
   
   .menu-items,
   .events-list {
       gap: 1rem;
       margin-bottom: 1.5rem;
   }
   
   .dining-nav {
       width: 50px;
       height: 50px;
       font-size: 1.2rem;
   }
   
   .dining-nav.prev {
       left: -20px;
   }
   
   .dining-nav.next {
       right: -20px;
   }
   
   .dining-indicators {
       gap: 1rem;
       margin-top: 1.5rem;
   }
   
   .dining-indicator {
       min-width: 100px;
       padding: 0.8rem 1rem;
   }
   
   .dining-indicator i {
       font-size: 1.3rem;
   }
}

@media (max-width: 768px) {
    .contact-grid {
       grid-template-columns: 1fr;
       gap: 1rem;
   }
   
   .contact-card {
       min-height: auto;
       padding: 1.5rem 1rem;
   }

   .nav-container {
       grid-template-columns: auto auto;
       gap: 1rem;
   }

   .logo-image {
       height: 45px;
   }

   .nav-actions {
       justify-self: end;
   }
   
   .hero-content {
       padding: 0 1rem;
   }
   
   .slider-indicators {
       bottom: 20px;
   }
   
   .quick-booking {
       flex-direction: column;
       gap: 1rem;
   }
   
   .booking-item {
       width: 100%;
   }
   
   .btn-search-rooms {
       width: 100%;
       justify-content: center;
   }
   
   .dining-nav {
       display: none;
   }
   
   .slide-info {
       padding: 1.5rem;
   }
   
   .slide-info h3 {
       font-size: 1.8rem;
       margin-bottom: 1.2rem;
   }
   
   .slide-image {
       height: 250px;
   }
   
   .menu-categories {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
       gap: 0.5rem;
       margin-bottom: 1.2rem;
   }
   
   .menu-tab {
       padding: 0.5rem 0.8rem;
       font-size: 0.8rem;
       text-align: center;
   }
   
   .menu-item,
   .event-item {
       padding: 1rem;
   }
   
   .menu-item-info h4,
   .event-info h4 {
       font-size: 1.1rem;
   }
   
   .menu-item-info p,
   .event-info p {
       font-size: 0.85rem;
   }
   
   .event-item {
       flex-direction: column;
       text-align: center;
       gap: 0.8rem;
   }
   
   .event-icon {
       width: 50px;
       height: 50px;
       font-size: 1.3rem;
       align-self: center;
   }
   
   .event-details {
       justify-content: center;
       gap: 0.5rem;
   }
   
   .event-details span {
       font-size: 0.8rem;
       padding: 0.25rem 0.5rem;
   }
   
   .dining-indicators {
       flex-direction: column;
       gap: 0.8rem;
       margin-top: 1.2rem;
   }
   
   .dining-indicator {
       flex-direction: row;
       min-width: auto;
       width: 100%;
       max-width: 200px;
       margin: 0 auto;
       justify-content: center;
       padding: 0.8rem 1rem;
   }
   
   .dining-indicator i {
       font-size: 1.2rem;
   }
   
   .dining-indicator span {
       font-size: 0.85rem;
   }
   
   .overlay-badge {
       padding: 0.6rem 1rem;
       font-size: 0.9rem;
   }
   
   .overlay-badge i {
       font-size: 1rem;
   }
   
   .room-grid {
       grid-template-columns: 1fr;
   }
   
   .gallery-thumbs {
       display: none;
   }
   
   .amenities-grid {
       grid-template-columns: 1fr;
   }
   
   .comparison-table {
       overflow-x: auto;
   }
   
   .form-row {
       grid-template-columns: 1fr;
   }
   
   .newsletter-form {
       flex-direction: column;
   }
   
   .chat-box {
       width: calc(100vw - 40px);
       right: 20px;
       bottom: 90px;
   }
   
   .timeline-content {
       padding: 1.5rem;
   }
   
   .timeline-image {
       width: 80px;
       height: 80px;
   }
   
   .chapter-content {
       padding: 2rem;
   }

   .amenities-grid {
       gap: 1rem;
       padding: 1rem 0.5rem 2rem 0.5rem;
   }

   .amenities-nav {
       display: none;
   }

   .amenities-indicators {
       display: flex;
   }

   .amenity-card {
       min-width: 280px;
       max-width: 280px;
       padding: 2rem 1.5rem;
   }
   
   .amenity-icon {
       width: 70px;
       height: 70px;
       font-size: 2rem;
   }
   
   .amenities-indicators {
       margin-top: 1.5rem;
   }
   
   .amenities-indicator {
       width: 12px;
       height: 12px;
   }
   
   .comparison-section {
       margin-top: 3rem;
       padding: 2rem 1rem;
   }
   
   .comparison-section h3 {
       font-size: 1.5rem;
       margin-bottom: 2rem;
   }
   
   .compare-logo {
       width: 50px;
       height: 50px;
       font-size: 1.2rem;
   }
   
   .amenity-card h4 {
       font-size: 1.2rem;
   }
   
   .amenity-card p {
       font-size: 0.9rem;
   }
   
   .amenity-features span {
       font-size: 0.75rem;
       padding: 0.3rem 0.6rem;
   }

   .customer-feedback h3 {
       font-size: 2rem;
       margin-bottom: 2rem;
   }
   
   .feedback-grid {
       grid-template-columns: 1fr;
       gap: 1.5rem;
   }
   
   .feedback-item {
       padding: 1.5rem;
   }
   
   .feedback-photo {
       width: 70px;
       height: 70px;
       margin-bottom: 1rem;
   }
   
   .feedback-text {
       font-size: 0.9rem;
       padding: 0 0.5rem;
       margin-bottom: 1.2rem;
   }
   
   .feedback-text::before,
   .feedback-text::after {
       font-size: 1.8rem;
   }
   
   .feedback-info h4 {
       font-size: 1.1rem;
   }
   
   .feedback-info span {
       font-size: 0.85rem;
   }
   
   .feedback-source {
       font-size: 0.8rem;
       padding: 0.3rem 0.6rem;
   }
   
   .stat-number {
       font-size: 2rem;
   }
   
   .stat-label {
       font-size: 0.85rem;
   }
   
   .feedback-stats {
       grid-template-columns: 1fr;
       margin-top: 2rem;
       padding: 1.5rem;
   }

   .attractions-left,
   .attractions-right {
       flex-direction: column;
       gap: 1.5rem;
   }

   .attraction-card {
       aspect-ratio: 1.1;
   }

   .attraction-content {
       padding: 1.2rem;
   }

   .attraction-content h4 {
       font-size: 1rem;
   }

   .attraction-content p {
       font-size: 0.85rem;
   }

   .map-container-center {
       height: 300px;
   }

   .loading-content {
       padding: 1rem;
   }
   
   .logo-line-1 {
       font-size: 2.8rem;
       letter-spacing: 4px;
   }
   
   .logo-line-2 {
       font-size: 2.2rem;
       letter-spacing: 2px;
   }
   
   .tagline-text {
       font-size: 1.1rem;
   }
   
   .progress-track {
       width: 250px;
   }
   
   .logo-mountain {
       width: 100px;
       height: 50px;
   }

   .contact-content {
       grid-template-columns: 1fr;
       gap: 2rem;
   }
   
   .card-header {
      padding: 0.75rem 1rem;
   }
   
   .card-content {
      padding: 1rem;
   }
   
   .social-buttons {
      grid-template-columns: 1fr;
   }

    .menu-item.active,
    .event-item.active {
        transform: translateX(5px) scale(1.01);
    }
    
    .menu-item.active::before,
    .event-item.active::before {
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
   .section {
       padding: 60px 0;
   }
   
   .container {
       padding: 0 1rem;
   }
   
   .hero-testimonials {
       bottom: 30px;
   }
   
   .timeline-item {
       padding: 1rem;
   }
   
   .timeline-content {
       padding: 1rem;
   }
   
   .footer-content {
       grid-template-columns: 1fr;
       text-align: center;
   }
   
   .footer-social {
      justify-content: center;
   }
   
   .popup-content {
      margin: 1rem;
      padding: 2rem 1.5rem;
   }

   .amenities-section {
      padding: 60px 0;
   }
   
   .amenity-card {
      min-width: 260px;
      max-width: 260px;
      padding: 1.5rem 1rem;
   }
   
   .amenity-icon {
       width: 60px;
       height: 60px;
       font-size: 1.8rem;
       margin-bottom: 1rem;
   }
   
   .amenity-card h4 {
       font-size: 1.1rem;
       margin-bottom: 0.75rem;
   }
   
   .amenity-card p {
       font-size: 0.85rem;
       margin-bottom: 1rem;
   }
   
   .amenity-features {
       gap: 0.5rem;
   }
   
   .amenity-features span {
       font-size: 0.7rem;
       padding: 0.25rem 0.5rem;
   }
   
   .btn-demo {
       padding: 0.6rem 1rem;
       font-size: 0.85rem;
   }
   
   .comparison-section {
       margin-top: 2rem;
       padding: 1.5rem 0.75rem;
   }
   
   .comparison-section h3 {
       font-size: 1.3rem;
       margin-bottom: 1.5rem;
   }
   
   .comparison-header > div,
   .comparison-row > div {
       padding: 0.75rem 0.5rem;
       font-size: 0.9rem;
   }
   
   .feature-name {
       font-size: 0.9rem;
   }
   
   .feature-value {
       font-size: 0.85rem;
   }
   
   .compare-logo {
       width: 40px;
       height: 40px;
       font-size: 1rem;
   }
   
   .compare-col h4 {
       font-size: 1rem;
   }
   
   .amenities-indicators {
       gap: 0.5rem;
       margin-top: 1rem;
   }
   
   .amenities-indicator {
       width: 10px;
       height: 10px;
   }

   .customer-feedback {
       margin-top: 3rem;
   }
   
   .customer-feedback h3 {
       font-size: 1.5rem;
       margin-bottom: 1.5rem;
   }
   
   .customer-feedback h3::after {
       width: 60px;
       height: 2px;
   }
   
   .feedback-grid {
       gap: 1rem;
   }
   
   .feedback-item {
       padding: 1rem;
   }
   
   .feedback-photo {
       width: 60px;
       height: 60px;
       margin-bottom: 0.8rem;
   }
   
   .feedback-stars {
       gap: 0.2rem;
       margin-bottom: 0.8rem;
   }
   
   .feedback-stars i {
       font-size: 1rem;
   }
   
   .feedback-text {
       font-size: 0.85rem;
       padding: 0 0.3rem;
       margin-bottom: 1rem;
   }
   
   .feedback-text::before,
   .feedback-text::after {
       font-size: 1.5rem;
   }
   
   .feedback-text::before {
       top: -3px;
   }
   
   .feedback-text::after {
       bottom: -12px;
   }
   
   .feedback-info h4 {
       font-size: 1rem;
       margin-bottom: 0.3rem;
   }
   
   .feedback-info span {
       font-size: 0.8rem;
       margin-bottom: 0.5rem;
   }
   
   .feedback-source {
       font-size: 0.75rem;
       padding: 0.25rem 0.5rem;
   }
   
   .feedback-source i {
       font-size: 0.8rem;
   }
   
   .feedback-stats {
       margin-top: 1.5rem;
       padding: 1rem;
       gap: 1rem;
   }
   
   .stat-item {
       padding: 0.75rem 0.5rem;
   }
   
   .stat-number {
       font-size: 1.8rem;
       margin-bottom: 0.3rem;
   }
   
   .stat-label {
       font-size: 0.8rem;
   }

   .dining-section {
       padding: 60px 0;
   }
   
   .slide-info {
       padding: 1rem;
   }
   
   .slide-info h3 {
       font-size: 1.5rem;
       margin-bottom: 1rem;
   }
   
   .slide-info h3::after {
       width: 40px;
       height: 2px;
   }
   
   .slide-image {
       height: 200px;
   }
   
   .menu-categories {
       grid-template-columns: 1fr;
       gap: 0.3rem;
       margin-bottom: 1rem;
   }
   
   .menu-tab {
       padding: 0.4rem 0.6rem;
       font-size: 0.75rem;
   }
   
   .menu-items,
   .events-list {
       gap: 0.8rem;
       margin-bottom: 1rem;
   }
   
   .menu-item,
   .event-item {
       padding: 0.8rem;
   }
   
   .menu-item-info h4,
   .event-info h4 {
       font-size: 1rem;
       margin-bottom: 0.3rem;
   }
   
   .menu-item-info p,
   .event-info p {
       font-size: 0.8rem;
       margin-bottom: 0.8rem;
   }
   
   .menu-item .price,
   .event-price {
       font-size: 1rem;
   }
   
   .event-icon {
       width: 45px;
       height: 45px;
       font-size: 1.2rem;
   }
   
   .event-details span {
       font-size: 0.75rem;
       padding: 0.2rem 0.4rem;
   }
   
   .event-badge {
       top: 5px;
       right: 5px;
       padding: 0.2rem 0.5rem;
       font-size: 0.7rem;
   }
   
   .btn-custom-menu,
   .btn-event-request {
       padding: 0.8rem 1.5rem;
       font-size: 0.9rem;
   }
   
   .dining-indicators {
       margin-top: 1rem;
   }
   
   .dining-indicator {
       padding: 0.6rem 0.8rem;
       max-width: 160px;
   }
   
   .dining-indicator i {
       font-size: 1rem;
   }
   
   .dining-indicator span {
       font-size: 0.8rem;
   }
   
   .overlay-badge {
       padding: 0.5rem 0.8rem;
       font-size: 0.8rem;
   }
   
   .image-overlay {
       padding: 1rem;
   }

   .explore-map-new {
       gap: 2rem;
   }

   .attraction-card {
       aspect-ratio: 1;
   }

   .attraction-content {
       padding: 1rem;
   }

   .attraction-content h4 {
       font-size: 0.95rem;
       margin-bottom: 0.4rem;
   }

   .attraction-content p {
       font-size: 0.8rem;
       margin-bottom: 0.8rem;
   }

   .btn-explore-more {
       padding: 0.5rem 0.8rem;
       font-size: 0.8rem;
   }
}

@media (max-width: 480px) {
   .logo-line-1 {
       font-size: 2.2rem;
       letter-spacing: 2px;
   }
   
   .logo-line-2 {
       font-size: 1.8rem;
       letter-spacing: 1px;
   }
   
   .progress-track {
       width: 200px;
   }
}

@media print {
   .header,
   .back-to-top,
   .chat-widget,
   .offer-popup,
   .slider-nav,
   .slider-indicators {
       display: none !important;
   }
   
   .section {
       page-break-inside: avoid;
   }
   
   .hero {
       height: 50vh;
   }
}

/* Villa Story Styles */
.villa-story {
   margin: 3rem 0 4rem;
   padding: 3rem 2rem;
   background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(244,242,238,0.95));
   border-radius: var(--radius-lg);
   border: 1px solid rgba(139, 69, 19, 0.1);
   box-shadow: var(--shadow-md);
}

.story-content {
   display: grid;
   grid-template-columns: 2fr 1fr;
   gap: 3rem;
   align-items: center;
}

.story-text h3 {
   font-family: var(--font-heading);
   font-size: 2.2rem;
   color: var(--primary);
   margin-bottom: 1.5rem;
   position: relative;
}

.story-text h3::after {
   content: '';
   position: absolute;
   bottom: -0.5rem;
   left: 0;
   width: 60px;
   height: 3px;
   background: var(--accent);
   border-radius: 2px;
}

.story-text p {
   font-size: 1.1rem;
   line-height: 1.8;
   color: var(--text-secondary);
   margin-bottom: 2rem;
   text-align: justify;
}

.story-highlights {
   display: flex;
   flex-wrap: wrap;
   gap: 1.5rem;
}

.highlight-item {
   display: flex;
   align-items: center;
   gap: 0.8rem;
   padding: 0.8rem 1.2rem;
   background: rgba(139, 69, 19, 0.1);
   border-radius: var(--radius-md);
   border-left: 4px solid var(--accent);
   transition: var(--transition);
}

.highlight-item:hover {
   background: rgba(139, 69, 19, 0.15);
   transform: translateX(5px);
}

.highlight-item i {
   color: var(--accent);
   font-size: 1.2rem;
}

.highlight-item span {
   font-weight: 600;
   color: var(--text);
   font-size: 0.95rem;
}

.story-image {
   position: relative;
   border-radius: var(--radius-lg);
   overflow: hidden;
   box-shadow: var(--shadow-lg);
}

.story-image img {
   width: 100%;
   height: auto;
   object-fit: cover;
   transition: var(--transition);
}

.story-image:hover img {
   transform: scale(1.05);
}

/* Responsive adjustments for story */
@media (max-width: 768px) {
   .villa-story {
       margin: 2rem 0;
       padding: 2rem 1.5rem;
   }
   
   .story-content {
       grid-template-columns: 1fr;
       gap: 2rem;
   }
   
   .story-text h3 {
       font-size: 1.8rem;
   }
   
   .story-highlights {
       justify-content: center;
   }
   
   .highlight-item {
       font-size: 0.9rem;
   }
}

/* Attractions Map Styles */
.attractions-map {
   margin: 2.5rem 0;
   padding: 2rem;
   background: rgba(255, 255, 255, 0.95);
   border-radius: var(--radius-lg);
   border: 1px solid rgba(139, 69, 19, 0.1);
   box-shadow: var(--shadow-sm);
}

.attractions-map h4 {
   font-family: var(--font-heading);
   font-size: 1.4rem;
   color: var(--primary);
   margin-bottom: 1.5rem;
   display: flex;
   align-items: center;
   gap: 0.5rem;
}

.attractions-map h4 i {
   color: var(--accent);
   font-size: 1.2rem;
}

.map-container {
   position: relative;
   margin-bottom: 1.5rem;
   overflow: hidden;
   border-radius: var(--radius-md);
   box-shadow: var(--shadow-md);
}

.map-container iframe {
   width: 100%;
   height: 300px;
   border: 0;
   border-radius: var(--radius-md);
}

.map-overlay-info {
   position: absolute;
   top: 1rem;
   right: 1rem;
   background: rgba(255, 255, 255, 0.95);
   backdrop-filter: blur(10px);
   border-radius: var(--radius-md);
   padding: 1rem;
   box-shadow: var(--shadow-sm);
}

.map-legend {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
}

.legend-item {
   display: flex;
   align-items: center;
   gap: 0.8rem;
   font-size: 0.9rem;
   color: var(--text);
}

.legend-marker {
   width: 12px;
   height: 12px;
   border-radius: 50%;
   flex-shrink: 0;
}

.legend-marker.villa {
   background: var(--accent);
   box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
   animation: pulse 2s infinite;
}

.legend-marker.attraction {
   background: var(--secondary);
   border: 2px solid white;
   box-shadow: var(--shadow-sm);
}

@keyframes pulse {
   0%, 100% {
       transform: scale(1);
       opacity: 1;
   }
   50% {
       transform: scale(1.2);
       opacity: 0.7;
   }
}

.map-distances {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 1rem;
}

.distance-item {
   display: flex;
   align-items: center;
   gap: 0.8rem;
   padding: 0.8rem 1rem;
   background: rgba(139, 69, 19, 0.05);
   border-radius: var(--radius-md);
   border-left: 3px solid var(--accent);
   font-size: 0.95rem;
   color: var(--text);
   transition: var(--transition);
}

.distance-item:hover {
   background: rgba(139, 69, 19, 0.1);
   transform: translateY(-2px);
}

.distance-item i {
   color: var(--secondary);
   font-size: 1.1rem;
   width: 20px;
   text-align: center;
}

.distance-item span {
   font-weight: 500;
}

/* Responsive adjustments for map */
@media (max-width: 768px) {
   .attractions-map {
       margin: 2rem 0;
       padding: 1.5rem;
   }
   
   .map-container iframe {
       height: 250px;
   }
   
   .map-overlay-info {
       top: 0.5rem;
       right: 0.5rem;
       padding: 0.8rem;
   }
   
   .map-distances {
       grid-template-columns: 1fr;
       gap: 0.8rem;
   }
   
   .distance-item {
       font-size: 0.9rem;
   }
}

/* Rental Policy Notice Styles */
.rental-policy-notice {
   display: flex;
   gap: 1.5rem;
   align-items: flex-start;
   background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.05));
   border: 2px solid var(--accent);
   border-radius: var(--radius-lg);
   padding: 2rem;
   margin: 2rem 0 3rem;
   position: relative;
   overflow: hidden;
}

.rental-policy-notice::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 4px;
   background: var(--gradient-primary);
}

.notice-icon {
   flex-shrink: 0;
   width: 60px;
   height: 60px;
   background: var(--accent);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
   font-size: 1.5rem;
   box-shadow: var(--shadow-md);
}

.notice-content h4 {
   font-family: var(--font-heading);
   font-size: 1.3rem;
   color: var(--primary);
   margin-bottom: 0.8rem;
}

.notice-content p {
   font-size: 1rem;
   line-height: 1.6;
   color: var(--text-secondary);
   margin-bottom: 1.5rem;
}

.notice-content p strong {
   color: var(--primary);
   font-weight: 600;
}

.notice-highlights {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
}

.notice-highlights span {
   display: flex;
   align-items: center;
   gap: 0.5rem;
   font-size: 0.9rem;
   color: var(--text);
   font-weight: 500;
   padding: 0.5rem 1rem;
   background: rgba(255, 255, 255, 0.7);
   border-radius: var(--radius-sm);
   border: 1px solid rgba(139, 69, 19, 0.2);
}

.notice-highlights span i {
   color: var(--secondary);
   font-size: 0.8rem;
}

/* Featured Policy Item */
.policy-item.featured {
   background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.05));
   border: 2px solid var(--accent);
   position: relative;
   border-radius: 10px;
}

.policy-item.featured::before {
   content: 'QUAN TRỌNG';
   position: absolute;
   top: -20px;
   right: -1rem;
   background: #2e8b57c7;
   color: white;
   font-size: 0.7rem;
   font-weight: 600;
   padding: 0.2rem 0.8rem;
   border-radius: var(--radius-sm);
   letter-spacing: 0.5px;
}

.policy-item.featured i {
   color: var(--accent);
   font-size: 1.5rem;
}

.policy-item.featured h4 {
   color: var(--primary);
   font-weight: 600;
}

/* Responsive adjustments for notice */
@media (max-width: 768px) {
   .rental-policy-notice {
       flex-direction: column;
       gap: 1rem;
       padding: 1.5rem;
       text-align: center;
   }
   
   .notice-highlights {
       justify-content: center;
   }
   
   .notice-highlights span {
       font-size: 0.85rem;
   }
}

/* ===== VILLA DETAILS SECTION ===== */
.villa-details-section {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h3 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.section-header h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.villa-intro {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.villa-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.villa-card {
    background: var(--bg-white);
    border: 2px solid #e9ecef;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.villa-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.villa-card.villa-2::before {
    background: var(--gradient-secondary);
}

.villa-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.villa-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.villa-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.villa-card.villa-2 .villa-badge {
    background: var(--gradient-secondary);
    color: var(--text-dark);
}

.villa-name {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.villa-area {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.villa-area i {
    color: var(--secondary);
}

.villa-info {
    display: grid;
    gap: 1rem;
}

.info-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
    align-items: flex-start;
    padding: 0.8rem;
    background: var(--bg-cream);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent);
}

.info-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.info-content h6 {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.3rem 0;
}

.info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.info-list li {
    background: white;
    color: var(--text-light);
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
    border: 1px solid #e9ecef;
}

.room-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.room-item {
    text-align: center;
    background: white;
    padding: 0.8rem 0.4rem;
    border-radius: var(--radius-sm);
    border: 1px solid #e9ecef;
    transition: var(--transition);
}

.room-item:hover {
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.room-count {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.2rem;
}

.room-type {
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 500;
}

.capacity-info {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.05));
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
}

.capacity-number {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}

.capacity-label {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.comparison-table {
    margin-top: 2rem;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-table th {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 0.8rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.comparison-table td {
    padding: 0.8rem;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.85rem;
}

.comparison-table tbody tr:hover {
    background: var(--bg-cream);
}

.feature-name {
    text-align: left !important;
    font-weight: 600;
    color: var(--primary);
}

.feature-value {
    color: var(--text-light);
}

.highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    color: var(--primary);
    font-weight: 600;
}















/* ===== PRICING & SERVICES SECTION ===== */
.pricing-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    top: -250px;
    right: -250px;
    animation: float 20s ease-in-out infinite;
}

.section-subtitle-2 {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin: 3rem 0 2rem;
    text-align: center;
    position: relative;
}

.section-subtitle-2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary);
}

/* Pricing Tables */
.pricing-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-secondary);
}

.pricing-card.featured {
    position: relative;
    background: linear-gradient(135deg, #fff 0%, #faf8f5 100%);
}

.pricing-card.featured::before {
    background: linear-gradient(90deg, #dc3545 0%, #ff6b6b 50%, #dc3545 100%);
    height: 8px;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.promo-badge {
    position: absolute;
    top: 10px;
    right: 30px;
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
    z-index: 10;
}

.pricing-header h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.pricing-table-simple {
    margin-top: 1.5rem;
}

.pricing-table-simple {
    overflow-x: auto;
}

.pricing-table-simple table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.pricing-table-simple th {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 0.8rem;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap;
}

.pricing-table-simple td {
    padding: 1rem 0.8rem;
    border: 1px solid rgba(0,0,0,0.08);
    color: var(--text-dark);
    font-size: 0.95rem;
    text-align: center;
    vertical-align: middle;
}

.pricing-table-simple td strong {
    color: var(--primary);
    font-size: 1rem;
}

.pricing-table-simple td small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.price {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.05rem;
    white-space: nowrap;
}

.price::after {
    content: 'đ';
    font-size: 0.85rem;
    margin-left: 2px;
}

.price-promo {
    text-align: center;
}

.price-promo .old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.85rem;
    display: none;
}

.price-promo .new {
    color: #dc3545;
    font-weight: 700;
    font-size: 1.1rem;
}

.price-promo .new::after {
    content: 'đ';
    font-size: 0.85rem;
    margin-left: 2px;
}

/* Services Included */
.services-included {
    margin: 3rem 0;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.included-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.included-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.included-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.included-item:hover::after {
    transform: scaleX(1);
}

.included-item i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.included-item h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.included-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}



/* ===== VILLA RULES SECTION ===== */
.villa-rules-section {
    background: var(--bg-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    /* box-sizing: border-box; */
}

.villa-rules-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    top: -300px;
    left: -300px;
    animation: float 35s ease-in-out infinite;
}












/* ===== VILLA RULES SLIDER - COMPACT VERSION ===== */

/* Main Container */
.villa-rules-slider {
    position: relative; min-height: 600px; margin: 2rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl);
}

/* Navigation Buttons */
.villa-rules-slider .slide-nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 55px; height: 55px; z-index: 10; cursor: pointer;
    background: rgba(255, 255, 255, 0.95); border: 2px solid var(--secondary);
    border-radius: 50%; color: var(--primary); font-size: 1.3rem;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(10px); box-shadow: var(--shadow-lg);
    transition: var(--transition);
}
.villa-rules-slider .slide-nav-btn:hover {
    background: var(--secondary); color: white;
    transform: translateY(-50%) scale(1.1); box-shadow: var(--shadow-xl);
}
.villa-rules-slider .slide-nav-btn:disabled {
    opacity: 0.4; cursor: not-allowed; transform: translateY(-50%);
}
.villa-rules-slider .slide-prev { left: 20px; }
.villa-rules-slider .slide-next { right: 20px; }

/* Slider Structure */
.villa-rules-slider .rules-slider-container {
    width: 100%; height: 100%; overflow: hidden; position: relative;
}
.villa-rules-slider .rules-slides-track {
    display: flex; width: 500%; height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.villa-rules-slider .rule-slide {
    width: 20%; min-height: 600px; padding: 3rem 2rem;
    display: flex; flex-direction: column; position: relative; overflow-y: auto;
}

/* Slide Headers */
.villa-rules-slider .rule-slide .slide-header {
    display: flex; align-items: center; gap: 1.5rem;
    margin-bottom: 2.5rem; padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}
.villa-rules-slider .rule-slide .slide-icon-wrapper {
    width: 70px; height: 70px; flex-shrink: 0;
    background: var(--gradient-primary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.8rem; box-shadow: var(--shadow-md);
}
.villa-rules-slider .rule-slide .slide-title-section { flex: 1; }
.villa-rules-slider .rule-slide .slide-title {
    color: var(--primary); font-size: 2rem; margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}
.villa-rules-slider .rule-slide .slide-subtitle {
    color: var(--text-light); font-size: 1rem; margin: 0; line-height: 1.5;
}
.villa-rules-slider .rule-slide .slide-content {
    flex: 1; display: flex; flex-direction: column;
}

/* ===== SLIDE 1: RULES ===== */
.villa-rules-slider .rule-grid { display: grid; gap: 1.5rem; }
.villa-rules-slider .rule-item {
    background: white; border-radius: var(--radius-md); padding: 1.5rem;
    box-shadow: var(--shadow-sm); border-left: 4px solid #e9ecef;
    display: flex; align-items: flex-start; gap: 1rem; transition: var(--transition);
}
.villa-rules-slider .rule-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.villa-rules-slider .rule-item.standard { border-left-color: var(--secondary); }
.villa-rules-slider .rule-item.danger { border-left-color: #dc3545; }
.villa-rules-slider .rule-item.warning { border-left-color: #ffc107; }
.villa-rules-slider .rule-item.info { border-left-color: var(--accent); }

.villa-rules-slider .rule-icon {
    width: 45px; height: 45px; flex-shrink: 0;
    background: var(--bg-cream); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--secondary); font-size: 1.2rem;
}
.villa-rules-slider .rule-item.danger .rule-icon { background: rgba(220, 53, 69, 0.1); color: #dc3545; }
.villa-rules-slider .rule-item.warning .rule-icon { background: rgba(255, 193, 7, 0.1); color: #ffc107; }
.villa-rules-slider .rule-item.info .rule-icon { background: rgba(46, 139, 87, 0.1); color: var(--accent); }

.villa-rules-slider .rule-text { flex: 1; }
.villa-rules-slider .rule-text h4 { color: var(--primary); margin-bottom: 0.5rem; font-size: 1.1rem; }
.villa-rules-slider .rule-text p { color: var(--text-light); margin-bottom: 0.8rem; line-height: 1.6; }

.villa-rules-slider .rule-highlight {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.4rem 0.8rem; border-radius: var(--radius-sm);
    font-size: 0.85rem; font-weight: 500;
    background: rgba(212, 175, 55, 0.1); color: var(--secondary);
}
.villa-rules-slider .rule-highlight.success { background: rgba(40, 167, 69, 0.1); color: #28a745; }
.villa-rules-slider .rule-highlight.danger { background: rgba(220, 53, 69, 0.1); color: #dc3545; }
.villa-rules-slider .rule-highlight.warning { background: rgba(255, 193, 7, 0.1); color: #ffc107; }
.villa-rules-slider .rule-highlight.info { background: rgba(23, 162, 184, 0.1); color: #17a2b8; }

/* ===== SLIDE 2: TIME ===== */
.villa-rules-slider .time-info-section { display: flex; flex-direction: column; gap: 2rem; }
.villa-rules-slider .time-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.villa-rules-slider .time-card {
    background: white; border-radius: var(--radius-lg); padding: 2rem; text-align: center;
    box-shadow: var(--shadow-md); position: relative; overflow: hidden; transition: var(--transition);
}
.villa-rules-slider .time-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--gradient-secondary);
}
.villa-rules-slider .time-card.checkin::before { background: var(--gradient-primary); }
.villa-rules-slider .time-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }

.villa-rules-slider .time-icon {
    width: 60px; height: 60px; margin: 0 auto 1rem;
    background: var(--gradient-secondary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dark); font-size: 1.5rem; box-shadow: var(--shadow-sm);
}
.villa-rules-slider .time-card.checkin .time-icon { background: var(--gradient-primary); color: white; }

.villa-rules-slider .time-details { margin-bottom: 1.5rem; }
.villa-rules-slider .time-label {
    color: var(--text-light); font-size: 0.9rem; margin-bottom: 0.5rem;
    text-transform: uppercase; letter-spacing: 1px;
}
.villa-rules-slider .time-value {
    color: var(--primary); font-size: 2.5rem; font-weight: 700;
    font-family: 'Playfair Display', serif; margin-bottom: 0.3rem;
}
.villa-rules-slider .time-note { color: var(--text-muted); font-size: 0.8rem; }

.villa-rules-slider .time-features { display: flex; flex-direction: column; gap: 0.5rem; }
.villa-rules-slider .time-features span {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    color: var(--text-light); font-size: 0.85rem;
}
.villa-rules-slider .time-features i { color: var(--secondary); }

.villa-rules-slider .late-fee-section {
    background: white; border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-sm);
}
.villa-rules-slider .section-title {
    display: flex; align-items: center; gap: 0.8rem;
    margin-bottom: 1.5rem; color: var(--primary);
}
.villa-rules-slider .section-title i { color: var(--secondary); font-size: 1.2rem; }

.villa-rules-slider .fee-table { display: flex; flex-direction: column; gap: 1rem; }
.villa-rules-slider .fee-row {
    display: grid; grid-template-columns: 1fr auto 1fr; gap: 1rem; align-items: center;
    padding: 1rem; background: var(--bg-cream); border-radius: var(--radius-sm);
    border-left: 3px solid var(--secondary);
}
.villa-rules-slider .fee-duration {
    display: flex; align-items: center; gap: 0.5rem;
    color: var(--text-dark); font-weight: 500;
}
.villa-rules-slider .fee-duration i { color: var(--secondary); }
.villa-rules-slider .fee-amount {
    font-weight: 700; font-size: 1.1rem; text-align: center;
    padding: 0.4rem 0.8rem; border-radius: var(--radius-sm);
}
.villa-rules-slider .fee-amount.warning { background: rgba(255, 193, 7, 0.2); color: #e0a800; }
.villa-rules-slider .fee-amount.danger { background: rgba(220, 53, 69, 0.2); color: #dc3545; }
.villa-rules-slider .fee-description { color: var(--text-light); font-size: 0.9rem; text-align: right; }

/* ===== SLIDE 3: PRICING ===== */
.villa-rules-slider .villa-pricing-section {
    background: white; border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-sm);
}
.villa-rules-slider .villa-cards { display: grid; gap: 2rem; }
.villa-rules-slider .villa-card {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-cream) 100%);
    border: 2px solid #e9ecef; border-radius: var(--radius-md); padding: 1.5rem;
    position: relative; overflow: hidden; transition: var(--transition);
}
.villa-rules-slider .villa-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--gradient-primary);
}
.villa-rules-slider .villa-card.featured { border-color: var(--secondary); box-shadow: var(--shadow-md); }
.villa-rules-slider .villa-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.villa-rules-slider .villa-header {
    display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
}
.villa-rules-slider .villa-icon {
    width: 50px; height: 50px;
    background: var(--gradient-secondary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dark); font-size: 1.3rem;
}
.villa-rules-slider .villa-info h4 { color: var(--primary); margin-bottom: 0.5rem; font-size: 1.2rem; }
.villa-rules-slider .villa-specs { display: flex; gap: 1rem; flex-wrap: wrap; }
.villa-rules-slider .villa-specs span {
    display: flex; align-items: center; gap: 0.3rem;
    color: var(--text-light); font-size: 0.85rem;
}
.villa-rules-slider .villa-specs i { color: var(--secondary); }

.villa-rules-slider .villa-capacity {
    background: rgba(212, 175, 55, 0.1); border-radius: var(--radius-sm);
    padding: 1rem; margin-bottom: 1.5rem;
}
.villa-rules-slider .capacity-standard, .villa-rules-slider .capacity-max {
    margin-bottom: 0.5rem; color: var(--text-dark);
}
.villa-rules-slider .capacity-standard strong, .villa-rules-slider .capacity-max strong {
    color: var(--primary);
}

.villa-rules-slider .pricing-list { display: flex; flex-direction: column; gap: 0.8rem; }
.villa-rules-slider .price-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.6rem 0; border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.villa-rules-slider .price-item:last-child { border-bottom: none; }
.villa-rules-slider .price-item.child {
    background: rgba(46, 139, 87, 0.05); padding: 0.6rem 0.8rem;
    border-radius: var(--radius-sm); border-bottom: none; margin-bottom: 0.3rem;
}
.villa-rules-slider .price-label { color: var(--text-light); font-size: 0.9rem; }
.villa-rules-slider .price-value { color: var(--primary); font-weight: 600; font-size: 0.95rem; }

/* ===== SLIDE 4: POLICY ===== */
.villa-rules-slider .policy-notice {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
    border: 2px solid #dc3545; border-radius: var(--radius-md);
    padding: 1.5rem; margin-bottom: 2rem;
    display: flex; align-items: center; gap: 1rem;
}
.villa-rules-slider .notice-icon {
    width: 50px; height: 50px; flex-shrink: 0;
    background: #dc3545; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.3rem;
}
.villa-rules-slider .notice-content { flex: 1; }
.villa-rules-slider .notice-content strong { color: #dc3545; }

.villa-rules-slider .policy-timeline { display: flex; flex-direction: column; gap: 1.5rem; }
.villa-rules-slider .timeline-item {
    background: white; border-radius: var(--radius-md); padding: 1.5rem;
    box-shadow: var(--shadow-sm); display: flex; gap: 1rem;
    border-left: 4px solid var(--secondary); transition: var(--transition);
}
.villa-rules-slider .timeline-item:hover { transform: translateX(5px); box-shadow: var(--shadow-md); }

.villa-rules-slider .timeline-icon {
    width: 50px; height: 50px; flex-shrink: 0;
    background: var(--gradient-secondary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dark); font-size: 1.2rem;
}
.villa-rules-slider .timeline-content { flex: 1; }
.villa-rules-slider .timeline-content h4 {
    color: var(--primary); margin-bottom: 0.8rem; font-size: 1.1rem;
}
.villa-rules-slider .timeline-content p {
    color: var(--text-light); margin-bottom: 0.5rem; line-height: 1.6;
}
.villa-rules-slider .timeline-content strong { color: var(--primary); }

.villa-rules-slider .timeline-note {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 0.8rem; border-radius: var(--radius-sm);
    font-size: 0.85rem; margin-top: 0.8rem;
    background: rgba(212, 175, 55, 0.1); color: var(--secondary);
}
.villa-rules-slider .timeline-note.warning { background: rgba(255, 193, 7, 0.1); color: #e0a800; }
.villa-rules-slider .timeline-note.info { background: rgba(23, 162, 184, 0.1); color: #17a2b8; }

/* ===== SLIDE 5: PAYMENT ===== */
.villa-rules-slider .payment-process { display: flex; flex-direction: column; gap: 2.5rem; }
.villa-rules-slider .payment-steps { display: flex; gap: 2rem; }
.villa-rules-slider .payment-step {
    flex: 1; background: white; border-radius: var(--radius-lg); padding: 2rem;
    box-shadow: var(--shadow-md); position: relative; overflow: hidden; transition: var(--transition);
}
.villa-rules-slider .payment-step::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--gradient-primary);
}
.villa-rules-slider .payment-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }

.villa-rules-slider .step-number {
    position: absolute; top: -15px; right: 20px;
    width: 40px; height: 40px;
    background: var(--gradient-secondary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dark); font-weight: 700; font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
}
.villa-rules-slider .step-content h4 {
    color: var(--primary); margin-bottom: 1rem; font-size: 1.2rem;
}
.villa-rules-slider .step-details { margin-bottom: 1.5rem; }
.villa-rules-slider .step-details p {
    color: var(--text-light); margin-bottom: 0.5rem; line-height: 1.6;
}
.villa-rules-slider .step-details .highlight { color: var(--primary); font-weight: 600; }

.villa-rules-slider .step-features { display: flex; flex-direction: column; gap: 0.5rem; }
.villa-rules-slider .step-features span {
    display: flex; align-items: center; gap: 0.5rem;
    color: var(--text-light); font-size: 0.9rem;
}
.villa-rules-slider .step-features i { color: var(--secondary); width: 16px; }

.villa-rules-slider .payment-methods {
    background: white; border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-sm);
}
.villa-rules-slider .payment-methods h4 {
    color: var(--primary); margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 0.5rem;
}
.villa-rules-slider .payment-methods h4 i { color: var(--secondary); }

.villa-rules-slider .methods-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem;
}
.villa-rules-slider .method-card {
    background: var(--bg-cream); border: 2px solid #e9ecef;
    border-radius: var(--radius-md); padding: 1.5rem; text-align: center;
    position: relative; transition: var(--transition);
}
.villa-rules-slider .method-card:hover {
    border-color: var(--secondary); transform: translateY(-3px); box-shadow: var(--shadow-sm);
}

.villa-rules-slider .method-icon {
    width: 50px; height: 50px; margin: 0 auto 1rem;
    background: var(--gradient-secondary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dark); font-size: 1.3rem;
}
.villa-rules-slider .method-info h5 {
    color: var(--primary); margin-bottom: 0.3rem; font-size: 1rem;
}
.villa-rules-slider .method-info p { color: var(--text-light); font-size: 0.85rem; margin: 0; }

.villa-rules-slider .method-badge {
    position: absolute; top: 10px; right: 10px;
    padding: 0.2rem 0.6rem; border-radius: var(--radius-xl);
    font-size: 0.7rem; font-weight: 600;
    background: var(--bg-light); color: var(--text-light);
}
.villa-rules-slider .method-badge.preferred { background: var(--gradient-primary); color: white; }

/* ===== INDICATORS ===== */
.villa-rules-slider .slide-indicators {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
    padding: 1rem 2rem; display: flex; justify-content: center; gap: 0.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}
.villa-rules-slider .indicator {
    display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
    padding: 0.8rem 1rem; border-radius: var(--radius-md); cursor: pointer;
    min-width: 80px; text-align: center; border: 2px solid transparent;
    transition: var(--transition);
}
.villa-rules-slider .indicator:hover {
    background: rgba(212, 175, 55, 0.1); transform: translateY(-2px);
}
.villa-rules-slider .indicator.active {
    background: var(--gradient-secondary); color: var(--text-dark);
    border-color: var(--secondary); box-shadow: var(--shadow-sm);
}

.villa-rules-slider .indicator-icon { font-size: 1.2rem; color: var(--secondary); }
.villa-rules-slider .indicator.active .indicator-icon { color: var(--primary); }
.villa-rules-slider .indicator-label {
    font-size: 0.75rem; font-weight: 600; color: var(--text-light);
    text-transform: uppercase; letter-spacing: 0.5px;
}
.villa-rules-slider .indicator.active .indicator-label { color: var(--text-dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .villa-rules-slider { min-height: 550px; }
    .villa-rules-slider .rule-slide { padding: 2rem 1.5rem; min-height: 550px; }
    .villa-rules-slider .rule-slide .slide-header { flex-direction: column; text-align: center; gap: 1rem; }
    .villa-rules-slider .rule-slide .slide-title { font-size: 1.8rem; }
    .villa-rules-slider .time-cards { grid-template-columns: 1fr; gap: 1.5rem; }
    .villa-rules-slider .payment-steps { flex-direction: column; gap: 1.5rem; }
    .villa-rules-slider .methods-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .villa-rules-slider { margin: 1rem 0; min-height: 500px; }
    .villa-rules-slider .slide-nav-btn { width: 45px; height: 45px; font-size: 1.1rem; }
    .villa-rules-slider .slide-prev { left: 10px; }
    .villa-rules-slider .slide-next { right: 10px; }
    .villa-rules-slider .rule-slide { padding: 1.5rem 1rem; min-height: 500px; }
    .villa-rules-slider .rule-slide .slide-icon-wrapper { width: 60px; height: 60px; font-size: 1.5rem; }
    .villa-rules-slider .rule-slide .slide-title { font-size: 1.5rem; }
    .villa-rules-slider .rule-item { flex-direction: column; text-align: center; gap: 0.8rem; }
    .villa-rules-slider .timeline-item { flex-direction: column; text-align: center; gap: 0.8rem; }
    .villa-rules-slider .villa-header { flex-direction: column; text-align: center; gap: 0.8rem; }
    .villa-rules-slider .slide-indicators { padding: 0.8rem 1rem; gap: 0.3rem; flex-wrap: wrap; }
    .villa-rules-slider .indicator { min-width: 60px; padding: 0.6rem 0.8rem; }
}

@media (max-width: 480px) {
    .villa-rules-slider { min-height: 450px; }
    .villa-rules-slider .rule-slide { padding: 1rem 0.8rem; min-height: 450px; }
    .villa-rules-slider .rule-slide .slide-header { margin-bottom: 1.5rem; padding-bottom: 1rem; }
    .villa-rules-slider .rule-slide .slide-title { font-size: 1.3rem; }
    .villa-rules-slider .fee-row { grid-template-columns: 1fr; gap: 0.5rem; text-align: center; }
    .villa-rules-slider .step-number { width: 35px; height: 35px; font-size: 1rem; top: -12px; right: 15px; }
    .villa-rules-slider .slide-indicators { padding: 0.6rem 0.8rem; gap: 0.2rem; }
    .villa-rules-slider .indicator { min-width: 50px; padding: 0.5rem 0.6rem; }
    .villa-rules-slider .indicator-label { font-size: 0.65rem; }
}

/* Animations & Performance */
.villa-rules-slider .rules-slides-track { will-change: transform; }
.villa-rules-slider .slide-nav-btn, .villa-rules-slider .indicator { will-change: transform; }

/* Accessibility */
@media (prefers-contrast: high) {
    .villa-rules-slider { border: 2px solid var(--text-dark); }
    .villa-rules-slider .rule-item, .villa-rules-slider .time-card,
    .villa-rules-slider .villa-card, .villa-rules-slider .timeline-item,
    .villa-rules-slider .payment-step, .villa-rules-slider .method-card {
        border: 1px solid var(--text-dark);
    }
}

@media (prefers-reduced-motion: reduce) {
    .villa-rules-slider .rules-slides-track,
    .villa-rules-slider .slide-nav-btn, .villa-rules-slider .indicator,
    .villa-rules-slider .rule-item, .villa-rules-slider .time-card,
    .villa-rules-slider .villa-card, .villa-rules-slider .timeline-item,
    .villa-rules-slider .payment-step, .villa-rules-slider .method-card {
        transition: none;
    }
}











/* Responsive Design */
@media (max-width: 768px) {
    .villa-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .villa-card {
        padding: 1rem;
    }
    
    .room-summary {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        gap: 0.5rem;
    }
    
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem 0.4rem;
    }
}

@media (max-width: 480px) {
    .villa-details-section {
        padding: 2rem 0;
        margin-top: 2rem;
    }
    
    .villa-detail-card {
        padding: 1rem;
    }
    
    .villa-area {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .structure-item {
        padding: 1rem;
    }
    
    .room-type {
        padding: 0.8rem;
    }
}