/* X-Empire Boutique Hotel - Design System */
:root {
    --primary-gold: #D4AF37;
    --gold-hover: #B8860B;
    --deep-navy: #1A1A2E;
    --soft-cream: #F8F5F0;
    --charcoal: #2C2C2C;
    --white: #FFFFFF;
    --success-green: #27AE60;
    --header-bg: rgba(26, 26, 46, 0.95);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

body.no-scroll {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #cccc73;
    color: #000;
}

.btn-primary:hover {
    background-color: #c2a35a;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #8B4513;
    border: 2px solid #8B4513;
}

.btn-secondary:hover {
    background-color: #8B4513;
    color: #fff;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 16px 40px;
    font-size: 18px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.btn-whatsapp:active {
    transform: translateY(-1px);
}

.btn-whatsapp i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn-whatsapp:hover i {
    transform: scale(1.1) rotate(5deg);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
    border-radius: 50px;
}

/* Header Styles - Modern Professional Design */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 25px 0;
}

.header.scrolled {
    background-color: rgba(26, 26, 46, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gallery-nav {
    display: none;
}

.gallery-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.gallery-nav a:hover {
    background-color: #f0f0f0;
}

.logo {
    display: flex;
    align-items: center;
    min-width: fit-content;
    transition: var(--transition);
    gap: 12px;
}

.logo-link {
    display: block;
    transition: var(--transition);
    padding: 6px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
}

.logo-link:hover {
    background: rgba(204, 204, 115, 0.15);
    transform: translateY(-2px);
}

.logo-image {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(204, 204, 115, 0.3));
    border: 2px solid rgba(204, 204, 115, 0.3);
}

.logo-link:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(204, 204, 115, 0.5));
    border-color: rgba(204, 204, 115, 0.8);
}

.logo p {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 2px 0 0 0;
    transition: var(--transition);
}

.header.scrolled .logo p {
    color: rgba(255, 255, 255, 0.5);
}

/* Navigation Menu */
.nav {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: flex-end;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    height: 100%;
    flex: 1;
    justify-content: flex-end;
}

.nav-menu li {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.nav-menu li a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    display: block;
    white-space: nowrap;
    border-radius: 0;
    margin: 0;
    min-width: auto;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #cccc73;
    transition: transform 0.3s ease;
    transform: scaleX(0);
    transform-origin: right;
}

.nav-menu li a:hover::before,
.nav-menu li a.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #cccc73;
    background: transparent;
    transform: none;
}

/* Ensure Gallery link has proper spacing */
.nav-menu li a[href="gallery.php"] {
    min-width: 90px;
}

/* CTA Button */
.nav-cta {
    margin-left: 20px;
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(135deg, #cccc73 0%, #e0d577 100%);
    color: #1a1a2e;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 50px;
    padding: 12px 32px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(204, 204, 115, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: left 0.4s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 204, 115, 0.45);
    background: linear-gradient(135deg, #e0d577 0%, #cccc73 100%);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 5px;
    margin-left: 15px;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background-color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger:hover span {
    background-color: #cccc73;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #cccc73 0%, #e0d577 100%);
    width: 0%;
    z-index: 999;
    transition: width 0.3s ease;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg') center/cover;
    color: #fff;
    text-align: center;
    padding: 120px 0 80px;
    position: relative;
    margin-top: 0;
}

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/page-header-bg.jpg') center/cover;
    color: #fff;
    position: relative;
    margin-top: 0;
}

/* General Hero/Section Padding Fix for Fixed Header */
.hero,
.page-header,
.whatsapp-cta,
.rooms-cta,
.menu-cta,
.drinks-cta,
.pool-menu-cta,
.testimonials-cta,
.policy-contact {
    padding-top: 100px; /* Adjusted for header height */
}

/* Mobile padding adjustment */
@media (max-width: 768px) {
    .hero,
    .page-header,
    .whatsapp-cta,
    .rooms-cta,
    .menu-cta,
    .drinks-cta,
    .pool-menu-cta,
    .testimonials-cta,
    .policy-contact {
        padding-top: 120px; /* Reduced for mobile header */
    }
}

@media (max-width: 480px) {
    .hero,
    .page-header,
    .whatsapp-cta,
    .rooms-cta,
    .menu-cta,
    .drinks-cta,
    .pool-menu-cta,
    .testimonials-cta,
    .policy-contact {
        padding-top: 100px; /* Further reduced for small mobile */
    }
}

.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 120px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 46, 0.4), rgba(26, 26, 46, 0.7));
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero .tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 25px;
    opacity: 0.95;
    letter-spacing: 1px;
    color: #cccc73;
    text-transform: uppercase;
}

