/* ===== Variables ===== */
:root {
    --green-dark: #1B3A2D;
    --green-mid: #2E6B4F;
    --green-light: #4A8A6B;
    --gold: #C8A951;
    --gold-dark: #A07830;
    --gold-light: #E0C270;
    --white: #FFFFFF;
    --cream: #F5EFE6;
    --cream-dark: #EDE4D8;
    --brown-dark: #1A0F07;
    --brown-mid: #8B6340;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #888;
    --gray-light: #F0EDE8;
    --shadow: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 12px 50px rgba(0,0,0,0.22);
    --transition: all 0.3s ease;
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Raleway', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; line-height: 1.7; }
h1, h2, h3, h4, h5 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; font-weight: 600; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { width: 100%; height: 100%; object-fit: cover; display: block; }
ul { list-style: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section-padding { padding: 100px 0; }

/* ===== Section Headers ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
    display: inline-block; font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--green-dark); margin-bottom: 16px; }
.section-divider {
    display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 20px;
}
.section-divider::before, .section-divider::after {
    content: ''; width: 60px; height: 1px; background: var(--gold);
}
.section-divider span { color: var(--gold); font-size: 1.1rem; }
.section-header p { font-size: 0.95rem; color: var(--text-mid); max-width: 600px; margin: 0 auto; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 34px; border-radius: 2px; font-size: 0.78rem;
    font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
    border: none; cursor: pointer; transition: var(--transition);
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,169,81,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.8); }
.btn-outline:hover { background: var(--white); color: var(--green-dark); }
.btn-green { background: var(--green-dark); color: var(--white); }
.btn-green:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ===== Navbar ===== */
#navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 22px 0; transition: var(--transition);
}
#navbar.scrolled {
    background: rgba(27,58,45,0.97); padding: 14px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.3); backdrop-filter: blur(10px);
}
.nav-container {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 2rem; max-width: 1280px; margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 54px; width: auto; object-fit: contain; display: block; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(255,255,255,0.82); position: relative;
}
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: var(--transition); }
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }
.nav-book { background: var(--gold) !important; color: var(--white) !important; padding: 10px 22px; border-radius: 2px; }
.nav-book:hover { background: var(--gold-dark) !important; }
.nav-book::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 26px; height: 2px; background: var(--white); transition: var(--transition); display: block; }

/* ===== Mobile Nav ===== */
.nav-mobile {
    display: none; position: fixed; top: 0; right: -320px; width: 300px; height: 100vh;
    background: var(--green-dark); z-index: 1100; padding: 80px 30px 40px;
    transition: right 0.35s ease; flex-direction: column; overflow-y: auto;
}
.nav-mobile.open { right: 0; }
.nav-overlay { display: none; position: fixed; inset: 0; z-index: 1050; background: rgba(0,0,0,0.6); }
.nav-overlay.open { display: block; }
.mobile-close { position: absolute; top: 22px; right: 22px; color: var(--white); font-size: 1.5rem; cursor: pointer; background: none; border: none; line-height: 1; }
.nav-mobile a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.8); }
.nav-mobile a:hover { color: var(--gold); padding-left: 6px; }
.nav-mobile .nav-book { margin-top: 20px; background: var(--gold) !important; border-radius: 2px; display: block; text-align: center; padding: 14px 20px; border-bottom: none !important; }

