/* ===== CSS Variables ===== */
:root {
    --primary-color: #4CAF50;
    --primary-dark: #45a049;
    --secondary-color: #8BC34A;
    --accent-color: #FF9800;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-soft: 0 2px 15px rgba(0,0,0,0.06);
    --border-radius: 16px;
    --border-radius-small: 12px;
    --border-radius-large: 24px;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
}

/* Loading spinner animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spinner {
    animation: spin 1s linear infinite;
}

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

*,
*::before,
*::after {
    box-sizing: border-box;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Poppins', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    letter-spacing: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

* {
    max-width: 100%;
}

img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
    display: block;
}


table {
    width: 100%;
    table-layout: auto;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }
}

/* ===== Header Styles with Glass Effect ===== */
.header {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-radius: 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 768px) {
    .header .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 0.75rem 0;
    }
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo {
    width: auto;
    height: 80px;
    max-width: 200px;
    object-fit: contain;
    display: block;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.company-name {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
    text-transform: none;
    position: relative;
    display: inline-block;
}

.company-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    opacity: 0.5;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-booking {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: var(--border-radius-small);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-booking:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.4), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-booking::after {
    display: none;
}

/* Visit Us - Google Maps directions (opens in new tab) */
.btn-visit {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color) !important;
    padding: 10px 18px;
    border-radius: var(--border-radius-small);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.btn-visit:hover {
    background: var(--primary-color);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.35);
}

.btn-visit::after {
    display: none;
}

/* Visit Us in footer (below Location) */
.footer-visit-li {
    list-style: none;
    margin-top: 0.5rem;
}
.btn-visit-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white) !important;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 44px;
    box-sizing: border-box;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.35);
}
.btn-visit-footer:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.45);
}
.btn-visit-footer .visit-icon {
    flex-shrink: 0;
}

.instagram-link {
    color: var(--text-dark) !important;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    color: #E4405F !important;
    transform: translateY(-2px);
}

.instagram-link::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1000;
    position: relative;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== Hero Section ===== */
.hero {
    height: 450px;
    min-height: 400px;
    max-height: 600px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Laptop/desktop: full-viewport hero, background covers properly */
@media (min-width: 1025px) {
    .hero {
        min-height: 100vh !important;
        height: 100vh !important;
        max-height: none !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat;
    }
}

@media (max-width: 1024px) {
    .hero {
        height: 400px;
        min-height: 350px;
        max-height: 550px;
    }
}

@media (max-width: 768px) {
    .hero {
        background-size: cover;
        background-position: center center;
        height: 350px;
        min-height: 300px;
        max-height: 450px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 300px;
        min-height: 280px;
        max-height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
        padding: 0 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    text-shadow: none;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--white);
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 15px 40px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
    cursor: pointer;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.4), 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ===== Section Styles ===== */
section {
    padding: 80px 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
    position: relative;
}

section * {
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 0;
    }
}

.section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    position: relative;
}

.section-title-modern {
    font-family: 'Dancing Script', cursive;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    position: relative;
    text-transform: uppercase;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 3rem;
    border-radius: 2px;
}

.section-description {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* ===== About Section ===== */
.about {
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
    padding: 80px 0;
    position: relative;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    margin-bottom: 50px;
}

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

.about-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(76, 175, 80, 0.2);
}

.about-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.about-description {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border-left: 5px solid var(--primary-color);
    max-width: 900px;
    margin: 0 auto;
}

.about-description p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.9;
    text-align: center;
    margin: 0;
}

.about-description-modern {
    margin-top: 30px;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    border: 1px solid var(--bg-light);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.about-description-modern p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    text-align: justify;
    margin: 0;
    max-width: 100%;
}

@media (max-width: 768px) {
    .about-description-modern {
        padding: 30px 25px;
    }
    
    .about-description-modern p {
        font-size: 1rem;
        line-height: 1.8;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .about-description-modern {
        padding: 25px 20px;
    }
    
    .about-description-modern p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

/* ===== Rooms Section ===== */
.rooms {
    background: var(--white);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .rooms-grid {
        gap: 20px;
        margin-top: 1.5rem;
    }
}

.room-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(76, 175, 80, 0.4);
}

.room-image {
    height: 350px;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: var(--bg-light);
    display: block;
}

@media (max-width: 1024px) {
    .room-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .room-image {
        height: 280px;
        background-size: cover;
        background-position: center center;
    }
}

@media (max-width: 480px) {
    .room-image {
        height: 250px;
    }
}

.room-content {
    padding: 25px;
}

.room-name {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.room-description {
    color: var(--text-light);
    margin-bottom: 15px;
}

.room-features {
    list-style: none;
    color: var(--text-light);
}

.room-features li {
    padding: 5px 0;
    color: var(--text-dark);
}

/* ===== Packages Section ===== */
.packages {
    background: var(--bg-light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 2rem;
    }
    
    .package-image {
        height: 220px;
        min-height: 200px;
        background-size: cover;
        background-position: center center;
    }
}

@media (max-width: 480px) {
    .packages-grid {
        gap: 20px;
        margin-top: 1.5rem;
    }
    
    .package-image {
        height: 200px;
        min-height: 180px;
        background-size: cover;
        background-position: center center;
    }
}

.package-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(76, 175, 80, 0.4);
}

.package-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-name {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.package-features {
    list-style: none;
}

.package-features li {
    padding: 8px 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--bg-light);
}

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

/* ===== Facilities Section ===== */
.facilities {
    background: var(--white);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 3rem;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .facilities-grid {
        gap: 20px;
        margin-top: 1.5rem;
    }
}

.facility-item {
    text-align: center;
    padding: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.facility-item:hover {
    background: rgba(76, 175, 80, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(76, 175, 80, 0.3), 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.facility-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.facility-item h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.facility-item:hover h3 {
    color: var(--white);
}

.facility-item p {
    color: var(--text-light);
}

.facility-item:hover p {
    color: rgba(255,255,255,0.9);
}

.facility-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 10px 10px 0 0;
    margin-bottom: 20px;
}

.facilities-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===== Why Choose Section ===== */
.why-choose {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
    padding: 80px 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.why-choose-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.why-choose-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.why-choose-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.why-choose-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* ===== Room Slider Styles (Modern Swipe) ===== */
.room-slider-container {
    position: relative;
    height: 350px;
    width: 100%;
    overflow: hidden;
    background-color: var(--bg-light);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    cursor: grab;
    touch-action: pan-y pinch-zoom;
    -webkit-user-select: none;
    user-select: none;
}

.room-slider-container:active {
    cursor: grabbing;
}

.room-slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.room-slider.dragging {
    transition: none;
}

.room-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.room-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* Hide room slider buttons and indicators */
.room-slider-btn,
.room-slider-indicators {
    display: none !important;
}

.room-capacity {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .room-slider-container {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .room-slider-container {
        height: 250px;
    }
}

/* ===== Hero Slider Styles (Modern Swipe) ===== */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.hero-slider.dragging {
    transition: none;
}

.hero-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Laptop/desktop: full hero background fills viewport responsively */
@media (min-width: 1025px) {
    .hero-slide {
        background-size: cover;
        background-position: center center;
    }
}

/* Hide hero slider indicators */
.hero-slider-indicators,
.hero-indicator {
    display: none !important;
}

/* ===== Package Image Styles ===== */
.package-image {
    width: 100%;
    height: 250px;
    min-height: 200px;
    max-height: 300px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 15px 15px 0 0;
    margin: -30px -30px 20px -30px;
    object-fit: cover;
    overflow: hidden;
    position: relative;
    display: block;
}

.package-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Ensure package images maintain aspect ratio */
.package-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.package-best-for {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.packages-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===== Pricing Page Styles ===== */
.pricing-hero {
    height: 450px;
    min-height: 400px;
    max-height: 600px;
    background-image: url('https://res.cloudinary.com/YOUR_CLOUD_NAME/image/upload/kalongo/pricing-hero-background.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1025px) {
    .pricing-hero {
        min-height: 100vh !important;
        height: 100vh !important;
        max-height: none !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat;
    }
}

@media (max-width: 1024px) {
    .pricing-hero {
        height: 400px;
        min-height: 350px;
        max-height: 550px;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        height: 350px;
        min-height: 300px;
        max-height: 450px;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        height: 300px;
        min-height: 280px;
        max-height: 400px;
    }
}

.pricing-hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
}

.pricing-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.pricing-hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    opacity: 0.95;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.pricing-page {
    padding: 80px 0;
    background: var(--bg-light);
}

.pricing-section {
    margin-bottom: 60px;
}

.pricing-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.pricing-section-description {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(76, 175, 80, 0.4);
}

.pricing-card.featured-pricing {
    border: 3px solid var(--primary-color);
}

.pricing-card.holiday-pricing {
    border: 3px solid var(--accent-color);
}

.pricing-card-title {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.pricing-period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.pricing-note {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--bg-light);
}

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

.packages-pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.package-pricing {
    position: relative;
}

.package-pricing.featured-package {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-cta {
    text-align: center;
    background: var(--white);
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-top: 50px;
}

.pricing-cta h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-cta p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

/* ===== Packages Page Styles ===== */
.packages-page {
    padding: 80px 0;
    background: var(--white);
}

.packages-section {
    margin-bottom: 80px;
}

.rate-category {
    margin-bottom: 50px;
}

.rate-category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
}

.rate-category-description {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 30px;
}

/* Modern Packages Grid */
.packages-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.package-card-modern {
    background: var(--glass-bg);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 35px 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    border-top: 3px solid var(--primary-color);
    display: flex;
    flex-direction: column;
}

.package-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(76, 175, 80, 0.4);
}

.package-card-modern.featured-package-modern {
    border-top-color: var(--accent-color);
    border: 3px solid var(--primary-color);
    transform: scale(1.03);
}

.package-card-modern.featured-package-modern:hover {
    transform: scale(1.05) translateY(-8px);
}

.featured-badge-modern {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(255, 152, 0, 0.3);
}

.package-name-modern {
    font-family: 'Dancing Script', cursive;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.package-price-modern {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.2;
}

.package-price-period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
    display: block;
    margin-top: 5px;
}

.package-best-for-modern {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 25px;
    font-size: 0.95rem;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-light);
}

.package-features-modern {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.package-features-modern li {
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 1rem;
    border-bottom: 1px solid var(--bg-light);
    transition: all 0.2s ease;
}

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

.package-features-modern li:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.packages-cta-modern {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    margin-top: 60px;
    color: var(--white);
}

.packages-cta-modern h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.packages-cta-modern p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    font-size: 1.2rem;
}

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

.packages-cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.packages-cta-buttons .btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.packages-cta-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.packages-cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* CTA icon buttons (packages & pricing Ready to Book) */
.btn-cta-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 44px;
}

.btn-cta-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
}

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

.btn-cta-phone {
    background: #007AFF;
    color: #fff;
    border: none;
}

.btn-cta-phone:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
}

/* Packages CTA (gradient background): outline style */
.packages-cta-buttons .btn-cta-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid var(--white);
}

