/* ========================================
   GOOGLE FONTS
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ========================================
   CSS RESET & BASE STYLES
   ======================================== */

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

:root {
    /* Color Palette - Vibrant Nature Theme */
    --primary-color: #1a5f4f;
    --primary-dark: #0f3d32;
    --primary-light: #2d8b6f;
    --accent-color: #e8a75d;
    --accent-light: #f5c88d;
    --accent-dark: #d49043;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f1f5f9;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.2);
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--bg-white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

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

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

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
}

.divider {
    width: 100px;
    height: 5px;
    background: linear-gradient(to right, transparent, var(--accent-color), var(--accent-light), var(--accent-color), transparent);
    margin: 0 auto 20px;
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(232, 167, 93, 0.4);
    animation: dividerGlow 2s ease-in-out infinite alternate;
}

@keyframes dividerGlow {
    0% {
        box-shadow: 0 4px 12px rgba(232, 167, 93, 0.4);
    }
    100% {
        box-shadow: 0 4px 20px rgba(232, 167, 93, 0.6);
    }
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bg-white);
    box-shadow: 0 8px 24px rgba(26, 95, 79, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 36px rgba(26, 95, 79, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: var(--bg-white);
    box-shadow: 0 8px 24px rgba(232, 167, 93, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent-color));
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 36px rgba(232, 167, 93, 0.4);
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
}

.nav-brand h2 {
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.75rem;
    font-weight: 700;
}

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

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--accent-color), var(--accent-light));
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    min-height: 100vh;
    background: 
        linear-gradient(135deg, rgba(26, 95, 79, 0.85) 0%, rgba(45, 139, 111, 0.7) 100%),
        url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&q=90') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* overflow: hidden; Removed to allow chatbot widget to overflow if needed */
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(232, 167, 93, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(26, 95, 79, 0.3) 0%, transparent 60%),
        linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

/* Hero animation removed */
@keyframes heroGlow {
    0% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.1) 0%, 
        rgba(26, 95, 79, 0.2) 50%,
        rgba(0,0,0,0.4) 100%);
}

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

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    margin-bottom: 25px;
    text-shadow: 
        2px 4px 16px rgba(0,0,0,0.5),
        0 0 60px rgba(232, 167, 93, 0.4);
    font-weight: 800;
    letter-spacing: 3px;
    position: relative;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(to right, transparent, var(--accent-color), var(--accent-light), var(--accent-color), transparent);
    box-shadow: 0 0 30px rgba(232, 167, 93, 0.6);
    border-radius: 3px;
}

.hero-content p {
    font-size: 1.7rem;
    margin-bottom: 45px;
    margin-top: 40px;
    text-shadow: 2px 3px 10px rgba(0,0,0,0.5);
    font-weight: 300;
    letter-spacing: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 26px;
    height: 42px;
    border: 3px solid var(--bg-white);
    border-radius: 22px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 10px;
    background: var(--bg-white);
    border-radius: 3px;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s backwards;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s backwards;
}

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

/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
    padding: 90px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 167, 93, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -250px;
    left: -250px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(26, 95, 79, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.intro-text {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 35px 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    transition: var(--transition-slow);
    border: 2px solid rgba(26, 95, 79, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 167, 93, 0.15), transparent);
    transition: left 0.6s;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(26, 95, 79, 0.15);
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #ffffff 0%, #fef9f3 100%);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotateY(360deg);
    transition: transform 0.6s ease;
}

.feature-item h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   ACCOMMODATION SECTION
   ======================================== */

.accommodation {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.accommodation-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.room-card {
    background: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: var(--transition-slow);
    border: 2px solid rgba(232, 167, 93, 0.15);
    position: relative;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: var(--accent-color);
}

.room-image {
    height: 260px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.room-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.room-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 2;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.room-price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-light);
    font-family: var(--font-primary);
}