/* ===== Hero ===== */
#hero { position: relative; height: 100vh; min-height: 680px; overflow: hidden; }
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center; background-attachment: fixed;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(27,58,45,0.78) 0%, rgba(0,0,0,0.38) 55%, rgba(160,120,48,0.12) 100%);
}
.hero-content {
    position: relative; z-index: 2; height: 100%;
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; text-align: center; padding: 0 2rem; padding-top: 80px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(200,169,81,0.12); border: 1px solid rgba(200,169,81,0.45);
    padding: 8px 22px; border-radius: 30px; font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-light);
    margin-bottom: 22px; animation: fadeInDown 0.8s ease 0.2s both;
}
.hero-logo-wrap { margin-bottom: 16px; animation: fadeInDown 0.8s ease 0.3s both; }
.hero-logo-wrap svg { filter: drop-shadow(0 0 24px rgba(200,169,81,0.3)); }
.hero-title {
    font-size: clamp(3rem, 7vw, 6.5rem); color: var(--white); font-weight: 700;
    text-shadow: 0 2px 30px rgba(0,0,0,0.25); letter-spacing: 0.04em;
    animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-subtitle {
    font-size: clamp(0.75rem, 1.5vw, 0.95rem); color: var(--gold-light);
    letter-spacing: 0.45em; text-transform: uppercase; font-weight: 500;
    margin-bottom: 14px; animation: fadeInUp 0.8s ease 0.5s both;
}
.hero-tagline {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(1.1rem, 2.5vw, 1.7rem);
    color: rgba(255,255,255,0.88); font-style: italic; margin-bottom: 10px;
    animation: fadeInUp 0.8s ease 0.55s both;
}
.hero-divider {
    display: flex; align-items: center; gap: 14px; margin-bottom: 36px;
    animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-divider span { width: 60px; height: 1px; background: rgba(200,169,81,0.7); }
.hero-divider em { color: var(--gold); font-style: normal; font-size: 1rem; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; animation: fadeInUp 0.8s ease 0.7s both; }
.hero-scroll {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.65); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
    animation: bounce 2.2s infinite;
}
.hero-scroll .arrow { width: 20px; height: 20px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(45deg); }

/* ===== About ===== */
#about { background: var(--cream); padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; height: 520px; }
.about-img-main { position: absolute; top: 0; left: 0; width: 76%; height: 82%; border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { height: 100%; }
.about-img-secondary { position: absolute; bottom: 0; right: 0; width: 52%; height: 52%; border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid var(--cream); }
.about-img-secondary img { height: 100%; }
.about-badge {
    position: absolute; top: 46%; right: -10px; transform: translateY(-50%);
    width: 96px; height: 96px; background: var(--gold); border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; color: var(--white); box-shadow: var(--shadow); z-index: 3;
}
.about-badge .num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.about-badge .lbl { font-size: 0.5rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.9; padding: 0 6px; text-align: center; }
.about-content .section-header { text-align: left; }
.about-content .section-divider { justify-content: flex-start; }
.about-text p { font-size: 0.92rem; color: var(--text-mid); margin-bottom: 16px; line-height: 1.85; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0; }
.about-feature { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; font-weight: 600; color: var(--green-dark); }
.about-feature::before { content: '✓'; width: 20px; height: 20px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 0.65rem; flex-shrink: 0; }

/* ===== Stats Bar ===== */
.stats-bar { background: var(--green-dark); padding: 44px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.65); }

/* ===== Rooms ===== */
#rooms { padding: 100px 0; background: var(--white); }
.rooms-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.room-card { overflow: hidden; border-radius: 4px; box-shadow: var(--shadow); background: var(--white); transition: var(--transition); }
.room-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.room-img { position: relative; height: 270px; overflow: hidden; }
.room-img img { transition: transform 0.65s ease; height: 100%; }
.room-card:hover .room-img img { transform: scale(1.06); }
.room-badge { position: absolute; top: 16px; left: 16px; background: var(--gold); color: var(--white); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 6px 14px; border-radius: 2px; z-index: 2; }
.room-info { padding: 26px; }
.room-info h3 { font-size: 1.55rem; color: var(--green-dark); margin-bottom: 8px; }
.room-info p { font-size: 0.875rem; color: var(--text-mid); margin-bottom: 16px; line-height: 1.75; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.amenity { display: flex; align-items: center; gap: 5px; font-size: 0.72rem; color: var(--text-mid); background: var(--gray-light); padding: 4px 10px; border-radius: 20px; }
.room-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--cream-dark); }
.price-label { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }
.price-value { font-family: 'Cormorant Garamond', serif; font-size: 1.65rem; font-weight: 700; color: var(--green-dark); line-height: 1.1; }
.price-value span { font-size: 0.78rem; color: var(--text-light); font-family: 'Raleway', sans-serif; font-weight: 400; }