.packages-cta-buttons .btn-cta-whatsapp:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

.packages-cta-buttons .btn-cta-phone:hover {
    background: #007AFF;
    color: #fff;
    border-color: #007AFF;
}

/* Pricing CTA (white background): solid colors */
.pricing-cta-buttons .btn-cta-whatsapp {
    background: #25D366;
    color: #fff;
}

.pricing-cta-buttons .btn-cta-phone {
    background: #007AFF;
    color: #fff;
}

.btn-secondary {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

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

/* ===== Modern Packages Page Styles ===== */
.packages-section-modern {
    margin-bottom: 80px;
    background: var(--white);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.packages-section-modern:hover {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.section-header-modern {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
}

.section-header-modern::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-title-modern {
    font-family: 'Dancing Script', cursive;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.section-description-modern {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Accommodation Cards - Auto-detecting 2-4 columns */
.accommodation-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* Desktop: 4 columns for many items, 3 for medium, 2 for few */
@media (min-width: 1200px) {
    .accommodation-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Tablet: 2-3 columns */
@media (min-width: 768px) and (max-width: 1199px) {
    .accommodation-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

.accommodation-card-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.accommodation-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px 20px 0 0;
}

.accommodation-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(76, 175, 80, 0.4);
}

.accommodation-card-modern.featured-accommodation-modern {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
    background: linear-gradient(135deg, #ffffff 0%, #f0f8f0 100%);
}

.accommodation-card-modern.featured-accommodation-modern:hover {
    transform: scale(1.08) translateY(-8px);
}

.accommodation-header-modern {
    margin-bottom: 25px;
    text-align: center;
}

.accommodation-name-modern {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.accommodation-pricing-modern {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    box-sizing: border-box;
}

.price-item-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--bg-light);
    transition: all 0.2s ease;
    overflow: visible;
    min-width: 0;
    word-wrap: break-word;
}

.price-item-modern:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(76, 175, 80, 0.4);
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.price-label-modern {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-right: 10px;
    padding-right: 10px;
}

.price-value-modern {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content;
    margin-left: 10px;
}

/* Food Cards - Auto-detecting 2-4 columns */
.food-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

@media (min-width: 1200px) {
    .food-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
}

.food-card-modern {
    background: var(--glass-bg);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.food-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(76, 175, 80, 0.4);
}

.food-card-modern.featured-food-modern {
    border: 3px solid var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f0f8f0 100%);
}

.food-name-modern {
    font-family: 'Dancing Script', cursive;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.food-description-modern {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.food-price-modern {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Activity Cards - Auto-detecting 2-4 columns */
.activities-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

@media (min-width: 1200px) {
    .activities-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
}

.activity-card-modern {
    background: var(--glass-bg);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.activity-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.activity-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(76, 175, 80, 0.4);
}

.activity-card-modern.free-activity-modern {
    background: linear-gradient(135deg, #f0f8f0 0%, #ffffff 100%);
    border-color: var(--secondary-color);
}

.activity-card-modern.free-activity-modern::before {
    background: var(--secondary-color);
}

.activity-name-modern {
    font-family: 'Dancing Script', cursive;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.activity-duration-modern {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.activity-price-modern {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Menu Categories */
.menu-category-modern {
    margin-bottom: 50px;
    background: var(--white);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--bg-light);
}

.menu-category-title-modern {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
    text-align: center;
}

.menu-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

@media (min-width: 1200px) {
    .menu-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
}

.menu-item-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    overflow: visible;
    min-width: 0;
    word-wrap: break-word;
}

.menu-item-modern:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.menu-item-name-modern {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-right: 10px;
    padding-right: 10px;
}

.menu-item-price-modern {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-left: 15px;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content;
}

/* Charges Grid - Auto-detecting 2-4 columns */
.charges-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

@media (min-width: 1200px) {
    .charges-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
}

.charge-item-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--bg-light);
    transition: all 0.3s ease;
    overflow: visible;
    min-width: 0;
    word-wrap: break-word;
}

.charge-item-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.charge-name-modern {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-right: 10px;
    padding-right: 10px;
}

.charge-price-modern {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-left: 20px;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content;
}

/* Responsive Styles for Modern Packages */
@media (max-width: 1024px) {
    .packages-section-modern {
        padding: 40px 30px;
    }
    
    .section-title-modern {
        font-size: 2.4rem;
    }
    
    .accommodation-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .menu-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .packages-section-modern {
        padding: 35px 25px;
        border-radius: 20px;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .section-description-modern {
        font-size: 1.1rem;
    }
    
    .accommodation-grid-modern,
    .food-grid-modern,
    .activities-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
    }
    
    .accommodation-card-modern,
    .food-card-modern,
    .activity-card-modern {
        padding: 20px 15px;
        border-radius: 15px;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .accommodation-name-modern {
        font-size: 1.3rem;
    }
    
    .price-item-modern {
        padding: 12px 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        overflow: hidden;
        min-width: 0;
        word-wrap: break-word;
        box-sizing: border-box;
    }
    
    .price-label-modern {
        font-size: 0.9rem;
        width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-right: 0;
        margin-bottom: 4px;
        font-weight: 600;
        color: var(--text-dark);
        line-height: 1.4;
        order: 1;
    }
    
    .price-value-modern {
        font-size: 1.2rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
        font-weight: 700;
        color: var(--primary-color);
        order: 2;
        margin-top: 4px;
    }
    
    .food-card-modern {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 15px;
    }
    
    .food-name-modern {
        font-size: 1.3rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
        margin-bottom: 8px;
        order: 1;
    }
    
    .food-description-modern {
        order: 2;
        margin-bottom: 12px;
    }
    
    .food-price-modern {
        font-size: 1.8rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
        order: 3;
        margin-top: 4px;
    }
    
    .activity-card-modern {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 15px;
    }
    
    .activity-name-modern {
        font-size: 1.2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
        margin-bottom: 8px;
        order: 1;
    }
    
    .activity-duration-modern {
        order: 2;
        margin-bottom: 12px;
    }
    
    .activity-price-modern {
        font-size: 1.3rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
        order: 3;
        margin-top: 4px;
    }
    
    .accommodation-card-modern.featured-accommodation-modern {
        transform: scale(1);
    }
    
    .accommodation-card-modern.featured-accommodation-modern:hover {
        transform: translateY(-8px) scale(1.02);
    }
    
    /* Menu grid: Auto-detect 2-4 columns on tablet/mobile */
    .menu-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 12px;
    }
    
    .menu-item-modern {
        padding: 16px 15px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        overflow: visible;
        min-width: 0;
        gap: 10px;
        border-radius: 15px;
    }
    
    .menu-item-name-modern {
        font-size: 0.95rem;
        width: 100%;
        min-width: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-right: 0;
        margin-bottom: 0;
        font-weight: 600;
        color: var(--text-dark);
        line-height: 1.4;
    }
    
    .menu-item-price-modern {
        font-size: 1.1rem;
        margin-left: 0;
        white-space: nowrap;
        flex-shrink: 0;
        min-width: fit-content;
        font-weight: 700;
        color: var(--primary-color);
        margin-top: 4px;
    }
    
    /* Charges grid: Auto-detect 2-4 columns */
    .charges-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 12px;
    }
    
    .charge-item-modern {
        padding: 18px 15px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        overflow: visible;
        min-width: 0;
        gap: 12px;
        border-radius: 15px;
    }
    
    .charge-name-modern {
        font-size: 0.95rem;
        width: 100%;
        min-width: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-right: 0;
        margin-bottom: 0;
        font-weight: 600;
        color: var(--text-dark);
        line-height: 1.4;
    }
    
    .charge-price-modern {
        font-size: 1rem;
        margin-left: 0;
        margin-top: 4px;
        white-space: nowrap;
        flex-shrink: 0;
        min-width: fit-content;
        font-weight: 700;
        color: var(--primary-color);
        order: 2;
    }
    
    .charge-name-modern {
        order: 1;
    }
    
    .menu-category-modern {
        padding: 25px 20px;
    }
    
    .packages-cta-modern {
        padding: 40px 25px;
    }
    
    .packages-cta-modern h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .packages-section-modern {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .section-title-modern {
        font-size: 1.8rem;
    }
    
    .section-description-modern {
        font-size: 1rem;
    }
    
    /* Auto-detect 2-4 columns on mobile based on available space */
    .accommodation-grid-modern,
    .food-grid-modern,
    .activities-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 12px;
    }
    
    .accommodation-card-modern,
    .food-card-modern,
    .activity-card-modern {
        padding: 18px 12px;
        border-radius: 12px;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .accommodation-name-modern {
        font-size: 1.2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .price-item-modern {
        padding: 10px 12px;
        gap: 6px;
        overflow: hidden;
        min-width: 0;
        word-wrap: break-word;
        box-sizing: border-box;
    }
    
    .price-label-modern {
        font-size: 0.85rem;
        width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-right: 0;
        margin-bottom: 4px;
        font-weight: 600;
        color: var(--text-dark);
        line-height: 1.4;
        order: 1;
    }
    
    .price-value-modern {
        font-size: 1.1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
        font-weight: 700;
        color: var(--primary-color);
        order: 2;
        margin-top: 4px;
    }
    
    .food-card-modern {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 18px 12px;
    }
    
    .food-name-modern {
        font-size: 1.2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
        margin-bottom: 8px;
        order: 1;
    }
    
    .food-description-modern {
        order: 2;
        margin-bottom: 10px;
        font-size: 0.9rem;
    }
    
    .food-price-modern {
        font-size: 1.6rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
        order: 3;
        margin-top: 4px;
    }
    
    .activity-card-modern {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 18px 12px;
    }
    
    .activity-name-modern {
        font-size: 1.1rem;
        width: 100%;
        margin-bottom: 8px;
        order: 1;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .activity-duration-modern {
        order: 2;
        margin-bottom: 10px;
        font-size: 0.85rem;
    }
    
    .activity-price-modern {
        font-size: 1.2rem;
        width: 100%;
        order: 3;
        margin-top: 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Menu grid: Auto-detect 2-4 columns on mobile phones */
    /* minmax(130px, 1fr) allows 2-4 columns depending on screen width and item count */
    .menu-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 10px;
    }
    
    .menu-category-title-modern {
        font-size: 1.5rem;
    }
    
    .menu-item-modern {
        padding: 16px 12px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        overflow: visible;
        min-width: 0;
        gap: 10px;
        border-radius: 12px;
    }
    
    .menu-item-name-modern {
        font-size: 0.9rem;
        width: 100%;
        min-width: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-right: 0;
        margin-bottom: 0;
        font-weight: 600;
        color: var(--text-dark);
        line-height: 1.4;
    }
    
    .menu-item-price-modern {
        font-size: 1.05rem;
        margin-left: 0;
        white-space: nowrap;
        flex-shrink: 0;
        min-width: fit-content;
        font-weight: 700;
        color: var(--primary-color);
        margin-top: 4px;
    }
    
    /* Charges grid: Auto-detect 2-4 columns on mobile */
    .charges-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 12px;
    }
    
    .charge-item-modern {
        padding: 18px 12px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        overflow: visible;
        min-width: 0;
        gap: 12px;
        border-radius: 12px;
    }
    
    .charge-name-modern {
        font-size: 0.9rem;
        width: 100%;
        min-width: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-right: 0;
        margin-bottom: 0;
        font-weight: 600;
        color: var(--text-dark);
        line-height: 1.4;
    }
    
    .charge-price-modern {
        font-size: 1.05rem;
        margin-left: 0;
        margin-top: 4px;
        white-space: nowrap;
        flex-shrink: 0;
        min-width: fit-content;
        font-weight: 700;
        color: var(--primary-color);
        order: 2;
    }
    
    .charge-name-modern {
        order: 1;
    }
}

/* ===== Our Kalongo Gallery Styles ===== */
.gallery-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item-modern {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: var(--white);
    border: 2px solid transparent;
}

.gallery-item-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 1;
}

.gallery-item-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.gallery-media-modern {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 20px 20px 0 0;
}

.gallery-item-modern video.gallery-media-modern {
    background: #000;
}

.gallery-overlay-modern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.gallery-item-modern:hover .gallery-overlay-modern {
    transform: translateY(0);
}

.gallery-caption-modern {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

@media (max-width: 1024px) {
    .gallery-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .gallery-media-modern {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .gallery-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .gallery-media-modern {
        height: 250px;
        object-fit: cover;
        object-position: center;
        width: 100%;
    }
    
    .gallery-item-modern {
        overflow: hidden;
    }
    
    .gallery-caption-modern {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-media-modern {
        height: 250px;
        min-height: 250px;
        object-fit: cover;
        object-position: center;
        width: 100%;
    }
    
    .gallery-item-modern {
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }
    
    .gallery-overlay-modern {
        padding: 15px;
    }
    
    .gallery-caption-modern {
        font-size: 0.95rem;
    }
}

/* ===== Activities Page Styles ===== */
.activities-hero {
    height: 450px;
    min-height: 400px;
    max-height: 600px;
    background-image: url('https://res.cloudinary.com/YOUR_CLOUD_NAME/image/upload/kalongo/activities-hero-background.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

@media (min-width: 1025px) {
    .activities-hero {
        min-height: 100vh !important;
        height: 100vh !important;
        max-height: none !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat;
    }
}

@media (max-width: 1024px) {
    .activities-hero {
        height: 400px;
        min-height: 350px;
        max-height: 550px;
    }
}

@media (max-width: 768px) {
    .activities-hero {
        height: 350px;
        min-height: 300px;
        max-height: 450px;
    }
}

@media (max-width: 480px) {
    .activities-hero {
        height: 300px;
        min-height: 280px;
        max-height: 400px;
    }
}

.activities-hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
}

.activities-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.activities-hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    opacity: 0.95;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.activities-page {
    padding: 80px 0;
    background: var(--white);
}

/* Activities List Section */
.activities-list-section {
    margin-bottom: 80px;
}

.activities-list-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.activities-group {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.activities-group:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.activities-group-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.activities-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--text-light);
}

.activities-list li {
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 1rem;
    border-bottom: 1px solid var(--bg-light);
    transition: all 0.2s ease;
}

.activities-list li:last-child {
    border-bottom: none;
}

.activities-list li:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Media Gallery Section */
.activities-media-section {
    margin-bottom: 80px;
}

.media-gallery-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 3rem;
    margin-bottom: 20px;
}

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

.media-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.media-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.media-item.media-image {
    min-height: 300px;
}

.media-item.media-video {
    min-height: 350px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 300px;
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 350px;
}

.media-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: var(--white);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.media-item:hover .media-overlay {
    transform: translateY(0);
}

.media-overlay p {
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
}

.activities-cta {
    text-align: center;
    background: var(--bg-light);
    padding: 50px 30px;
    border-radius: 15px;
    margin-top: 50px;
}

.activities-cta h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.activities-cta p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .pricing-hero-title,
    .activities-hero-title {
        font-size: 2.5rem;
        padding: 0 15px;
    }
    
    .pricing-hero-subtitle,
    .activities-hero-subtitle {
        font-size: 1.2rem;
        padding: 0 15px;
    }
    
    .pricing-section-title {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-page {
        padding: 50px 0 70px;
    }
    
    .packages-section {
        margin-bottom: 60px;
    }
    
    .packages-grid-modern {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .rate-category-title {
        font-size: 1.8rem;
    }
    
    .activities-page {
        padding: 50px 0 70px;
    }
    
    .activities-list-section {
        margin-bottom: 60px;
    }
    
    .activities-list-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .activities-group {
        padding: 25px;
    }
    
    .booking-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .booking-info-card {
        position: relative;
        top: 0;
    }
    
    .booking-form-container {
        padding: 30px 25px;
    }
    
    .booking-form-modern .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .media-gallery-images {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .media-gallery-videos {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .media-item.media-image {
        min-height: 250px;
    }
    
    .media-item.media-video {
        min-height: 280px;
    }
    
    .gallery-image {
        min-height: 250px;
    }
    
    .gallery-video {
        min-height: 280px;
    }
    
    .pricing-cta-buttons {
        flex-direction: column;
    }
    
    .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .pricing-hero-title,
    .activities-hero-title {
        font-size: 2rem;
        padding: 0 10px;
    }
    
    .pricing-hero-subtitle,
    .activities-hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .pricing-section-title {
        font-size: 1.6rem;
    }
    
    .rate-category-title {
        font-size: 1.5rem;
    }
    
    .package-name-modern {
        font-size: 1.4rem;
    }
    
    .package-price-modern {
        font-size: 2.2rem;
    }
    
    .packages-cta-modern {
        padding: 35px 20px;
    }
    
    .packages-cta-modern h3 {
        font-size: 1.8rem;
    }
    
    .packages-cta-modern p {
        font-size: 1rem;
    }
    
    .activities-group-title {
        font-size: 1.3rem;
    }
    
    .activities-list-container {
        gap: 20px;
    }
    
    .activities-group {
        padding: 20px;
    }
    
    .media-gallery {
        gap: 15px;
    }
    
    .media-gallery-images,
    .media-gallery-videos {
        gap: 15px;
    }
    
    .media-item.media-image {
        min-height: 200px;
    }
    
    .media-item.media-video {
        min-height: 220px;
    }
    
    .gallery-image {
        min-height: 200px;
    }
    
    .gallery-video {
        min-height: 220px;
    }
    
    .pricing-amount {
        font-size: 2rem;
    }
}

/* ===== Booking Section ===== */
.booking {
    background: var(--bg-light);
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* ===== Modern Booking Page Styles ===== */
.booking-hero {
    height: 450px;
    min-height: 400px;
    max-height: 600px;
    background-image: url('https://res.cloudinary.com/YOUR_CLOUD_NAME/image/upload/kalongo/booking-hero-background.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1025px) {
    .booking-hero {
        min-height: 100vh !important;
        height: 100vh !important;
        max-height: none !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat;
    }
}

@media (max-width: 1024px) {
    .booking-hero {
        height: 400px;
        min-height: 350px;
        max-height: 550px;
    }
}

@media (max-width: 768px) {
    .booking-hero {
        background-size: cover;
        background-position: center center;
        height: 350px;
        min-height: 300px;
        max-height: 450px;
    }
    
    .booking-hero-title {
        font-size: 2.5rem;
        padding: 0 15px;
    }
    
    .booking-hero-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .booking-hero {
        height: 300px;
        min-height: 280px;
        max-height: 400px;
    }
    
    .booking-hero-title {
        font-size: 2rem;
        padding: 0 10px;
    }
    
    .booking-hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
}

.booking-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="4"/></g></svg>');
    opacity: 0.3;
    z-index: 1;
}

.booking-hero-overlay {
    display: none;
}

.booking-hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
}

.booking-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.booking-hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--white);
    border-radius: 2px;
}

.booking-hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    text-shadow: none;
    color: var(--white);
    letter-spacing: 1px;
    margin-top: 2rem;
    padding: 0 20px;
}

.booking-page {
    background: linear-gradient(180deg, var(--bg-light) 0%, #f0f4f5 100%);
    padding: 60px 0 80px;
}

.booking-content-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: start;
}

.booking-info-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    position: sticky;
    top: 120px;
}

.info-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 20px;
}

.booking-info-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.info-list {
    list-style: none;
    margin-bottom: 30px;
}

.info-list li {
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 1rem;
    border-bottom: 1px solid var(--bg-light);
    transition: color 0.3s ease;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li:hover {
    color: var(--primary-color);
    padding-left: 5px;
    transition: all 0.3s ease;
}

.contact-info-box {
    background: linear-gradient(135deg, var(--bg-light), #e8f5e9);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.contact-info-box h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-info-box p {
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info-box p:last-child {
    margin-bottom: 0;
}

.whatsapp-note {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: 10px !important;
    text-align: center;
    font-weight: 500;
}

.booking-form-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-large);
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-header {
    margin-bottom: 35px;
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
}

.form-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.form-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    animation: blink-animation 2s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes blink-animation {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        color: var(--primary-color);
    }
    25% {
        opacity: 0.7;
        transform: scale(1.02);
        color: var(--secondary-color);
    }
    50% {
        opacity: 1;
        transform: scale(1);
        color: var(--primary-color);
    }
    75% {
        opacity: 0.8;
        transform: scale(1.01);
        color: var(--secondary-color);
    }
}

.form-title::before {
    content: '✨';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    animation: sparkle 1.5s ease-in-out infinite;
}

.form-title::after {
    content: '✨';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    animation: sparkle 1.5s ease-in-out infinite 0.5s;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(-50%) scale(0.8);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.2);
    }
}

.form-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 400;
    margin-top: 10px;
}

.booking-form-modern {
    max-width: 100%;
}

.booking-form-modern .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 25px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.booking-form-modern .form-group {
    margin-bottom: 0;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.booking-form-modern .form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.booking-form-modern .form-group input,
.booking-form-modern .form-group select,
.booking-form-modern .form-group textarea {
    width: 100%;
    max-width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: 'Poppins', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    box-sizing: border-box;
}

.booking-form-modern .form-group input:focus,
.booking-form-modern .form-group select:focus,
.booking-form-modern .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.15), 0 4px 16px rgba(76, 175, 80, 0.12);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.95);
}

.booking-form-modern .form-group input:hover,
.booking-form-modern .form-group select:hover,
.booking-form-modern .form-group textarea:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.1);
}

.booking-form-modern .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Number of guests: one label, one box split half adults / half children */
.booking-form-modern .form-group-guests .guests-box {
    display: flex;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.booking-form-modern .form-group-guests .guests-half {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
}

.booking-form-modern .form-group-guests .guests-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.booking-form-modern .form-group-guests .guests-half:first-child {
    border-right: 1px solid #e0e0e0;
}

.booking-form-modern .form-group-guests .guests-half input {
    width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
}

.booking-form-modern .form-group-guests .guests-half input:focus {
    box-shadow: none;
}

.booking-form-modern .form-group-guests .guests-box:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.15);
}

