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

:root {
    --primary-color: #1a2332;
    --secondary-color: #d4af37;
    --accent-color: #2c5f7d;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #1a2332 0%, #2c5f7d 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a2332 0%, #2c5f7d 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

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

.logo-animation {
    animation: logoFadeIn 1s ease-in-out;
}

.logo-animation h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 0;
    animation: logoGlow 2s ease-in-out infinite;
}

.logo-animation span {
    display: block;
    font-size: 12px;
    letter-spacing: 8px;
    color: var(--secondary-color);
    text-align: center;
    margin-top: -10px;
    animation: textFadeIn 1s ease-in-out 0.3s both;
}

.loading-bar {
    width: 300px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin: 40px auto 0;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: var(--gradient-gold);
    width: 0;
    border-radius: 10px;
    animation: loadingProgress 2s ease-in-out forwards;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes logoGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.6), 0 0 30px rgba(212, 175, 55, 0.4);
    }
}

@keyframes textFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loadingProgress {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Image */
.logo-img {
    height: 70px;
    width: auto;
    transition: all 0.4s ease;
    max-width: 200px;
}

.navbar .logo .logo-img.logo-white {
    display: block !important;
}

.navbar .logo .logo-img.logo-dark {
    display: none !important;
}

.navbar.scrolled .logo .logo-img.logo-white {
    display: none !important;
}

.navbar.scrolled .logo .logo-img.logo-dark {
    display: block !important;
}

.navbar.scrolled .logo-img {
    height: 60px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
    text-decoration: none;
    margin-right: auto;
    margin-left: -20px;
}

a.logo,
a.logo:hover,
a.logo:visited {
    text-decoration: none;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 3px;
    transition: all 0.4s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .logo h1 {
    color: var(--primary-color);
    font-size: 28px;
    text-shadow: none;
}

.navbar.scrolled .logo span {
    color: #8b7355;
}

.logo span {
    display: block;
    font-size: 10px;
    letter-spacing: 6px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-top: -8px;
    transition: all 0.4s ease;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.4s ease;
    position: relative;
    padding: 8px 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .nav-menu a {
    color: #2c3e50;
    text-shadow: none;
}

.navbar.scrolled .nav-menu a:hover {
    color: #8b7355;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #c9b896;
    transition: width 0.4s ease;
}

.nav-menu a:hover {
    color: #c9b896;
}

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

.nav-menu a.active::before {
    width: 100%;
}

.reserve-btn {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 10px 26px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: none;
}

.reserve-btn:hover {
    transform: translateY(-2px);
    box-shadow: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: #c9b896;
    color: #c9b896;
}

.navbar.scrolled .reserve-btn {
    border-color: #8b7355;
    color: #8b7355;
}

.navbar.scrolled .reserve-btn:hover {
    background: #8b7355;
    color: #fff;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.4s ease;
}

.navbar.scrolled .hamburger span {
    background: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-video,
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-video video.loaded {
    opacity: 1;
}

.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.video-fallback.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-fallback img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.8) 0%, rgba(44, 95, 125, 0.6) 100%);
}

/* Premium Hero Content */
.hero-content-premium {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 60px;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-text-block {
    max-width: 700px;
    animation: fadeInLeft 1.2s ease;
}

.hero-mini-tag {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
}

.hero-title-ultra {
    font-family: 'Cinzel', serif;
    font-size: 72px;
    font-weight: 500;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.highlight-gold {
    color: #fff;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #fff;
    background-clip: unset;
    display: inline-block;
    position: relative;
}

.highlight-gold::after {
    display: none;
}

.hero-description {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 22px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-premium-primary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 16px 38px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    box-shadow: none;
}

.btn-premium-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #c9b896;
    color: #c9b896;
    transform: translateY(-3px);
    box-shadow: none;
}

.btn-premium-primary i {
    transition: transform 0.3s ease;
}

.btn-premium-primary:hover i {
    transform: translateX(5px);
}

.btn-premium-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 16px 38px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    text-decoration: none;
}

.btn-premium-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #c9b896;
    color: #c9b896;
    transform: translateY(-3px);
}

.hero-stats-mini {
    display: flex;
    align-items: center;
    gap: 30px;
}

.stat-mini {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.scroll-indicator-premium {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator-premium:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-indicator-premium span {
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.8), transparent);
    animation: scrollLineMove 2s ease-in-out infinite;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 0 auto;
}

/* About Section - Ultra Premium Design */
.about-minimal {
    background: #ffffff;
    padding: 140px 0 80px;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
}

/* Stats Section with Palm Pattern Background */
.stats-section-palm {
    background: #ffffff;
    background-image: url('palmiye.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 100px;
    position: relative;
}

/* Top Fade - White to Clear Palm Pattern */
.stats-section-palm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 350px;
    background: linear-gradient(to bottom, 
        rgba(255,255,255,1) 0%, 
        rgba(255,255,255,0.95) 20%,
        rgba(255,255,255,0.7) 50%,
        rgba(255,255,255,0.3) 80%,
        rgba(255,255,255,0) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Bottom Gradient Transition - From Palm Section to Next */
.stats-section-palm::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

/* ============================================
   RESTAURANT & BAR SECTION
   ============================================ */

.restaurant-bar-section {
    background: #ffffff;
    padding: 100px 0;
    overflow: visible;
}

.restaurant-bar-section .container {
    overflow: visible;
}

.section-header-cratos {
    margin-bottom: 50px;
}

.section-title-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.section-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 18px;
    color: #8b7355;
    font-weight: 400;
}

.section-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: #2c3e50;
    letter-spacing: 8px;
    margin: 0;
}

.restaurant-carousel-wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    border: 2px solid #8b7355;
    background: #fff;
    color: #8b7355;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
}

.restaurant-carousel {
    flex: 1;
    overflow: hidden;
}

.carousel-btn:hover {
    background: #8b7355;
    color: #fff;
}

.carousel-btn i {
    font-size: 18px;
}

.restaurant-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

.restaurant-card {
    position: relative;
    flex: 0 0 calc(33.333% - 17px);
    min-width: 0;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.restaurant-card-image {
    position: relative;
    padding: 12px;
    overflow: hidden;
}

.restaurant-card-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.5s ease;
}

.restaurant-card:hover .restaurant-card-image img {
    transform: scale(1.05);
}

.restaurant-card-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
    border-radius: 4px;
    pointer-events: none;
}

.restaurant-card-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    color: #fff;
    z-index: 3;
}

.restaurant-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 8px;
    color: #fff;
}

.restaurant-card-content p {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    margin: 0;
    line-height: 1.5;
}

/* Restaurant Corner Frames */
.restaurant-card-image .corner-frame {
    z-index: 4;
}

/* Responsive Restaurant Carousel */
@media (max-width: 1200px) {
    .restaurant-card {
        flex: 0 0 calc(50% - 13px);
    }
}

@media (max-width: 768px) {
    .restaurant-card {
        flex: 0 0 100%;
        min-height: 280px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .section-main-title {
        font-size: 32px;
        letter-spacing: 4px;
    }
    
    .restaurant-card-image img {
        height: 280px;
    }
    
    .restaurant-card-content h3 {
        font-size: 22px;
    }
    
    .restaurant-card-content p {
        font-size: 14px;
    }
}

/* Stats Grid - Cratos Style */
.stats-grid-cratos {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.stat-cards-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Stat Card Cratos Style */
.stat-card-cratos {
    position: relative;
}

.stat-card-image {
    position: relative;
    padding: 15px;
    height: 100%;
}

.stat-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.stat-card-large .stat-card-image img {
    min-height: 450px;
}

.stat-card-small .stat-card-image img {
    min-height: 200px;
}

.stat-card-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    border-radius: 8px;
    pointer-events: none;
}

.stat-card-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    color: #fff;
    z-index: 3;
}

.stat-badge {
    display: inline-block;
    background: #8b7355;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.stat-number-group {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 10px;
}

.stat-number-big {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
}

.stat-card-small .stat-number-big {
    font-size: 36px;
}

.stat-symbol {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #fff;
}

.stat-symbol.star {
    color: #fff;
}

.stat-card-small .stat-symbol {
    font-size: 20px;
}

.stat-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 10px;
}

.stat-card-small .stat-title {
    font-size: 18px;
}

.stat-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin: 0;
}

.stat-card-small .stat-desc {
    font-size: 13px;
}

.stat-card-icon {
    position: absolute;
    top: -60px;
    right: 0;
    width: 50px;
    height: 50px;
    background: rgba(201, 184, 150, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card-icon i {
    font-size: 20px;
    color: #c9b896;
}

/* Corner Frames for Stat Cards */
.stat-card-image .corner-frame {
    z-index: 4;
}

/* Responsive Stats */
@media (max-width: 992px) {
    .stats-grid-cratos {
        grid-template-columns: 1fr;
    }
    
    .stat-card-large .stat-card-image img {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .stat-cards-right {
        flex-direction: column;
    }
    
    .stat-number-big {
        font-size: 36px;
    }
    
    .stat-card-small .stat-number-big {
        font-size: 28px;
    }
}

/* Right Palm Tree - IMG Element - Transparent */
.palm-decoration-right {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%) scaleX(-1);
    width: 450px;
    height: 850px;
    object-fit: contain;
    pointer-events: none;
    opacity: 0.65;
    animation: palmSwayRight 8s ease-in-out infinite;
    z-index: 0;
}

/* Left Palm Tree - Screen Edge - Transparent */
.about-minimal::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 450px;
    height: 850px;
    background-image: url('palmiye.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    pointer-events: none;
    opacity: 0.65;
    animation: palmSwayLeft 8s ease-in-out infinite;
    z-index: 2;
}

@keyframes palmSwayLeft {
    0%, 100% {
        transform: translateY(-50%) rotate(0deg);
    }
    50% {
        transform: translateY(-50%) rotate(2deg);
    }
}



@keyframes palmSwayRight {
    0%, 100% {
        transform: translateY(-50%) scaleX(-1) rotate(0deg);
    }
    50% {
        transform: translateY(-50%) scaleX(-1) rotate(-2deg);
    }
}

.about-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.about-minimal-content {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

/* Handwritten Quote Section - WOW Effect */
.handwritten-quote-section {
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 60px 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
    border-radius: 30px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 10px 30px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease 0.3s both;
    z-index: 5;
}

.handwritten-quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--secondary-color) 20%, 
        var(--secondary-color) 80%, 
        transparent);
}

.handwritten-quote-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
    border-radius: 50%;
    animation: floatingGlow 8s ease-in-out infinite;
}

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

.handwritten-text {
    font-family: 'Brush Script MT', 'Segoe Script', 'Lucida Handwriting', cursive;
    font-size: 32px;
    line-height: 1.9;
    color: var(--primary-color);
    font-weight: 400;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    letter-spacing: 0.5px;
    animation: handwritingReveal 2s ease 0.5s both;
}

@keyframes handwritingReveal {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.handwritten-quote-section:hover {
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.15),
        0 15px 40px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: translateY(-5px);
}

.handwritten-quote-section:hover .handwritten-text {
    color: var(--accent-color);
}

/* Handwritten Quote - Mobile Responsive */
@media (max-width: 768px) {
    .handwritten-quote-section {
        max-width: 95%;
        margin: 0 auto 40px;
        padding: 30px 25px;
        border-radius: 20px;
    }
    
    .handwritten-text {
        font-size: 22px;
        line-height: 1.7;
        letter-spacing: 0.3px;
    }
    
    .handwritten-quote-section::after {
        width: 150px;
        height: 150px;
        top: -30%;
        right: -15%;
    }
}