/* ===== Experiences ===== */
#experiences { padding: 100px 0; background: var(--cream); }
.experiences-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.experience-card { position: relative; height: 400px; overflow: hidden; border-radius: 4px; cursor: pointer; }
.experience-card.featured { grid-column: span 2; height: 500px; }
.experience-card img { height: 100%; transition: transform 0.65s ease; }
.experience-card:hover img { transform: scale(1.07); }
.exp-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(27,58,45,0.92) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
    transition: var(--transition);
}
.experience-card:hover .exp-overlay { background: linear-gradient(to top, rgba(27,58,45,0.96) 0%, rgba(27,58,45,0.45) 70%, rgba(27,58,45,0.1) 100%); }
.exp-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px; color: var(--white); }
.exp-tag { font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-light); display: block; margin-bottom: 8px; }
.exp-content h3 { font-size: 1.55rem; margin-bottom: 10px; }
.exp-content p { font-size: 0.85rem; color: rgba(255,255,255,0.8); line-height: 1.65; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, opacity 0.4s ease; opacity: 0; }
.experience-card:hover .exp-content p { max-height: 120px; opacity: 1; }
.exp-icon { width: 44px; height: 44px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; font-size: 1.1rem; }

/* ===== Gallery ===== */
#gallery { padding: 100px 0; background: var(--green-dark); }
#gallery .section-header h2 { color: var(--white); }
#gallery .section-header p { color: rgba(255,255,255,0.65); }
#gallery .section-divider::before, #gallery .section-divider::after { background: rgba(200,169,81,0.5); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.gallery-item { overflow: hidden; border-radius: 2px; cursor: pointer; position: relative; height: 200px; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; height: 408px; }
.gallery-item:nth-child(6) { grid-column: span 2; }
.gallery-item:nth-child(11) { grid-column: span 2; }
.gallery-item img { height: 100%; transition: transform 0.5s ease; }
.gallery-overlay { position: absolute; inset: 0; background: rgba(27,58,45,0); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.gallery-overlay svg { color: var(--white); opacity: 0; transition: var(--transition); width: 30px; height: 30px; }
.gallery-item:hover .gallery-overlay { background: rgba(27,58,45,0.55); }
.gallery-item:hover .gallery-overlay svg { opacity: 1; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-load-more { text-align: center; margin-top: 40px; }

/* ===== Testimonials ===== */
#testimonials { padding: 100px 0; background: var(--cream); }
.testimonials-wrap { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.55s ease; }
.testimonial-slide { min-width: 100%; padding: 0 10px; }
.testimonial-card {
    max-width: 820px; margin: 0 auto; text-align: center;
    padding: 60px 80px; background: var(--white); border-radius: 4px;
    box-shadow: var(--shadow); position: relative;
}
.testimonial-card::before {
    content: '\201C'; position: absolute; top: 10px; left: 36px;
    font-family: 'Cormorant Garamond', serif; font-size: 9rem;
    color: var(--gold); opacity: 0.12; line-height: 1;
}
.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 5px; margin-bottom: 20px; }
.t-text { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic; color: var(--text-dark); line-height: 1.85; margin-bottom: 30px; }
.author-name { font-weight: 700; font-size: 0.85rem; color: var(--green-dark); letter-spacing: 0.12em; text-transform: uppercase; }
.author-loc { font-size: 0.78rem; color: var(--text-light); margin-top: 4px; }
.t-nav { display: flex; justify-content: center; gap: 14px; margin-top: 40px; align-items: center; }
.t-btn { width: 44px; height: 44px; border: 2px solid var(--green-dark); background: transparent; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); color: var(--green-dark); }
.t-btn:hover { background: var(--green-dark); color: var(--white); }
.t-dots { display: flex; gap: 8px; align-items: center; }
.t-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cream-dark); cursor: pointer; transition: var(--transition); border: none; }
.t-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ===== Booking ===== */
#booking { padding: 100px 0; background: var(--green-dark); position: relative; overflow: hidden; }
.booking-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.08; }
.booking-inner { position: relative; z-index: 1; }
#booking .section-header h2 { color: var(--white); }
#booking .section-header p { color: rgba(255,255,255,0.65); }
#booking .section-divider::before, #booking .section-divider::after { background: rgba(200,169,81,0.5); }
.booking-form-wrap {
    max-width: 920px; margin: 0 auto;
    background: rgba(255,255,255,0.05); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 50px;
}
.booking-form { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.col2 { grid-column: span 2; }
.form-group.col3 { grid-column: span 3; }
.form-group label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); }
.form-group input, .form-group select, .form-group textarea {
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.18);
    border-radius: 2px; padding: 14px 16px; color: var(--white); font-size: 0.875rem;
    font-family: 'Raleway', sans-serif; transition: var(--transition); outline: none;
    -webkit-appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: rgba(255,255,255,0.1); }