.room-details {
    padding: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-header {
    margin-bottom: 15px;
}

.room-details h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.room-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-dark);
    background: rgba(26, 95, 79, 0.05);
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 500;
}

.room-details p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.amenities-list {
    list-style: none;
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.amenities-list li {
    padding: 0;
    padding-left: 22px;
    position: relative;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.amenities-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1rem;
    top: 1px;
}

.room-actions {
    margin-top: auto;
    display: flex;
    gap: 15px;
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.9rem;
    flex: 1;
    text-align: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

/* ========================================
   GALLERY SECTION
   ======================================== */

.gallery {
    padding: 90px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(26, 95, 79, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.gallery-item {
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition-slow);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border: 3px solid rgba(255,255,255,0.5);
}

.gallery-item:hover {
    transform: scale(1.05) translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border-color: var(--accent-color);
    z-index: 10;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 95, 79, 0.9) 0%, rgba(232, 167, 93, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-slow);
    backdrop-filter: blur(4px);
}

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

.gallery-overlay span {
    color: var(--bg-white);
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    transform: translateY(20px);
    transition: transform 0.4s ease 0.2s;
}

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

.gallery-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    font-size: 0.95rem;
}

/* ========================================
   LOCATION SECTION
   ======================================== */

.location {
    padding: 90px 0;
    background: 
        linear-gradient(to bottom, rgba(248, 249, 250, 0.97) 0%, rgba(233, 236, 239, 0.98) 100%),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=80') center/cover fixed;
    position: relative;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.location-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.address {
    background: var(--bg-white);
    padding: 20px 25px;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border: 2px solid rgba(26, 95, 79, 0.1);
}

.address p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 0.98rem;
}

.address p strong {
    color: var(--primary-color);
}

.location-details h4,
.nearby h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 15px;
    margin-top: 20px;
    font-size: 1.2rem;
}

.location-details ul,
.nearby ul {
    list-style: none;
}

.location-details li,
.nearby li {
    padding: 6px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
}

.location-details li::before,
.nearby li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.parking-info {
    margin-top: 20px;
    padding: 15px 18px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 10px;
    color: var(--text-dark);
    border-left: 4px solid var(--accent-color);
    font-size: 0.95rem;
}

.map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-box {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(26, 95, 79, 0.9), rgba(45, 139, 111, 0.9)),
                url('https://images.unsplash.com/photo-1524661135-423995f22d0b?w=800&q=80') center/cover;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border: 3px solid var(--bg-white);
    position: relative;
    overflow: hidden;
}

.map-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width=\"40\" height=\"40\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"20\" cy=\"20\" r=\"1\" fill=\"%23ffffff\" opacity=\"0.15\"/></svg>');
    pointer-events: none;
}