@media (max-width: 480px) {
    .handwritten-quote-section {
        padding: 25px 20px;
        margin: 0 10px 30px;
        border-radius: 15px;
    }
    
    .handwritten-text {
        font-size: 20px;
        line-height: 1.6;
    }
}

.section-tag-minimal {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 11px;
    margin-bottom: 25px;
    padding: 10px 30px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 208, 63, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    animation: fadeInDown 0.8s ease;
}

.section-title-large {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 35px;
    font-weight: 700;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.lead-text {
    font-size: 20px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 70px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Premium Header Section - Ultra Modern - Full Width Desktop */
.section-header-premium {
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin: 0 auto 70px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Header Ornament */
.header-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
    animation: fadeInDown 0.8s ease;
}

.ornament-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    position: relative;
    animation: lineExpand 1s ease 0.5s both;
}

@keyframes lineExpand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 60px;
        opacity: 1;
    }
}

.section-tag-ultra {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 12px;
    padding: 12px 35px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(244, 208, 63, 0.15));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.section-tag-ultra::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    transition: all 0.6s ease;
}

.section-tag-ultra:hover::before {
    width: 200%;
    height: 200%;
}

.section-tag-ultra:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
}

/* Ultra Title with Word Animation */
.section-title-ultra {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
}

.title-word {
    display: inline-block;
    opacity: 0;
    animation: wordSlideIn 0.8s ease forwards;
    margin: 0 8px;
}

.title-word[data-word="1"] { animation-delay: 0.2s; }
.title-word[data-word="2"] { animation-delay: 0.3s; }
.title-word[data-word="3"] { animation-delay: 0.4s; }
.title-word[data-word="4"] { animation-delay: 0.5s; }
.title-word[data-word="5"] { animation-delay: 0.6s; }

@keyframes wordSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.title-highlight {
    position: relative;
    display: inline-block;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 0;
    height: 12px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.3), rgba(244, 208, 63, 0.3));
    z-index: -1;
    animation: highlightExpand 1s ease 0.8s forwards;
}

@keyframes highlightExpand {
    to {
        width: 100%;
    }
}

/* Title Underline Decoration */
.title-underline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.underline-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.underline-dot:first-child {
    animation-delay: 0s;
}

.underline-dot:last-child {
    animation-delay: 1s;
}

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

.underline-line {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--secondary-color) 20%, 
        var(--secondary-color) 80%, 
        transparent);
    position: relative;
    overflow: hidden;
}

.underline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: lineShine 3s ease-in-out infinite;
}

@keyframes lineShine {
    to {
        left: 200%;
    }
}

/* Premium Lead Text */
.lead-text-premium {
    font-size: 19px;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    position: relative;
    padding: 0 60px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
    text-align: center;
}

.lead-icon {
    color: var(--secondary-color);
    font-size: 16px;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.lead-icon:first-child {
    position: absolute;
    left: 20px;
    top: 0;
}

.lead-icon:last-child {
    position: absolute;
    right: 20px;
    bottom: 0;
}

.lead-text-premium:hover .lead-icon {
    opacity: 0.8;
    transform: scale(1.2);
}

/* Ultra Premium Stats - Magazine Style Layout - Compact */
.stats-ultra-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto auto;
    gap: 25px;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 5;
}



/* Large Featured Card - Takes full left column - Compact */
.stat-ultra-large {
    grid-row: 1 / 3;
    min-height: 500px;
}

/* Medium Cards Group - Right column top */
.stat-ultra-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.stat-ultra-medium {
    min-height: 230px;
}

/* Wide Card - Spans both columns at bottom - Compact */
.stat-ultra-wide {
    grid-column: 1 / 3;
    min-height: 300px;
}

/* Card Base Styles */
.stat-ultra-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.stat-ultra-card:hover {
    transform: translateY(-15px) scale(1.01);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
}

/* Background Image */
.stat-ultra-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.stat-ultra-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
    filter: brightness(0.9);
}

.stat-ultra-card:hover .stat-ultra-bg img {
    transform: scale(1.12) rotate(1deg);
    filter: brightness(1);
}

/* Overlay Gradient */
.stat-ultra-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(26, 35, 50, 0.4) 0%,
        rgba(26, 35, 50, 0.75) 50%,
        rgba(26, 35, 50, 0.92) 100%);
    transition: all 0.7s ease;
    z-index: 1;
}

.stat-ultra-card:hover .stat-ultra-overlay {
    background: linear-gradient(135deg, 
        rgba(26, 35, 50, 0.5) 0%,
        rgba(44, 95, 125, 0.7) 50%,
        rgba(212, 175, 55, 0.75) 100%);
}

/* Animated Particles */
.stat-ultra-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(212, 175, 55, 0.4), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(2px 2px at 80% 10%, rgba(212, 175, 55, 0.3), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    opacity: 0.6;
    animation: particlesFloat 20s ease-in-out infinite;
    z-index: 1;
}

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

/* Glow Effect for Medium Cards */
.stat-ultra-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes glowPulse {
    0%, 100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2) translate(10%, 10%);
        opacity: 0.8;
    }
}

/* Wave Animation for Beach Card */
.stat-ultra-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(212, 175, 55, 0.2), transparent);
    z-index: 1;
    animation: wavesMove 8s ease-in-out infinite;
}

@keyframes wavesMove {
    0%, 100% {
        transform: translateX(0) scaleY(1);
    }
    50% {
        transform: translateX(-20px) scaleY(1.1);
    }
}

/* Content Container */
.stat-ultra-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px;
    z-index: 3;
    transition: all 0.7s ease;
}

.stat-ultra-large .stat-ultra-content {
    padding: 45px;
}

.stat-ultra-medium .stat-ultra-content {
    padding: 28px;
}

.stat-ultra-card:hover .stat-ultra-content {
    transform: translateY(-15px);
}

/* Premium Badge */
.stat-ultra-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 50px;
    color: var(--secondary-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

.stat-ultra-card:hover .stat-ultra-badge {
    background: rgba(212, 175, 55, 0.4);
    border-color: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

/* Icon Wrapper for Medium Cards */
.stat-ultra-icon-wrapper {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.stat-ultra-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.5s ease;
}

.stat-ultra-card:hover .stat-ultra-icon-bg {
    background: rgba(212, 175, 55, 0.3);
    border-color: var(--secondary-color);
    transform: scale(1.15) rotate(10deg);
}

.stat-ultra-icon-wrapper i {
    font-size: 32px;
    color: var(--secondary-color);
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

.stat-ultra-card:hover .stat-ultra-icon-wrapper i {
    transform: scale(1.1) rotate(-10deg);
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.6));
}

/* Number Group */
.stat-ultra-number-group {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.stat-ultra-number {
    font-family: 'Playfair Display', serif;
    font-size: 68px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    transition: all 0.7s ease;
    letter-spacing: -2px;
}

.stat-ultra-medium .stat-ultra-number {
    font-size: 48px;
}

.stat-ultra-card:hover .stat-ultra-number {
    color: var(--secondary-color);
    transform: scale(1.08);
    text-shadow: 0 10px 40px rgba(212, 175, 55, 0.8);
}

.stat-ultra-symbol {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    text-shadow: 0 5px 20px rgba(212, 175, 55, 0.6);
    transition: all 0.7s ease;
}

.stat-ultra-medium .stat-ultra-symbol {
    font-size: 36px;
}

.star-symbol {
    font-size: 58px;
    animation: starRotateUltra 6s ease-in-out infinite;
}

@keyframes starRotateUltra {
    0%, 100% {
        text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
        transform: rotate(0deg) scale(1);
    }
    50% {
        text-shadow: 0 0 40px rgba(212, 175, 55, 1), 0 0 60px rgba(244, 208, 63, 0.8);
        transform: rotate(180deg) scale(1.15);
    }
}

/* Title */
.stat-ultra-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    transition: all 0.7s ease;
    line-height: 1.3;
}

.stat-ultra-medium .stat-ultra-title {
    font-size: 22px;
}

.stat-ultra-card:hover .stat-ultra-title {
    color: var(--secondary-color);
    letter-spacing: 1px;
    transform: translateX(5px);
}

/* Description */
.stat-ultra-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    opacity: 0.85;
    transition: all 0.7s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 300;
}

.stat-ultra-medium .stat-ultra-desc {
    font-size: 14px;
}

.stat-ultra-card:hover .stat-ultra-desc {
    opacity: 1;
    color: var(--white);
    transform: translateX(5px);
}

/* Shine Effect */
.stat-ultra-shine {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 50px;
    height: 300%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transform: rotate(45deg);
    animation: shineMove 8s ease-in-out infinite;
}

@keyframes shineMove {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 200%;
    }
}

/* Bottom Line Decoration */
.stat-ultra-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--secondary-color), 
        transparent);
    transition: width 0.8s ease;
}

.stat-ultra-card:hover .stat-ultra-line {
    width: 100%;
}

/* Visual Stats Grid - Image Based Design */
.stats-visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-visual-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.stat-visual-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

.stat-visual-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.stat-visual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.stat-visual-card:hover .stat-visual-image img {
    transform: scale(1.15);
}

.stat-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(26, 35, 50, 0.3) 0%, 
        rgba(26, 35, 50, 0.7) 50%,
        rgba(26, 35, 50, 0.95) 100%);
    transition: all 0.6s ease;
}

.stat-visual-card:hover .stat-visual-overlay {
    background: linear-gradient(to bottom, 
        rgba(26, 35, 50, 0.4) 0%, 
        rgba(26, 35, 50, 0.8) 50%,
        rgba(212, 175, 55, 0.85) 100%);
}

.stat-visual-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    z-index: 2;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.stat-visual-card:hover .stat-visual-content {
    transform: translateY(-10px);
}

.stat-visual-number-wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 15px;
}

.stat-visual-number {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.6s ease;
}

.stat-visual-card:hover .stat-visual-number {
    color: var(--secondary-color);
    transform: scale(1.1);
    text-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.stat-visual-plus,
.stat-visual-star,
.stat-visual-unit {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    text-shadow: 0 3px 15px rgba(212, 175, 55, 0.5);
    transition: all 0.6s ease;
}

.stat-visual-star {
    font-size: 56px;
    animation: starGlowVisual 3s ease-in-out infinite;
}

@keyframes starGlowVisual {
    0%, 100% {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        transform: rotate(0deg);
    }
    50% {
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.9), 0 0 50px rgba(244, 208, 63, 0.6);
        transform: rotate(180deg);
    }
}

.stat-visual-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.6s ease;
}

.stat-visual-card:hover .stat-visual-title {
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.stat-visual-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    opacity: 0.8;
    transition: all 0.6s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.stat-visual-card:hover .stat-visual-description {
    opacity: 1;
    color: var(--white);
}

/* Premium Stats Grid - Modern Design */
.stats-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-premium-card {
    position: relative;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.stat-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.1), rgba(244, 208, 63, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

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

.stat-premium-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.25);
    border-color: var(--secondary-color);
}

/* Icon Wrapper with Animation */
.stat-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    z-index: 1;
}

.stat-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #d4af37, #f4d03f);
    border-radius: 50%;
    opacity: 0.15;
    transition: all 0.5s ease;
    animation: pulseGlow 3s ease-in-out infinite;
}

.stat-premium-card:hover .stat-icon-bg {
    opacity: 0.25;
    transform: translate(-50%, -50%) scale(1.2);
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }
}

.stat-icon {
    position: relative;
    font-size: 50px;
    background: linear-gradient(145deg, #d4af37, #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.5s ease;
    display: block;
    line-height: 100px;
    z-index: 2;
    filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.3));
}

.stat-premium-card:hover .stat-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 8px 20px rgba(212, 175, 55, 0.5));
}