.form-group select option { background: var(--green-dark); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { grid-column: span 3; display: flex; justify-content: center; margin-top: 10px; }
.booking-success { display: none; text-align: center; padding: 30px; color: var(--white); }
.booking-success h3 { font-size: 1.8rem; color: var(--gold); margin-bottom: 12px; }

/* ===== Contact ===== */
#contact { padding: 100px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h3 { font-size: 1.6rem; color: var(--green-dark); margin-bottom: 14px; }
.contact-info p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 32px; line-height: 1.85; }
.contact-items { display: flex; flex-direction: column; gap: 22px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.c-icon { width: 44px; height: 44px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); font-size: 1rem; }
.c-text h4 { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; font-family: 'Raleway', sans-serif; }
.c-text p, .c-text a { font-size: 0.9rem; color: var(--text-dark); font-weight: 500; }
.c-text a:hover { color: var(--gold); }
.map-wrap { height: 420px; border-radius: 4px; overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ===== Footer ===== */
footer { background: var(--brown-dark); padding: 70px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.85; margin: 18px 0 24px; max-width: 270px; }
.social-links { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.07); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: var(--transition); font-size: 0.85rem; }
.social-link:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.footer-col h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--white); margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--gold); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.83rem; color: rgba(255,255,255,0.5); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-line { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-line a, .footer-contact-line span { font-size: 0.83rem; color: rgba(255,255,255,0.5); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.footer-contact-line a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: var(--gold); }

/* ===== Floating Buttons ===== */
.whatsapp-btn {
    position: fixed; bottom: 30px; right: 30px; z-index: 999;
    width: 56px; height: 56px; background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 18px rgba(37,211,102,0.45); transition: var(--transition);
    animation: wa-pulse 2.5s infinite;
}
.whatsapp-btn:hover { background: #1da851; transform: scale(1.1); }
.whatsapp-btn svg { width: 28px; height: 28px; fill: var(--white); }
.call-btn {
    position: fixed; bottom: 100px; right: 30px; z-index: 999;
    width: 56px; height: 56px; background: var(--green-mid); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 18px rgba(46,107,79,0.5); transition: var(--transition);
}
.call-btn:hover { background: var(--green-dark); transform: scale(1.1); }
.call-btn svg { width: 26px; height: 26px; fill: var(--white); }
#back-to-top {
    position: fixed; bottom: 170px; right: 30px; z-index: 999;
    width: 44px; height: 44px; background: var(--green-dark); border-radius: 2px;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    opacity: 0; transform: translateY(16px); transition: var(--transition);
    border: none; color: var(--white);
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--gold); }
/* ===== Hero Logo Image ===== */
.hero-logo-wrap img.hero-logo-img {
    width: 130px; height: auto; object-fit: contain; display: block; margin: 0 auto;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
}

/* ===== Lightbox ===== */
.lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.94); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 88vw; max-height: 84vh; object-fit: contain; width: auto; height: auto; border-radius: 2px; }
.lb-close { position: absolute; top: 20px; right: 24px; color: var(--white); font-size: 2.2rem; cursor: pointer; opacity: 0.7; transition: var(--transition); line-height: 1; background: none; border: none; }
.lb-close:hover { opacity: 1; color: var(--gold); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); color: var(--white); font-size: 2.5rem; cursor: pointer; opacity: 0.6; transition: var(--transition); background: none; border: none; padding: 20px 16px; }
.lb-nav:hover { opacity: 1; }
.lb-prev { left: 10px; }
.lb-next { right: 10px; }
.lb-counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.6); font-size: 0.8rem; letter-spacing: 0.1em; }

/* ===== Animations ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(9px); } }
@keyframes wa-pulse { 0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,0.45); } 50% { box-shadow: 0 4px 28px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); } }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== Page Hero Banner (inner pages) ===== */
.page-hero {
    position: relative; padding: 170px 0 90px;
    background-size: cover; background-position: center; overflow: hidden;
    min-height: 400px; display: flex; align-items: center;
}
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(27,58,45,0.88) 0%, rgba(0,0,0,0.52) 100%); }
.page-hero-content { position: relative; z-index: 1; text-align: center; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); color: var(--white); margin-bottom: 14px; animation: fadeInUp 0.7s ease both; }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.78); margin-bottom: 16px; animation: fadeInUp 0.7s ease 0.1s both; font-style: italic; font-family: 'Cormorant Garamond', serif; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); animation: fadeInUp 0.7s ease 0.2s both; }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { color: rgba(255,255,255,0.35); }