.map-box p:first-child {
    font-size: 3.5rem;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.map-box p:nth-child(2) {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.map-note {
    font-size: 0.95rem;
    opacity: 0.95;
}

/* ========================================
   REVIEWS SECTION
   ======================================== */

.reviews {
    padding: 90px 0;
    background: 
        linear-gradient(to bottom, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.98) 100%),
        url('https://images.unsplash.com/photo-1519974719765-e6559eac2575?w=1920&q=80') center/cover fixed;
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(232, 167, 93, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.review-card {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    padding: 35px 30px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: var(--transition-slow);
    border: 2px solid rgba(26, 95, 79, 0.1);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 4rem;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(26, 95, 79, 0.15);
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #ffffff 0%, #fffbf5 100%);
}

.stars {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(232, 167, 93, 0.3));
}

.review-text {
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.reviewer {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
}

.tripadvisor-note {
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact {
    padding: 90px 0;
    background: 
        linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(233, 236, 239, 0.97) 50%, rgba(248, 249, 250, 0.95) 100%),
        url('https://images.unsplash.com/photo-1464207687429-7505649dae38?w=1920&q=80') center/cover fixed;
    position: relative;
    overflow: hidden;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
}

.contact-details {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-item .icon {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.contact-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-item a:hover {
    color: var(--primary-dark);
}

.info-note {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.info-note p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.info-note strong {
    color: var(--primary-color);
}

.contact-form-container {
    position: relative;
}

.contact-form {
    background: var(--bg-white);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.12);
    border: 2px solid rgba(26, 95, 79, 0.1);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(26, 95, 79, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
    margin-top: 15px;
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 20px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 70px 50px;
    background: var(--bg-white);
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.12);
}

.form-success.show {
    display: block;
}

.success-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    margin: 0 auto 30px;
    box-shadow: 0 8px 24px rgba(26, 95, 79, 0.3);
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.form-success p {
    color: var(--text-light);
    font-size: 1.15rem;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--bg-white);
    padding: 50px 0 25px;
}

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

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--accent-light);
}

.footer-section p {
    opacity: 0.92;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-section ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-section a {
    opacity: 0.92;
    transition: var(--transition);
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-bottom p {
    opacity: 0.85;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.footer-credit {
    margin-top: 10px;
}

.footer-credit strong {
    color: var(--accent-light);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    color: var(--bg-white);
    opacity: 0.8;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-3px);
    color: var(--accent-light);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 9990;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* ========================================
   AI CHATBOT WIDGET
   ======================================== */

.chatbot-toggle {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bg-white);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(26, 95, 79, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    transition: var(--transition);
    opacity: 1;
    visibility: visible;
}

.chatbot-toggle.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(26, 95, 79, 0.5);
}

.chatbot-toggle .chat-icon {
    width: 28px;
    height: 28px;
}

.chatbot-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #e74c3c;
    color: var(--bg-white);
    font-size: 0.7rem;
    font-weight: bold;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-white);
}

.chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 360px;
    max-width: calc(100vw - 40px);
    height: 650px;
    max-height: calc(100vh - 140px);
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 24px 48px rgba(26, 95, 79, 0.15), 0 0 0 1px rgba(26, 95, 79, 0.08);
    z-index: 9999;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Chatbot Arrow - Removed as widget is now centered */

.chatbot-widget.active {
    display: flex;
}

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translate(-50%, -60%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.chatbot-header {
    background: linear-gradient(135deg, #1a5f4f 0%, #155242 100%);
    color: var(--bg-white);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-radius: 28px 28px 0 0;
    flex-shrink: 0;
}

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

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 2px solid rgba(255,255,255,0.3);
}

.chatbot-title h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.chatbot-status {
    font-size: 0.7rem;
    opacity: 0.9;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
}

.chatbot-status::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #2ecc71;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--bg-white);
    font-size: 1.8rem; /* Reduced size */
    cursor: pointer;
    width: 30px; /* Reduced size */
    height: 30px; /* Reduced size */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    line-height: 1;
}

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

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 28px 24px;
    background: #fafbfc;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

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

.chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(26, 95, 79, 0.15);
    border-radius: 10px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(26, 95, 79, 0.25);
}

.chatbot-message {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    animation: messageSlide 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.chatbot-message.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #1a5f4f, #2d8b6f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(26, 95, 79, 0.15);
}

.user-message .message-avatar {
    background: linear-gradient(135deg, #e8a75d, #f5c88d);
}

.message-content {
    max-width: 75%;
    background: #ffffff;
    padding: 14px 18px;
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: relative;
}

.user-message .message-content {
    background: linear-gradient(135deg, #1a5f4f 0%, #2d8b6f 100%);
    color: #ffffff;
    border-radius: 18px;
    border-bottom-right-radius: 4px;
    box-shadow: 0 2px 10px rgba(26, 95, 79, 0.25);
}

.bot-message .message-content {
    background: #ffffff;
    border: 1px solid #e8ecf0;
}

.message-content p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.6;
    color: inherit;
    word-wrap: break-word;
}

.message-time {
    font-size: 0.65rem;
    opacity: 0.65;
    display: block;
    margin-top: 6px;
    font-weight: 400;
}

.chatbot-typing {
    display: none;
    gap: 12px;
    align-items: flex-end;
    padding-left: 24px;
    margin-bottom: 20px;
}

.chatbot-typing.active {
    display: flex;
}

.typing-indicator {
    background: var(--bg-white);
    padding: 14px 18px;
    border-radius: 18px;
    border-bottom-left-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    gap: 5px;
}

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

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

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

@keyframes typingDot {
    0%, 60%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    30% {
        opacity: 1;
        transform: translateY(-5px);
    }
}

.chatbot-suggestions {
    padding: 8px 20px 10px;
    background: #fafbfc;
    border-top: 1px solid #e8ecf0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.suggestion-chip {
    background: #ffffff;
    border: 1px solid #d9dfe6;
    color: #1a5f4f;
    padding: 5px 12px;
    border-radius: 16px;
    font-size: 0.72rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-weight: 500;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.suggestion-chip:hover {
    background: linear-gradient(135deg, #1a5f4f, #2d8b6f);
    color: #ffffff;
    border-color: #1a5f4f;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(26, 95, 79, 0.2);
}

.chatbot-input-area {
    padding: 18px 24px 20px;
    background: #ffffff;
    border-top: 1px solid #e8ecf0;
    display: flex;
    gap: 12px;
    align-items: center;
}

.chatbot-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #d9dfe6;
    border-radius: 22px;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    outline: none;
    transition: all 0.2s ease;
    background: #fafbfc;
}

.chatbot-input:focus {
    border-color: #1a5f4f;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(26, 95, 79, 0.08);
}

.chatbot-input::placeholder {
    color: #94a3b8;
}

.chatbot-send {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #1a5f4f 0%, #2d8b6f 100%);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 3px 10px rgba(26, 95, 79, 0.25);
    flex-shrink: 0;
}

.chatbot-send:hover {
    background: linear-gradient(135deg, #155242 0%, #1a5f4f 100%);
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(26, 95, 79, 0.35);
}

.chatbot-send:active {
    transform: scale(1);
}

.chatbot-send:disabled {
    background: var(--border-color);
    cursor: not-allowed;
    transform: scale(1);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content h1 {
        font-size: 4.5rem;
    }
}

@media (max-width: 968px) {
    .hero {
        background-attachment: scroll;
    }

    .nav-menu {
        position: fixed;
        top: 75px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 75px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 35px;
        box-shadow: -4px 0 24px rgba(0,0,0,0.15);
        transition: var(--transition);
        align-items: flex-start;
        gap: 25px;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .room-card {
        grid-template-columns: 1fr;
    }
    
    .room-image {
        height: 300px;
    }
    
    .room-details {
        padding: 40px 35px;
    }
    
    .location-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .chatbot-widget {
        bottom: 90px;
        right: 20px;
        width: 340px;
        height: 500px;
    }
    
    .chatbot-toggle {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .about-content {
        padding: 0 15px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 35px 20px;
    }
    
    .about,
    .accommodation,
    .gallery,
    .location,
    .reviews,
    .contact {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .chatbot-widget {
        width: calc(100% - 40px);
        right: 20px;
        bottom: 90px;
        height: 60vh;
    }
}

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

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .nav-brand h2 {
        font-size: 1.5rem;
    }
    
    .chatbot-widget {
        width: 100%;
        right: 0;
        bottom: 0;
        border-radius: 20px 20px 0 0;
        height: 80vh;
        max-height: 80vh;
    }
    
    .chatbot-toggle {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .room-image {
        height: 250px;
    }
    
    .room-details {
        padding: 30px 20px;
    }
    
    .room-details h3 {
        font-size: 1.5rem;
    }
    
    .feature-item {
        padding: 25px 20px;
    }
}