/* Stat Content - Numbers */
.stat-content {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #fff;
    background-clip: unset;
    line-height: 1;
    transition: all 0.5s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-premium-card:hover .stat-number {
    transform: scale(1.1);
}

.stat-plus,
.stat-star,
.stat-unit {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #fff;
    background-clip: text;
    line-height: 1;
    transition: all 0.5s ease;
}

.stat-star {
    font-size: 48px;
    animation: starRotate 4s ease-in-out infinite;
}

@keyframes starRotate {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
}

.stat-label {
    position: relative;
    z-index: 1;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.stat-premium-card:hover .stat-label {
    color: var(--secondary-color);
    letter-spacing: 3px;
}

/* Divider Line at Bottom */
.stat-divider-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4af37, #f4d03f, transparent);
    transition: width 0.5s ease;
    border-radius: 2px;
}

.stat-premium-card:hover .stat-divider-line {
    width: 80%;
}

/* Old Stats Row - Keep for backwards compatibility */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    padding: 20px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    border-right: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.stat-item:hover h3 {
    transform: scale(1.1);
}

.stat-item p {
    font-size: 13px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

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

/* Key Features - Ultra Premium */
.key-features {
    background: var(--white);
    padding: 120px 0;
    position: relative;
}

.key-features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.features-minimal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature-minimal-item {
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 50px 30px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.feature-minimal-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-minimal-item:hover::before {
    opacity: 1;
}

.feature-minimal-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.2);
}

.feature-minimal-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.feature-minimal-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: var(--gradient-gold);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.feature-minimal-item:hover .feature-minimal-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
}

.feature-minimal-item:hover .feature-minimal-icon::before {
    opacity: 1;
}

.feature-minimal-icon i {
    font-size: 48px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.5s ease;
}

.feature-minimal-item:hover .feature-minimal-icon i {
    -webkit-text-fill-color: var(--white);
    transform: scale(1.1);
}

.feature-minimal-item h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    transition: color 0.3s ease;
}

.feature-minimal-item:hover h4 {
    color: var(--secondary-color);
}

.feature-minimal-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
}

/* Featured Rooms - Cratos Style */
.featured-rooms-cratos {
    background: #f5f0e8;
    padding: 100px 0;
}

.rooms-header-cratos {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.rooms-title-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rooms-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 18px;
    color: #8b7355;
    font-weight: 400;
}

.rooms-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: #2c3e50;
    letter-spacing: 8px;
    margin: 0;
}