/* ===== About Page ===== */
.about-story { padding: 90px 0; background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.story-images { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; height: 460px; }
.story-img { border-radius: 4px; overflow: hidden; }
.story-img:first-child { grid-row: span 2; }
.story-img img { height: 100%; }
.about-values { padding: 90px 0; background: var(--cream); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card { text-align: center; padding: 42px 28px; background: var(--white); border-radius: 4px; box-shadow: var(--shadow); transition: var(--transition); }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-icon { width: 66px; height: 66px; background: linear-gradient(135deg, var(--green-mid), var(--green-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.5rem; }
.value-card h3 { font-size: 1.3rem; color: var(--green-dark); margin-bottom: 12px; }
.value-card p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.8; }
.about-gir { padding: 90px 0; background: var(--green-dark); position: relative; overflow: hidden; }
.about-gir-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.08; }
.gir-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.gir-text .section-tag { color: var(--gold); }
.gir-text h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--white); margin-bottom: 20px; }
.gir-text p { color: rgba(255,255,255,0.72); font-size: 0.92rem; line-height: 1.88; margin-bottom: 14px; }
.gir-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 26px; }
.gir-fact { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; padding: 16px; }
.gir-fact h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold); margin-bottom: 4px; }
.gir-fact p { font-size: 0.72rem; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; text-transform: uppercase; }
.gir-image { border-radius: 4px; overflow: hidden; height: 460px; box-shadow: var(--shadow-lg); }
.gir-image img { height: 100%; }

/* ===== Rooms Page ===== */
.rooms-page { padding: 80px 0 100px; background: var(--white); }
.rooms-list { display: flex; flex-direction: column; gap: 50px; }
.room-detail { display: grid; grid-template-columns: 1fr 1fr; border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-lg); }
.room-detail.reverse { direction: rtl; }
.room-detail.reverse > * { direction: ltr; }
.room-detail-img { height: 460px; overflow: hidden; }
.room-detail-img img { height: 100%; transition: transform 0.7s ease; }
.room-detail:hover .room-detail-img img { transform: scale(1.05); }
.room-detail-body { padding: 50px; background: var(--cream); display: flex; flex-direction: column; justify-content: center; }
.room-detail-body .room-badge { position: static; display: inline-block; margin-bottom: 18px; width: fit-content; }
.room-detail-body h2 { font-size: 2.2rem; color: var(--green-dark); margin-bottom: 12px; }
.room-detail-body > p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.88; margin-bottom: 22px; }
.room-amenities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 26px; }
.ra-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-mid); }
.ra-item::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.room-price-bar { display: flex; align-items: center; justify-content: space-between; padding-top: 22px; border-top: 1px solid var(--cream-dark); }
.room-price-display { font-family: 'Cormorant Garamond', serif; font-size: 2.3rem; font-weight: 700; color: var(--green-dark); line-height: 1; }
.room-price-display small { font-size: 0.88rem; color: var(--text-light); font-family: 'Raleway', sans-serif; font-weight: 400; }

/* ===== Experiences Page ===== */
.experiences-page { padding: 80px 0 100px; background: var(--white); }
.exp-list { display: flex; flex-direction: column; gap: 50px; }
.exp-detail { display: grid; grid-template-columns: 1fr 1fr; border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-lg); }
.exp-detail.reverse { direction: rtl; }
.exp-detail.reverse > * { direction: ltr; }
.exp-detail-img { height: 440px; overflow: hidden; }
.exp-detail-img img { height: 100%; transition: transform 0.7s ease; }
.exp-detail:hover .exp-detail-img img { transform: scale(1.05); }
.exp-detail-body { padding: 50px; background: var(--cream); display: flex; flex-direction: column; justify-content: center; }
.exp-detail-body .exp-tag { display: inline-block; margin-bottom: 10px; }
.exp-detail-body h2 { font-size: 2rem; color: var(--green-dark); margin-bottom: 14px; }
.exp-detail-body > p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.88; margin-bottom: 20px; }
.exp-includes h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 10px; }
.exp-includes ul { display: flex; flex-direction: column; gap: 7px; }
.exp-includes li { font-size: 0.85rem; color: var(--text-mid); display: flex; align-items: flex-start; gap: 8px; }
.exp-includes li::before { content: '→'; color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.exp-timing { display: flex; gap: 14px; margin-top: 22px; flex-wrap: wrap; }
.exp-timing-badge { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--text-mid); background: var(--white); padding: 7px 16px; border-radius: 20px; border: 1px solid var(--cream-dark); }