.btn-submit-modern {
    width: 100%;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.btn-submit-modern .btn-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

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

/* Booking Cost Summary */
.booking-cost-summary {
    margin: 24px 0 28px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(76, 175, 80, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.cost-summary-title {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0 0 16px 0;
}

.cost-summary-currency {
    margin-bottom: 16px;
}

.cost-summary-currency label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 6px;
}

.cost-summary-currency select {
    width: 100%;
    max-width: 280px;
    padding: 10px 14px;
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 8px;
    background: var(--white);
    font-family: inherit;
    font-size: 1rem;
}

.cost-summary-details {
    display: grid;
    gap: 10px;
}

.cost-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cost-row:last-child {
    border-bottom: none;
}

.cost-label {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.cost-value {
    font-weight: 600;
    color: var(--primary-color);
}

.cost-row.cost-total .cost-value {
    font-size: 1.2rem;
    color: var(--primary-dark);
}

.cost-summary-note {
    margin: 14px 0 0;
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Responsive for booking page */
@media (max-width: 968px) {
    .booking-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .booking-info-card {
        position: static;
    }

    .booking-hero-title {
        font-size: 2.5rem;
        padding: 0 15px;
    }

    .booking-hero-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .booking-hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        height: 300px;
        min-height: 300px;
    }

    .booking-hero-title {
        font-size: 2rem;
        padding: 0 10px;
    }

    .booking-hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .booking-page {
        padding: 40px 0 60px;
    }

    .booking-form-container {
        padding: 30px 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form-title {
        font-size: 1.75rem;
        letter-spacing: 1px;
    }
    
    .form-title::before,
    .form-title::after {
        display: none;
    }

    .booking-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .booking-info-card {
        position: relative;
        top: 0;
        padding: 25px 20px;
    }
    
    .booking-info-card h3 {
        font-size: 1.3rem;
    }
    
    .info-list li {
        font-size: 0.9rem;
        padding: 10px 0;
    }
    
    .contact-info-box {
        padding: 20px;
    }
    
    .contact-info-box h4 {
        font-size: 1.1rem;
    }
    
    .contact-info-box p {
        font-size: 0.9rem;
    }

    .booking-form-modern .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }
    
    .booking-form-modern .form-group {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Fix date inputs specifically on mobile */
    .booking-form-modern .form-group input[type="date"] {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        -webkit-appearance: none;
        -moz-appearance: textfield;
    }
    
    .booking-form-modern .form-group input[type="date"]::-webkit-calendar-picker-indicator {
        margin-left: 0;
        padding: 0;
    }
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

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

.form-help {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* ===== Reviews Section with Slider ===== */
.reviews {
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%234CAF50" fill-opacity="0.02"><circle cx="30" cy="30" r="4"/></g></svg>');
    pointer-events: none;
}

/* Reviews slider: modern swipe-based, no dots/arrows */
.reviews-slider-container {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 0 20px;
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y pinch-zoom;
    -webkit-user-select: none;
    user-select: none;
}

.reviews-slider-container:active {
    cursor: grabbing;
}

.reviews-slider {
    display: flex;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    border-radius: 20px;
}

.reviews-slider.dragging {
    transition: none;
}

.review-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 0 10px;
}

.review-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    align-items: flex-start;
    min-height: 400px; /* Fixed height to prevent layout shift */
    box-sizing: border-box;
    width: 100%;
}

.review-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.review-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.review-image:hover {
    transform: scale(1.05);
}

.review-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.review-stars {
    font-size: 1.5rem;
    color: #FFD700;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.review-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    position: relative;
    padding-left: 25px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    display: block;
}

.review-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.review-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.review-date {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Hide slider buttons and indicators (modern swipe style) */
.slider-btn,
.slider-indicators,
.indicator {
    display: none !important;
}

/* ===== Footer ===== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 50px 0 20px;
}

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

.footer-contact-heading {
    margin-top: 1.25rem;
    margin-bottom: 12px;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.footer-section h4 {
    margin-bottom: 15px;
    color: var(--white);
}

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

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

/* Quick Links */
.quick-links-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.quick-links-list li {
    margin-bottom: 0;
}

.quick-link-item {
    display: block;
    padding: 4px 0;
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.quick-link-item:hover {
    color: var(--primary-color) !important;
    transform: scale(0.98);
}

/* Mail footer link (IG style) */
.mail-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.mail-footer-link:hover {
    color: #EA4335 !important;
    transform: translateX(5px);
}

.mail-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    transition: all 0.3s ease;
}

.mail-footer-link:hover .mail-icon {
    transform: scale(1.1);
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.instagram-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.instagram-footer-link:hover {
    color: #E4405F;
    transform: translateX(5px);
}

.instagram-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: all 0.3s ease;
}

.instagram-footer-link:hover .instagram-icon {
    transform: scale(1.1);
}

/* WhatsApp footer link button */
.whatsapp-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff !important;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-height: 44px;
}

.whatsapp-footer-link:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

/* Phone footer link button */
.phone-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #007AFF;
    color: #fff !important;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-height: 44px;
}

.phone-footer-link:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.4);
}

.phone-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

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

/* ===== Responsive Design ===== */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .section-title,
    .section-title-modern {
        font-size: 2.2rem;
    }

    .section-description {
        font-size: 1.05rem;
    }

    .about-card {
        padding: 35px 25px;
    }

    .room-content {
        padding: 22px;
    }

    .package-card {
        padding: 28px 25px;
    }

    .facility-item {
        padding: 28px 25px;
    }

    .rooms-grid,
    .packages-grid,
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .package-image {
        height: 230px;
        min-height: 200px;
        background-size: cover;
        background-position: center center;
    }

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

@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .section-title,
    .section-title-modern {
        font-size: 2.2rem;
    }

    .section-description {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        max-width: 85vw;
        height: calc(100vh - 70px);
        flex-direction: column;
        background: var(--white);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
        padding: 15px 0;
        transition: right 0.3s ease;
        gap: 5px;
        z-index: 999;
        overflow-y: auto;
        border-left: 1px solid var(--bg-light);
    }

    .nav-menu.active {
        right: 0;
    }
    
    /* Mobile Menu Overlay */
    .nav-menu-overlay {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .nav-menu-overlay.active {
        display: block;
        opacity: 1;
    }
    
    .nav-link {
        padding: 12px 20px;
        font-size: 0.95rem;
        border-left: 3px solid transparent;
        transition: all 0.2s;
        margin: 0 10px;
        border-radius: 8px;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(76, 175, 80, 0.1);
        border-left-color: var(--primary-color);
        color: var(--primary-color);
    }
    
    .nav-link.btn-visit {
        background: rgba(255, 255, 255, 0.95);
        color: var(--primary-color);
        border-left: none;
        border: 2px solid var(--primary-color);
        margin: 10px;
        text-align: center;
    }
    
    .nav-link.btn-visit:hover {
        background: var(--primary-color);
        color: var(--white);
    }
    
    .nav-link.btn-booking {
        background: var(--primary-color);
        color: var(--white);
        border-left: none;
        margin: 10px;
        text-align: center;
    }
    
    .nav-link.btn-booking:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    }

    .logo {
        height: 60px;
        max-width: 150px;
    }

    .hero-title {
        font-size: 2.5rem;
        padding: 0 20px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        padding: 0 20px;
    }

    .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .section-title,
    .section-title-modern {
        font-size: 2rem;
        padding: 0 15px;
    }

    .section-description {
        font-size: 1rem;
        padding: 0 15px;
        margin-bottom: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 25px;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .reviews-slider-container {
        padding: 0 15px;
    }

    .review-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        align-items: flex-start;
    }
    
    .review-quote {
        font-size: 1.05rem;
        line-height: 1.7;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        display: block;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: visible;
        text-overflow: clip;
    }

    .review-image-container {
        max-width: 300px;
        margin: 0 auto;
    }

    .review-image {
        min-height: 250px;
    }
    
    .about-description,
    .booking-form-container {
        padding: 25px 15px;
    }
    
    .booking-form-modern {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
    }
    
    .booking-form-modern .form-row {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    .booking-form-modern .form-group {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    .booking-form-modern .form-group input,
    .booking-form-modern .form-group select,
    .booking-form-modern .form-group textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 12px 15px;
    }
    
    /* Ensure date inputs don't exceed container on mobile */
    .booking-form-modern .form-group input[type="date"] {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        -webkit-appearance: none;
        -moz-appearance: textfield;
    }
    
    .about-card {
        padding: 30px 20px;
    }

    .about-icon {
        font-size: 3rem;
    }

    .about-card h3 {
        font-size: 1.3rem;
    }

    .about-card p {
        font-size: 0.95rem;
    }

    .about-description p {
        font-size: 1rem;
    }
    
    .room-card,
    .package-card,
    .facility-item,
    .about-card {
        width: 100%;
        max-width: 100%;
    }

    .room-content {
        padding: 20px;
    }

    .room-name {
        font-size: 1.5rem;
    }

    .room-description {
        font-size: 0.95rem;
    }

    .room-features {
        font-size: 0.9rem;
    }

    .package-card {
        padding: 25px 20px;
    }

    .package-name {
        font-size: 1.3rem;
    }

    .package-price {
        font-size: 1.7rem;
    }

    .package-features {
        font-size: 0.95rem;
    }

    .facility-item {
        padding: 25px 20px;
    }

    .facility-icon {
        font-size: 3.5rem;
    }

    .facility-item h3 {
        font-size: 1.3rem;
    }

    .facility-item p {
        font-size: 0.95rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 24px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-quick-links {
        grid-column: 1;
    }

    .footer-contact-info {
        grid-column: 2;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.2rem;
    }

    .footer-section ul {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 1.8rem;
        padding: 0 15px;
        letter-spacing: 1px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
        letter-spacing: 0.5px;
        line-height: 1.5;
    }

    .btn-primary {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .section-title,
    .section-title-modern {
        font-size: 1.6rem;
        padding: 0 10px;
        letter-spacing: 0.5px;
        line-height: 1.3;
    }

    .section-description {
        font-size: 0.9rem;
        padding: 0 10px;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .rooms-grid,
    .packages-grid,
    .facilities-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .package-image {
        height: 200px;
        min-height: 180px;
        background-size: cover;
        background-position: center center;
    }

    .reviews-slider-container {
        padding: 0 10px;
    }

    .review-content {
        padding: 25px 20px;
        grid-template-columns: 1fr !important;
        height: auto;
        align-items: flex-start;
    }

    .review-quote {
        font-size: 1rem;
        padding: 0 15px;
        padding-left: 30px;
        line-height: 1.7;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        display: block;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: visible;
        text-overflow: clip;
    }
    
    .review-text {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: visible;
    }
    
    .review-image-container {
        max-width: 100%;
        width: 100%;
        margin: 0 auto 20px;
        height: auto;
    }
    
    .review-image {
        min-height: 200px;
        max-height: 250px;
        width: 100%;
        object-fit: cover;
    }

    .review-name {
        font-size: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .review-stars {
        font-size: 1.3rem;
    }

    .review-date {
        font-size: 0.85rem;
    }
    
    .logo {
        height: 50px;
        max-width: 120px;
    }
    
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .about-card {
        padding: 25px 15px;
        width: 100%;
        max-width: 100%;
    }

    .about-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .about-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .about-card p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .about-description {
        padding: 25px 15px;
        width: 100%;
        max-width: 100%;
    }

    .about-description p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .room-card,
    .package-card,
    .facility-item {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .room-image {
        height: 220px;
    }

    .room-content {
        padding: 20px 15px;
    }

    .room-name {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .room-description {
        font-size: 0.9rem;
        margin-bottom: 12px;
        line-height: 1.6;
    }

    .room-features {
        font-size: 0.85rem;
    }

    .room-features li {
        padding: 4px 0;
    }

    .package-card {
        padding: 20px 15px;
    }

    .package-name {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .package-price {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .package-features {
        font-size: 0.9rem;
    }

    .package-features li {
        padding: 6px 0;
    }

    .featured-badge {
        font-size: 0.8rem;
        padding: 4px 12px;
        top: -12px;
        right: 15px;
    }

    .facility-item {
        padding: 20px 15px;
    }

    .facility-icon {
        font-size: 3rem;
        margin-bottom: 12px;
    }

    .facility-item h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .facility-item p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 20px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-quick-links {
        grid-column: 1;
    }

    .footer-contact-info {
        grid-column: 2;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section h4 {
        font-size: 0.95rem;
    }

    .footer-section ul {
        font-size: 0.85rem;
    }

    .footer-section ul li {
        margin-bottom: 8px;
    }

    .footer-bottom {
        font-size: 0.8rem;
        padding-top: 15px;
    }
    
    .booking-content-wrapper {
        grid-template-columns: 1fr !important;
    }
    
    .booking-info-card {
        position: static;
    }
}

/* ===== Smart Booking Assistant (Chatbot) ===== */
.chatbot-toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: rgba(76, 175, 80, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 8px 32px rgba(76, 175, 80, 0.4), 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chatbot-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(76, 175, 80, 0.5), 0 4px 12px rgba(0, 0, 0, 0.15);
    background: rgba(76, 175, 80, 0.95);
}

.chatbot-toggle-btn.active {
    background: var(--accent-color);
}

.chatbot-icon {
    font-size: 28px;
}

.chatbot-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.chatbot-container {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 380px;
    max-width: calc(100vw - 40px);
    z-index: 9999;
    height: 600px;
    max-height: calc(100vh - 120px);
    background: var(--glass-bg);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-large);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.chatbot-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    box-shadow: 0 25px 70px rgba(0,0,0,0.4), 0 8px 32px rgba(0, 0, 0, 0.2);
    border-color: rgba(76, 175, 80, 0.3);
    background: rgba(255, 255, 255, 0.9);
}

.chatbot-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    border-radius: 20px 20px 0 0;
}

.chatbot-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex-shrink: 0;
    overflow: hidden;
}

.chatbot-logo {
    width: 100%;
    height: 100%;
    min-width: 28px;
    min-height: 28px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.chatbot-header-text h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--white);
}

.chatbot-status {
    font-size: 0.75rem;
    opacity: 0.9;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.chatbot-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
}

.chatbot-close-btn {
    background: rgba(255,255,255,0.25);
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--white);
    font-size: 32px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    font-weight: 300;
    z-index: 1001;
    position: relative;
    -webkit-tap-highlight-color: rgba(255,255,255,0.3);
}

.chatbot-close-btn:hover,
.chatbot-close-btn:active {
    background: rgba(255,255,255,0.4);
    transform: rotate(90deg) scale(1.1);
    border-color: rgba(255,255,255,0.8);
}

.chatbot-close-btn:focus {
    outline: 3px solid rgba(255,255,255,0.5);
    outline-offset: 2px;
}

/* Chatbot backdrop overlay - very light, clear visibility */
.chatbot-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    pointer-events: none;
}

.chatbot-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(76, 175, 80, 0.3);
    border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(76, 175, 80, 0.5);
}

.chatbot-message {
    display: flex;
    gap: 10px;
    animation: fadeIn 0.3s ease;
}

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

.chatbot-user-message {
    justify-content: flex-end;
}

.chatbot-bot-message {
    justify-content: flex-start;
}

.chatbot-avatar-small {
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    flex-shrink: 0;
    border: 2px solid var(--primary-color);
    overflow: hidden;
}

.chatbot-logo-small {
    width: 100%;
    height: 100%;
    min-width: 22px;
    min-height: 22px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.chatbot-message-content {
    max-width: 75%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.chatbot-user-message .chatbot-message-content {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-bottom-right-radius: 4px;
}

.chatbot-bot-message .chatbot-message-content {
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid #e8f5e9;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.chatbot-message-content strong {
    font-weight: 600;
    color: var(--primary-color);
}

.chatbot-user-message .chatbot-message-content strong {
    color: rgba(255,255,255,0.95);
}

.chatbot-input-container {
    padding: 15px 20px;
    background: var(--white);
    border-top: 1px solid #e8f5e9;
    display: flex;
    gap: 10px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.chatbot-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.chatbot-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.chatbot-send-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.chatbot-send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.chatbot-quick-actions {
    padding: 15px 20px;
    background: linear-gradient(to top, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid #e8f5e9;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.quick-action-btn {
    padding: 8px 12px;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
    white-space: nowrap;
}

.quick-action-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Typing Indicator */
.typing-indicator {
    opacity: 0.7;
}

.typing-dots {
    display: flex;
    gap: 4px;
    align-items: center;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background: var(--text-light);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* WhatsApp Booking Button */
.whatsapp-booking-btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    margin-top: 10px;
}

.whatsapp-booking-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* Contact Buttons */
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.contact-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.call-btn {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.25);
}

.call-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.35);
}

.whatsapp-btn {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.25);
}

.whatsapp-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.35);
}

/* Location Icon SVG */
.location-icon-svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-color);
    filter: drop-shadow(0 1px 2px rgba(76, 175, 80, 0.3));
    flex-shrink: 0;
}

