/* CSS Variables for Color Theme */
:root {
    --cream: #F6D5B6;
    --light-tan: #BB8B60;
    --medium-brown: #8C6034;
    --dark-brown: #6F461B;
    --chocolate: #543618;
    --forest-green: #376933;
    --olive-green: #82AA40;
    --white: #ffffff;
    --black: #000000;
    --gray: #666;
}

/* Performance optimizations */
button, a, input, select {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Improve scrolling performance */
* {
    -webkit-overflow-scrolling: touch;
}

/* Optimize animations for mobile */
@media (max-width: 768px) {
    * {
        will-change: auto;
    }
    
    .hero-content,
    .hero-badge,
    .hero-title,
    .hero-subtitle,
    .hero-description,
    .hero-stats,
    .hero-actions {
        animation-duration: 0.8s;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Prevent horizontal overflow for images and other elements */
img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal scrolling on all elements */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: var(--chocolate);
    line-height: 1.6;
    padding-top: 100px; /* Add padding to account for fixed header */
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Header */
.header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    z-index: 1000;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
    gap: 2rem;
    box-sizing: border-box;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.header:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateX(-50%) translateY(-2px);
}

.header.scrolled:hover {
    background: rgba(255, 255, 255, 0.95);
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not (backdrop-filter: blur(20px)) {
    .header {
        background: rgba(255, 255, 255, 0.95);
    }
    
    .header.scrolled {
        background: rgba(255, 255, 255, 0.9);
    }
}

.logo {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--chocolate);
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
    justify-self: start;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    justify-self: end;
    width: auto;
    white-space: nowrap;
}

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

.whatsapp-btn:hover::before {
    left: max(calc(209px * 8), 100%);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-icon {
    transform: scale(1.1);
}

.whatsapp-text {
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-tan) 100%);
    margin-top: -100px; /* Negative margin to counteract body padding */
    padding-top: 100px; /* Add padding back for content positioning */
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1200px;
    padding: 0 2rem;
    margin-top: 8rem; /* Push content lower */
    animation: fadeInUp 1.2s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: slideInDown 1s ease-out 0.3s both;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--forest-green);
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 0.9;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin-top: 0.5rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 1.3s both;
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.hero-btn:hover::before {
    left: max(calc(209px * 8), 100%);
}

.hero-btn.primary {
    background: rgba(55, 105, 51, 0.8);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(55, 105, 51, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-btn.primary:hover {
    background: rgba(55, 105, 51, 0.95);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(55, 105, 51, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.hero-btn span {
    position: relative;
    z-index: 2;
}

.hero-btn:hover .btn-icon {
    transform: translateX(3px);
}

.hero-scroll-indicator {
    position: relative;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    animation: bounce 2s infinite;
    cursor: pointer;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 100px; /* Increased padding for mobile */
    }
    
    .hero {
        margin-top: -100px; /* Adjust negative margin for mobile */
        padding-top: 100px; /* Adjust padding for mobile */
    }
    
    .header {
        padding: 0.8rem 1.2rem;
        top: 10px;
        width: calc(100% - 20px);
        max-width: 100%;
        border-radius: 30px;
        gap: 1rem;
        grid-template-columns: auto 1fr auto;
        height: auto;
        min-height: 60px;
    }
    
    .header .logo {
        justify-self: start;
    }
    
    .header .whatsapp-btn {
        justify-self: end;
    }

    .whatsapp-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        gap: 0.3rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo img {
        height: 40px;
    }
    
    .nav-list {
        gap: 1rem;
    }

    .hero {
        padding-top: 30px; /* Add some padding for mobile */
    }

    .hero-content {
        padding: 0 1.5rem;
        margin-top: 5rem; /* Push content below navigation bar on mobile */
        padding-top: 1rem; /* Additional top padding */
    }
    
    .hero-badge {
        margin-bottom: 1.5rem;
        margin-top: 0;
    }

    .hero-title {
        font-size: 3.5rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .hero-stats {
        gap: 1rem;
        margin-bottom: 2rem;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .stat-item {
        padding: 1rem 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
        align-items: center;
    }

    .hero-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-scroll-indicator {
        margin-top: 1.5rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 90px; /* Increased padding for very small screens */
    }
    
    .hero {
        margin-top: -90px; /* Adjust negative margin for very small screens */
        padding-top: 90px; /* Further adjust for very small screens */
        min-height: 100vh;
        min-height: -webkit-fill-available; /* iOS fix */
    }

    .hero-content {
        padding: 0 1rem;
        margin-top: 4.5rem; /* Push content below navigation bar on very small screens */
        padding-top: 1rem; /* Additional top padding */
    }
    
    .hero-badge {
        margin-bottom: 1.25rem;
        margin-top: 0;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .stat-item {
        padding: 0.8rem 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .hero-badge {
        padding: 0.4rem 1rem;
        margin-bottom: 1.5rem;
    }

    .badge-text {
        font-size: 0.8rem;
    }

    .whatsapp-btn {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
        min-width: 44px; /* Minimum touch target size */
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .whatsapp-text {
        display: none; /* Hide text on very small screens, show only icon */
    }

    .whatsapp-icon {
        width: 20px;
        height: 20px;
    }

    .logo img {
        height: 35px;
    }
    
    .header {
        padding: 0.7rem 1rem;
        top: 8px;
        width: calc(100% - 16px);
        gap: 0.5rem;
    }

    .hero-actions {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
        max-width: 250px;
    }

    .hero-scroll-indicator {
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }
}

/* Navigation Section */
.nav-section {
    padding: 1.5rem 1.5%;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.nav-container {
    width: 100%;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

/* Rooms Section */
.rooms-section {
    padding: 1.5rem 1.5%;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.rooms-container {
    width: 100%;
}

/* Navigation Tabs */
.nav-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.nav-tab {
    background-color: transparent;
    border: none;
    padding: 1rem 2rem;
    margin-left: 10px;
    margin-right: 9px;
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    border-radius: 50px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    user-select: none;
    -webkit-user-select: none;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.nav-tab.active {
    background-color: var(--cream);
    border: 1px solid var(--light-tan);
    color: var(--chocolate);
    border-radius: 50px;
}

.nav-tab:hover:not(.active) {
    color: var(--chocolate);
}

/* Room Cards */
.room-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.room-card {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.room-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

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

.room-info {
    padding: 1rem;
    background-color: var(--white);
}

.room-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--chocolate);
    margin: 0 0 0.3rem 0;
    font-family: 'Poppins', sans-serif;
}

.room-duration {
    font-size: 0.8rem;
    color: var(--gray);
    margin: 0 0 0.5rem 0;
    font-family: 'Poppins', sans-serif;
}

.room-rating {
    margin: 0 0 0.5rem 0;
}

.stars {
    color: #ffd700;
    font-size: 1rem;
}

.room-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--olive-green);
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

/* Promotional Card */
.room-card.promotional {
    background-color: var(--dark-brown);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.room-card.promotional:hover {
    background-color: var(--chocolate);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.promo-content {
    text-align: center;
    color: #ffffff;
    padding: 1.5rem;
    position: relative;
}

.promo-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-family: 'Poppins', sans-serif;
}

.promo-description {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.promo-icon {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.promo-icon:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateX(-50%) scale(1.1);
}

/* Additional Rooms Section */
.additional-rooms {
    margin-top: 2rem;
    animation: fadeInUp 0.5s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 2rem 0;
}

.additional-rooms .room-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
}

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

/* Experience Section */
.experience-section {
    padding: 2.5rem 1.5%;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.experience-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.experience-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.experience-title {
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--chocolate);
    line-height: 1.1;
    letter-spacing: -2px;
    font-family: 'Poppins', sans-serif;
}

.scroll-indicator {
    display: flex;
    align-items: center;
}

.scroll-icon {
    width: 50px;
    height: 50px;
    background-color: var(--chocolate);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
}

.experience-description {
    padding-top: 1rem;
}

.experience-description p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .room-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .additional-rooms {
        min-height: 50vh;
        padding: 1.5rem 0;
    }
    
    .additional-rooms .room-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 800px;
    }
    
    .experience-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .experience-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-section {
        padding: 1.5rem 2%;
    }
    
    .rooms-section {
        padding: 1.5rem 2%;
    }
    
    .nav-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .nav-tab {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 8px !important;
        border: none;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        min-height: 44px;
        min-width: 80px;
        cursor: pointer;
        user-select: none;
        -webkit-user-select: none;
    }
    
    .nav-tab.active {
        border: 1px solid var(--light-tan);
    }
    
    .room-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .additional-rooms {
        min-height: 40vh;
        padding: 1rem 0;
    }
    
    .additional-rooms .room-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
    }
    
    .room-card.promotional {
        min-height: 180px;
    }
    
    .promo-title {
        font-size: 1.5rem;
    }
    
    .nav-section {
        padding: 1.5rem 5%;
    }
    
    .experience-content {
        gap: 1rem;
    }
    
    .experience-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    .scroll-indicator {
        margin-bottom: 0.5rem;
    }
    
    .scroll-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .experience-description {
        margin-top: -0.25rem;
    }
    
    .experience-description p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-tab {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
        border: none;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        min-height: 44px;
        min-width: 70px;
        cursor: pointer;
        user-select: none;
        -webkit-user-select: none;
    }
    
    .nav-tab.active {
        border: 1px solid var(--light-tan);
    }
    
    .room-info {
        padding: 1rem;
    }
    
    .room-name {
        font-size: 1.1rem;
    }
    
    .room-price {
        font-size: 1.2rem;
    }
    
    .experience-title {
        font-size: 2rem;
    }
    
    .promo-content {
        padding: 1.5rem;
    }
    
    .promo-title {
        font-size: 1.3rem;
    }
    
    .promo-description {
        font-size: 0.9rem;
    }
}

/* Section Headers */
.section-title {
    font-size: 3rem;
    font-weight: 500;
    color: var(--chocolate);
    text-align: center;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 2.5rem;
    font-family: 'Poppins', sans-serif;
}

/* Dining Section */
.dining-section {
    padding: 2.5rem 1.5%;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.dining-container {
    width: 100%;
}

.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.restaurant-card {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.restaurant-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.restaurant-info {
    padding: 2rem;
    background-color: var(--cream);
}

.restaurant-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--chocolate);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.restaurant-type {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.restaurant-description {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.restaurant-hours {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.restaurant-hours span {
    font-size: 0.9rem;
    color: #8b4513;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.menu-highlights {
    background-color: #f5f5f0;
    padding: 2rem;
    border-radius: 20px;
    margin-top: 2rem;
}

.menu-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #8b4513;
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.item-name {
    font-size: 1rem;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.item-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #8b4513;
    font-family: 'Poppins', sans-serif;
}

/* Facilities Section */
.facilities-section {
    padding: 2.5rem 1.5%;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.facilities-container {
    width: 100%;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.facility-card {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.facility-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.facility-info {
    padding: 2rem;
    background-color: #f5f5f0;
}

.facility-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8b4513;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.facility-description {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.facility-hours {
    font-size: 0.9rem;
    color: #8b4513;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.additional-services {
    background-color: #f5f5f0;
    padding: 2rem;
    border-radius: 20px;
}

.services-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #8b4513;
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.service-item {
    font-size: 1rem;
    color: #333;
    padding: 0.8rem;
    background-color: #ffffff;
    border-radius: 10px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* Offers Section */
.offers-section {
    padding: 2.5rem 1.5%;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.offers-container {
    width: 100%;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.offer-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.offer-card.featured {
    border: 2px solid #8b4513;
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
}

.offer-card:nth-child(2) {
    border: 2px solid var(--forest-green);
}

.offer-card:nth-child(2) .offer-title,
.offer-card:nth-child(2) .price {
    color: var(--forest-green);
}

.offer-card:nth-child(2) .offer-btn {
    background-color: var(--forest-green);
}

.offer-card:nth-child(2) .offer-btn:hover {
    background-color: var(--olive-green);
}

.offer-card:nth-child(3) {
    border: 2px solid var(--chocolate);
}

.offer-card:nth-child(3) .offer-title,
.offer-card:nth-child(3) .price {
    color: var(--chocolate);
}

.offer-card:nth-child(3) .offer-btn {
    background-color: var(--chocolate);
}

.offer-card:nth-child(3) .offer-btn:hover {
    background-color: var(--dark-brown);
}

.offer-card:nth-child(4) {
    border: 2px solid var(--light-tan);
    background: linear-gradient(135deg, #f5f0e8 0%, #ffffff 100%);
}

.offer-card:nth-child(4) .offer-title,
.offer-card:nth-child(4) .price {
    color: var(--light-tan);
}

.offer-card:nth-child(4) .offer-btn {
    background-color: var(--light-tan);
    color: var(--chocolate);
}

.offer-card:nth-child(4) .offer-btn:hover {
    background-color: var(--medium-brown);
    color: #ffffff;
}

.offer-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: #8b4513;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.offer-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #8b4513;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

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

.price {
    font-size: 2.8rem;
    font-weight: 700;
    color: #8b4513;
    font-family: 'Poppins', sans-serif;
    display: block;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: #666;
    margin-left: 0;
    font-family: 'Poppins', sans-serif;
    display: block;
    margin-top: 0.5rem;
}

.offer-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.feature {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature:last-child {
    border-bottom: none;
}

.offer-btn {
    background-color: #8b4513;
    color: #ffffff;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    margin-top: auto;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

.offer-btn:hover {
    background-color: #6b3410;
    transform: translateY(-2px);
}

.newsletter-signup {
    background-color: #f5f5f0;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.newsletter-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #8b4513;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.newsletter-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.newsletter-input:focus {
    border-color: var(--chocolate);
    box-shadow: 0 0 0 3px rgba(84, 54, 24, 0.1);
}

.newsletter-input:focus {
    border-color: #8b4513;
}

.newsletter-btn {
    background-color: #8b4513;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.newsletter-btn:hover {
    background-color: #6b3410;
}

/* Features Section */
.features-section {
    padding: 2.5rem 1.5%;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.features-container {
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-content {
    padding: 2rem;
    background-color: #ffffff;
}

.feature-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--chocolate);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.feature-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.feature-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    border: 1px solid var(--chocolate);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--chocolate);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

.feature-btn:hover {
    background-color: var(--chocolate);
    color: #ffffff;
}

.btn-icon {
    width: 20px;
    height: 20px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--chocolate);
    font-size: 0.8rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.feature-btn:hover .btn-icon {
    background-color: #ffffff;
    color: var(--chocolate);
}

.feature-icon {
    display: flex;
    justify-content: flex-start;
    margin-top: 1rem;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 1px solid var(--chocolate);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--chocolate);
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-circle {
    background-color: var(--chocolate);
    color: #ffffff;
}




/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .restaurants-grid,
    .facilities-grid,
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-items,
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-input {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .restaurant-info,
    .facility-info {
        padding: 1.5rem;
    }
    
    .offer-card {
        padding: 2rem 1.5rem;
    }
    
    .price {
        font-size: 2.2rem;
    }
    
    .offer-title {
        font-size: 1.4rem;
    }
    
    .newsletter-signup {
        padding: 2rem;
    }
    
    .features-section {
        padding: 2rem 2%;
    }
    
    .feature-content {
        padding: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.5rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .expanded-content {
        padding: 1.5rem;
    }
    
    .expanded-details h4 {
        font-size: 1.5rem;
    }
    
    .expanded-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    /* Prevent text size adjustment on iOS */
    input, textarea, select {
        font-size: 16px !important;
    }
    
    /* Improve touch targets */
    button, a, input[type="submit"], input[type="button"] {
        min-height: 44px;
        min-width: 44px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .restaurant-name,
    .facility-name,
    .offer-title {
        font-size: 1.3rem;
    }
    
    .menu-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .offer-btn,
    .newsletter-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .feature-content {
        padding: 1rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .feature-description {
        font-size: 0.85rem;
    }
    
    .feature-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        min-height: 44px;
    }
    
    .icon-circle {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    /* Ensure all interactive elements are touch-friendly */
    a, button, input, select, textarea {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }
}

/* About Our Luxury Hotel Section */
.about-section {
    padding: 4rem 1.5%;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 2rem auto;
}

.about-container {
    width: 100%;
}

.about-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--chocolate);
    line-height: 1.1;
    letter-spacing: -2px;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.about-decorative-lines {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.decorative-line {
    width: 80px;
    height: 2px;
    background-color: var(--chocolate);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-story,
.about-promise {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.story-title,
.promise-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--chocolate);
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.story-description,
.promise-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.story-decorative-line,
.promise-decorative-line {
    width: 60px;
    height: 2px;
    background-color: var(--chocolate);
    margin-top: 0.5rem;
}

.about-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: min(320px, 100%);
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
    background-color: #f0f0f0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background-image: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), 
                      linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), 
                      linear-gradient(45deg, transparent 75%, #f0f0f0 75%), 
                      linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.about-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px;
}

.about-image img:not([src]) {
    display: none;
}

.story-image {
    margin-left: auto;
}

.promise-image {
    margin-right: auto;
}

/* Responsive Design for About Section */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-title {
        font-size: 3rem;
    }
    
    .about-image {
        width: min(280px, 100%);
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 3rem 2%;
        margin: 1.5rem auto;
    }
    
    .about-header {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .about-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    .about-decorative-lines {
        align-self: flex-start;
    }
    
    .story-title,
    .promise-title {
        font-size: 1.5rem;
    }
    
    .story-description,
    .promise-description {
        font-size: 0.9rem;
    }
    
    .about-content {
        gap: 1.5rem;
    }
    
    .about-story,
    .about-promise {
        gap: 0.75rem;
    }
    
    .about-image {
        width: min(360px, 100%);
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 2.5rem 2%;
        margin: 1rem auto;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .story-title,
    .promise-title {
        font-size: 1.3rem;
    }
    
    .story-description,
    .promise-description {
        font-size: 0.85rem;
    }
    
    .about-image {
        width: min(320px, 100%);
        margin: 0 auto;
    }
    
    .decorative-line {
        width: 60px;
    }
    
    .story-decorative-line,
    .promise-decorative-line {
        width: 40px;
    }
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 2.5rem 1.5%;
    background: linear-gradient(135deg, #4b2a11 0%, #2c1606 100%);
    max-width: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg, rgba(15, 8, 2, 0.9), rgba(78, 39, 16, 0.85));
    opacity: 0.95;
    z-index: 1;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.why-choose-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-choose-title {
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--cream);
    line-height: 1.1;
    letter-spacing: -2px;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.why-choose-description {
    font-size: 1.1rem;
    color: var(--cream);
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.explore-more-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    border: 1px solid var(--cream);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    color: var(--cream);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    align-self: flex-start;
    cursor: pointer;
}

.explore-more-link:hover {
    background-color: var(--cream);
    color: var(--chocolate);
}

.explore-icon {
    width: 20px;
    height: 20px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-size: 0.8rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.explore-more-link:hover .explore-icon {
    background-color: var(--chocolate);
    color: var(--cream);
}

.why-choose-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.why-card {
    background-color: var(--cream);
    border-radius: 15px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.why-card.featured {
    background-color: var(--medium-brown);
}

.why-card-icon {
    flex-shrink: 0;
}

.why-card .icon-circle {
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--chocolate);
    transition: all 0.3s ease;
}

.why-card-content {
    flex: 1;
}

.why-card.featured .icon-circle {
    background-color: transparent;
    color: var(--white);
}

.why-card:hover .icon-circle {
    background-color: transparent;
    color: var(--medium-brown);
    transform: scale(1.1);
}

.why-card.featured:hover .icon-circle {
    background-color: transparent;
    color: var(--chocolate);
}

.why-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--chocolate);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.why-card.featured .why-card-title {
    color: #ffffff;
}

.why-card-description {
    font-size: 0.9rem;
    color: var(--chocolate);
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.why-card.featured .why-card-description {
    color: #ffffff;
}

/* Responsive Design for Why Choose Us Section */
@media (max-width: 1024px) {
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-choose-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 2rem 2%;
    }
    
    .why-choose-content {
        gap: 1.5rem;
    }
    
    .why-choose-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    .why-choose-description {
        font-size: 1rem;
    }
    
    .why-card {
        padding: 1.2rem;
        gap: 0.8rem;
    }
    
    .why-card-title {
        font-size: 1.2rem;
    }
    
    .why-card-description {
        font-size: 0.85rem;
    }
    
    .why-card .icon-circle {
        width: 45px;
        height: 45px;
    }
    
    .explore-more-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .explore-icon {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 1.5rem 2%;
    }
    
    .why-choose-title {
        font-size: 2rem;
    }
    
    .why-choose-description {
        font-size: 0.9rem;
    }
    
    .why-card {
        padding: 1rem;
        gap: 0.7rem;
    }
    
    .why-card-title {
        font-size: 1.1rem;
    }
    
    .why-card-description {
        font-size: 0.8rem;
    }
    
    .why-card .icon-circle {
        width: 40px;
        height: 40px;
    }
    
    .why-card .icon-circle svg {
        width: 16px;
        height: 16px;
    }
    
    .explore-more-link {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .explore-icon {
        width: 16px;
        height: 16px;
        font-size: 0.6rem;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 0;
    background-color: #ffffff;
    width: 100%;
    overflow: hidden;
    position: relative;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 1200px;
    padding: 0 1.5%;
}

.gallery-title {
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--chocolate);
    line-height: 1.1;
    letter-spacing: -2px;
    font-family: 'Poppins', sans-serif;
    margin: 0 0 1rem 0;
}

.gallery-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    margin: 0 auto 2rem auto;
    max-width: 600px;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: transparent;
    border: 1px solid var(--chocolate);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--chocolate);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    user-select: none;
    -webkit-user-select: none;
}

.filter-btn:hover {
    background-color: var(--chocolate);
    color: #ffffff;
}

.filter-btn.active {
    background-color: var(--chocolate);
    color: #ffffff;
}

.gallery-carousel {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-carousel[style*="display: none"] {
    display: none !important;
}

.gallery-section .container {
  position: relative;
    width: 1200px;
    max-width: 100%;
    height: 600px;
    background: #f5f5f5;
    box-shadow: 0 30px 50px #dbdbdb;
    border-radius: 20px;
    margin: 0 auto;
    overflow: hidden;
}

.gallery-section .container .slide {
    border-radius: 20px;
  overflow: hidden;
}

.gallery-section .container .slide .item {
    width: 200px;
    height: 250px;
  position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 20px;
    box-shadow: 0 30px 50px #505050;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
    transition: all 0.5s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  will-change: transform;
}

.gallery-section .slide .item:nth-child(1),
.gallery-section .slide .item:nth-child(2) {
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
  width: 100%;
    height: 100%;
    border-radius: 20px;
    transition: transform 0.5s ease, opacity 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    filter: none !important;
    -webkit-filter: none !important;
}

.gallery-section .slide .item:nth-child(3) {
    left: 50%;
}

.gallery-section .slide .item:nth-child(4) {
    left: calc(50% + 220px);
}

.gallery-section .slide .item:nth-child(5) {
    left: calc(50% + 440px);
}

.gallery-section .slide .item:nth-child(n + 6) {
    left: calc(50% + 660px);
    opacity: 0;
}

.gallery-section .item .content {
    position: absolute;
    top: 50%;
    left: 100px;
    width: 300px;
    text-align: left;
    color: #ffffff;
    transform: translate(0, -50%);
    font-family: 'Poppins', sans-serif;
    display: none;
    z-index: 10;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.gallery-section .slide .item:nth-child(1) .content,
.gallery-section .slide .item:nth-child(2) .content {
    display: block;
}

.gallery-section .content .name {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: bold;
    color: #ffffff;
    opacity: 1;
    animation: animate 1s ease-in-out 1 forwards;
}

.gallery-section .content .des {
    margin-top: 10px;
    margin-bottom: 20px;
    color: #ffffff;
    opacity: 1;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.gallery-section .content button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    opacity: 1;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--chocolate);
    font-weight: 500;
    transition: all 0.5s;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.gallery-section .content button:hover {
    background-color: rgb(255, 255, 255);
}

@keyframes animate {
    from {
        opacity: 0;
        transform: translate(0, 30px);
    }
    to {
        opacity: 1;
        transform: translate(0);
    }
}

.gallery-section .button {
    display: flex;
    flex-direction: row;
    gap: 20px;
    left: 45%;
    right: 50%;
    width: 100%;
    align-items: center;
    text-align: center;
    position: absolute;
    bottom: 20px;
}

.gallery-section .button button {
    width: 40px;
    height: 35px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    border: 2px solid #000000bd;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.578);
}

.gallery-section .button button:hover {
    color: #000000;
    border: 2px solid #ffffffbd;
    transform: scale(1.1);
}

.gallery-section .button button:focus {
    transform: scale(1.1);
    background: #ffffff;
    border: 2px solid #ffffffbd;
}

.gallery-section .button button:active {
    transform: scale(1.02);
}

.gallery-section .next {
    padding: 0 0 0 3px;
}

.gallery-section .prev {
    padding: 0 3px 0 0;
}

.gallery-section .seeMore {
    text-decoration: none;
    color: inherit;
}

.gallery-section .seeMore button {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--chocolate);
}

/* Responsive Design for Gallery */
@media (max-width: 1024px) {
    .gallery-header {
        margin-bottom: 2rem;
    }
    
    .gallery-title {
        font-size: 3rem;
    }
    
    .gallery-section .container {
        width: 90%;
        max-width: 1100px;
        height: 550px;
    }
    
    .gallery-section .item .content {
        left: 50px;
        width: 250px;
    }
    
    .gallery-section .content .name {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 3rem 0;
        min-height: 400px;
    }
    
    .gallery-header {
        margin-bottom: 1.5rem;
    }
    
    .gallery-title {
        font-size: 2.5rem;
    }
    
    .gallery-subtitle {
        font-size: 1.1rem;
    }
    
  .gallery-filters {
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .filter-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
  
    .gallery-section .container {
        width: 100%;
        max-width: 100%;
        height: 400px;
        margin: 0 auto;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(84, 54, 24, 0.3) transparent;
    }
    
    .gallery-section .container::-webkit-scrollbar {
        height: 6px;
    }
    
    .gallery-section .container::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .gallery-section .container::-webkit-scrollbar-thumb {
        background: rgba(84, 54, 24, 0.3);
        border-radius: 3px;
    }
    
    .gallery-section .container .slide {
        display: flex;
        flex-direction: row;
        width: max-content;
        height: 100%;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .gallery-section .container .slide .item {
        position: relative;
        width: 85vw;
        max-width: 350px;
        min-width: 300px;
        height: 100%;
        top: 0;
        left: 0;
        transform: none;
        flex-shrink: 0;
        scroll-snap-align: center;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .gallery-section .slide .item:nth-child(1),
    .gallery-section .slide .item:nth-child(2),
    .gallery-section .slide .item:nth-child(3),
    .gallery-section .slide .item:nth-child(4),
    .gallery-section .slide .item:nth-child(5),
    .gallery-section .slide .item:nth-child(n + 6) {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 85vw;
        max-width: 350px;
        min-width: 300px;
        height: 100%;
        opacity: 1;
    }
    
    .gallery-section .item .content {
        position: absolute;
        top: 50%;
        left: 20px;
        right: 20px;
        width: auto;
        transform: translateY(-50%);
        padding: 15px;
    }
    
    .gallery-section .slide .item:nth-child(1) .content,
    .gallery-section .slide .item:nth-child(2) .content,
    .gallery-section .slide .item:nth-child(3) .content,
    .gallery-section .slide .item:nth-child(4) .content,
    .gallery-section .slide .item:nth-child(5) .content,
    .gallery-section .slide .item:nth-child(n + 6) .content {
        display: block;
    }
    
    .gallery-section .content .name {
        font-size: 22px;
    }
    
    .gallery-section .content .des {
        font-size: 0.85rem;
        margin-top: 8px;
        margin-bottom: 15px;
    }
    
    .gallery-section .button {
        display: none; /* Hide buttons on mobile */
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 2rem 0;
        min-height: 350px;
    }
    
    .gallery-header {
        margin-bottom: 1rem;
    }
    
    .gallery-title {
        font-size: 2rem;
    }
    
    .gallery-subtitle {
        font-size: 1rem;
    }
    
    .gallery-filters {
        gap: 0.3rem;
        margin-bottom: 1rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .gallery-section .container {
        height: 320px;
        width: 100%;
    }
    
    .gallery-section .container .slide {
        gap: 0.75rem;
        padding: 0 0.75rem;
    }
    
    .gallery-section .container .slide .item {
        width: 90vw;
        max-width: 320px;
        min-width: 280px;
    }
    
    .gallery-section .slide .item:nth-child(1),
    .gallery-section .slide .item:nth-child(2),
    .gallery-section .slide .item:nth-child(3),
    .gallery-section .slide .item:nth-child(4),
    .gallery-section .slide .item:nth-child(5),
    .gallery-section .slide .item:nth-child(n + 6) {
        width: 90vw;
        max-width: 320px;
        min-width: 280px;
    }
    
    .gallery-section .item .content {
        left: 15px;
        right: 15px;
        padding: 12px;
    }
    
    .gallery-section .content .name {
        font-size: 18px;
    }
    
    .gallery-section .content .des {
        font-size: 0.75rem;
        margin-top: 5px;
        margin-bottom: 12px;
    }
    
    .gallery-section .content button {
        padding: 10px 18px;
        font-size: 0.8rem;
        min-height: 44px;
    }
    
    .gallery-section .button {
        display: none; /* Hide buttons on mobile */
    }
}

/* Footer */
.footer {
    background-color: var(--chocolate);
    color: var(--cream);
    padding: 3rem 0 1.5rem;
    margin-top: 2rem;
    position: relative;
    background-image: url('Assets/pattern.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
    background-blend-mode: overlay;
    width: 100%;
}

.footer-container {
    width: 100%;
    margin: 0;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Brand */
.footer-brand {
    text-align: center;
    margin-bottom: 2.5rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

/* Footer Main Content */
.footer-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2.5rem;
}

/* Footer Navigation */
.footer-nav {
    text-align: center;
}

.footer-nav-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav-link {
    color: var(--cream);
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
    position: relative;
}

.footer-nav-link:hover {
    color: var(--light-tan);
}

.footer-nav-link::before {
    content: "→";
    margin-right: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-nav-link:hover::before {
    opacity: 1;
}

/* Footer Contact */
.footer-contact {
    text-align: center;
}

.footer-contact-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-icon {
    font-size: 1.1rem;
}

.contact-text {
    font-size: 1rem;
    color: var(--cream);
    font-family: 'Poppins', sans-serif;
}

/* Footer Social */
.footer-social {
    text-align: center;
}

.footer-social-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(246, 213, 182, 0.1);
    border-radius: 50%;
    color: var(--cream);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(246, 213, 182, 0.2);
}

.footer-social-link:hover {
    background-color: var(--light-tan);
    color: var(--chocolate);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.footer-social-link:hover svg {
    transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(246, 213, 182, 0.2);
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--cream);
    margin: 0;
    font-family: 'Poppins', sans-serif;
    opacity: 0.8;
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-social {
        grid-column: 1 / -1;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-container {
        padding: 0 1.5rem;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-nav-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .footer-nav-link::before {
        display: none;
    }
    
    .footer-social-links {
        gap: 0.8rem;
    }
    
    .footer-social-link {
        width: 40px;
        height: 40px;
    }
    
    .footer-social-link svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1.25rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-logo-img {
        height: 45px;
    }
    
    .footer-main {
        gap: 1.5rem;
    }
    
    .footer-nav-title,
    .footer-contact-title,
    .footer-social-title {
        font-size: 1.1rem;
    }
    
    .footer-nav-links {
        gap: 1rem;
    }
    
    .footer-nav-link {
        font-size: 0.9rem;
    }
    
    .contact-text {
        font-size: 0.9rem;
    }
    
    .footer-social-links {
        gap: 0.6rem;
    }
    
    .footer-social-link {
        width: 35px;
        height: 35px;
    }
    
    .footer-social-link svg {
        width: 16px;
        height: 16px;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
}

/* Site Navigation - Horizontal Style */
.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: static;
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
    overflow: visible;
    transition: none;
    flex: 1;
}

.site-nav.open {
    display: flex;
}

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 3rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-list li {
    margin: 0;
}

.nav-list a {
    color: var(--chocolate);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    position: relative;
    border: none;
    border-radius: 25px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.nav-list a:hover {
    color: var(--dark-brown);
    transform: none;
}

.nav-list a.active {
    color: var(--dark-brown);
    font-weight: 500;
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--chocolate);
}

/* Mobile Menu Button */
.menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.menu-btn span {
    width: 24px;
    height: 3px;
    background-color: var(--chocolate);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.menu-btn:hover span {
    background-color: var(--dark-brown);
}

/* Hide sidebar elements for horizontal nav */
.nav-close,
.sidebar-logo {
    display: none;
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}


@media (max-width: 1024px) {
    .menu-btn {
        display: flex;
    }
    
    .site-nav {
        display: none;
        position: static;
    }
    
    .site-nav.open {
        display: flex;
        position: fixed;
        top: 90px;
        right: 1.5rem;
        left: auto;
        width: min(360px, calc(100% - 3rem));
        max-height: 80vh;
        height: auto;
        background: rgba(255, 255, 255, 0.97);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        z-index: 1000;
        border-radius: 32px;
        transform: none;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
        border: 1px solid rgba(0, 0, 0, 0.05);
        padding: 2rem 1.5rem;
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        overflow-y: auto;
        pointer-events: auto;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        align-items: stretch;
        margin: 0;
        padding: 0;
    }
    
    .nav-list li {
        margin: 0;
        padding: 0;
    }
    
    .nav-list a {
        color: var(--chocolate);
        font-size: 1.1rem;
        padding: 0.875rem 1.25rem;
        border-radius: 18px;
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05), 0 10px 25px rgba(0, 0, 0, 0.08);
        background-color: rgba(246, 213, 182, 0.25);
        text-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
        display: block;
        width: 100%;
        text-align: left;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        cursor: pointer;
        user-select: none;
        -webkit-user-select: none;
    }
    
    .nav-list a:hover {
        color: var(--dark-brown);
        background-color: rgba(246, 213, 182, 0.45);
    }
    
    .nav-list a.active {
        color: var(--dark-brown);
        background-color: rgba(246, 213, 182, 0.65);
    }
    
    .nav-list a.active::after {
        display: none;
    }
    
    .nav-close {
        display: none;
    }
    
    .nav-overlay {
        display: block;
    }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease, transform 600ms ease;
    will-change: opacity, transform;
}

.reveal.in-view {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .gallery-section .itemLeft,
    .gallery-section .itemRight {
        animation: none !important;
    }
}

/* Contact Page */
.contact-section {
    padding: 2.5rem 1.5%;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.contact-form {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    padding: 2rem;
}

.contact-form .field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.contact-form label {
    font-size: 0.95rem;
    color: #666;
}

.contact-form input,
.contact-form textarea {
    padding: 0.9rem 1rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--chocolate);
    box-shadow: 0 0 0 3px rgba(84, 54, 24, 0.1);
}

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

.contact-form button {
    background-color: var(--chocolate);
    color: #fff;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.contact-form button:hover {
    background-color: var(--dark-brown);
}

.map-embed {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    min-height: 320px;
}

@media (max-width: 1024px) {
    .contact-container {
        gap: 2rem;
    }
    
    .whatsapp-contact-btn {
        min-width: 250px;
        padding: 1.1rem 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 2rem 2%;
    }
    
    .contact-container {
        gap: 1.5rem;
    }
    
    .whatsapp-contact-btn {
        min-width: 220px;
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }
    
    .whatsapp-icon-large {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 1.5rem 2%;
    }
    
    .whatsapp-contact-btn {
        min-width: 200px;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        gap: 0.75rem;
    }
    
    .whatsapp-icon-large {
        width: 24px;
        height: 24px;
    }
}

/* Additional styles for new pages */
.rooms-header,
.dining-header,
.facilities-header,
.offers-header {
    text-align: center;
    margin-bottom: 3rem;
}

.room-btn,
.restaurant-btn,
.facility-btn {
    background-color: var(--chocolate);
    color: #ffffff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    margin-top: 1rem;
    width: 100%;
}

.room-btn:hover,
.restaurant-btn:hover,
.facility-btn:hover {
    background-color: var(--dark-brown);
    transform: translateY(-2px);
}

.room-features,
.dining-features,
.facility-features {
    background-color: #f5f5f0;
    padding: 2rem;
    border-radius: 20px;
    margin-top: 2rem;
}

.features-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--chocolate);
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
}

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

.feature-item {
    font-size: 1rem;
    color: #333;
    padding: 0.8rem;
    background-color: #ffffff;
    border-radius: 10px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.offer-terms {
    background-color: #f5f5f0;
    padding: 2rem;
    border-radius: 20px;
    margin-top: 2rem;
}

.terms-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--chocolate);
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.terms-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.contact-info {
    padding: 2rem;
}

.contact-details {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    width: 100%;
}

.contact-details .contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--chocolate);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.contact-details .contact-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}

.whatsapp-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background-color: #25D366;
    color: #ffffff;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    min-width: 280px;
    cursor: pointer;
}

.whatsapp-contact-btn:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon-large {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.whatsapp-icon-large svg {
    width: 100%;
    height: 100%;
}

.whatsapp-contact-text {
    color: #ffffff;
    font-weight: 600;
}

.map-section {
    margin-top: 3rem;
    text-align: center;
}

.map-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--chocolate);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.quick-contact {
    background-color: #f5f5f0;
    padding: 3rem 1.5%;
    margin-top: 2rem;
}

.quick-contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.quick-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--chocolate);
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
}

.quick-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.quick-option {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.quick-option h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--chocolate);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.quick-option p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.quick-btn {
    background-color: var(--chocolate);
    color: #ffffff;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
}

.quick-btn:hover {
    background-color: var(--dark-brown);
    transform: translateY(-2px);
}

.quick-btn.emergency {
    background-color: #dc3545;
}

.quick-btn.emergency:hover {
    background-color: #c82333;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quick-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quick-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .room-features,
    .dining-features,
    .facility-features,
    .offer-terms {
        padding: 1.5rem;
    }
    
    .features-title,
    .terms-title {
        font-size: 1.5rem;
    }
}