.hero .intro {
    font-size: 1.25rem;
    margin-bottom: 50px;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/page-header-bg.jpg') center/cover;
    color: #fff;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(204, 204, 115, 0.25);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Highlights Section */
.highlights {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.highlights h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.highlight-card {
    text-align: center;
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
}

.highlight-card i {
    font-size: 48px;
    color: #cccc73;
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.highlight-card p {
    color: #666;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    text-align: center;
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: #cccc73;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #000;
    font-size: 32px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Featured Rooms */
.featured-rooms {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.featured-rooms h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: #1a1a2e;
    font-family: 'Playfair Display', serif;
}

.featured-rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.room-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.room-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.room-details {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.room-details h3 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.room-details p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.btn-link {
    color: #cccc73;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: #b3b356;
}

.btn-link i {
    transition: transform 0.3s ease;
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* WhatsApp CTA - Modern Professional Design */
.whatsapp-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.whatsapp-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(204, 204, 115, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.whatsapp-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #cccc73, transparent);
    opacity: 0.6;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(204, 204, 115, 0.2);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(204, 204, 115, 0.1);
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(204, 204, 115, 0.1), rgba(204, 204, 115, 0));
    border-radius: 20px;
    pointer-events: none;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    position: relative;
}

.cta-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #cccc73, #e0d577);
    border-radius: 2px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #d1d5db;
    line-height: 1.7;
    font-weight: 300;
}

.cta-content p::first-line {
    color: #cccc73;
    font-weight: 500;
}

/* About Section */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #666;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.vision-mission .card {
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    text-align: center;
}

.vision-mission h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #cccc73;
}

.vision-mission p {
    color: #666;
    line-height: 1.6;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 36px;
    color: #cccc73;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Rooms Section */
.rooms {
    padding: 80px 0;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.room-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.room-card:hover {
    transform: translateY(-10px);
}

.room-image {
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-content {
    padding: 30px;
}

.room-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.room-price {
    font-size: 20px;
    color: #cccc73;
    font-weight: 600;
    margin-bottom: 20px;
}

.room-features {
    list-style: none;
    margin-bottom: 25px;
}

.room-features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #666;
}

.room-features i {
    width: 16px;
    margin-right: 10px;
    color: #8B4513;
}

/* Room Features Section */
.room-features {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.room-features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.room-features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.room-features .feature {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.room-features .feature i {
    font-size: 36px;
    color: #cccc73;
    margin-bottom: 20px;
}

.room-features .feature h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.room-features .feature p {
    color: #666;
    line-height: 1.6;
}

/* Rooms CTA */
.rooms-cta {
    padding: 80px 0;
    background-color: #8B4513;
    color: #fff;
    text-align: center;
}

.rooms-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.rooms-cta p {
    font-size: 18px;
    margin-bottom: 40px;
}

/* Restaurant/Bar/Pool Content */
.restaurant-content,
.bar-content,
.pool-content {
    padding: 80px 0;
}

.restaurant-grid,
.bar-grid,
.pool-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.restaurant-text,
.bar-text,
.pool-text {
    padding-right: 40px;
}

.restaurant-text p,
.bar-text p,
.pool-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #666;
}

.restaurant-features,
.bar-features,
.pool-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.restaurant-features .feature-card,
.bar-features .feature-card,
.pool-features .feature-card {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.restaurant-features .feature-card:hover,
.bar-features .feature-card:hover,
.pool-features .feature-card:hover {
    transform: translateY(-5px);
}

.restaurant-features i,
.bar-features i,
.pool-features i {
    font-size: 24px;
    color: #8B4513;
    margin-bottom: 10px;
}

.restaurant-features h3,
.bar-features h3,
.pool-features h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.restaurant-features p,
.bar-features p,
.pool-features p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.restaurant-image,
.bar-image,
.pool-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.restaurant-image img,
.bar-image img,
.pool-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.restaurant-content:hover .restaurant-image img,
.bar-content:hover .bar-image img,
.pool-content:hover .pool-image img {
    transform: scale(1.05);
}

/* Menu CTA */
.menu-cta,
.drinks-cta,
.pool-menu-cta {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.menu-cta h2,
.drinks-cta h2,
.pool-menu-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.menu-cta p,
.drinks-cta p,
.pool-menu-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
}

/* Atmosphere Section */
.atmosphere {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.atmosphere h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.atmosphere-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.atmosphere-card {
    text-align: center;
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.atmosphere-card:hover {
    transform: translateY(-10px);
}

.atmosphere-card i {
    font-size: 48px;
    color: #8B4513;
    margin-bottom: 20px;
}

.atmosphere-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.atmosphere-card p {
    color: #666;
    line-height: 1.6;
}

/* Pool Rules */
.pool-rules {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.pool-rules h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.rule-card {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rule-card i {
    font-size: 36px;
    color: #8B4513;
    margin-bottom: 20px;
}

.rule-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.rule-card p {
    color: #666;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
}

.gallery h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.gallery p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: #666;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Gallery Preview */
.gallery-preview {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.gallery-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.gallery-preview .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Pool Navigation */
.pool-navigation {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.pool-navigation h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.navigation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.nav-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #cccc73, #e0d577);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-card:hover {
    transform: translateY(-10px);
    border-color: rgba(204, 204, 115, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.nav-card:hover::before {
    transform: scaleX(1);
}

.nav-card i {
    font-size: 48px;
    color: #cccc73;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease;
}

.nav-card:hover i {
    transform: scale(1.1);
    color: #e0d577;
}

.nav-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
    transition: color 0.3s ease;
}

.nav-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.nav-card:hover h3 {
    color: #cccc73;
}

/* Menu Section */
.menu-nav {
    padding: 40px 0;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
}

.tab-btn {
    padding: 15px 30px;
    background-color: transparent;
    border: none;
    font-size: 18px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: #8B4513;
    border-bottom-color: #8B4513;
}

.tab-btn:hover {
    color: #8B4513;
}

.menu-tab {
    display: none;
    padding: 80px 0;
}

.menu-tab.active {
    display: block;
}

.menu-category {
    margin-bottom: 60px;
}

.menu-category h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #8B4513;
    border-bottom: 2px solid #8B4513;
    padding-bottom: 10px;
    display: inline-block;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.item-info h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #333;
}

.item-info p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

.item-price {
    font-size: 18px;
    font-weight: 600;
    color: #8B4513;
    white-space: nowrap;
}

/* Order CTA */
.order-cta {
    padding: 80px 0;
    background-color: #8B4513;
    color: #fff;
    text-align: center;
}

.order-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.order-cta p {
    font-size: 18px;
    margin-bottom: 40px;
}

.order-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
}

.testimonials h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.testimonials p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: #666;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: #8B4513;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.author-info span {
    font-size: 14px;
    color: #666;
}

/* Booking Process */
.booking-process {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.booking-process h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #8B4513;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials CTA */
.testimonials-cta {
    padding: 80px 0;
    background-color: #8B4513;
    color: #fff;
    text-align: center;
}

.testimonials-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.testimonials-cta p {
    font-size: 18px;
    margin-bottom: 40px;
}

/* Contact Section */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    padding-right: 40px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 24px;
    color: #8B4513;
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #333;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

.map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Policies Section */
.policies {
    padding: 80px 0;
}

.policies h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.policies p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: #666;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.policy-card {
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.policy-card:hover {
    transform: translateY(-10px);
}

.policy-card i {
    font-size: 36px;
    color: #8B4513;
    margin-bottom: 20px;
}

.policy-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.policy-card ul {
    list-style: none;
    padding: 0;
}

.policy-card li {
    margin-bottom: 10px;
    color: #666;
    line-height: 1.6;
}

.policy-card li strong {
    color: #333;
}

.privacy-policy,
.terms-conditions {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.privacy-policy h2,
.terms-conditions h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #8B4513;
}

.policy-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-content li {
    margin-bottom: 8px;
    color: #666;
    line-height: 1.6;
}

.policy-contact {
    padding: 80px 0;
    background-color: #8B4513;
    color: #fff;
    text-align: center;
}

.policy-contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.policy-contact p {
    font-size: 18px;
    margin-bottom: 40px;
}

.contact-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #8B4513;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #8B4513;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #8B4513;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #654321;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-bottom a {
    color: #8B4513;
}

/* Desktop Responsive Design */
@media (min-width: 1024px) {
    .header-content {
        gap: 30px;
    }
    
    .logo {
        gap: 15px;
    }
    
    .logo-image {
        height: 70px;
        width: 70px;
    }
    
    .nav-menu {
        gap: 8px;
    }
    
    .nav-menu li a {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .nav-cta {
        margin-left: 20px;
    }
}

@media (min-width: 1440px) {
    .header-content {
        gap: 40px;
    }
    
    .logo {
        gap: 20px;
    }
    
    .logo-image {
        height: 80px;
        width: 80px;
    }
    
    .nav-menu {
        gap: 10px;
    }
    
    .nav-menu li a {
        padding: 16px 22px;
        font-size: 14px;
    }
    
    .nav-cta {
        margin-left: 25px;
    }
}

/* Tablet Responsive Design */
@media (min-width: 769px) and (max-width: 1023px) {
    .header-content {
        gap: 25px;
    }
    
    .logo {
        gap: 15px;
    }
    
    .logo-image {
        height: 65px;
        width: 65px;
    }
    
    .nav-menu {
        gap: 6px;
    }
    
    .nav-menu li a {
        padding: 13px 18px;
        font-size: 13px;
    }
    
    .nav-cta {
        margin-left: 20px;
    }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
        padding: 10px 0;
    }

    .nav {
        position: relative;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.95);
        backdrop-filter: blur(20px);
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        display: flex; /* Keep flex but collapsed */
        transition: max-height 0.3s ease, padding 0.3s ease;
        z-index: 100;
    }
    
    .nav-menu.active {
        max-height: 80vh;
        padding: 15px 0;
        overflow-y: auto;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 10px;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero .tagline {
        font-size: 20px;
    }

    .hero .intro {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .highlights-grid,
    .services-grid,
    .features-grid,
    .rooms-grid,
    .testimonials-grid,
    .policies-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .restaurant-grid,
    .bar-grid,
    .pool-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .restaurant-text,
    .bar-text,
    .pool-text,
    .contact-info {
        padding-right: 0;
        text-align: center;
    }

    .vision-mission {
        grid-template-columns: 1fr;
    }

    .menu-items {
        grid-template-columns: 1fr;
    }

    .menu-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .order-buttons,
    .contact-options {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .page-header {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero .tagline {
        font-size: 18px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn-large {
        padding: 12px 25px;
        font-size: 16px;
    }
}

/* Mobile Navigation Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 90;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

/* Hide/Show classes for mobile menu removed - using .active */

/* Pool Navigation Responsive Styles */
@media (max-width: 768px) {
    .pool-navigation {
        padding: 60px 0;
    }
    
    .pool-navigation h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .navigation-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .nav-card {
        padding: 30px 20px;
    }
    
    .nav-card i {
        font-size: 40px;
        margin-bottom: 15px;
    }
    
    .nav-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .pool-navigation {
        padding: 50px 0;
    }
    
    .pool-navigation h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .nav-card {
        padding: 25px 15px;
    }
    
    .nav-card i {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .nav-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .nav-card p {
        font-size: 14px;
    }
}

/* Booking Page Styles - Integrated with Design System */
.booking-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.booking-form-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.booking-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 60px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(204, 204, 115, 0.1);
}

.booking-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(204, 204, 115, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.booking-form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
    font-weight: 400;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group label i {
    color: #cccc73;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(204, 204, 115, 0.2);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #cccc73;
    box-shadow: 0 0 0 4px rgba(204, 204, 115, 0.1);
    transform: translateY(-2px);
}

.form-group input[type="date"] {
    padding: 16px 12px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.nights-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 16px 20px;
    border-radius: 12px;
    border: 2px solid rgba(204, 204, 115, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.nights-info i {
    font-size: 20px;
    color: #cccc73;
}

.nights-display {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.btn-whatsapp-booking {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 18px 50px;
    font-size: 18px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-whatsapp-booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
}

.btn-whatsapp-booking:hover::before {
    left: 100%;
}

.btn-whatsapp-booking:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.btn-whatsapp-booking:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-whatsapp-booking i {
    font-size: 22px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-whatsapp-booking:hover i {
    transform: scale(1.15) rotate(5deg);
}

/* Booking Process Enhancement */
.booking-process {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.booking-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #cccc73, transparent);
}

.booking-process h2 {
    font-size: 42px;
    margin-bottom: 80px;
    position: relative;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

.booking-process h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #cccc73, #e0d577);
    border-radius: 2px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(204, 204, 115, 0.5), transparent);
    z-index: 1;
}

.step-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(204, 204, 115, 0.1);
    backdrop-filter: blur(10px);
}

.step-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(204, 204, 115, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #cccc73 0%, #e0d577 100%);
    color: #1a1a2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 25px;
    position: relative;
    box-shadow: 0 4px 15px rgba(204, 204, 115, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.step-icon {
    font-size: 36px;
    margin-bottom: 20px;
    color: #cccc73;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.2) rotate(5deg);
    color: #e0d577;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
    transition: color 0.3s ease;
}

.step-card:hover h3 {
    color: #cccc73;
}

.step-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Booking Information Section */
.booking-info {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.booking-info h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    display: inline-block;
}

.booking-info h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #cccc73, #e0d577);
    border-radius: 2px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(204, 204, 115, 0.1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #cccc73, #e0d577);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(204, 204, 115, 0.3);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card i {
    font-size: 40px;
    color: #cccc73;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.info-card:hover i {
    transform: scale(1.1) rotate(5deg);
    color: #e0d577;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
    transition: color 0.3s ease;
}

.info-card:hover h3 {
    color: #cccc73;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 15px;
}

.info-card a {
    color: #cccc73;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: #e0d577;
    text-decoration: underline;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #eee;
    transition: color 0.3s ease;
}

.info-card li:last-child {
    border-bottom: none;
}

.info-card:hover li {
    color: #333;
}

/* Contact Options Section */
.contact-options {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-options::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(204, 204, 115, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.contact-options::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #cccc73, transparent);
    opacity: 0.6;
}

.contact-options h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    position: relative;
}

.contact-options h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #cccc73, #e0d577);
    border-radius: 2px;
}

.contact-options p {
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #d1d5db;
    line-height: 1.7;
    font-weight: 300;
}

.contact-methods {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.contact-method:hover {
    background: rgba(204, 204, 115, 0.2);
    border-color: rgba(204, 204, 115, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(204, 204, 115, 0.3);
}

.contact-method i {
    font-size: 24px;
    transition: all 0.3s ease;
}

.contact-method:hover i {
    transform: scale(1.2);
}

.contact-method span {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Booking Page Responsive Design */
@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .booking-form-wrapper {
        padding: 40px 25px;
        margin: 0 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-method {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .booking-form-wrapper {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .booking-form-wrapper h2 {
        font-size: 28px;
    }
    
    .btn-whatsapp-booking {
        padding: 16px 30px;
        font-size: 16px;
    }
}

/* Animation Enhancements for Booking Page */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-form-wrapper,
.step-card,
.info-card {
    animation: slideInUp 0.6s ease-out;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

.btn-whatsapp-booking {
    animation: floating 3s ease-in-out infinite;
}

/* MENU PAGE ONLY - PREMIUM STYLES */
.menu-page {
    background-color: #fcfcfc;
    min-height: 100vh;
}

.menu-page .page-header {
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    text-align: center;
}

.menu-page .page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.menu-page .page-header .container {
    position: relative;
    z-index: 2;
}

.menu-search-container {
    margin: -30px auto 40px;
    max-width: 800px;
    position: relative;
    z-index: 3;
    padding: 0 20px;
}

.menu-search-container input {
    width: 100%;
    padding: 20px 60px 20px 30px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.menu-search-container input:focus {
    box-shadow: 0 15px 40px rgba(204, 204, 115, 0.25);
    background: #fff;
    transform: translateY(-2px);
}

.menu-search-container i {
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
    color: #cccc73;
    font-size: 20px;
    pointer-events: none;
}

.menu-filters {
    padding: 20px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    margin-bottom: 50px;
    transition: all 0.3s ease;
}

.sticky-filters {
    position: sticky;
    top: 80px; /* Adjust based on desktop header height */
    z-index: 90;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.filter-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    justify-content: center;
}

.filter-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.filter-btn {
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #555;
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.filter-btn:hover {
    background: #f9f9f9;
    color: #333;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #cccc73 0%, #e0d577 100%);
    color: #1a1a2e;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(204, 204, 115, 0.4);
    transform: translateY(-2px);
}

.menu-category-section {
    margin-bottom: 80px;
    scroll-margin-top: 180px; /* Offset for sticky header/filters */
}

.category-title {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a2e;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #cccc73;
    border-radius: 2px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.menu-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.menu-img {
    height: 220px;
    overflow: hidden;
    position: relative;
    background-color: #f0f0f0;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-card:hover .menu-img img {
    transform: scale(1.08);
}

.menu-details {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 15px;
}

.menu-header h3 {
    font-size: 18px;
    color: #2c2c2c;
    margin: 0;
    line-height: 1.4;
    font-weight: 700;
}

.menu-header .price {
    font-weight: 800;
    color: #cccc73;
    font-size: 18px;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.menu-details .desc {
    color: #777;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-img {
        height: 180px;
    }
    
    .category-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .sticky-filters {
        top: 60px; /* Adjust for mobile header */
        padding: 15px 0;
    }
    
    .filter-scroll {
        justify-content: flex-start;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .menu-search-container {
        padding: 0 15px;
    }
    
    .menu-search-container i {
        right: 35px;
    }
    
    .menu-card {
        margin-bottom: 10px;
    }
}

/* ADMIN ONLY */
.admin-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
}
.btn-sm {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    text-decoration: none;
    color: #fff;
    display: inline-block;
}
.btn-edit { background: #3498db; }
.btn-delete { background: #e74c3c; }
.btn-edit:hover { background: #2980b9; }
.btn-delete:hover { background: #c0392b; }

.status-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}
.status-active { background: #d4edda; color: #155724; }
.status-inactive { background: #f8d7da; color: #721c24; }

/* MENU ORDERING */
.btn-add-cart {
    background: #1a1a2e;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    margin-top: 10px;
    transition: background 0.2s;
}
.btn-add-cart:hover {
    background: #cccc73;
}

#cart-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #cccc73;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}
#cart-fab.visible {
    opacity: 1;
    pointer-events: all;
}
#cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: #fff;
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

#cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    display: none;
}
#cart-overlay.open { display: block; }

#cart-drawer {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100%;
    background: #fff;
    z-index: 1002;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}
#cart-drawer.open { right: 0; }

.cart-header {
    padding: 20px;
    background: #1a1a2e;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.close-drawer {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.cart-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.cart-form-group {
    margin-bottom: 20px;
}
.cart-form-group label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}
.cart-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    box-sizing: border-box;
}

#cart-items {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    margin: 10px 0;
}
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f9f9f9;
}
.cart-item-name { font-weight: 500; font-size: 14px; }
.cart-item-price { font-size: 12px; color: #888; }
.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn-qty {
    background: #f0f0f0;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f9f9f9;
}
.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
}
#btn-checkout {
    width: 100%;
    padding: 15px;
    background: #25D366; /* WhatsApp Green */
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
}
#btn-checkout:hover { background: #128C7E; }
#btn-checkout:disabled { background: #ccc; }

@media (max-width: 400px) {
    #cart-drawer { width: 100%; right: -100%; }
}



/* MENU ORDERING */
#xeCartBtn{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  border: none;
  border-radius: 999px;
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  background: rgba(26,26,46,.92);
  color: #fff;
  backdrop-filter: blur(10px);
}
#xeCartBtn strong{
  background: #cccc73;
  color: #1a1a2e;
  border-radius: 999px;
  padding: 2px 10px;
  font-weight: 800;
}

#xeCartDrawer{ position: fixed; inset: 0; z-index: 1300; pointer-events: none; }
#xeCartDrawer .xe-cart-overlay{
  position: absolute; inset: 0; background: rgba(0,0,0,.45);
  opacity: 0; transition: opacity .25s ease;
}
#xeCartDrawer .xe-cart-panel{
  position: absolute; top: 0; right: 0;
  width: min(420px, 92vw);
  height: 100%;
  background: #fff;
  transform: translateX(110%);
  transition: transform .25s ease;
  display: flex; flex-direction: column;
}
#xeCartDrawer.open{ pointer-events: auto; }
#xeCartDrawer.open .xe-cart-overlay{ opacity: 1; }
#xeCartDrawer.open .xe-cart-panel{ transform: translateX(0); }

.xe-cart-head{
  padding: 18px 18px;
  border-bottom: 1px solid #eee;
  display:flex; justify-content: space-between; align-items:center;
}
.xe-cart-close{ border:none; background:transparent; font-size: 26px; cursor:pointer; }

.xe-cart-body{ padding: 16px 18px; overflow:auto; }
.xe-cart-meta{ display:grid; gap: 12px; margin-bottom: 12px; }
.xe-cart-meta label span{ display:block; font-size: 12px; color:#666; margin-bottom:6px; }
.xe-cart-meta select, .xe-cart-meta input, .xe-notes textarea{
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px;
  outline: none;
}
.xe-notes span{ display:block; font-size: 12px; color:#666; margin: 10px 0 6px; }

.xe-cart-items{ display:grid; gap: 12px; margin-top: 10px; }
.xe-cart-item{ border: 1px solid #eee; border-radius: 12px; padding: 12px; }
.xe-ci-main{ display:flex; justify-content: space-between; gap: 10px; }
.xe-ci-main span{ font-weight: 700; color:#1a1a2e; }
.xe-ci-actions{ display:flex; gap: 8px; align-items:center; margin-top: 10px; flex-wrap: wrap; }
.xe-qty{ width: 34px; height: 34px; border-radius: 10px; border: 1px solid #ddd; background: #fafafa; cursor:pointer; }
.xe-qty-input{ width: 64px; height: 34px; border-radius: 10px; border: 1px solid #ddd; padding: 0 10px; }
.xe-remove{ border:none; background:transparent; color:#b91c1c; cursor:pointer; margin-left: auto; }

.xe-cart-foot{
  border-top: 1px solid #eee;
  padding: 14px 18px;
  display:grid;
  gap: 10px;
}
.xe-totals{ display:flex; justify-content: space-between; align-items:center; }
.xe-checkout{ width: 100%; justify-content: center; }
.xe-cart-hint{ color:#666; }
.xe-empty{ padding: 18px; text-align:center; color:#666; }




/* ===== FIX: Stop content stretching edge-to-edge ===== */

/* 1) Ensure padding exists on all main sections even if .container is missing */
.hero-content,
.page-header .container,
.highlights,
.services,
.featured-rooms,
.whatsapp-cta .cta-content,
.about-content,
.features,
.rooms,
.restaurant-content,
.bar-content,
.pool-content,
.menu-cta,
.drinks-cta,
.pool-menu-cta,
.atmosphere,
.pool-rules,
.gallery,
.gallery-preview,
.pool-navigation,
.menu-tab,
.testimonials,
.booking-process,
.booking-info,
.policies,
.privacy-policy,
.terms-conditions,
.contact-content {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* 2) Force grids/inner content to center and not exceed max width */
.highlights-grid,
.services-grid,
.features-grid,
.featured-rooms-grid,
.rooms-grid,
.gallery-grid,
.testimonials-grid,
.policies-grid,
.rules-grid,
.navigation-grid,
.restaurant-grid,
.bar-grid,
.pool-grid,
.about-grid,
.contact-grid,
.menu-grid,
.menu-items,
.process-steps,
.info-grid {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
}

/* 3) Make container fully reliable */
.container{
    width: 100% !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* Mobile */
@media (max-width: 768px){
    .container,
    .hero-content,
    .page-header .container,
    .highlights,
    .services,
    .featured-rooms,
    .about-content,
    .features,
    .rooms,
    .restaurant-content,
    .bar-content,
    .pool-content,
    .gallery,
    .gallery-preview,
    .pool-navigation,
    .menu-tab,
    .testimonials,
    .booking-process,
    .booking-info,
    .policies,
    .privacy-policy,
    .terms-conditions,
    .contact-content {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* ===== PATCH: featured-menu + footer not respecting container ===== */

/* Make sure Featured Menu section also gets safe side padding */
.featured-menu{
  padding-left: 20px !important;
  padding-right: 20px !important;
}

/* Make sure the featured menu grid is constrained */
.featured-menu .featured-menu-grid,
.featured-menu .featured-menu-head{
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
}

/* Footer: add side padding and constrain the inner content */
.footer{
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.footer .footer-content,
.footer .footer-bottom{
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
}

/* Mobile */
@media (max-width: 768px){
  .featured-menu,
  .footer{
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