/* Responsive Design for Chatbot */
@media (max-width: 768px) {
    .chatbot-container {
        width: calc(100vw - 20px);
        right: 10px;
        bottom: 80px;
        height: calc(100vh - 100px);
        max-height: calc(100vh - 100px);
    }
    
    .chatbot-toggle-btn {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .chatbot-messages {
        padding: 15px;
        padding-bottom: 10px;
    }
    
    .chatbot-message-content {
        max-width: 80%;
        font-size: 0.85rem;
    }
    
    .chatbot-quick-actions {
        padding: 12px 15px;
    }
    
    .quick-action-btn {
        font-size: 0.75rem;
        padding: 6px 10px;
    }
    
    .chatbot-input-container {
        padding: 12px 15px;
        position: sticky;
        bottom: 0;
        background: var(--white);
        z-index: 10;
    }
}

@media (max-width: 480px) {
    .chatbot-container {
        width: 100%;
        right: 0;
        bottom: 0;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .chatbot-backdrop {
        display: block;
    }
    
    .chatbot-close-btn {
        width: 50px !important;
        height: 50px !important;
        font-size: 36px !important;
        background: rgba(255,255,255,0.3) !important;
        border: 2px solid rgba(255,255,255,0.6) !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    
    .chatbot-close-btn:active {
        transform: rotate(90deg) scale(0.95);
    }
        border-radius: 0;
        position: fixed;
    }
    
    .chatbot-header {
        border-radius: 0;
        padding: 15px;
        flex-shrink: 0;
    }
    
    .chatbot-toggle-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 10px;
        right: 10px;
        z-index: 1000;
    }
    
    .chatbot-messages {
        padding: 12px;
        padding-bottom: 10px;
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        min-height: 0;
    }
    
    .chatbot-message-content {
        max-width: 85%;
        font-size: 0.8rem;
        padding: 10px 14px;
    }
    
    .chatbot-input-container {
        padding: 12px;
        position: sticky;
        bottom: 0;
        background: var(--white);
        border-top: 1px solid #e8f5e9;
        flex-shrink: 0;
        z-index: 10;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    }
    
    .chatbot-input {
        font-size: 16px;
        padding: 12px 15px;
        border-radius: 25px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    .chatbot-send-btn {
        padding: 12px 18px;
        font-size: 0.85rem;
        flex-shrink: 0;
    }
    
    /* Prevent zoom on input focus on iOS */
    @supports (-webkit-touch-callout: none) {
        .chatbot-input {
            font-size: 16px !important;
        }
    }
}

/* ===== Enhanced Responsive Styles ===== */

/* Tablet Landscape (900px - 1024px) */
@media (min-width: 900px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .rooms-grid,
    .facilities-grid,
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

/* Tablet Portrait (600px - 899px) */
@media (min-width: 600px) and (max-width: 899px) {
    .rooms-grid,
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .btn-booking,
    .btn-visit {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    /* Ensure touch targets are at least 44px */
    .btn-primary,
    .btn-secondary,
    .btn-booking,
    .btn-visit,
    .nav-link {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-toggle {
        min-width: 44px;
        min-height: 44px;
    }
    
    .room-slider-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Better spacing for very small screens */
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .section-description {
        font-size: 0.95rem;
        padding: 0 10px;
    }
}

/* Extra Small Mobile (max-width: 360px) */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .logo {
        height: 50px;
        max-width: 120px;
    }
    
    .facility-item,
    .room-card,
    .package-card {
        padding: 20px 15px;
    }
}

/* ===== Restaurant Menu & Gallery Mobile Responsive ===== */
@media (max-width: 768px) {
    /* Auto-detect 2-4 columns on tablet/mobile - removed !important to allow responsive grid */
    .menu-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 12px;
    }
    
    .menu-item-modern {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .menu-category-modern {
        margin-bottom: 2rem;
    }
    
    .menu-category-title-modern {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .gallery-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .gallery-item-modern {
        width: 100%;
    }
    
    .gallery-media-modern {
        width: 100%;
        height: auto;
    }
    
    .packages-grid-modern,
    .pricing-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .packages-section-modern {
        padding: 1.5rem 0;
    }
    
    .section-header-modern {
        padding: 0 1rem;
    }
    
    .section-title-modern {
        font-size: 1.5rem;
    }
    
    .section-description-modern {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Auto-detect 2-4 columns on mobile phones */
    .menu-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 10px;
    }
    
    .menu-item-modern {
        padding: 16px 12px;
        font-size: 0.9rem;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 10px;
        border-radius: 12px;
    }
    
    .menu-item-name-modern {
        font-size: 0.9rem;
        width: 100%;
        font-weight: 600;
        color: var(--text-dark);
        line-height: 1.4;
        margin-bottom: 0;
    }
    
    .menu-item-price-modern {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-top: 4px;
    }
    
    .menu-category-title-modern {
        font-size: 1.2rem;
    }
    
    .gallery-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }
    
    .packages-section-modern {
        padding: 1rem 0;
    }
    
    .section-title-modern {
        font-size: 1.3rem;
    }
}

/* Tablet Landscape (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    /* Auto-detect 2-4 columns on tablet */
    .menu-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .gallery-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .packages-grid-modern,
    .pricing-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 250px;
        min-height: 200px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* ===== WhatsApp Modal Styles ===== */
.whatsapp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.whatsapp-modal {
    background: var(--glass-bg);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-large);
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 0, 0, 0.15);
    animation: modalSlideIn 0.3s ease;
    overflow: hidden;
}

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

.whatsapp-modal-header {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-modal-header h3 {
    font-family: 'Dancing Script', cursive;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.whatsapp-modal-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.whatsapp-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.whatsapp-modal-body {
    padding: 30px 25px;
    text-align: center;
}

.whatsapp-icon-large {
    font-size: 4rem;
    margin-bottom: 15px;
}

.whatsapp-modal-message {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.6;
}

.whatsapp-modal-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.5;
}

.whatsapp-modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.whatsapp-modal-btn {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.whatsapp-modal-btn.btn-primary {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
}

.whatsapp-modal-btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-modal-btn.btn-secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border);
}

.whatsapp-modal-btn.btn-secondary:hover {
    background: var(--border);
}

@media (max-width: 768px) {
    .whatsapp-modal {
        max-width: 90%;
    }
    
    .whatsapp-modal-header h3 {
        font-size: 1.2rem;
    }
    
    .whatsapp-modal-body {
        padding: 25px 20px;
    }
    
    .whatsapp-icon-large {
        font-size: 3rem;
    }
    
    .whatsapp-modal-message {
        font-size: 1rem;
    }
    
    .whatsapp-modal-actions {
        flex-direction: column;
    }
    
    .whatsapp-modal-btn {
        width: 100%;
    }
}

/* ===== Hide prices when admin sets show_prices = false (Our Services page) ===== */
body.prices-hidden .price-display {
    display: none !important;
}

/* ===== Fix Mobile Zoom on Tel Input ===== */
input[type="tel"],
input[type="phone"] {
    font-size: 16px !important;
}

/* ===== Fix Hero Background Responsiveness on PC ===== */
@media (min-width: 1025px) {
    .hero-slider {
        min-height: 100%;
        height: 100%;
    }
    
    .hero-slide {
        min-height: 100%;
        background-size: cover !important;
        background-position: center center !important;
    }
    
    .hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

/* ===== Fix Reviews Slider Stability ===== */
/* Duplicate styles removed - using main styles above */

/* ===== Reduce Section Spacing on Mobile/Tablet ===== */
@media (max-width: 1024px) {
    .packages-page {
        padding: 50px 0 !important;
    }
    
    .packages-section-modern {
        margin-bottom: 40px !important;
    }
}

@media (max-width: 768px) {
    .packages-page {
        padding: 40px 0 !important;
    }
    
    .packages-section-modern {
        margin-bottom: 30px !important;
        padding: 30px 20px !important;
    }
    
    .section-header-modern {
        margin-bottom: 30px !important;
        padding-bottom: 20px !important;
    }
}

@media (max-width: 480px) {
    .packages-page {
        padding: 30px 0 !important;
    }
    
    .packages-section-modern {
        margin-bottom: 25px !important;
        padding: 25px 15px !important;
    }
    
    .section-header-modern {
        margin-bottom: 20px !important;
        padding-bottom: 15px !important;
    }
}

/* Print Styles */
@media print {
    .header,
    .mobile-menu-toggle,
    .chatbot-container,
    .chatbot-toggle-btn,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .section {
        page-break-inside: avoid;
    }
}