.rooms-view-all {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8b7355;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.rooms-view-all:hover {
    color: #6b5a45;
}

.rooms-view-all svg {
    width: 20px;
    height: 20px;
}

.rooms-carousel-cratos {
    position: relative;
}

.rooms-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-card-cratos {
    text-align: center;
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.room-card-cratos:hover {
    transform: translateY(-10px);
}

.room-card-cratos:hover .room-image-cratos img {
    transform: scale(1.05);
}

.room-image-cratos img {
    transition: transform 0.4s ease;
}

.room-image-cratos {
    position: relative;
    padding: 15px;
    margin-bottom: 20px;
}

.room-image-cratos img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

/* Corner Frame Decorations */
.corner-frame {
    position: absolute;
    width: 60px;
    height: 60px;
    border-color: #c9b896;
    border-style: solid;
    border-width: 0;
    z-index: 2;
    pointer-events: none;
}

.corner-tl {
    top: 0;
    left: 0;
    border-top-width: 2px;
    border-left-width: 2px;
}

.corner-tr {
    top: 0;
    right: 0;
    border-top-width: 2px;
    border-right-width: 2px;
}

.corner-bl {
    bottom: 0;
    left: 0;
    border-bottom-width: 2px;
    border-left-width: 2px;
}

.corner-br {
    bottom: 0;
    right: 0;
    border-bottom-width: 2px;
    border-right-width: 2px;
}

.room-name-cratos {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: #2c3e50;
    margin: 0;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d4c5a9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background: #2c3e50;
}

.carousel-dots .dot:hover {
    background: #8b7355;
}

/* Responsive for Cratos Rooms */
@media (max-width: 992px) {
    .rooms-track {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rooms-main-title {
        font-size: 36px;
        letter-spacing: 4px;
    }
}

@media (max-width: 768px) {
    .rooms-header-cratos {
        flex-direction: column;
        gap: 20px;
    }
    
    .rooms-track {
        grid-template-columns: 1fr;
    }
    
    .rooms-main-title {
        font-size: 32px;
        letter-spacing: 3px;
    }
}

/* Featured Rooms - Large Cards (OLD) */
.featured-rooms {
    display: none;
    background: var(--white);
    padding: 120px 0;
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 20px;
}

.rooms-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-card-large {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.room-card-large:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.room-image-large {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.room-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-card-large:hover .room-image-large img {
    transform: scale(1.1);
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 50, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.room-card-large:hover .room-overlay {
    opacity: 1;
}

.btn-explore {
    background: var(--gradient-gold);
    color: var(--primary-color);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.room-info-large {
    padding: 35px 30px;
    position: relative;
}

.badge-premium,
.badge-luxury {
    position: absolute;
    top: -20px;
    right: 30px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-luxury {
    background: var(--accent-color);
}

.room-info-large h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.room-info-large > p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.room-price-large {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.room-price-large .from {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.room-price-large .price {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--secondary-color);
    font-weight: 700;
}

.room-price-large .period {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
}

/* CTA Section */
.cta-section {
    background: var(--gradient);
    padding: 100px 0;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-large {
    background: var(--gradient-gold);
    color: var(--primary-color);
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.btn-secondary-large {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* About Section - OLD (hidden) */
.about {
    background: var(--bg-light);
    display: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .lead {
    font-size: 20px;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.about-images {
    position: relative;
    height: 500px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 75%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.about-img-small {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 50%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 5px solid var(--white);
}

.about-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Section - HIDDEN from homepage */
.services {
    background: var(--bg-light);
    display: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.4s ease;
}

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

.service-icon i {
    font-size: 36px;
    color: var(--white);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.service-card > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 14px;
}

.service-features i {
    color: var(--secondary-color);
    font-size: 14px;
}

/* Restaurant & Bar Section - HIDDEN from homepage */
.restaurant {
    background: var(--white);
    display: none;
}

.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.restaurant-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.restaurant-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.restaurant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.restaurant-card:hover .restaurant-image img {
    transform: scale(1.1);
}

.restaurant-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.restaurant-badge.premium {
    background: var(--accent-color);
}

.restaurant-info {
    padding: 30px;
}

.restaurant-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.restaurant-info h3 i {
    color: var(--secondary-color);
    font-size: 20px;
}

.restaurant-info > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.restaurant-details {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.restaurant-details span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
}

.restaurant-details i {
    color: var(--secondary-color);
}

/* Organization Section - HIDDEN from homepage */
.organization {
    background: var(--bg-light);
    display: none;
}

.organization-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.organization-text .lead {
    font-size: 18px;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.8;
}

.organization-features {
    margin-bottom: 40px;
}

.org-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.org-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.org-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.org-icon i {
    font-size: 28px;
    color: var(--white);
}

.org-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.org-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.organization-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-card i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.stat-card p {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

/* Rooms Section - OLD (hidden) */
.rooms {
    display: none;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.room-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.room-image {
    position: relative;
    height: 280px;
    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: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.room-badge.premium {
    background: var(--accent-color);
}

.room-badge.luxury {
    background: var(--gradient);
}

.room-content {
    padding: 30px;
}

.room-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.room-content > p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.room-amenities {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.room-amenities li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
}

.room-amenities i {
    color: var(--secondary-color);
    font-size: 16px;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
}

.period {
    font-size: 14px;
    color: var(--text-light);
}

.room-btn {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.room-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 35, 50, 0.3);
}

/* Gallery Section - On separate page */
.gallery {
    background: var(--bg-light);
    display: none;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

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

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 50, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

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

/* Testimonials Section - HIDDEN from homepage */
.testimonials {
    background: var(--gradient);
    color: var(--white);
    display: none;
}

.testimonials .section-tag {
    color: var(--secondary-color);
}

.testimonials .section-header h2 {
    color: var(--white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.stars i {
    color: var(--secondary-color);
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
}

.testimonial-author h4 {
    font-size: 16px;
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 14px;
    opacity: 0.8;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Contact Section */
.contact {
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.info-card i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(26, 35, 50, 0.3);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.submit-btn {
    grid-column: 1 / -1;
    background: var(--gradient-gold);
    color: var(--primary-color);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.footer-logo span {
    display: block;
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.newsletter {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50px;
    font-size: 14px;
}

.newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter button {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter button:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-controls {
    position: absolute;
    bottom: 50px;
    display: flex;
    gap: 20px;
}

.lightbox-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-btn:hover {
    background: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .nav-container {
        max-width: 1300px;
        padding: 0 40px;
    }
    
    .nav-menu {
        gap: 30px;
        margin: 0 20px;
    }
    
    .nav-menu a {
        font-size: 12px;
        padding: 8px 8px;
    }
}

@media (max-width: 1200px) {
    .nav-container {
        padding: 0 30px;
    }
    
    .nav-menu {
        gap: 20px;
        margin: 0 15px;
    }
    
    .nav-menu a {
        font-size: 11px;
        padding: 8px 5px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 1024px) {
    .section-title-large {
        font-size: 42px;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stats-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .stats-visual-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .about-minimal-content {
        padding: 0 20px;
    }
    
    .stats-ultra-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-ultra-large {
        grid-row: auto;
        min-height: 500px;
    }
    
    .stat-ultra-group {
        gap: 20px;
    }
    
    .stat-ultra-medium {
        min-height: 350px;
    }
    
    .stat-ultra-wide {
        grid-column: 1;
        min-height: 400px;
    }
    
    .stat-ultra-content {
        padding: 40px;
    }
    
    .stat-ultra-large .stat-ultra-content {
        padding: 50px;
    }
    
    .stat-ultra-medium .stat-ultra-content {
        padding: 30px;
    }
    
    .stat-ultra-number {
        font-size: 68px;
    }
    
    .stat-ultra-medium .stat-ultra-number {
        font-size: 52px;
    }
    
    .stat-ultra-title {
        font-size: 28px;
    }
    
    .stat-ultra-medium .stat-ultra-title {
        font-size: 22px;
    }
    
    /* Premium Header Responsive - Tablet */
    .section-title-ultra {
        font-size: 56px;
        line-height: 1.3;
    }
    
    .title-word {
        margin: 0 5px;
    }
    
    .title-highlight::after {
        height: 10px;
        bottom: 8px;
    }
    
    .lead-text-premium {
        font-size: 18px;
        padding: 0 50px;
        line-height: 1.9;
    }
    
    .ornament-line {
        width: 50px;
    }
    
    .section-tag-ultra {
        font-size: 11px;
        padding: 10px 30px;
        letter-spacing: 4px;
    }
    
    .stat-visual-card {
        height: 350px;
    }
    
    .stat-visual-content {
        padding: 30px;
    }
    
    .stat-visual-number {
        font-size: 56px;
    }
    
    .stat-visual-title {
        font-size: 24px;
    }
    
    .stat-visual-description {
        font-size: 14px;
    }
    
    .stat-premium-card {
        padding: 40px 25px;
    }
    
    .stat-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }
    
    .stat-icon {
        font-size: 40px;
        line-height: 80px;
    }
    
    .stat-number {
        font-size: 52px;
    }
    
    .features-minimal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .rooms-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .hero-title-ultra {
        font-size: 64px;
    }
    
    .hero-stats-mini {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        height: 400px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .organization-content {
        grid-template-columns: 1fr;
    }
    
    .restaurant-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-container {
        padding: 0 25px;
    }
    
    .nav-menu {
        gap: 25px;
    }
}

/* Mobile only elements */
.mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block !important;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(26, 35, 50, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 30px 0;
        gap: 20px;
        overflow: hidden;
        visibility: hidden;
    }
    
    .nav-menu.active {
        left: 0;
        visibility: visible;
    }
    
    .nav-menu a {
        color: var(--white) !important;
    }
    
    .hamburger {
        display: flex;
        position: fixed;
        top: 20px;
        right: 15px;
        z-index: 1001;
    }
    
    .reserve-btn {
        display: none;
    }
    
    /* Hide logo span text on mobile */
    .logo span,
    .logo h1 {
        display: none !important;
    }
    
    /* Center language switcher on mobile */
    .lang-switcher {
        position: fixed;
        top: 18px;
        right: 55px;
        z-index: 1001;
    }
    
    /* Fix logo position on mobile */
    .logo {
        position: fixed;
        top: 10px;
        left: 15px;
        z-index: 1001;
    }
    
    .logo-img {
        height: 45px !important;
    }
    
    .navbar {
        padding: 10px 0 !important;
        min-height: 65px;
    }
    
    .navbar.scrolled {
        padding: 10px 0 !important;
        min-height: 65px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-title-ultra {
        font-size: 48px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-premium-primary,
    .btn-premium-outline {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats-mini {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .restaurant-grid {
        grid-template-columns: 1fr;
    }
    
    .organization-stats {
        grid-template-columns: 1fr;
    }
    
    .section-title-large {
        font-size: 36px;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-premium-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .stats-visual-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .stats-ultra-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .stat-ultra-large {
        min-height: 450px;
    }
    
    .stat-ultra-medium {
        min-height: 380px;
    }
    
    .stat-ultra-wide {
        min-height: 420px;
    }
    
    .stat-ultra-content {
        padding: 35px 25px;
    }
    
    .stat-ultra-large .stat-ultra-content {
        padding: 40px 30px;
    }
    
    .stat-ultra-medium .stat-ultra-content {
        padding: 30px 25px;
    }
    
    .stat-ultra-number {
        font-size: 56px;
    }
    
    .stat-ultra-medium .stat-ultra-number {
        font-size: 48px;
    }
    
    .stat-ultra-symbol {
        font-size: 36px;
    }
    
    .stat-ultra-medium .stat-ultra-symbol {
        font-size: 30px;
    }
    
    .stat-ultra-title {
        font-size: 24px;
    }
    
    .stat-ultra-medium .stat-ultra-title {
        font-size: 20px;
    }
    
    .stat-ultra-desc {
        font-size: 14px;
    }
    
    .stat-ultra-icon-wrapper {
        top: 25px;
        right: 25px;
        width: 60px;
        height: 60px;
    }
    
    .stat-ultra-icon-wrapper i {
        font-size: 28px;
    }
    
    /* MOBILE ULTRA WOW DESIGN - Completely Different */
    .section-header-premium {
        padding: 40px 20px;
        background: linear-gradient(180deg, rgba(26, 35, 50, 0.03) 0%, transparent 100%);
        border-radius: 30px;
        margin: 0;
        text-align: center;
    }
    
    .header-ornament {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 35px;
        position: relative;
        justify-content: center;
    }
    
    .header-ornament::before,
    .header-ornament::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    }
    
    .header-ornament::before {
        top: -20px;
    }
    
    .header-ornament::after {
        bottom: -20px;
    }
    
    .ornament-line {
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, var(--secondary-color), var(--secondary-color));
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }
    
    .section-tag-ultra {
        font-size: 11px;
        padding: 12px 30px;
        letter-spacing: 4px;
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
        border-width: 3px;
        animation: mobileBadgePulse 3s ease-in-out infinite;
    }
    
    @keyframes mobileBadgePulse {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
        }
        50% {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
        }
    }
    
    .section-title-ultra {
        font-size: 48px;
        line-height: 1.3;
        margin-bottom: 35px;
        /* Solid color for mobile - gradient was invisible */
        color: var(--primary-color);
        position: relative;
        font-weight: 800;
        text-shadow: 0 2px 10px rgba(26, 35, 50, 0.1);
    }
    
    .section-title-ultra::before {
        content: '';
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 80px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent);
        animation: mobileGlowTop 4s ease-in-out infinite;
        border-radius: 50%;
    }
    
    @keyframes mobileGlowTop {
        0%, 100% {
            transform: translateX(-50%) scale(1);
            opacity: 0.5;
        }
        50% {
            transform: translateX(-50%) scale(1.5);
            opacity: 0.8;
        }
    }
    
    .title-word {
        margin: 0 4px;
        display: inline-block;
        animation: mobileWordBounce 0.8s ease forwards;
    }
    
    @keyframes mobileWordBounce {
        0% {
            opacity: 0;
            transform: translateY(40px) scale(0.8);
        }
        60% {
            transform: translateY(-10px) scale(1.1);
        }
        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
    
    .title-highlight {
        position: relative;
        display: inline-block;
        padding: 5px 15px;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(244, 208, 63, 0.15));
        border-radius: 15px;
        margin-top: 10px;
    }
    
    .title-highlight::after {
        display: none;
    }
    
    .title-highlight::before {
        content: '';
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        border: 2px solid rgba(212, 175, 55, 0.3);
        border-radius: 20px;
        animation: mobileBorderPulse 3s ease-in-out infinite;
    }
    
    @keyframes mobileBorderPulse {
        0%, 100% {
            border-color: rgba(212, 175, 55, 0.3);
            transform: scale(1);
        }
        50% {
            border-color: rgba(212, 175, 55, 0.6);
            transform: scale(1.02);
        }
    }
    
    .title-underline {
        gap: 12px;
        margin-bottom: 35px;
        padding: 20px 0;
        justify-content: center;
    }
    
    .underline-line {
        width: 100px;
        height: 3px;
        position: relative;
    }
    
    .underline-line::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent);
        animation: mobileLinePulse 2s ease-in-out infinite;
    }
    
    @keyframes mobileLinePulse {
        0%, 100% {
            width: 20px;
            height: 20px;
            opacity: 1;
        }
        50% {
            width: 40px;
            height: 40px;
            opacity: 0.5;
        }
    }
    
    .underline-dot {
        width: 10px;
        height: 10px;
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
    }
    
    .lead-text-premium {
        font-size: 17px;
        padding: 25px;
        line-height: 2;
        margin-bottom: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 249, 250, 0.8));
        border-radius: 25px;
        border: 2px solid rgba(212, 175, 55, 0.15);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        position: relative;
        overflow: hidden;
        text-align: center;
    }
    
    .lead-text-premium::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
        animation: mobileTextShine 4s ease-in-out infinite;
    }
    
    @keyframes mobileTextShine {
        to {
            left: 200%;
        }
    }
    
    .lead-icon {
        font-size: 24px;
        opacity: 0.6;
        position: relative;
        animation: mobileQuoteBounce 2s ease-in-out infinite;
    }
    
    .lead-icon:first-child {
        left: 0;
        top: -5px;
    }
    
    .lead-icon:last-child {
        right: 0;
        bottom: -5px;
    }
    
    @keyframes mobileQuoteBounce {
        0%, 100% {
            transform: scale(1) rotate(0deg);
        }
        50% {
            transform: scale(1.3) rotate(10deg);
        }
    }
    
    .stat-visual-card {
        height: 380px;
    }
    
    .stat-visual-content {
        padding: 30px 25px;
    }
    
    .stat-visual-number {
        font-size: 52px;
    }
    
    .stat-visual-plus,
    .stat-visual-star,
    .stat-visual-unit {
        font-size: 32px;
    }
    
    .stat-visual-title {
        font-size: 22px;
    }
    
    .stat-visual-description {
        font-size: 14px;
    }
    
    .stat-premium-card {
        padding: 35px 20px;
    }
    
    .stat-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .stat-icon {
        font-size: 35px;
        line-height: 70px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .stat-plus,
    .stat-star,
    .stat-unit {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .features-minimal-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .rooms-showcase {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-title-ultra {
        font-size: 36px;
    }
    
    .hero-mini-tag {
        font-size: 9px;
        padding: 10px 20px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 35px;
    }
    
    .hero-content-premium {
        padding: 0 30px;
    }
    
    .hero-stats-mini {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .room-amenities {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    .stat-card h3 {
        font-size: 32px;
    }
    
    .section-title-large {
        font-size: 28px;
    }
    
    .lead-text {
        font-size: 16px;
    }
    
    .stat-item h3 {
        font-size: 36px;
    }
    
    .room-price-large .price {
        font-size: 28px;
    }
}

/* ============================================
   PAGE HERO VIDEO STYLES
   ============================================ */

.page-hero-video {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-video .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-hero-video .hero-video video,
.page-hero-video .hero-video .video-fallback img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-video .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.page-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 20px;
    color: #c9b896;
    display: block;
    margin-bottom: 15px;
    text-decoration: none;
    border: none;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 400;
    letter-spacing: 12px;
    margin: 0 0 25px;
    text-transform: uppercase;
}

.page-description {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.page-hero-video .hero-stats-mini {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.page-hero-video .stat-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-hero-video .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-hero-video .stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    opacity: 0.8;
}

.page-hero-video .stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
}

.page-hero-video .scroll-indicator-premium {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    z-index: 10;
}

.page-hero-video .scroll-indicator-premium span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.8;
}

.page-hero-video .scroll-indicator-premium .scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; height: 60px; }
    50% { opacity: 1; height: 80px; }
}

/* Small Hero for Detail Pages */
.page-hero-small {
    height: 40vh;
    min-height: 300px;
}

/* ============================================
   ROOMS PAGE STYLES
   ============================================ */

/* Page Header - Old (keeping for compatibility) */
.page-header-rooms {
    display: none;
}

/* Rooms Page Section */
.rooms-page-section {
    background: #f5f0e8;
    padding: 80px 0;
}

.rooms-grid-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.room-card-page {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.room-card-page:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.room-image-page {
    position: relative;
    padding: 15px 15px 0;
}

.room-image-page img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.4s ease;
}

.room-card-page:hover .room-image-page img {
    transform: scale(1.05);
}

.room-badge-page {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #8b7355;
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.room-badge-page.luxury {
    background: #2c3e50;
}

.room-info-page {
    padding: 25px;
}

.room-info-page h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: #2c3e50;
    margin: 0 0 10px;
}

.room-info-page > p {
    color: #666;
    font-size: 14px;
    margin: 0 0 15px;
}

.room-features-mini {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.room-features-mini span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #8b7355;
}

.room-features-mini i {
    font-size: 12px;
}

.room-price-page {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.room-price-page .price {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
}

.room-price-page .period {
    font-size: 14px;
    color: #999;
}

/* ============================================
   ROOM DETAIL PAGE STYLES
   ============================================ */

.room-detail-section {
    background: #f5f0e8;
    padding: 60px 0 80px;
    min-height: auto;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    font-size: 14px;
}

.breadcrumb a {
    color: #8b7355;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #2c3e50;
}

.breadcrumb span {
    color: #999;
}

.breadcrumb .current {
    color: #2c3e50;
    font-weight: 500;
}

/* Room Detail Grid */
.room-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Room Gallery */
.room-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
}

.main-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail-gallery img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail-gallery img:hover,
.thumbnail-gallery img.active {
    opacity: 1;
    border-color: #8b7355;
}

/* Room Detail Info */
.room-detail-info {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.room-category {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 16px;
    color: #8b7355;
    display: block;
    margin-bottom: 10px;
}

.room-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 500;
    color: #2c3e50;
    margin: 0 0 20px;
}

.room-detail-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Room Specs */
.room-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.spec-item i {
    width: 45px;
    height: 45px;
    background: #f5f0e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b7355;
    font-size: 18px;
}

.spec-item div {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-value {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

/* Room Amenities Detail */
.room-amenities-detail h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #2c3e50;
    margin: 0 0 20px;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.amenities-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

.amenities-list i {
    color: #8b7355;
    width: 20px;
}

/* Room Pricing */
.room-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    display: flex;
    align-items: baseline;
}

.price-amount .currency {
    font-size: 20px;
    color: #8b7355;
}

.price-amount .amount {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: #2c3e50;
}

.price-amount .period {
    font-size: 14px;
    color: #999;
}

.btn-reserve-room {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #2c3e50;
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reserve-room:hover {
    background: #8b7355;
    transform: translateY(-2px);
}

/* Other Rooms Section */
.other-rooms-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #d4c5a9;
}

.other-rooms-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #2c3e50;
    margin: 0 0 40px;
    text-align: center;
}

.other-rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.other-room-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

.other-room-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.other-room-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #2c3e50;
    margin: 15px 20px 5px;
}

.other-room-price {
    display: block;
    font-size: 14px;
    color: #8b7355;
    padding: 0 20px 20px;
}

/* Inner Navbar */
.navbar-inner {
    background: #2c3e50;
    position: fixed;
}

/* Responsive for Rooms Pages */
@media (max-width: 1200px) {
    .room-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .room-gallery {
        position: static;
    }
}

@media (max-width: 992px) {
    .rooms-grid-page {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .other-rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-title {
        font-size: 42px;
        letter-spacing: 4px;
    }
}

@media (max-width: 768px) {
    .rooms-grid-page {
        grid-template-columns: 1fr;
    }
    
    .other-rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header-rooms {
        height: 300px;
    }
    
    .page-title {
        font-size: 32px;
        letter-spacing: 3px;
    }
    
    .room-detail-info {
        padding: 25px;
    }
    
    .room-detail-title {
        font-size: 28px;
    }
    
    .room-specs {
        grid-template-columns: 1fr;
    }
    
    .amenities-list {
        grid-template-columns: 1fr;
    }
    
    .room-pricing {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-reserve-room {
        justify-content: center;
    }
    
    .main-image img {
        height: 300px;
    }
    
    .thumbnail-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .thumbnail-gallery img {
        height: 60px;
    }
}

/* Page Hero Video Responsive */
@media (max-width: 992px) {
    .page-title {
        font-size: 48px;
        letter-spacing: 6px;
    }
    
    .page-hero-video .hero-stats-mini {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .page-hero-video {
        height: 70vh;
        min-height: 500px;
    }
    
    .page-title {
        font-size: 36px;
        letter-spacing: 4px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .page-description {
        font-size: 16px;
    }
    
    .page-hero-video .hero-stats-mini {
        flex-direction: column;
        gap: 15px;
    }
    
    .page-hero-video .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .page-hero-small {
        height: 35vh;
        min-height: 250px;
    }
}

/* ==========================================
   HOMEPAGE MOBILE RESPONSIVE - COMPLETE
   ========================================== */

@media (max-width: 992px) {
    /* About Section */
    .about-minimal {
        padding: 80px 0 60px;
    }
    
    .about-content-side {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-text-left,
    .about-image-right {
        flex: 1;
        max-width: 100%;
    }
    
    /* Restaurant Carousel */
    .restaurant-carousel-wrapper {
        gap: 0;
    }
    
    .carousel-btn {
        display: none !important;
    }
    
    .restaurant-carousel {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .restaurant-carousel::-webkit-scrollbar {
        display: none;
    }
    
    .restaurant-track {
        width: max-content;
    }
    
    .restaurant-card {
        flex: 0 0 300px;
        scroll-snap-align: start;
    }
    
    /* Rooms Section */
    .rooms-grid-cratos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .room-image-cratos img {
        height: 250px;
    }
    
    /* Section Headers */
    .section-header-cratos {
        margin-bottom: 40px;
    }
    
    .section-main-title {
        font-size: 36px;
        letter-spacing: 4px;
    }
    
    /* Stats Section */
    .stats-grid-cratos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    /* Hero Section Mobile */
    .hero-section {
        min-height: 100vh;
    }
    
    .hero-title-ultra {
        font-size: 36px;
        letter-spacing: 2px;
        line-height: 1.2;
    }
    
    .hero-mini-tag {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .btn-premium-primary,
    .btn-premium-outline {
        width: 100%;
        padding: 14px 30px;
        font-size: 13px;
        justify-content: center;
    }
    
    .hero-stats-mini {
        flex-direction: row;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-mini {
        text-align: center;
    }
    
    .stat-number {
        font-size: 22px;
    }
    
    .stat-label {
        font-size: 9px;
        letter-spacing: 1px;
    }
    
    .stat-divider {
        display: none;
    }
    
    /* About Section Mobile */
    .about-minimal {
        padding: 60px 0 40px;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-description {
        font-size: 15px;
        line-height: 1.8;
    }
    
    /* Restaurant Section Mobile */
    .restaurant-bar-section {
        padding: 60px 0;
    }
    
    .section-header-cratos {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .section-title-left {
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 12px;
    }
    
    .section-main-title {
        font-size: 28px;
        letter-spacing: 3px;
    }
    
    .restaurant-carousel-wrapper {
        gap: 0;
    }
    
    .carousel-btn {
        display: none !important;
    }
    
    .restaurant-card {
        flex: 0 0 260px;
    }
    
    .restaurant-card-image img {
        height: 200px;
    }
    
    .restaurant-card-content h3 {
        font-size: 18px;
    }
    
    .restaurant-card-content p {
        font-size: 13px;
    }
    
    /* Rooms Section Mobile */
    .featured-rooms-cratos {
        padding: 60px 0;
    }
    
    .rooms-header-cratos {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .rooms-title-left {
        text-align: center;
    }
    
    .rooms-main-title {
        font-size: 28px;
        letter-spacing: 3px;
    }
    
    .rooms-grid-cratos {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Room Cards - Larger on Mobile */
    .rooms-carousel-cratos {
        padding: 0 15px;
    }
    
    .rooms-track {
        flex-direction: column !important;
        gap: 25px !important;
        width: 100%;
    }
    
    .room-card-cratos {
        width: 100%;
    }
    
    .room-image-cratos {
        padding: 10px;
    }
    
    .room-image-cratos img {
        height: 280px;
        border-radius: 12px;
    }
    
    .room-name-cratos {
        font-size: 20px;
        margin-top: 15px;
    }
    
    .room-info-cratos h3 {
        font-size: 20px;
    }
    
    .room-features-cratos {
        gap: 10px;
    }
    
    .room-features-cratos span {
        font-size: 11px;
    }
    
    /* Rooms Page Cards - Larger on Mobile */
    .rooms-grid-page {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        padding: 0 15px;
    }
    
    .room-card-page {
        width: 100%;
    }
    
    .room-image-page {
        padding: 10px;
    }
    
    .room-image-page img {
        height: 280px;
        border-radius: 12px;
    }
    
    .room-info-page {
        padding: 20px 15px;
    }
    
    .room-info-page h3 {
        font-size: 22px;
    }
    
    .room-info-page p {
        font-size: 14px;
    }
    
    .room-features-mini {
        gap: 8px;
    }
    
    .room-features-mini span {
        font-size: 12px;
    }
    
    .room-price-page {
        margin-top: 15px;
    }
    
    .room-price-page .price {
        font-size: 24px;
    }
    
    /* Stats Section Mobile - Horizontal Scrollable */
    .stats-section-palm {
        padding: 60px 0;
    }
    
    .stats-section-palm .container {
        padding: 0;
    }
    
    .stats-grid-cratos {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding: 0 15px 15px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .stats-grid-cratos::-webkit-scrollbar {
        display: none;
    }
    
    .stat-card-cratos {
        flex: 0 0 280px;
        min-width: 280px;
        scroll-snap-align: start;
    }
    
    .stat-card-large {
        flex: 0 0 300px;
        min-width: 300px;
    }
    
    .stat-cards-right {
        display: contents;
    }
    
    .stat-card-large .stat-card-image img {
        min-height: 320px;
    }
    
    .stat-card-small .stat-card-image img {
        min-height: 280px;
    }
    
    .stat-card-content {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    
    .stat-number-big {
        font-size: 32px;
    }
    
    .stat-title {
        font-size: 16px;
    }
    
    .stat-desc {
        font-size: 12px;
    }
    
    /* CTA Section Mobile */
    .cta-premium {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-description {
        font-size: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        padding: 14px 30px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto 15px;
    }
    
    .newsletter {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-bottom {
        padding-top: 25px;
        margin-top: 30px;
    }
    
    /* Container Padding */
    .container {
        padding: 0 15px;
    }
    
    /* Scroll Indicator */
    .scroll-indicator-premium {
        bottom: 20px;
    }
    
    .scroll-indicator-premium span {
        font-size: 10px;
    }
}

/* ==========================================
   RESTAURANT DETAIL PAGE STYLES
   ========================================== */

.restaurant-detail-section {
    padding: 80px 0;
    background: #fff;
}

.restaurant-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    margin-bottom: 60px;
}

.restaurant-detail-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.detail-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0ebe3;
}

.detail-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #f0ebe3;
    transform: translateY(-3px);
}

.feature-item i {
    font-size: 20px;
    color: #8b7355;
}

.feature-item span {
    font-size: 14px;
    color: #2c3e50;
    font-weight: 500;
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.menu-category {
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 1px solid #f0ebe3;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.menu-category:hover {
    border-color: #8b7355;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.menu-category h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.menu-category p {
    font-size: 14px;
    color: #888;
    margin: 0;
}

/* Sidebar Styles */
.restaurant-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card, .reservation-card {
    background: #fff;
    border: 1px solid #f0ebe3;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.info-card h3, .reservation-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0ebe3;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 20px;
    color: #8b7355;
    width: 24px;
    text-align: center;
    margin-top: 3px;
}

.info-item strong {
    display: block;
    font-size: 14px;
    color: #2c3e50;
    margin-bottom: 4px;
}

.info-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Reservation Form */
.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #8b7355;
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.btn-reserve {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: #8b7355;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reserve:hover {
    background: #6d5a45;
    transform: translateY(-2px);
}

/* Restaurant Gallery */
.restaurant-gallery h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.gallery-grid-small {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item-small {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Restaurant Detail Responsive */
@media (max-width: 992px) {
    .restaurant-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid-small {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .restaurant-detail-section {
        padding: 50px 0;
    }
    
    .detail-section h2 {
        font-size: 24px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .menu-categories {
        grid-template-columns: 1fr;
    }
    
    .info-card, .reservation-card {
        padding: 20px;
    }
    
    .gallery-grid-small {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   ORGANIZATION PAGE STYLES
   ========================================== */

.org-services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.org-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.org-service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0ebe3;
}

.org-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #8b7355;
}

.org-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0ebe3 0%, #fff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.org-service-card:hover .org-service-icon {
    background: #8b7355;
}

.org-service-icon i {
    font-size: 32px;
    color: #8b7355;
    transition: all 0.3s ease;
}

.org-service-card:hover .org-service-icon i {
    color: #fff;
}

.org-service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.org-service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* Organization Responsive */
@media (max-width: 992px) {
    .org-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .org-services-section {
        padding: 60px 0;
    }
    
    .org-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .org-service-card {
        padding: 30px 20px;
    }
}

/* ==========================================
   RESERVATION PAGE STYLES
   ========================================== */

.navbar-light {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-light .logo h1,
.navbar-light .nav-menu a {
    color: #2c3e50;
}

.navbar-light .logo span {
    color: #8b7355;
}

.reservation-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    padding: 140px 0 80px;
    text-align: center;
}

.reservation-hero .page-subtitle {
    color: #8b7355;
}

.reservation-hero .page-title {
    color: #fff;
    font-size: 48px;
    margin: 15px 0;
}

.reservation-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
}

.reservation-section {
    padding: 60px 0 100px;
    background: #f8f9fa;
}

.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.reservation-form-container {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.form-header {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0ebe3;
}

.form-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #2c3e50;
    margin: 0 0 8px;
}

.form-header p {
    color: #888;
    margin: 0;
}

.reservation-form-main .form-section {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.reservation-form-main .form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 25px;
    padding-bottom: 0;
}

.reservation-form-main .form-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #2c3e50;
    margin: 0 0 25px;
}

.reservation-form-main .form-section h3 i {
    color: #8b7355;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.reservation-form-main .form-group {
    margin-bottom: 20px;
}

.reservation-form-main label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 8px;
}

.reservation-form-main input,
.reservation-form-main select,
.reservation-form-main textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
    box-sizing: border-box;
    font-family: inherit;
}

.reservation-form-main input:focus,
.reservation-form-main select:focus,
.reservation-form-main textarea:focus {
    outline: none;
    border-color: #8b7355;
    box-shadow: 0 0 0 4px rgba(139,115,85,0.1);
}

.extras-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.extra-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.extra-checkbox:hover {
    background: #f0ebe3;
}

.extra-checkbox input {
    width: 20px;
    height: 20px;
    min-width: 20px;
    accent-color: #8b7355;
    cursor: pointer;
}

.extra-checkbox input:checked + .checkmark {
    background: #8b7355;
    border-color: #8b7355;
}

.extra-checkbox input:checked + .checkmark::after {
    display: block;
}

.extra-checkbox .checkmark {
    display: none;
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid #ccc;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s;
}

.extra-checkbox .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    display: none;
}

.extra-checkbox input:checked ~ .extra-info {
    color: #8b7355;
}

.extra-info {
    flex: 1;
}

.extra-info strong {
    display: block;
    font-size: 14px;
    color: #2c3e50;
    margin-bottom: 3px;
}

.extra-info small {
    color: #8b7355;
    font-weight: 600;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.terms-checkbox input {
    width: 20px;
    height: 20px;
    min-width: 20px;
    accent-color: #8b7355;
    cursor: pointer;
}

.terms-checkbox .checkmark {
    display: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    position: relative;
    margin-top: 2px;
}

.terms-checkbox input:checked + .checkmark {
    background: #8b7355;
    border-color: #8b7355;
}

.terms-checkbox input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
}

.terms-checkbox span {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.terms-checkbox a {
    color: #8b7355;
    text-decoration: underline;
}

/* Reservation Steps */
.reservation-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f6f3;
    border-radius: 10px;
}

.reservation-steps .step {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    color: #999;
    font-weight: 500;
}

.reservation-steps .step span:first-child {
    width: 32px;
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ddd;
    color: #666;
    border-radius: 50%;
    font-weight: 600;
    flex-shrink: 0;
}

.reservation-steps .step span:last-child {
    width: auto;
    background: transparent;
    color: inherit;
    border-radius: 0;
}

.reservation-steps .step.active {
    color: #8b7355;
}

.reservation-steps .step.active span {
background: #8b7355;
color: #fff;
}

.reservation-steps .step.completed span {
background: #28a745;
color: #fff;
}

.reservation-steps .step.room-status.available {
background: #d4edda;
color: #155724;
}

/* Reservation CTA Section */
.reservation-cta-section {
background: linear-gradient(135deg, #8b7355 0%, #6d5a43 100%);
border-radius: 16px;
padding: 50px;
margin-top: 60px;
text-align: center;
}

.reservation-cta-content h2 {
font-family: 'Playfair Display', serif;
font-size: 32px;
color: #fff;
margin-bottom: 15px;
}

.reservation-cta-content p {
color: rgba(255,255,255,0.9);
font-size: 18px;
margin-bottom: 30px;
}

.btn-cta-reserve {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 16px 40px;
background: #fff;
color: #8b7355;
font-size: 16px;
font-weight: 600;
border-radius: 8px;
text-decoration: none;
transition: all 0.3s ease;
}

.btn-cta-reserve:hover {
background: #f5f5f5;
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.org-cta-section {
padding: 60px 0;
}

@media (max-width: 768px) {
.reservation-cta-section {
padding: 30px 20px;
}
  
.reservation-cta-content h2 {
font-size: 24px;
}
  
.reservation-cta-content p {
font-size: 16px;
}
}

/* Room Selection Header */
.room-selection-header {
text-align: center;
margin-bottom: 40px;
    margin-bottom: 40px;
}

.room-selection-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.room-selection-header p {
    color: #666;
}

/* Room Cards List */
.room-cards-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Horizontal Room Card */
.room-card-horizontal {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.room-card-horizontal:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: #8b7355;
}

.room-card-image {
    width: 280px;
    min-width: 280px;
    height: 220px;
}

.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-card-content {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.room-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.room-features span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: #f5f5f5;
    border-radius: 4px;
    font-size: 12px;
    color: #666;
}

.room-features span i {
    color: #8b7355;
}

.room-details-link {
    margin-bottom: 12px;
}

.room-details-link a {
    color: #8b7355;
    font-weight: 500;
    text-decoration: underline;
}

.room-includes {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.room-includes li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
}

.room-includes li i {
    color: #28a745;
}

.room-card-price {
    width: 200px;
    min-width: 200px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
    background: #faf9f7;
    border-left: 1px solid #eee;
}

.price-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #8b7355;
}

.price-note {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.btn-select-room {
    padding: 12px 30px;
    background: #8b7355;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-room:hover {
    background: #6d5a43;
}

/* Selected Room Banner */
.selected-room-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #8b7355 0%, #6d5a43 100%);
    padding: 20px 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    color: #fff;
}

.selected-room-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.selected-room-info span:first-child {
    opacity: 0.8;
}

.selected-room-info strong {
    font-size: 20px;
}

.selected-room-price {
    background: rgba(255,255,255,0.2);
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 500;
}

.btn-change-room {
    padding: 10px 20px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-change-room:hover {
    background: rgba(255,255,255,0.3);
}

/* Responsive Room Cards */
@media (max-width: 992px) {
    .room-card-horizontal {
        flex-direction: column;
    }
    
    .room-card-image {
        width: 100%;
        height: 250px;
    }
    
    .room-card-content h3 {
        font-size: 1.4rem;
    }
    
    .room-card-content {
        padding: 20px;
    }
    
    .room-card-price {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-left: none;
        border-top: 1px solid #eee;
    }
    
    .price-note {
        margin-bottom: 0;
        margin-right: 15px;
    }
    
    .reservation-steps {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .selected-room-banner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .selected-room-info {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .reservation-steps {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .room-card-price {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

.btn-submit-reservation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px;
    background: #8b7355;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit-reservation:hover {
    background: #6d5a45;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139,115,85,0.3);
}

/* Reservation Sidebar */
.reservation-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 100px;
}

.price-summary-card,
.contact-card,
.guarantee-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.price-summary-card h3,
.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #2c3e50;
    margin: 0 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0ebe3;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
}

.summary-row span:last-child {
    font-weight: 500;
    color: #2c3e50;
}

.summary-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 10px 0;
}

.summary-row.total {
    padding-top: 15px;
    font-size: 18px;
    font-weight: 600;
}

.summary-row.total span:last-child {
    color: #8b7355;
    font-size: 24px;
}

.campaign-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
    border-radius: 10px;
}

.campaign-box i {
    font-size: 24px;
    color: #8b7355;
}

.campaign-info strong {
    display: block;
    font-size: 14px;
    color: #2c3e50;
}

.campaign-info span {
    color: #2ecc71;
    font-weight: 600;
}

.contact-card p {
    color: #666;
    font-size: 14px;
    margin: 0 0 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #8b7355;
}

.contact-info i {
    width: 20px;
    color: #8b7355;
}

.guarantee-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #2c3e50;
}

.guarantee-item i {
    color: #2ecc71;
    font-size: 18px;
}

/* Reservation Modal */
.reservation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.reservation-modal.active {
    display: flex;
}

.reservation-modal .modal-content {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.modal-icon.success {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

.modal-icon i {
    font-size: 36px;
    color: #fff;
}

.reservation-modal h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #2c3e50;
    margin: 0 0 15px;
}

.reservation-modal > .modal-content > p {
    color: #666;
    margin: 0 0 10px;
}

.modal-details {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
}

.modal-details .detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e8e8e8;
}

.modal-details .detail-row:last-child {
    border-bottom: none;
}

.modal-details span {
    color: #888;
}

.modal-details strong {
    color: #2c3e50;
}

.btn-modal-close {
    padding: 15px 50px;
    background: #8b7355;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-modal-close:hover {
    background: #6d5a45;
}

/* Reservation Responsive */
@media (max-width: 992px) {
    .reservation-grid {
        grid-template-columns: 1fr;
    }
    
    .reservation-sidebar {
        position: static;
    }
}

@media (max-width: 576px) {
    .reservation-hero {
        padding: 120px 0 60px;
    }
    
    .reservation-hero .page-title {
        font-size: 32px;
    }
    
    .reservation-form-container {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .extras-grid {
        grid-template-columns: 1fr;
    }
    
    .reservation-modal .modal-content {
        padding: 30px 20px;
    }
}

/* Success Message Styles */
.success-message {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.success-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.success-message h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.success-message p {
    color: #666;
    margin-bottom: 10px;
}

.success-message strong {
    color: #8b7355;
    font-size: 18px;
}

/* Payment Option Checkbox */
.payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.payment-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #8b7355;
}

/* Reservation Form in Sidebar */
.reservation-card .reservation-form .form-group {
    margin-bottom: 15px;
}

.reservation-card .reservation-form input,
.reservation-card .reservation-form select,
.reservation-card .reservation-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.reservation-card .reservation-form input:focus,
.reservation-card .reservation-form select:focus,
.reservation-card .reservation-form textarea:focus {
    border-color: #8b7355;
    outline: none;
}

.reservation-card .reservation-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 500;
    color: #444;
}

.reservation-card .btn-reserve {
    width: 100%;
    padding: 12px;
    background: #8b7355;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s;
}

.reservation-card .btn-reserve:hover {
    background: #6d5a43;
}

/* Compact Form 2-Column Layout */
.compact-form .form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.compact-form .form-group {
    margin-bottom: 12px;
}

.compact-form .form-group label {
    font-size: 12px;
    margin-bottom: 4px;
}

.compact-form input,
.compact-form select,
.compact-form textarea {
    padding: 8px 10px;
    font-size: 13px;
}

.compact-form textarea {
    resize: none;
}

.compact-form .payment-option {
    margin: 10px 0;
    font-size: 13px;
}

.compact-form .btn-reserve {
    margin-top: 10px;
    padding: 10px;
    font-size: 13px;
}

@media (max-width: 480px) {
    .compact-form .form-row-2col {
        grid-template-columns: 1fr;
    }
}

/* ==================== NEW AVAILABILITY MANAGEMENT STYLES ==================== */

/* Availability Tabs */
.availability-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.avail-tab {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.avail-tab:hover {
    background: #e9ecef;
}

.avail-tab.active {
    background: linear-gradient(135deg, #8b7355, #6d5a43);
    color: #fff;
}

.avail-tab-content {
    display: none;
}

.avail-tab-content.active {
    display: block;
}

/* Capacity Section */
.capacity-section,
.availability-entry-section,
.calendar-section,
.availability-list-section {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.section-header-flex h3 {
    font-size: 16px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.section-header-flex h3 i {
    color: #8b7355;
}

.availability-entry-section h3,
.availability-list-section h3 {
    font-size: 16px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.availability-entry-section h3 i,
.availability-list-section h3 i {
    color: #8b7355;
}

.btn-save-small {
    padding: 8px 16px;
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.3s;
}

.btn-save-small:hover {
    background: #218838;
}

/* Capacity Grid */
.capacity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.capacity-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.2s;
}

.capacity-card:hover {
    transform: translateY(-2px);
}

.capacity-card.wide {
    min-width: 280px;
}

.capacity-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.capacity-info h4 {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.capacity-input-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.capacity-input-group label {
    font-size: 12px;
    color: #666;
}

.capacity-input-group input {
    width: 60px;
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
}

/* Availability Entry Form */
.avail-entry-form {
    display: flex;
    gap: 15px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.avail-entry-form .form-group {
    flex: 1;
    min-width: 140px;
}

.avail-entry-form .form-group label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 6px;
}

.avail-entry-form .form-group input,
.avail-entry-form .form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.avail-entry-form .btn-primary {
    height: 42px;
    white-space: nowrap;
}

/* Calendar Styles */
.calendar-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.calendar-nav button {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.calendar-nav button:hover {
    background: #8b7355;
    color: #fff;
    border-color: #8b7355;
}

.calendar-nav span {
    font-weight: 600;
    color: #333;
    min-width: 120px;
    text-align: center;
}

.availability-calendar .cal-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.availability-calendar .cal-header span {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    padding: 10px 0;
}

.availability-calendar .cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.availability-calendar .cal-day {
    aspect-ratio: 1;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    position: relative;
    transition: all 0.2s;
}

.availability-calendar .cal-day.empty {
    background: transparent;
}

.availability-calendar .cal-day.available {
    background: #d4edda;
    color: #155724;
}

.availability-calendar .cal-day.partial {
    background: #fff3cd;
    color: #856404;
}

.availability-calendar .cal-day.full {
    background: #f8d7da;
    color: #721c24;
}

.availability-calendar .day-num {
    font-weight: 600;
}

.availability-calendar .day-info {
    font-size: 10px;
    margin-top: 2px;
}

/* Admin Calendar Room Legend */
.cal-room-legend {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.room-legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #666;
}

.room-legend-item .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.room-legend-item .dot.standart { background: #3498db; }
.room-legend-item .dot.deluxe { background: #9b59b6; }
.room-legend-item .dot.suite { background: #e67e22; }
.room-legend-item .dot.king-suite { background: #f1c40f; }
.room-legend-item .dot.presidential { background: #1abc9c; }

/* Room Dots in Calendar */
.room-dots {
    display: flex;
    gap: 2px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3px;
}

.room-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.5);
}

.room-dot.standart { background: #3498db; }
.room-dot.deluxe { background: #9b59b6; }
.room-dot.suite { background: #e67e22; }
.room-dot.king-suite { background: #f1c40f; }
.room-dot.presidential { background: #1abc9c; }

.room-dot.full {
    animation: pulse-dot 1s infinite;
    box-shadow: 0 0 4px currentColor;
}

.room-dot.almost {
    opacity: 0.7;
}

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

.availability-calendar .cal-day {
    cursor: pointer;
}

.availability-calendar .cal-day:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Room Type Badge */
.room-type-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.room-type-badge.standart { background: #3498db; }
.room-type-badge.deluxe { background: #9b59b6; }
.room-type-badge.suite { background: #e67e22; }
.room-type-badge.king-suite { background: #f1c40f; color: #333; }
.room-type-badge.presidential { background: #1abc9c; }

/* Restaurant Availability Grid */
.rest-avail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.rest-avail-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.rest-avail-header {
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
}

.status-tag {
    background: rgba(255,255,255,0.2);
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 11px;
}

.rest-avail-body {
    padding: 12px 15px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
}

.rest-avail-body i {
    color: #8b7355;
    margin-right: 5px;
}

/* Organization Availability Grid */
.org-calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.org-avail-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
}

.org-avail-date {
    font-weight: 600;
    color: #333;
    font-size: 13px;
}

.org-avail-venue {
    padding: 4px 10px;
    border-radius: 15px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
}

.org-avail-event {
    grid-column: 1 / -1;
    font-size: 14px;
    color: #666;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

/* Delete Mini Button */
.btn-delete-mini {
    width: 28px;
    height: 28px;
    border: none;
    background: #fee;
    color: #e74c3c;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-delete-mini:hover {
    background: #e74c3c;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .availability-tabs {
        flex-direction: column;
    }
    
    .avail-entry-form {
        flex-direction: column;
    }
    
    .avail-entry-form .form-group {
        width: 100%;
    }
    
    .capacity-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== USER AVAILABILITY CALENDAR ==================== */

.user-availability-calendar {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.avail-cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.avail-cal-header span {
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.cal-nav-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: #666;
}

.cal-nav-btn:hover {
    background: #8b7355;
    color: #fff;
    border-color: #8b7355;
}

.avail-cal-room-info {
    text-align: center;
    padding: 10px 15px;
    background: linear-gradient(135deg, #8b7355, #6d5a43);
    color: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
}

.avail-cal-room-info i {
    margin-right: 6px;
}

.avail-cal-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #666;
}

.legend-item .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-item .dot.available {
    background: #28a745;
}

.legend-item .dot.almost-full {
    background: #ffc107;
}

.legend-item .dot.full {
    background: #dc3545;
}

.avail-cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.avail-cal-days span {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: #999;
    padding: 5px 0;
}

.avail-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-cell {
    aspect-ratio: 1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.cal-cell.empty {
    background: transparent;
}

.cal-cell.past {
    background: #f0f0f0;
    color: #ccc;
}

.cal-cell.available {
    background: #d4edda;
    color: #155724;
}

.cal-cell.available.clickable {
    cursor: pointer;
}

.cal-cell.available.clickable:hover {
    background: #28a745;
    color: #fff;
    transform: scale(1.1);
}

.cal-cell.almost-full {
    background: #fff3cd;
    color: #856404;
}

.cal-cell.almost-full.clickable {
    cursor: pointer;
}

.cal-cell.almost-full.clickable:hover {
    background: #ffc107;
    color: #333;
    transform: scale(1.1);
}

.cal-cell.full {
    background: #f8d7da;
    color: #721c24;
    cursor: not-allowed;
}

.cal-cell .day-number {
    pointer-events: none;
}

.cal-cell.selected {
    background: #8b7355 !important;
    color: #fff !important;
    position: relative;
    box-shadow: 0 2px 8px rgba(139, 115, 85, 0.4);
    transform: scale(1.05);
}

.cal-cell.selected.check-in {
    border-radius: 8px 0 0 8px;
}

.cal-cell.selected.check-out {
    border-radius: 0 8px 8px 0;
}

.cal-cell.in-range {
    background: rgba(139, 115, 85, 0.2) !important;
    color: #5a4a3a !important;
    border-radius: 0;
}

.cal-cell .sel-label {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .avail-cal-legend {
        gap: 10px;
    }
    
    .legend-item {
        font-size: 10px;
    }
    
    .cal-cell {
        font-size: 12px;
    }
}

/* ================================
   Campaigns Section - Homepage
   ================================ */
.campaigns-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.campaigns-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.campaigns-view-all {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    transition: all 0.4s ease;
}

.campaigns-view-all:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateX(5px);
}

.campaigns-view-all i {
    transition: transform 0.3s ease;
}

.campaigns-view-all:hover i {
    transform: translateX(5px);
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.campaign-card-home {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.campaign-card-home:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.campaign-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.campaign-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.campaign-card-home:hover .campaign-card-image img {
    transform: scale(1.1);
}

.campaign-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 35, 50, 0.7) 100%);
}

.campaign-discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    transform: rotate(5deg);
    transition: transform 0.3s ease;
}

.campaign-card-home:hover .campaign-discount-badge {
    transform: rotate(0deg) scale(1.05);
}

.discount-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a2332;
    line-height: 1;
}

.discount-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #1a2332;
    letter-spacing: 2px;
    margin-top: 2px;
}

.campaign-urgency {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 53, 69, 0.95);
    color: #fff;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    animation: urgencyPulse 2s ease-in-out infinite;
}

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

.campaign-urgency i {
    font-size: 14px;
    animation: clockSpin 3s linear infinite;
}

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

.campaign-card-content {
    padding: 25px 30px 30px;
}

.campaign-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.campaign-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.campaign-card-dates {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.campaign-card-dates i {
    color: var(--secondary-color);
}

.campaign-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c3e50 100%);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(26, 35, 50, 0.2);
}

.campaign-card-btn:hover {
    background: linear-gradient(135deg, #d4af37 0%, #c9a227 100%);
    color: #1a2332;
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.campaign-card-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.campaign-card-btn:hover i {
    transform: translateX(5px);
}

/* Campaign Discount Badges & Prices */
.campaign-badge-room {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #fff;
    padding: 10px 15px;
    border-radius: 12px;
    text-align: center;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

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

.campaign-badge-room span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.campaign-badge-room small {
    display: block;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 2px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    font-weight: 400;
    margin-right: 8px;
}

.room-price-page .price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

/* Room Detail Campaign Badge */
.room-detail-campaign-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #fff;
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

.room-detail-campaign-badge .badge-discount {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.room-detail-campaign-badge .badge-text {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 3px;
}

.old-price-detail {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ddd;
}

.old-price-detail .old-label {
    font-size: 12px;
    color: #999;
}

.old-price-detail .old-amount {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
}

.campaign-info-detail {
    margin-top: 15px;
    padding: 10px 15px;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
    border-radius: 10px;
    color: #dc3545;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.campaign-info-detail i {
    font-size: 14px;
}

/* Campaigns Responsive */
@media (max-width: 768px) {
    .campaigns-section {
        padding: 60px 0;
    }
    
    .campaign-badge-room {
        padding: 8px 12px;
    }
    
    .campaign-badge-room span {
        font-size: 16px;
    }
    
    .room-detail-campaign-badge {
        padding: 12px 15px;
        top: 15px;
        left: 15px;
    }
    
    .room-detail-campaign-badge .badge-discount {
        font-size: 22px;
    }
    
    .campaigns-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    
    .campaign-card-image {
        height: 180px;
    }
    
    .campaign-discount-badge {
        padding: 12px 16px;
    }
    
    .discount-value {
        font-size: 24px;
    }
    
    .campaign-card-content {
        padding: 20px;
    }
    
    .campaign-card-title {
        font-size: 20px;
    }
    
    .campaigns-view-all {
        padding: 10px 18px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .campaigns-section .section-header-cratos {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .campaigns-section .section-title-left {
        text-align: center;
    }
    
    .campaign-card-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ================================
   Mobile Sticky Bottom Bar - Room Detail
   ================================ */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    padding: 0;
    z-index: 1000;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.mobile-sticky-bar.visible {
    transform: translateY(0);
}

.sticky-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    gap: 15px;
}

.sticky-bar-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sticky-price-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.sticky-price-amount {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.sticky-currency {
    font-size: 16px;
    font-weight: 600;
    color: #d4af37;
}

.sticky-price {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.sticky-reserve-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4af37 0%, #c9a227 100%);
    color: #1a2332;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    flex-shrink: 0;
}

.sticky-reserve-btn:hover,
.sticky-reserve-btn:active {
    background: linear-gradient(135deg, #e5c349 0%, #d4af37 100%);
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.sticky-reserve-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.sticky-reserve-btn:hover i {
    transform: translateX(3px);
}

/* Show only on mobile/tablet */
@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: block;
    }
    
    /* Hide main reserve button on mobile since we have sticky bar */
    .room-pricing .btn-reserve-room {
        display: none;
    }
}

@media (max-width: 480px) {
    .sticky-bar-content {
        padding: 14px 16px;
        padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    }
    
    .sticky-price {
        font-size: 22px;
    }
    
    .sticky-currency {
        font-size: 14px;
    }
    
    .sticky-reserve-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .sticky-price-label {
        font-size: 10px;
    }
}

/* =====================================================
   MENU PAGE - FLIP BOOK STYLE
   ===================================================== */

.menu-page-body {
    min-height: 100vh !important;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%) !important;
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
    overflow-x: hidden !important;
}

.menu-page-body .navbar-menu {
    display: none !important;
}

.menu-book-container {
    width: 100%;
    max-width: 1100px;
    height: 85vh;
    max-height: 700px;
    perspective: 2500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.menu-book {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    display: flex;
    box-shadow: 0 10px 60px rgba(0,0,0,0.3);
    border-radius: 8px;
}

.side-strip {
    position: absolute;
    top: 0;
    width: 45px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.side-strip.left {
    left: -45px;
    background: #1a6b5c;
    border-radius: 8px 0 0 8px;
}

.side-strip.right {
    right: -45px;
    background: #00a8cc;
    border-radius: 0 8px 8px 0;
}

.side-strip-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 6px;
    color: rgba(255,255,255,0.2);
    text-transform: uppercase;
}

.side-strip.left .side-strip-text {
    transform: rotate(180deg);
}

.book-left-page {
    width: 50%;
    height: 100%;
    background: #fdfbf7;
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 8px 0 0 8px;
    overflow: hidden;
}

.left-page-header {
    padding: 30px 30px 20px;
    text-align: center;
}

.hotel-logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    color: #1a6b5c;
    letter-spacing: 3px;
    line-height: 1;
}

.hotel-logo h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 400;
    color: #c9a227;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 5px;
}

.left-page-image {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.left-page-image img {
    max-width: 85%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: opacity 0.3s ease;
}

.decorative-leaf {
    position: absolute;
    opacity: 0.08;
    color: #1a6b5c;
    font-size: 150px;
    pointer-events: none;
}

.decorative-leaf.top-right {
    top: -20px;
    right: -20px;
    transform: rotate(45deg);
}

.decorative-leaf.bottom-left {
    bottom: -20px;
    left: -20px;
    transform: rotate(-135deg);
}

.left-page-footer {
    padding: 20px 30px;
    display: flex;
    justify-content: center;
    gap: 25px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #5a5a5a;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    transition: color 0.3s;
}

.social-link:hover {
    color: #1a6b5c;
}

.book-spine {
    width: 25px;
    height: 100%;
    background: linear-gradient(90deg, #d4cfc5 0%, #e8e4dc 50%, #d4cfc5 100%);
    position: relative;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
    z-index: 50;
}

.book-right-page {
    width: 50%;
    height: 100%;
    background: #fdfbf7;
    position: relative;
    border-radius: 0 8px 8px 0;
    overflow: hidden;
}

.pages-stack {
    width: 100%;
    height: 100%;
    position: relative;
}

.menu-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fdfbf7;
    padding: 35px 40px;
    overflow-y: auto;
    transform-origin: left center;
    transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.3s ease;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
}

.menu-page.flipped {
    transform: rotateY(-180deg);
    pointer-events: none;
}

.menu-page.hidden {
    opacity: 0;
    pointer-events: none;
}

.page-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.category-title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.category-title-decoration span {
    width: 25px;
    height: 2px;
    background: #c9a227;
}

.category-title-decoration i {
    color: #c9a227;
    font-size: 10px;
}

.page-category-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: #1a6b5c;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.page-category-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-style: italic;
    color: #c9a227;
    letter-spacing: 2px;
}

.menu-items-container {
    flex: 1;
    overflow-y: auto;
}

.menu-items-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 14px;
    border-bottom: 1px dashed rgba(0,0,0,0.08);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-info {
    flex: 1;
}

.menu-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 600;
    color: #2c2c2c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.menu-item-badge {
    font-family: 'Poppins', sans-serif;
    font-size: 8px;
    font-weight: 600;
    color: #c9a227;
    background: rgba(201, 162, 39, 0.12);
    padding: 2px 7px;
    border-radius: 3px;
    text-transform: uppercase;
}

.menu-item-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-style: italic;
    color: #c9a227;
    line-height: 1.4;
}

.menu-item-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 600;
    color: #2c2c2c;
    white-space: nowrap;
}

.book-navigation {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 200;
}

.nav-btn {
    width: 42px;
    height: 42px;
    border: 2px solid rgba(255,255,255,0.3);
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.nav-btn:hover:not(:disabled) {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: white;
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.page-indicator {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    min-width: 50px;
    text-align: center;
}

.cover-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fdfbf7;
    border-radius: 0 8px 8px 0;
    z-index: 100;
    transform-origin: left center;
    transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    cursor: pointer;
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
}

.cover-page.opened {
    transform: rotateY(-180deg);
    pointer-events: none;
}

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

.cover-icon {
    width: 70px;
    height: 70px;
    border: 2px solid #c9a227;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.cover-icon i {
    font-size: 28px;
    color: #c9a227;
}

.cover-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 600;
    color: #1a6b5c;
    letter-spacing: 6px;
    margin-bottom: 8px;
}

.cover-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-style: italic;
    color: #c9a227;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.cover-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.cover-divider span {
    width: 50px;
    height: 1px;
    background: #c9a227;
}

.cover-divider i {
    color: #c9a227;
    font-size: 8px;
}

.open-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: #1a6b5c;
    color: white;
    border: none;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.open-book-btn:hover {
    background: #2d8a78;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 107, 92, 0.3);
}

.close-book-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.05);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #5a5a5a;
    font-size: 16px;
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.close-book-btn.visible {
    opacity: 1;
    visibility: visible;
}

.close-book-btn:hover {
    background: rgba(0,0,0,0.1);
}

@media (max-width: 900px) {
    .menu-book-container {
        max-height: 80vh;
    }
    .side-strip {
        width: 30px;
    }
    .side-strip.left { left: -30px; }
    .side-strip.right { right: -30px; }
    .side-strip-text {
        font-size: 20px;
    }
    .menu-page {
        padding: 25px 30px;
    }
    .page-category-title {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .menu-book-container {
        height: 90vh;
        max-height: none;
    }
    .menu-book {
        flex-direction: column;
    }
    .book-left-page,
    .book-spine {
        display: none;
    }
    .book-right-page {
        width: 100%;
        height: 100%;
        border-radius: 10px;
    }
    .side-strip {
        display: none;
    }
    .menu-page {
        padding: 25px 20px;
        border-radius: 10px;
    }
    .cover-page {
        border-radius: 10px;
    }
    .book-navigation {
        bottom: -50px;
    }
}

/* Menu Book Button - Restaurant Detail Page (Sea Theme) */
.menu-book-btn-container {
    perspective: 1500px;
    cursor: pointer;
    width: 220px;
    height: 300px;
    margin: 0 auto;
}

.menu-book-btn {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.menu-book-btn:hover {
    transform: rotateY(-8deg) scale(1.02);
}

.menu-book-btn.opening .book-btn-cover {
    transform: rotateY(-160deg);
}

.book-btn-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform-origin: left center;
    transition: transform 1s cubic-bezier(0.645, 0.045, 0.355, 1);
    z-index: 10;
}

.book-btn-spine {
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 100%;
    background: linear-gradient(90deg, #0a2840 0%, #0d3251 20%, #1a4568 50%, #0d3251 80%, #0a2840 100%);
    border-radius: 4px 0 0 4px;
    box-shadow: inset 0 0 10px rgba(0, 50, 80, 0.5);
}

.book-btn-front {
    position: absolute;
    left: 18px;
    top: 0;
    width: calc(100% - 18px);
    height: 100%;
    background: linear-gradient(145deg, #0a2840 0%, #051525 100%);
    border-radius: 0 10px 10px 0;
    box-shadow: 
        5px 5px 20px rgba(0, 50, 80, 0.4),
        inset 0 0 30px rgba(77, 208, 225, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    overflow: hidden;
}

.book-btn-front::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(77, 208, 225, 0.3);
    border-radius: 6px;
}

.book-btn-front::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.2), rgba(0,0,0,0.1), rgba(255,255,255,0.03));
    border-radius: 0 10px 10px 0;
}

.book-btn-front .cover-content {
    text-align: center;
    padding: 20px;
}

.book-btn-front .cover-logo {
    width: 50px;
    height: 50px;
    border: 1px solid #4dd0e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background: rgba(77, 208, 225, 0.08);
}

.book-btn-front .cover-logo i {
    font-size: 22px;
    color: #4dd0e1;
}

.book-btn-front .cover-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 6px;
    margin: 0 0 5px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.book-btn-front .cover-subtitle {
    font-size: 9px;
    color: #4dd0e1;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 15px 0;
}

.book-btn-front .cover-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.book-btn-front .cover-divider span {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4dd0e1, transparent);
}

.book-btn-front .cover-divider i {
    color: #4dd0e1;
    font-size: 10px;
}

.book-btn-front .open-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #4dd0e1;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.menu-book-btn:hover .open-hint {
    opacity: 1;
}

.book-btn-front .open-hint i {
    font-size: 12px;
}

.book-btn-pages {
    position: absolute;
    left: 18px;
    top: 3px;
    width: calc(100% - 22px);
    height: calc(100% - 6px);
    border-radius: 0 8px 8px 0;
}

.book-btn-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #051525, #0a2840);
    border-radius: 0 8px 8px 0;
    box-shadow: inset 2px 0 5px rgba(0, 0, 0, 0.3);
}

.book-btn-page:nth-child(1) {
    transform: translateX(2px);
}

.book-btn-page:nth-child(2) {
    transform: translateX(4px);
    opacity: 0.7;
}

.book-btn-page:nth-child(3) {
    transform: translateX(6px);
    opacity: 0.5;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Language Switcher */
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    min-width: 220px;
    justify-content: flex-end;
}

.nav-menu li a {
    white-space: nowrap;
}

.nav-right .reserve-btn {
    min-width: 120px;
    text-align: center;
    white-space: nowrap;
    padding: 10px 15px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 75px;
    justify-content: center;
}

.lang-switcher:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.lang-flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

.lang-btn-text {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    width: 22px;
    text-align: center;
    display: inline-block;
}

.navbar.scrolled .lang-switcher {
    background: rgba(139, 115, 85, 0.1);
    border-color: rgba(139, 115, 85, 0.3);
}

.navbar.scrolled .lang-btn-text {
    color: #2c3e50;
}

@media (max-width: 992px) {
    .lang-switcher {
        position: absolute;
        top: 20px;
        right: 70px;
    }
    
    .nav-right {
        flex-direction: column;
    }
}

/* Footer Contact Links */
.footer-link {
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-link:hover {
    color: #c9a227;
}

.footer-link i {
    width: 16px;
    color: #c9a227;
}

.footer-link.whatsapp-link:hover {
    color: #25D366;
}

.footer-link.whatsapp-link i {
    color: #25D366;
}

/* Restaurant Cards Grid - Homepage */
.restaurant-cards-grid .restaurant-card {
    flex: 0 0 calc(50% - 15px);
    max-width: 500px;
}

.restaurant-cards-grid .restaurant-card-image img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .restaurant-cards-grid .restaurant-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .restaurant-cards-grid .restaurant-card-image img {
        height: 320px;
    }
}

/* Fix navbar layout for English version */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Mobile logo fix - bigger and shifted right */
@media (max-width: 768px) {
    .logo {
        position: fixed;
        top: 8px;
        left: 20px;
        z-index: 1001;
    }
    
    .logo-img {
        height: 55px !important;
        max-width: 180px !important;
    }
}