/* ===== Gallery Page ===== */
.gallery-page-section { padding: 60px 0 100px; background: var(--white); }
.gallery-filter { display: flex; justify-content: center; gap: 10px; margin-bottom: 44px; flex-wrap: wrap; }
.filter-btn { padding: 9px 24px; border: 2px solid var(--green-dark); background: transparent; border-radius: 30px; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-dark); cursor: pointer; transition: var(--transition); }
.filter-btn.active, .filter-btn:hover { background: var(--green-dark); color: var(--white); }
.gallery-masonry { columns: 4; column-gap: 12px; }
.gal-item { break-inside: avoid; margin-bottom: 12px; border-radius: 3px; overflow: hidden; cursor: pointer; position: relative; display: block; }
.gal-item img { width: 100%; height: auto; display: block; transition: transform 0.55s ease; }
.gal-item:hover img { transform: scale(1.04); }
.gal-overlay { position: absolute; inset: 0; background: rgba(27,58,45,0); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.gal-overlay svg { opacity: 0; transition: var(--transition); color: var(--white); width: 32px; height: 32px; }
.gal-item:hover .gal-overlay { background: rgba(27,58,45,0.45); }
.gal-item:hover .gal-overlay svg { opacity: 1; }

/* ===== Booking Page ===== */
.booking-page-section { padding: 80px 0 100px; background: var(--white); }
.booking-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 48px; align-items: start; }
.booking-card { background: var(--cream); border-radius: 6px; padding: 50px; box-shadow: var(--shadow); }
.booking-card h3 { font-size: 1.9rem; color: var(--green-dark); margin-bottom: 8px; }
.booking-card > p { font-size: 0.875rem; color: var(--text-mid); margin-bottom: 32px; }
.bform { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.bform .fg { display: flex; flex-direction: column; gap: 8px; }
.bform .fg.c2 { grid-column: span 2; }
.bform label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-dark); }
.bform input, .bform select, .bform textarea { background: var(--white); border: 1px solid var(--cream-dark); border-radius: 2px; padding: 13px 16px; color: var(--text-dark); font-size: 0.875rem; font-family: 'Raleway', sans-serif; transition: var(--transition); outline: none; -webkit-appearance: none; }
.bform input:focus, .bform select:focus, .bform textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,169,81,0.12); }
.bform textarea { resize: vertical; min-height: 100px; }
.bform .submit-row { grid-column: span 2; display: flex; justify-content: flex-start; margin-top: 8px; }
.booking-sidebar { display: flex; flex-direction: column; gap: 22px; }
.binfo-card { background: var(--cream); border-radius: 6px; padding: 28px; box-shadow: var(--shadow); }
.binfo-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--green-dark); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--cream-dark); }
.policy-list { display: flex; flex-direction: column; gap: 10px; }
.policy-item { display: flex; gap: 8px; font-size: 0.83rem; color: var(--text-mid); line-height: 1.6; }
.policy-item::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.rate-table { display: flex; flex-direction: column; }
.rate-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--cream-dark); font-size: 0.85rem; }
.rate-row:last-child { border-bottom: none; }
.rate-row span:first-child { color: var(--text-mid); }
.rate-row span:last-child { font-weight: 700; color: var(--green-dark); }
.booking-success { display: none; text-align: center; padding: 40px; }
.booking-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--green-dark); margin-bottom: 12px; }
.booking-success p { color: var(--text-mid); font-size: 0.9rem; }

/* ===== Contact Page ===== */
.contact-page-section { padding: 80px 0 100px; background: var(--white); }
.contact-cards-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 70px; }
.cc-card { text-align: center; padding: 44px 24px; background: var(--cream); border-radius: 4px; box-shadow: var(--shadow); transition: var(--transition); }
.cc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.cc-icon { width: 66px; height: 66px; background: var(--green-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 1.5rem; }
.cc-card h3 { font-size: 1.2rem; color: var(--green-dark); margin-bottom: 10px; }
.cc-card p, .cc-card a { font-size: 0.875rem; color: var(--text-mid); display: block; line-height: 1.7; }
.cc-card a:hover { color: var(--gold); }
.contact-lower { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-form-col h3 { font-size: 1.7rem; color: var(--green-dark); margin-bottom: 24px; }
.cform { display: flex; flex-direction: column; gap: 18px; }
.cform input, .cform textarea { background: var(--cream); border: 1px solid var(--cream-dark); border-radius: 2px; padding: 14px 16px; color: var(--text-dark); font-size: 0.875rem; font-family: 'Raleway', sans-serif; outline: none; transition: var(--transition); }
.cform input:focus, .cform textarea:focus { border-color: var(--gold); }
.cform textarea { resize: vertical; min-height: 130px; }
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-map-col h3 { font-size: 1.7rem; color: var(--green-dark); margin-bottom: 24px; }
.cmap { height: 320px; border-radius: 4px; overflow: hidden; box-shadow: var(--shadow); margin-bottom: 24px; }
.cmap iframe { width: 100%; height: 100%; border: none; }
.working-hours { background: var(--cream); border-radius: 4px; padding: 24px; }
.working-hours h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--green-dark); margin-bottom: 14px; }
.wh-row { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 8px 0; border-bottom: 1px solid var(--cream-dark); color: var(--text-mid); }
.wh-row:last-child { border-bottom: none; }
.wh-row span:last-child { font-weight: 600; color: var(--green-dark); }

/* ===== Booking CTA strip (home page) ===== */
.booking-strip { background: var(--gold); padding: 50px 0; }
.booking-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.booking-strip h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--white); }
.booking-strip p { color: rgba(255,255,255,0.88); font-size: 0.9rem; }
.booking-strip .btn-outline { border-color: var(--white); color: var(--white); }
.booking-strip .btn-outline:hover { background: var(--white); color: var(--gold-dark); }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-images { height: 420px; max-width: 500px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .experiences-grid { grid-template-columns: repeat(2, 1fr); }
    .experience-card.featured { grid-column: span 2; }
}
@media (max-width: 900px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-mobile { display: flex; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-item:nth-child(1) { height: 304px; }
    .gallery-item:nth-child(6), .gallery-item:nth-child(11) { grid-column: span 1; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .rooms-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1100px) {
    .story-grid, .gir-inner, .booking-layout { grid-template-columns: 1fr; gap: 40px; }
    .story-images { height: 350px; }
    .gir-image { height: 360px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-masonry { columns: 3; }
    .contact-lower { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .room-detail, .exp-detail { grid-template-columns: 1fr; }
    .room-detail.reverse, .exp-detail.reverse { direction: ltr; }
    .room-detail-img, .exp-detail-img { height: 320px; }
    .contact-cards-row { grid-template-columns: repeat(2, 1fr); }
    .gallery-masonry { columns: 3; }
    .bform { grid-template-columns: 1fr; }
    .bform .fg.c2, .bform .submit-row { grid-column: span 1; }
}
@media (max-width: 680px) {
    .section-padding { padding: 70px 0; }
    .hero-title { font-size: 2.8rem; }
    .experiences-grid { grid-template-columns: 1fr; }
    .experience-card.featured { grid-column: span 1; height: 380px; }
    .experience-card { height: 320px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(1) { grid-column: span 2; height: 260px; }
    .booking-form { grid-template-columns: 1fr; }
    .form-group.col2, .form-group.col3, .form-submit { grid-column: span 1; }
    .booking-form-wrap { padding: 30px 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .testimonial-card { padding: 40px 24px; }
    .about-images { height: 340px; }
    .story-images { height: 280px; }
    .values-grid { grid-template-columns: 1fr; }
    .contact-cards-row { grid-template-columns: 1fr; }
    .gallery-masonry { columns: 2; }
    .cform-row { grid-template-columns: 1fr; }
    .room-detail-body, .exp-detail-body { padding: 28px 22px; }
    .room-amenities-grid { grid-template-columns: 1fr; }
    .booking-card { padding: 30px 22px; }
}
@media (max-width: 420px) {
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; justify-content: center; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-masonry { columns: 2; }
}
