/* ===== 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; }
}



.luxury-story{
    background:linear-gradient(180deg,var(--cream),#fff);
}

.luxury-resort-layout{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:60px;
    align-items:center;
}

.luxury-main-image{
    height:560px;
    border-radius:14px;
    overflow:hidden;
    box-shadow:var(--shadow-lg);
    margin-bottom:20px;
}

.luxury-main-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:all .6s ease;
}

.luxury-thumbs{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
}

.luxury-thumb{
    height:110px;
    border-radius:10px;
    overflow:hidden;
    cursor:pointer;
    opacity:.6;
    border:2px solid transparent;
    transition:all .35s ease;
}

.luxury-thumb:hover{
    opacity:1;
    transform:translateY(-5px);
}

.luxury-thumb.active{
    opacity:1;
    border-color:var(--gold);
}

.luxury-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.luxury-info-card{
    background:#fff;
    padding:60px;
    border-radius:16px;
    box-shadow:var(--shadow-lg);
    position:relative;
}

.luxury-info-card::before{
    content:'';
    position:absolute;
    top:-20px;
    left:-20px;
    width:90px;
    height:90px;
    background:var(--gold);
    opacity:.08;
    border-radius:50%;
}

.luxury-info-card h2{
    font-size:3rem;
    color:var(--green-dark);
    margin:18px 0;
}

.luxury-info-card p{
    font-size:.92rem;
    color:var(--text-mid);
    line-height:1.9;
    margin-bottom:18px;
}

.luxury-feature-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin:30px 0;
}

.luxury-feature-item{
    background:var(--cream);
    padding:14px 18px;
    border-radius:30px;
    font-size:.82rem;
    font-weight:600;
    color:var(--green-dark);
}

@media(max-width:900px){
    .luxury-resort-layout{
        grid-template-columns:1fr;
    }

    .luxury-main-image{
        height:380px;
    }

    .luxury-info-card{
        padding:30px;
    }

    .luxury-info-card h2{
        font-size:2.2rem;
    }

    .luxury-thumbs{
        grid-template-columns:repeat(2,1fr);
    }
}

.premium-amenities{
    padding:120px 0;
    background:
        radial-gradient(circle at top left, rgba(200,169,81,0.18), transparent 28%),
        radial-gradient(circle at bottom right, rgba(46,107,79,0.10), transparent 30%),
        linear-gradient(135deg, #fffdf9 0%, #f8f3eb 45%, #f5efe6 100%);
    position:relative;
    overflow:hidden;
}

.premium-amenities::before{
    content:'';
    position:absolute;
    top:-120px;
    right:-100px;
    width:320px;
    height:320px;
    background:rgba(200,169,81,.08);
    border-radius:50%;
    filter:blur(50px);
}

.premium-amenities::after{
    content:'';
    position:absolute;
    bottom:-100px;
    left:-80px;
    width:280px;
    height:280px;
    background:rgba(46,107,79,.08);
    border-radius:50%;
    filter:blur(45px);
}

.premium-amenities .container{
    position:relative;
    z-index:2;
}

.premium-amenities-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.premium-card{
    background:rgba(255,255,255,.78);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,.9);
    padding:45px 35px;
    border-radius:22px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    transition:all .45s ease;
    position:relative;
    overflow:hidden;
}

.premium-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,var(--gold),var(--gold-light),transparent);
}

.premium-card:hover{
    transform:translateY(-14px);
    box-shadow:0 25px 60px rgba(0,0,0,.14);
    background:rgba(255,255,255,.92);
}

.premium-icon{
    width:74px;
    height:74px;
    border-radius:22px;
    background:linear-gradient(135deg,#ffffff,var(--cream));
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:24px;
    color:var(--green-dark);
    box-shadow:0 12px 28px rgba(0,0,0,.08);
    border:1px solid rgba(255,255,255,.9);
}

.premium-icon svg{
    width:30px;
    height:30px;
}

.premium-card h3{
    font-size:1.65rem;
    color:var(--green-dark);
    margin-bottom:14px;
}

.premium-card p{
    font-size:.9rem;
    color:var(--text-mid);
    line-height:1.85;
}

.premium-card:hover .premium-icon{
    transform:scale(1.08) rotate(4deg);
    transition:.35s ease;
}

@media(max-width:900px){
    .premium-amenities-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:680px){
    .premium-amenities{
        padding:80px 0;
    }

    .premium-amenities-grid{
        grid-template-columns:1fr;
    }

    .premium-card{
        padding:35px 25px;
    }
}

/* PREMIUM STATS */
.luxury-stats-section{
    padding:110px 0;
    background:
        radial-gradient(circle at top right, rgba(200,169,81,0.16), transparent 25%),
        radial-gradient(circle at bottom left, rgba(46,107,79,0.08), transparent 30%),
        linear-gradient(135deg,#fffdf9 0%, #f8f3eb 45%, #f5efe6 100%);
    position:relative;
    overflow:hidden;
}

.luxury-stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.luxury-stat-card{
    background:rgba(255,255,255,.82);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,.9);
    padding:40px 25px;
    border-radius:22px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:all .4s ease;
}

.luxury-stat-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 55px rgba(0,0,0,.14);
}

.luxury-stat-icon{
    width:72px;
    height:72px;
    border-radius:20px;
    background:linear-gradient(135deg,var(--white),var(--cream));
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    color:var(--green-dark);
    box-shadow:0 10px 24px rgba(0,0,0,.08);
}

.luxury-stat-icon svg{
    width:30px;
    height:30px;
}

.luxury-stat-number{
    font-family:'Cormorant Garamond', serif;
    font-size:3.2rem;
    font-weight:700;
    color:var(--green-dark);
    line-height:1;
    margin-bottom:10px;
}

.luxury-stat-number::after{
    content:"+";
    color:var(--gold);
}

.luxury-stat-label{
    font-size:.76rem;
    font-weight:700;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:var(--text-mid);
}

/* PREMIUM EXPERIENCES */
.luxury-experiences{
    padding:120px 0;
    background:#fff;
}

.luxury-experience-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.luxury-exp-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:all .45s ease;
}

.luxury-exp-card:hover{
    transform:translateY(-14px);
    box-shadow:0 28px 65px rgba(0,0,0,.14);
}

.luxury-exp-image{
    position:relative;
    height:280px;
    overflow:hidden;
}

.luxury-exp-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .7s ease;
}

.luxury-exp-card:hover .luxury-exp-image img{
    transform:scale(1.08);
}

.luxury-exp-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(27,58,45,.75), transparent);
}

.luxury-exp-badge{
    position:absolute;
    top:20px;
    left:20px;
    background:rgba(255,255,255,.92);
    color:var(--green-dark);
    font-size:.68rem;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    padding:8px 16px;
    border-radius:30px;
}

.luxury-exp-content{
    padding:32px;
}

.luxury-exp-content h3{
    font-size:1.9rem;
    color:var(--green-dark);
    margin-bottom:14px;
}

.luxury-exp-content p{
    font-size:.9rem;
    color:var(--text-mid);
    line-height:1.8;
    margin-bottom:20px;
}

.luxury-exp-list{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-bottom:24px;
}

.luxury-exp-list li{
    font-size:.85rem;
    color:var(--text-mid);
    position:relative;
    padding-left:20px;
}

.luxury-exp-list li::before{
    content:'';
    position:absolute;
    left:0;
    top:9px;
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--gold);
}

.luxury-exp-meta{
    display:flex;
    justify-content:space-between;
    gap:10px;
    padding-top:20px;
    border-top:1px solid var(--cream-dark);
}

.luxury-exp-meta span{
    font-size:.75rem;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:var(--green-dark);
}

/* RESPONSIVE */
@media(max-width:1000px){
    .luxury-stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .luxury-experience-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:680px){
    .luxury-stats-grid{
        grid-template-columns:1fr;
    }

    .luxury-stats-section,
    .luxury-experiences{
        padding:80px 0;
    }

    .luxury-exp-content{
        padding:24px;
    }

    .luxury-exp-content h3{
        font-size:1.5rem;
    }
}
/* PREMIUM WHY SECTION */
.premium-why{
    padding:120px 0;
    background:
        radial-gradient(circle at top right, rgba(200,169,81,.10), transparent 25%),
        linear-gradient(135deg,#fffefb 0%, #f9f4ec 50%, #f6eee4 100%);
    position:relative;
}

.premium-why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.premium-why-card{
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,.95);
    border-radius:24px;
    padding:45px 35px;
    text-align:center;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    transition:all .45s ease;
}

.premium-why-card:hover{
    transform:translateY(-14px);
    box-shadow:0 28px 70px rgba(0,0,0,.14);
}

.premium-why-icon{
    width:78px;
    height:78px;
    border-radius:22px;
    margin:0 auto 22px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#fff,var(--cream));
    box-shadow:0 10px 28px rgba(0,0,0,.08);
    color:var(--green-dark);
}

.premium-why-icon svg{
    width:34px;
    height:34px;
}

.premium-why-card h3{
    font-size:1.5rem;
    color:var(--green-dark);
    margin-bottom:14px;
}

.premium-why-card p{
    color:var(--text-mid);
    font-size:.92rem;
    line-height:1.8;
}

/* ULTRA CTA */
.ultra-cta{
    padding:100px 0;
    background:#fff;
}

.ultra-cta-box{
    background:
        linear-gradient(135deg, rgba(27,58,45,.96), rgba(46,107,79,.92)),
        url('WhatsApp Image 2026-05-04 at 2.33.15 PM.jpeg');
    background-size:cover;
    background-position:center;
    border-radius:28px;
    padding:80px 70px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    box-shadow:0 30px 70px rgba(0,0,0,.18);
    position:relative;
    overflow:hidden;
}

.ultra-cta-box::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.15);
}

.ultra-cta-content,
.ultra-cta-actions{
    position:relative;
    z-index:2;
}

.ultra-cta-content h2{
    font-size:3.2rem;
    color:white;
    margin:18px 0;
}

.ultra-cta-content p{
    color:rgba(255,255,255,.82);
    max-width:600px;
    line-height:1.9;
}

.ultra-cta-actions{
    display:flex;
    gap:18px;
}

/* PREMIUM FOOTER */
.premium-footer{
    background:#12241d;
    padding:90px 0 30px;
}

.premium-footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}

.premium-footer-brand img{
    width:170px;
    margin-bottom:20px;
}

.premium-footer-brand p{
    color:rgba(255,255,255,.68);
    line-height:1.9;
    max-width:360px;
}

.premium-socials{
    display:flex;
    gap:12px;
    margin-top:24px;
}

.premium-socials a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    text-decoration:none;
    transition:.3s;
}

.premium-socials a:hover{
    background:var(--gold);
    color:#111;
}

.premium-footer-col h4{
    color:white;
    margin-bottom:22px;
    font-size:1.1rem;
}

.premium-footer-col a{
    display:block;
    color:rgba(255,255,255,.68);
    text-decoration:none;
    margin-bottom:14px;
    transition:.3s;
}

.premium-footer-col a:hover{
    color:var(--gold);
}

.premium-footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:50px;
    padding-top:24px;
    text-align:center;
    color:rgba(255,255,255,.55);
    font-size:.9rem;
}

/* FLOATING BUTTONS */
.call-btn,
.whatsapp-btn{
    position:fixed;
    right:25px;
    width:56px;
    height:56px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-weight:700;
    z-index:999;
    box-shadow:0 12px 28px rgba(0,0,0,.15);
}

.call-btn{
    bottom:100px;
    background:var(--green-dark);
    color:white;
}

.whatsapp-btn{
    bottom:170px;
    background:#25D366;
    color:white;
}

#back-to-top{
    position:fixed;
    right:25px;
    bottom:30px;
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:var(--gold);
    color:#111;
    font-size:20px;
    cursor:pointer;
    z-index:999;
}

/* MOBILE */
@media(max-width:1000px){
    .premium-why-grid{
        grid-template-columns:1fr;
    }

    .premium-footer-grid{
        grid-template-columns:1fr 1fr;
    }

    .ultra-cta-box{
        flex-direction:column;
        text-align:center;
        padding:60px 35px;
    }

    .ultra-cta-content h2{
        font-size:2.3rem;
    }
}

@media(max-width:680px){
    .premium-footer-grid{
        grid-template-columns:1fr;
    }

    .ultra-cta-actions{
        flex-direction:column;
        width:100%;
    }

    .ultra-cta-actions .btn{
        width:100%;
        justify-content:center;
    }
}
.footer-contact-line svg{
    width:18px;
    height:18px;
    min-width:18px;
    margin-right:10px;
    color:var(--gold);
}

.footer-contact-line span,
.footer-contact-line a{
    display:flex;
    align-items:center;
    gap:10px;
}

//===============our-story===============

.story-intro{
    padding:120px 0;
    background:
        radial-gradient(circle at top right, rgba(200,169,81,.10), transparent 25%),
        linear-gradient(135deg,#fffefb 0%, #f8f3eb 100%);
}

.story-layout{
    display:grid;
    grid-template-columns:1.15fr 1fr;
    gap:70px;
    align-items:center;
}

.story-main-img{
    height:560px;
    border-radius:24px;
    overflow:hidden;
    margin-bottom:20px;
    box-shadow:0 20px 60px rgba(0,0,0,.14);
}

.story-main-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.story-small-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.story-small-grid img{
    width:100%;
    height:190px;
    object-fit:cover;
    border-radius:18px;
}

.story-content-card{
    background:rgba(255,255,255,.9);
    padding:55px;
    border-radius:28px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.story-content-card h2{
    font-size:3rem;
    color:var(--green-dark);
    margin:18px 0;
}

.story-feature-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin:30px 0;
}

.story-feature{
    background:var(--cream);
    padding:14px;
    border-radius:30px;
    text-align:center;
    font-weight:600;
}

@media(max-width:950px){
    .story-layout{
        grid-template-columns:1fr;
    }

    .story-content-card{
        padding:35px;
    }
}
/* PREMIUM STORY */
.premium-story-section{
    padding:160px 0;
    background:
        radial-gradient(circle at top right, rgba(200,169,81,.10), transparent 25%),
        radial-gradient(circle at bottom left, rgba(46,107,79,.06), transparent 30%),
        linear-gradient(135deg,#fffefb 0%, #f9f4ec 100%);
    position:relative;
    overflow:hidden;
}

.premium-story-wrap{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:90px;
    align-items:center;
}

.premium-story-image{
    position:relative;
}

.premium-story-image img{
    width:100%;
    height:760px;
    object-fit:cover;
    border-radius:28px;
    box-shadow:0 30px 80px rgba(0,0,0,.18);
}

.premium-story-content h2{
    font-size:3.4rem;
    color:var(--green-dark);
    line-height:1.12;
    margin:20px 0 30px;
}

.premium-story-content p{
    color:var(--text-mid);
    font-size:1rem;
    line-height:2;
    margin-bottom:20px;
}

.premium-story-points{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin:35px 0;
}

.story-point{
    background:rgba(255,255,255,.8);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.9);
    padding:18px 22px;
    border-radius:18px;
    font-weight:600;
    color:var(--green-dark);
    box-shadow:0 12px 28px rgba(0,0,0,.05);
}

.story-point span{
    color:var(--gold);
    margin-right:8px;
}

@media(max-width:950px){
    .premium-story-wrap{
        grid-template-columns:1fr;
        gap:50px;
    }

    .premium-story-image img{
        height:500px;
    }

    .premium-story-content h2{
        font-size:2.4rem;
    }
}

@media(max-width:680px){
    .premium-story-section{
        padding:90px 0;
    }

    .premium-story-points{
        grid-template-columns:1fr;
    }

    .premium-story-image img{
        height:380px;
    }

    .hero-buttons{
        flex-direction:column;
    }
}

//========= index=-====
/* PREMIUM ROOMS */
.premium-rooms-section{
    padding:140px 0;
    background:
        radial-gradient(circle at top right, rgba(200,169,81,.08), transparent 25%),
        linear-gradient(135deg,#fffefb 0%, #f8f3eb 100%);
}

.rooms-grid{
    display:flex;
    flex-direction:column;
    gap:40px;
    margin-top:60px;
}

/* HORIZONTAL CARD */
.room-card{
    display:grid;
    grid-template-columns:520px 1fr;
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    transition:.4s ease;
}

.room-card:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 75px rgba(0,0,0,.12);
}

/* IMAGE */
.room-slider{
    position:relative;
    height:100%;
    min-height:420px;
    overflow:hidden;
}

.room-slides{
    position:relative;
    width:100%;
    height:100%;
}

.room-slides img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transition:opacity 1s ease;
}

.room-slides img.active{
    opacity:1;
}

.room-badge{
    position:absolute;
    top:22px;
    left:22px;
    background:rgba(14,53,39,.92);
    color:#fff;
    padding:10px 18px;
    border-radius:30px;
    font-size:.78rem;
    font-weight:600;
    z-index:5;
    letter-spacing:.8px;
}

/* CONTENT */
.room-info{
    padding:45px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.room-info h3{
    font-size:2.4rem;
    color:var(--green-dark);
    margin-bottom:16px;
}

.room-info p{
    color:var(--text-mid);
    line-height:1.95;
    margin-bottom:28px;
    font-size:.98rem;
}

/* AMENITIES */
.room-amenities{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-bottom:30px;
}

.amenity{
    display:flex;
    align-items:center;
    gap:10px;
    background:linear-gradient(135deg,#fff,var(--cream));
    padding:14px 16px;
    border-radius:16px;
    font-weight:600;
    color:var(--green-dark);
    box-shadow:0 8px 20px rgba(0,0,0,.04);
}

.amenity svg{
    width:18px;
    height:18px;
    min-width:18px;
    color:var(--gold);
}

/* FOOTER */
.room-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding-top:22px;
    border-top:1px solid rgba(0,0,0,.06);
}

.price-label{
    font-size:.75rem;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#888;
}

.price-value{
    font-size:2rem;
    font-weight:700;
    color:var(--green-dark);
}

.price-value span{
    font-size:.95rem;
    font-weight:500;
    color:#777;
}

.rooms-bottom-btn{
    text-align:center;
    margin-top:55px;
}

/* MOBILE */
@media(max-width:1100px){
    .room-card{
        grid-template-columns:1fr;
    }

    .room-slider{
        min-height:340px;
    }
}

@media(max-width:680px){
    .premium-rooms-section{
        padding:90px 0;
    }

    .room-info{
        padding:28px;
    }

    .room-info h3{
        font-size:2rem;
    }

    .room-amenities{
        grid-template-columns:1fr;
    }

    .room-footer{
        flex-direction:column;
        align-items:flex-start;
    }

    .room-slider{
        min-height:260px;
    }
}
/* PREMIUM ROOMS */
.premium-rooms-section{
    padding:140px 0;
    background:
        radial-gradient(circle at top right, rgba(200,169,81,.08), transparent 25%),
        linear-gradient(135deg,#fffefb 0%, #f8f3eb 100%);
}

.rooms-grid{
    display:flex;
    flex-direction:column;
    gap:42px;
    margin-top:60px;
}

.room-card{
    display:grid;
    grid-template-columns:520px 1fr;
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    transition:.4s ease;
}

.room-card:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 75px rgba(0,0,0,.12);
}

/* ALTERNATE */
.room-card:nth-child(even){
    grid-template-columns:1fr 520px;
}

.room-card:nth-child(even) .room-slider{
    order:2;
}

.room-card:nth-child(even) .room-info{
    order:1;
}

/* IMAGE */
.room-slider{
    position:relative;
    min-height:420px;
    overflow:hidden;
}

.room-slides{
    position:relative;
    width:100%;
    height:100%;
}

.room-slides img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transition:opacity 1s ease;
}

.room-slides img.active{
    opacity:1;
}

.room-badge{
    position:absolute;
    top:22px;
    left:22px;
    background:rgba(14,53,39,.92);
    color:#fff;
    padding:10px 18px;
    border-radius:30px;
    font-size:.78rem;
    font-weight:600;
    z-index:5;
}

/* CONTENT */
.room-info{
    padding:45px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.room-info h3{
    font-size:2.4rem;
    color:var(--green-dark);
    margin-bottom:16px;
}

.room-info p{
    color:var(--text-mid);
    line-height:1.95;
    margin-bottom:28px;
}

/* AMENITIES */
.room-amenities{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-bottom:30px;
}

.amenity{
    display:flex;
    align-items:center;
    gap:10px;
    background:linear-gradient(135deg,#fff,var(--cream));
    padding:14px 16px;
    border-radius:16px;
    font-weight:600;
    color:var(--green-dark);
}

.amenity svg{
    width:18px;
    height:18px;
    color:var(--gold);
}

/* FOOTER */
.room-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top:20px;
    border-top:1px solid rgba(0,0,0,.06);
}

.price-value{
    font-size:2rem;
    font-weight:700;
    color:var(--green-dark);
}

/* MOBILE */
@media(max-width:1100px){
    .room-card,
    .room-card:nth-child(even){
        grid-template-columns:1fr;
    }

    .room-card:nth-child(even) .room-slider,
    .room-card:nth-child(even) .room-info{
        order:unset;
    }
}
/* PREMIUM BRAND DECOR */
.room-slider{
    position:relative;
    overflow:hidden;
}

/* LEFT VERTICAL TEXT */
.room-vertical-brand{
    position:absolute;
    left:28px;
    bottom:35px;
    writing-mode:vertical-rl;
    transform:rotate(180deg);
    font-family:'Cormorant Garamond', serif;
    font-size:4.4rem;
    font-weight:700;
    letter-spacing:12px;
    color:rgba(255,255,255,.42);
    text-transform:uppercase;
    z-index:5;
    pointer-events:none;
    text-shadow:
        0 4px 14px rgba(0,0,0,.28),
        0 0 22px rgba(255,255,255,.12);
    transition:all .6s ease;
}

/* RIGHT TOP CURSIVE */
.room-info{
    position:relative;
    overflow:hidden;
}

.room-script-brand{
    position:absolute;
    top:18px;
    right:35px;
    font-family:'Cormorant Garamond', serif;
    font-style:italic;
    font-weight:700;
    font-size:4.2rem;
    color:rgba(200,169,81,.34);
    line-height:1;
    z-index:1;
    pointer-events:none;
    transform:rotate(-6deg);
    text-shadow:
        0 3px 12px rgba(200,169,81,.12);
    transition:all .6s ease;
}

/* CONTENT ABOVE BRAND */
.room-info h3,
.room-info p,
.room-amenities,
.room-footer{
    position:relative;
    z-index:3;
}

.room-info h3{
    padding-top:34px;
}

/* PREMIUM HOVER */
.room-card:hover .room-vertical-brand{
    color:rgba(255,255,255,.68);
    transform:rotate(180deg) scale(1.06);
    text-shadow:
        0 8px 22px rgba(0,0,0,.38),
        0 0 35px rgba(255,255,255,.25);
}

.room-card:hover .room-script-brand{
    color:rgba(200,169,81,.58);
    transform:rotate(-4deg) scale(1.08);
    text-shadow:
        0 8px 22px rgba(200,169,81,.18);
}

/* MOBILE */
@media(max-width:768px){
    .room-vertical-brand{
        font-size:2.6rem;
        letter-spacing:7px;
        left:14px;
        bottom:18px;
    }

    .room-script-brand{
        font-size:2.5rem;
        right:18px;
        top:14px;
    }

    .room-info h3{
        padding-top:22px;
    }
}
.room-script-brand{
    position:absolute;
    top:18px;
    right:32px;
    font-family:'Great Vibes', cursive;
    font-size:3rem;
    color:rgba(200,169,81,.38);
    transform:rotate(-5deg);
    pointer-events:none;
    z-index:1;
    transition:.4s ease;
}

.room-info{
    position:relative;
}

.room-info h3,
.room-info p,
.room-amenities,
.room-footer{
    position:relative;
    z-index:2;
}

.room-info h3{
    padding-top:42px;
}

.room-card:hover .room-script-brand{
    color:rgba(200,169,81,.65);
    transform:rotate(-3deg) scale(1.08);
}


//===============experinece\
/* PREMIUM EXPERIENCE PAGE - FIXED SAME DESIGN */

/* PREMIUM EXPERIENCE PAGE - FULL FIX SAME DESIGN */

.redesigned-exp{
    padding:100px 0;
    background:linear-gradient(180deg,var(--cream),#fff);
    position:relative;
    overflow:hidden;
}

.redesigned-exp::before{
    content:'';
    position:absolute;
    top:-120px;
    right:-80px;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(200,169,81,.08);
    filter:blur(50px);
}

.experience-card-grid{
    display:flex;
    flex-direction:column;
    gap:45px;
    position:relative;
    z-index:2;
    align-items:center;
    width:100%;
}

.experience-card{
    display:grid;
    grid-template-columns:460px 1fr;
    min-height:560px;
    width:100%;
    max-width:1280px;
    background:rgba(255,255,255,.96);
    border-radius:18px;
    overflow:hidden;
    box-shadow:var(--shadow-lg);
    transition:all .45s ease;
    border:1px solid rgba(200,169,81,.12);
    position:relative;
}

/* VISIBLE SVG CORNERS */
.experience-card .experience-card-content::after{
    content:'❦';
    position:absolute;
    top:18px;
    right:24px;
    font-size:42px;
    color:rgba(200,169,81,.14);
    z-index:1;
    pointer-events:none;
    line-height:1;
}

.experience-card .experience-card-content::before{
    content:'❦';
    position:absolute;
    bottom:20px;
    left:18px;
    font-size:34px;
    color:rgba(200,169,81,.10);
    transform:rotate(180deg);
    z-index:1;
    pointer-events:none;
    line-height:1;
}

.experience-card:nth-child(even){
    grid-template-columns:1fr 460px;
}

.experience-card:nth-child(even) .experience-card-image{
    order:2;
}

.experience-card:nth-child(even) .experience-card-content{
    order:1;
}

.experience-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 65px rgba(0,0,0,.18);
}

.experience-card-image{
    position:relative;
    height:100%;
    min-height:560px;
    overflow:hidden;
}

.experience-card-image::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(27,58,45,.35), transparent);
}

.experience-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .8s ease;
}

.experience-card:hover .experience-card-image img{
    transform:scale(1.08);
}

.experience-card-content{
    padding:50px;
    background:linear-gradient(135deg,#fff,var(--cream));
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    position:relative;
    overflow:visible;
    height:100%;
    z-index:2;
}

/* GOLD LINE */
.experience-card-content .gold-line{
    display:none;
}

.card-label{
    display:inline-block;
    width:fit-content;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(200,169,81,.14);
    color:var(--gold-dark);
    font-size:.68rem;
    font-weight:700;
    letter-spacing:.18em;
    text-transform:uppercase;
    margin-bottom:18px;
    position:relative;
    z-index:2;
}

.experience-card-content h3{
    color:var(--green-dark);
    margin-bottom:18px;
    position:relative;
    z-index:2;
}

.experience-card-content p{
    font-size:.92rem;
    color:var(--text-mid);
    line-height:1.9;
    margin-bottom:28px;
    position:relative;
    z-index:2;
}

.exp-meta{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-bottom:24px;
    position:relative;
    z-index:2;
}

.exp-meta span{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 18px;
    border-radius:30px;
    background:var(--white);
    border:1px solid var(--cream-dark);
    font-size:.76rem;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--green-dark);
}

.exp-meta svg{
    width:16px;
    height:16px;
    color:var(--gold);
    flex-shrink:0;
}

.experience-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:26px;
    position:relative;
    z-index:2;
}

.experience-tags span{
    padding:10px 16px;
    border-radius:30px;
    background:linear-gradient(135deg,var(--green-dark),var(--green-mid));
    color:var(--white);
    font-size:.72rem;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase;
    box-shadow:0 8px 20px rgba(27,58,45,.18);
    transition:all .3s ease;
}

.experience-tags span:hover{
    transform:translateY(-3px);
    background:linear-gradient(135deg,var(--gold),var(--gold-dark));
}

/* MINI GALLERY */
.experience-mini-gallery{
    display:flex;
    gap:14px;
    overflow-x:auto;
    padding-bottom:8px;
    flex-wrap:nowrap;
    width:100%;
    scrollbar-width:thin;
    scrollbar-color:var(--gold) transparent;
    position:relative;
    z-index:2;
}

.experience-mini-gallery::-webkit-scrollbar{
    height:6px;
}

.experience-mini-gallery::-webkit-scrollbar-thumb{
    background:var(--gold);
    border-radius:20px;
}

.mini-item{
    min-width:150px;
    background:var(--white);
    border:1px solid var(--cream-dark);
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 8px 18px rgba(0,0,0,.08);
    transition:all .35s ease;
    cursor:pointer;
    flex-shrink:0;
}

.mini-item:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 28px rgba(0,0,0,.14);
}

.mini-item img{
    width:100%;
    height:90px;
    object-fit:cover;
    display:block;
}

.mini-item span{
    display:block;
    padding:10px 12px;
    font-size:.7rem;
    font-weight:700;
    color:var(--green-dark);
    text-align:center;
    text-transform:uppercase;
    letter-spacing:.08em;
}

/* RESPONSIVE FIX - REPLACE OLD RESPONSIVE CSS */

/* TABLET */
@media screen and (max-width:1100px){

    .experience-card,
    .experience-card:nth-child(even){
        display:flex !important;
        flex-direction:column !important;
        width:100%;
        max-width:760px;
        min-height:auto !important;
    }

    .experience-card:nth-child(even) .experience-card-image,
    .experience-card:nth-child(even) .experience-card-content{
        order:unset !important;
    }

    .experience-card-image{
        width:100%;
        height:340px !important;
        min-height:340px !important;
        max-height:340px !important;
    }

    .experience-card-content{
        width:100%;
        padding:32px;
        box-sizing:border-box;
    }
}


/* MOBILE */
@media screen and (max-width:680px){

    .experience-card-grid{
        padding:0 12px;
        gap:22px;
    }

    .experience-card,
    .experience-card:nth-child(even){
        display:flex !important;
        flex-direction:column !important;
        width:100% !important;
        max-width:100% !important;
        min-height:auto !important;
        border-radius:16px;
        overflow:hidden;
    }

    .experience-card-image{
        width:100% !important;
        height:220px !important;
        min-height:220px !important;
        max-height:220px !important;
        flex:none !important;
    }

    .experience-card-image img{
        width:100%;
        height:100%;
        object-fit:cover;
        display:block;
    }

    .experience-card-content{
        width:100% !important;
        padding:18px !important;
        box-sizing:border-box;
        overflow:visible !important;
        flex:none !important;
    }

    .card-label{
        font-size:.55rem;
        padding:7px 12px;
    }

    .experience-card-content h3{
        font-size:1.7rem !important;
        line-height:1.15;
        margin-bottom:12px;
    }

    .experience-card-content p{
        font-size:.82rem;
        line-height:1.55;
        margin-bottom:16px;
    }

    .exp-meta{
        display:flex;
        flex-direction:column;
        gap:8px;
        margin-bottom:16px;
    }

    .exp-meta span{
        width:100%;
        justify-content:center;
        padding:10px 12px;
        font-size:.65rem;
        box-sizing:border-box;
    }

    .experience-tags{
        gap:6px;
        margin-bottom:16px;
    }

    .experience-tags span{
        font-size:.56rem;
        padding:7px 10px;
    }

    /* MINI GALLERY */
    .experience-mini-gallery{
        display:flex;
        flex-wrap:nowrap !important;
        overflow-x:auto !important;
        overflow-y:hidden !important;
        gap:8px;
        width:100%;
        padding-bottom:6px;
        -webkit-overflow-scrolling:touch;
        scrollbar-width:none;
    }

    .experience-mini-gallery::-webkit-scrollbar{
        display:none;
    }

    .mini-item{
        flex:0 0 105px !important;
        min-width:105px !important;
        max-width:105px !important;
    }

    .mini-item img{
        height:65px !important;
    }

    .mini-item span{
        font-size:.5rem;
        padding:7px 5px;
    }

    .experience-card-content::after{
        font-size:20px;
        top:10px;
        right:10px;
    }

    .experience-card-content::before{
        font-size:16px;
        bottom:10px;
        left:10px;
    }
}
@media screen and (max-width:680px){

    .experience-card,
    .experience-card:nth-child(even){
        display:block !important;
        grid-template-columns:none !important;
        min-height:auto !important;
        height:auto !important;
        max-width:100% !important;
        width:100% !important;
    }

    .experience-card-image,
    .experience-card:nth-child(even) .experience-card-image{
        order:unset !important;
        width:100% !important;
        height:220px !important;
        min-height:220px !important;
        max-height:220px !important;
        display:block !important;
    }

    .experience-card-content,
    .experience-card:nth-child(even) .experience-card-content{
        order:unset !important;
        width:100% !important;
        height:auto !important;
        min-height:auto !important;
        padding:20px !important;
        overflow:visible !important;
        display:flex !important;
        flex-direction:column !important;
    }

    .experience-mini-gallery{
        display:flex !important;
        overflow-x:auto !important;
        flex-wrap:nowrap !important;
        width:100% !important;
    }

    .mini-item{
        flex:0 0 110px !important;
        min-width:110px !important;
    }
}
.experience-title-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-bottom:18px;
    flex-wrap:wrap;
}

.experience-title-row h3{
    margin:0;
    flex:1;
}

.experience-book-btn{
    flex-shrink:0;
}

.book-exp-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 24px;
    background:linear-gradient(135deg,var(--gold),var(--gold-dark));
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    font-size:.72rem;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    box-shadow:0 10px 24px rgba(200,169,81,.25);
    transition:all .3s ease;
}

.book-exp-btn:hover{
    transform:translateY(-2px);
    background:linear-gradient(135deg,var(--green-dark),var(--green-mid));
}

@media(max-width:680px){
    .experience-title-row{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }

    .book-exp-btn{
        width:100%;
        padding:12px 18px;
        font-size:.68rem;
    }
}
.experiences-page.redesigned-exp{
    position:relative;
    padding:100px 0;
    overflow:hidden;
    background:
        radial-gradient(circle at top right, rgba(212,175,55,0.10), transparent 28%),
        radial-gradient(circle at bottom left, rgba(212,175,55,0.08), transparent 30%),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fffdf8 20%,
            #fdf8ee 45%,
            #faf2df 70%,
            #fffdf9 100%
        );
}

/* MULTI VECTOR LUXURY PATTERN */
.experiences-page.redesigned-exp::before{
    content:'';
    position:absolute;
    inset:0;
    pointer-events:none;
    opacity:.22;
    z-index:0;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'%3E%3Cg fill='none' stroke='%23d4af37' stroke-width='1.5' opacity='0.22'%3E%3Cpath d='M150 280 C170 210 190 150 220 80'/%3E%3Cellipse cx='225' cy='75' rx='10' ry='24'/%3E%3Cellipse cx='205' cy='120' rx='8' ry='20'/%3E%3Cellipse cx='185' cy='165' rx='7' ry='16'/%3E%3C/g%3E%3C/svg%3E"),

        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'%3E%3Cg fill='none' stroke='%23e0c36a' stroke-width='1.3' opacity='0.18'%3E%3Cpath d='M90 260 C110 190 130 130 160 60'/%3E%3Cellipse cx='160' cy='60' rx='9' ry='22'/%3E%3Cellipse cx='140' cy='105' rx='8' ry='18'/%3E%3C/g%3E%3C/svg%3E"),

        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 200'%3E%3Cg fill='none' stroke='%23d9b75c' stroke-width='1.2' opacity='0.12'%3E%3Cpath d='M0 120 C80 90 160 150 240 110 C320 70 360 90 400 60'/%3E%3C/g%3E%3C/svg%3E"),

        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 250 250'%3E%3Cg fill='none' stroke='%23cfab49' stroke-width='1.1' opacity='0.16'%3E%3Ccircle cx='125' cy='125' r='80'/%3E%3Ccircle cx='125' cy='125' r='50'/%3E%3C/g%3E%3C/svg%3E");

    background-repeat:
        no-repeat,
        no-repeat,
        repeat-x,
        no-repeat;

    background-position:
        top 80px right 80px,
        bottom 100px left 60px,
        center center,
        top 180px left 35%;

    background-size:
        220px,
        180px,
        900px 160px,
        180px;
}

/* EXTRA PREMIUM SOFT GLOW */
.experiences-page.redesigned-exp::after{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    pointer-events:none;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.85), transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(255,248,220,0.45), transparent 35%);
    z-index:1;
}

/* CONTENT ABOVE BACKGROUND */
.section-header,
.experience-card-grid{
    position:relative;
    z-index:3;
}


//================CONTACT PAGE==================
/* =========================
   PREMIUM CONTACT PAGE
========================= */

.lux-contact-hero{
    position:relative;
    min-height:620px;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.lux-hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(rgba(18,40,28,.55), rgba(18,40,28,.55)),
        radial-gradient(circle at top right, rgba(212,175,55,.18), transparent 25%);
}

.lux-hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    text-align:center;
    max-width:900px;
}

.lux-tag,
.lux-mini-tag{
    display:inline-block;
    padding:10px 20px;
    border-radius:40px;
    background:rgba(212,175,55,.18);
    border:1px solid rgba(212,175,55,.22);
    color:#f7d97a;
    font-size:.72rem;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
}

.lux-hero-content h1{
    font-size:4.5rem;
    color:#fff;
    margin:26px 0 20px;
    line-height:1.08;
}

.lux-hero-content p{
    font-size:1rem;
    line-height:1.9;
    max-width:720px;
    margin:0 auto;
    opacity:.95;
}

.lux-breadcrumb{
    margin-top:24px;
    display:flex;
    justify-content:center;
    gap:10px;
    color:#fff;
    font-size:.85rem;
}

.lux-breadcrumb a{
    color:#fff;
    text-decoration:none;
}

/* MAIN SECTION */
.lux-contact-section{
    padding:100px 0;
    background:
        radial-gradient(circle at top right, rgba(212,175,55,.08), transparent 25%),
        radial-gradient(circle at bottom left, rgba(212,175,55,.05), transparent 30%),
        linear-gradient(135deg,#ffffff 0%,#fffdf8 40%,#f9f3df 100%);
    position:relative;
    overflow:hidden;
}

.lux-contact-section::before{
    content:'';
    position:absolute;
    inset:0;
    opacity:.08;
    background-image:
        radial-gradient(circle, rgba(212,175,55,.6) 1px, transparent 1px);
    background-size:36px 36px;
}

/* TOP CARDS */
.lux-contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    position:relative;
    z-index:2;
}

.lux-contact-card{
    background:rgba(255,255,255,.95);
    border:1px solid rgba(212,175,55,.14);
    border-radius:26px;
    padding:42px 30px;
    text-align:center;
    box-shadow:0 20px 55px rgba(0,0,0,.06);
    transition:.35s ease;
}

.lux-contact-card:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 65px rgba(0,0,0,.12);
}

.lux-icon{
    width:78px;
    height:78px;
    border-radius:50%;
    margin:0 auto 22px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#d4af37,#b88b2d);
    color:#fff;
    box-shadow:0 14px 30px rgba(212,175,55,.28);
    font-size:1.8rem;
}

.lux-icon svg{
    width:30px;
    height:30px;
}

.lux-contact-card h2{
    font-size:1.4rem;
    color:var(--green-dark);
    margin-bottom:14px;
}

.lux-contact-card p,
.lux-contact-card span{
    display:block;
    color:var(--text-mid);
    font-size:.9rem;
    line-height:1.8;
    margin-bottom:8px;
}

.lux-contact-card a{
    display:block;
    color:var(--gold-dark);
    font-weight:700;
    text-decoration:none;
    margin-bottom:10px;
}

/* FORM + MAP */
.lux-contact-lower{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:36px;
    margin-top:70px;
    position:relative;
    z-index:2;
}

.lux-form-box,
.lux-map-box{
    background:#fff;
    border-radius:28px;
    padding:40px;
    box-shadow:0 20px 55px rgba(0,0,0,.06);
    border:1px solid rgba(212,175,55,.12);
}

.lux-form-box h2{
    font-size:2.2rem;
    color:var(--green-dark);
    margin:20px 0 26px;
}

.lux-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.lux-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.lux-form input,
.lux-form textarea{
    width:100%;
    padding:16px 18px;
    border-radius:14px;
    border:1px solid rgba(0,0,0,.1);
    background:#fff;
    font-family:inherit;
    font-size:.9rem;
    box-sizing:border-box;
}

.lux-form textarea{
    min-height:170px;
    resize:vertical;
}

.lux-form button{
    background:linear-gradient(135deg,var(--green-dark),var(--green-mid));
    color:#fff;
    border:none;
    padding:16px 30px;
    border-radius:40px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.lux-form button:hover{
    background:linear-gradient(135deg,#d4af37,#b88b2d);
}

/* MAP */
.lux-map{
    overflow:hidden;
    border-radius:22px;
}

.lux-map iframe{
    width:100%;
    height:360px;
    border:0;
}

.lux-hours{
    margin-top:28px;
    background:var(--cream);
    border-radius:20px;
    padding:24px;
}

.lux-hours h3{
    color:var(--green-dark);
    margin-bottom:16px;
}

.lux-hours div{
    display:flex;
    justify-content:space-between;
    padding:12px 0;
    border-bottom:1px solid rgba(0,0,0,.08);
    font-size:.88rem;
}

.lux-hours div:last-child{
    border-bottom:none;
}

/* REACH */
.lux-reach-section{
    margin-top:90px;
    position:relative;
    z-index:2;
}

.lux-heading{
    text-align:center;
    margin-bottom:40px;
}

.lux-heading h2{
    color:var(--green-dark);
    margin-top:16px;
}

.lux-reach-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.lux-reach-card{
    background:#fff;
    padding:34px 28px;
    border-radius:22px;
    text-align:center;
    box-shadow:0 18px 45px rgba(0,0,0,.06);
}

.lux-reach-card h3{
    color:var(--green-dark);
    margin:14px 0;
}

.lux-reach-card p{
    color:var(--text-mid);
    line-height:1.8;
    font-size:.9rem;
}

/* FAQ */
.lux-faq{
    margin-top:90px;
    position:relative;
    z-index:2;
}

.lux-faq-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.lux-faq-item{
    background:#fff;
    border-radius:22px;
    padding:30px;
    box-shadow:0 18px 45px rgba(0,0,0,.05);
}

.lux-faq-item h3{
    color:var(--green-dark);
    margin-bottom:12px;
    font-size:1.15rem;
}

.lux-faq-item p{
    color:var(--text-mid);
    line-height:1.8;
    font-size:.88rem;
}

/* RESPONSIVE */
@media(max-width:1100px){

    .lux-contact-grid,
    .lux-reach-grid{
        grid-template-columns:1fr;
    }

    .lux-contact-lower{
        grid-template-columns:1fr;
    }

    .lux-faq-grid{
        grid-template-columns:1fr;
    }

    .lux-hero-content h1{
        font-size:3.2rem;
    }
}

@media(max-width:768px){

    .lux-contact-hero{
        min-height:460px;
    }

    .lux-hero-content h1{
        font-size:2.2rem;
    }

    .lux-hero-content p{
        font-size:.88rem;
    }

    .lux-contact-section{
        padding:70px 0;
    }

    .lux-form-box,
    .lux-map-box{
        padding:24px;
    }

    .lux-row{
        grid-template-columns:1fr;
    }

    .lux-hours div{
        flex-direction:column;
        gap:6px;
    }

    .lux-contact-card{
        padding:28px 20px;
    }
}
.lux-heading p{
    max-width:700px;
    margin:14px auto 0;
    color:var(--text-mid);
    line-height:1.8;
    font-size:.95rem;
}

.lux-reach-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.lux-reach-card{
    background:linear-gradient(180deg,#ffffff,#fffdf7);
    border:1px solid rgba(212,175,55,.14);
    border-radius:26px;
    padding:38px 30px;
    text-align:center;
    box-shadow:0 18px 45px rgba(0,0,0,.06);
    transition:.35s ease;
    position:relative;
    overflow:hidden;
}

.lux-reach-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#d4af37,#b88b2d);
}

.lux-reach-card:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 60px rgba(0,0,0,.12);
}

.lux-reach-icon{
    width:76px;
    height:76px;
    margin:0 auto 22px;
    border-radius:50%;
    background:linear-gradient(135deg,#d4af37,#b88b2d);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 14px 30px rgba(212,175,55,.25);
}

.lux-reach-icon svg{
    width:30px;
    height:30px;
}

.lux-reach-card h3{
    font-size:1.4rem;
    color:var(--green-dark);
    margin-bottom:14px;
}

.lux-reach-card p{
    color:var(--text-mid);
    line-height:1.8;
    font-size:.9rem;
    margin-bottom:14px;
}

.lux-reach-card span{
    display:inline-block;
    padding:10px 16px;
    border-radius:30px;
    background:rgba(212,175,55,.12);
    color:var(--gold-dark);
    font-size:.72rem;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
}

@media(max-width:1100px){
    .lux-reach-grid{
        grid-template-columns:1fr;
    }
}
.lux-faq{
    margin-top:100px;
    position:relative;
    z-index:2;
}

.lux-faq .lux-heading p{
    max-width:700px;
    margin:14px auto 0;
    color:var(--text-mid);
    line-height:1.8;
    font-size:.95rem;
}

.lux-faq-list{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:28px;
    margin-top:50px;
    align-items:start;
}

.lux-faq-item{
    background:linear-gradient(180deg,#ffffff,#fffdf8);
    border:1px solid rgba(212,175,55,.14);
    border-radius:24px;
    box-shadow:0 18px 45px rgba(0,0,0,.05);
    overflow:hidden;
    transition:.35s ease;
    position:relative;
    height:fit-content;
}

.lux-faq-item::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#d4af37,#b88b2d);
}

.lux-faq-item:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 60px rgba(0,0,0,.10);
}

.lux-faq-item summary{
    list-style:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding:26px 28px;
    font-size:1rem;
    font-weight:700;
    color:var(--green-dark);
}

.lux-faq-item summary::-webkit-details-marker{
    display:none;
}

.lux-faq-item summary span{
    flex:1;
    line-height:1.5;
}

.lux-faq-item summary svg{
    width:20px;
    height:20px;
    color:var(--gold-dark);
    transition:.3s ease;
    flex-shrink:0;
}

.lux-faq-item[open] summary svg{
    transform:rotate(180deg);
}

.lux-faq-item p{
    padding:0 28px 26px;
    margin:0;
    color:var(--text-mid);
    line-height:1.9;
    font-size:.9rem;
}

/* TABLET */
@media(max-width:992px){
    .lux-faq-list{
        gap:20px;
    }

    .lux-faq-item summary{
        padding:22px;
        font-size:.92rem;
    }

    .lux-faq-item p{
        padding:0 22px 22px;
        font-size:.85rem;
    }
}

/* MOBILE */
@media(max-width:680px){
    .lux-faq{
        margin-top:70px;
    }

    .lux-faq-list{
        grid-template-columns:1fr;
        gap:16px;
    }

    .lux-faq-item summary{
        padding:18px;
        font-size:.85rem;
    }

    .lux-faq-item p{
        padding:0 18px 18px;
        font-size:.82rem;
    }

    .lux-faq-item summary svg{
        width:18px;
        height:18px;
    }
}
/* SMOOTH FAQ ANIMATION */
.lux-faq-item{
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        max-height .45s ease;
}

.lux-faq-item p{
    max-height:0;
    opacity:0;
    overflow:hidden;
    padding:0 28px;
    margin:0;
    transition:
        max-height .45s ease,
        opacity .35s ease,
        padding .35s ease;
}

.lux-faq-item[open] p{
    max-height:300px;
    opacity:1;
    padding:0 28px 26px;
}

.lux-faq-item summary svg{
    transition:transform .35s ease;
}

.lux-faq-item[open] summary svg{
    transform:rotate(180deg);
}

/* MOBILE */
@media(max-width:680px){

    .lux-faq-item p{
        padding:0 18px;
    }

    .lux-faq-item[open] p{
        padding:0 18px 18px;
        max-height:400px;
    }
}

//===============BOOKING=================
/* =========================
   PREMIUM BOOKING PAGE
========================= */

/* HERO */
.lux-booking-hero{
    position:relative;
    min-height:650px;
    display:flex;
    align-items:center;
    justify-content:center;
    background-size:cover;
    background-position:center;
    overflow:hidden;
}

.lux-booking-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(rgba(16,36,24,.62), rgba(16,36,24,.62)),
        radial-gradient(circle at top right, rgba(212,175,55,.16), transparent 28%);
}

.lux-booking-hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    max-width:900px;
    color:#fff;
}

.lux-mini-tag{
    display:inline-block;
    padding:10px 20px;
    border-radius:40px;
    background:rgba(212,175,55,.16);
    border:1px solid rgba(212,175,55,.25);
    color:#f5d77c;
    font-size:.72rem;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
}

.lux-booking-hero-content h1{
    font-size:4.6rem;
    line-height:1.08;
    margin:26px 0 20px;
    color:#fff;
}

.lux-booking-hero-content p{
    font-size:1rem;
    line-height:1.9;
    max-width:720px;
    margin:0 auto;
    opacity:.95;
}

.lux-breadcrumb{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:24px;
    font-size:.86rem;
}

.lux-breadcrumb a{
    color:#fff;
    text-decoration:none;
}

/* BENEFITS */
.lux-booking-benefits{
    padding:70px 0 20px;
    background:
        linear-gradient(135deg,#ffffff 0%,#fffdf8 45%,#f9f3df 100%);
}

.lux-benefits-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.lux-benefit-card{
    background:#fff;
    border:1px solid rgba(212,175,55,.12);
    border-radius:24px;
    padding:34px 24px;
    text-align:center;
    box-shadow:0 18px 45px rgba(0,0,0,.05);
    transition:.35s ease;
}

.lux-benefit-card:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 60px rgba(0,0,0,.10);
}

.lux-benefit-icon{
    width:74px;
    height:74px;
    margin:0 auto 22px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#d4af37,#b88b2d);
    color:#fff;
    box-shadow:0 14px 30px rgba(212,175,55,.25);
}

.lux-benefit-icon svg{
    width:28px;
    height:28px;
}

.lux-benefit-card h3{
    color:var(--green-dark);
    font-size:1.1rem;
    margin-bottom:12px;
}

.lux-benefit-card p{
    color:var(--text-mid);
    line-height:1.8;
    font-size:.88rem;
}
.lux-booking-layout{
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}

.lux-empty-fill{
  grid-column: 1 / 2;
  margin-top: -420px;
}

.lux-brand-story{
  background: #fdfcf8;
  border-radius: 30px;
  padding: 30px 40px;   /* reduced */
  border: 1px solid rgba(201,166,85,0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.lux-brand-story .lux-mini-tag{
  display: inline-block;
  padding: 8px 18px;   /* reduced */
  border-radius: 999px;
  background: rgba(201,166,85,0.10);
  color: #c9a655;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lux-brand-story h3{
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;   /* reduced */
  line-height: 1.05;
  font-weight: 600;
  color: #143c2e;
  margin-bottom: 16px;
}

.lux-brand-story p{
  font-family: 'Raleway', sans-serif;
  font-size: 17px;   /* reduced */
  line-height: 1.7;
  color: #6d675b;
  max-width: 90%;
}

@media (max-width: 992px){
  .lux-booking-layout{
    grid-template-columns: 1fr;
  }

  .lux-empty-fill{
    margin-top: 0;
    grid-column: auto;
  }

  .lux-brand-story{
    padding: 25px;
  }

  .lux-brand-story h3{
    font-size: 36px;
  }

  .lux-brand-story p{
    font-size: 16px;
    max-width: 100%;
  }
}

/* MAIN BOOKING */
.lux-booking-section{
    padding:80px 0 100px;
    background:
        radial-gradient(circle at top right, rgba(212,175,55,.06), transparent 25%),
        radial-gradient(circle at bottom left, rgba(212,175,55,.05), transparent 30%),
        linear-gradient(135deg,#ffffff 0%,#fffdf8 40%,#f9f3df 100%);
}

.lux-booking-layout{
    display:grid;
    grid-template-columns:1.25fr .75fr;
    gap:36px;
    align-items:start;
}

/* FORM WRAP */
.lux-booking-form-wrap{
    background:#fff;
    border-radius:28px;
    padding:42px;
    border:1px solid rgba(212,175,55,.12);
    box-shadow:0 20px 55px rgba(0,0,0,.06);
}

.lux-form-header{
    margin-bottom:32px;
}

.lux-form-header h2{
    font-size:2.3rem;
    margin:18px 0 14px;
    color:var(--green-dark);
}

.lux-form-header p{
    color:var(--text-mid);
    line-height:1.8;
    max-width:650px;
}

.lux-booking-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.lux-form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.lux-field{
    display:flex;
    flex-direction:column;
}

.lux-field label{
    margin-bottom:8px;
    color:var(--green-dark);
    font-size:.82rem;
    font-weight:700;
    letter-spacing:.03em;
}

.lux-field input,
.lux-field select,
.lux-field textarea{
    width:100%;
    padding:16px 18px;
    border-radius:14px;
    border:1px solid rgba(0,0,0,.10);
    background:#fff;
    font-size:.92rem;
    font-family:inherit;
    box-sizing:border-box;
    transition:.25s ease;
}

.lux-field input:focus,
.lux-field select:focus,
.lux-field textarea:focus{
    outline:none;
    border-color:#d4af37;
    box-shadow:0 0 0 4px rgba(212,175,55,.10);
}

.lux-field textarea{
    min-height:160px;
    resize:vertical;
}

.lux-submit-btn{
    background:linear-gradient(135deg,var(--green-dark),var(--green-mid));
    color:#fff;
    border:none;
    padding:18px 34px;
    border-radius:40px;
    font-weight:700;
    font-size:.9rem;
    cursor:pointer;
    transition:.3s ease;
}

.lux-submit-btn:hover{
    background:linear-gradient(135deg,#d4af37,#b88b2d);
    transform:translateY(-2px);
}

/* SIDEBAR */
.lux-booking-sidebar{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.lux-side-card{
    background:#fff;
    border-radius:26px;
    padding:34px 28px;
    border:1px solid rgba(212,175,55,.12);
    box-shadow:0 18px 45px rgba(0,0,0,.05);
}

.lux-side-card h3{
    color:var(--green-dark);
    font-size:1.45rem;
    margin:18px 0 18px;
}

.lux-side-card p{
    color:var(--text-mid);
    line-height:1.8;
    font-size:.9rem;
}

.lux-side-card small{
    display:block;
    margin-top:16px;
    color:var(--text-light);
    font-size:.76rem;
}

/* RATES */
.lux-rate-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.lux-rate-row{
    display:flex;
    justify-content:space-between;
    gap:12px;
    padding-bottom:14px;
    border-bottom:1px solid rgba(0,0,0,.08);
}

.lux-rate-row:last-child{
    border-bottom:none;
    padding-bottom:0;
}

.lux-rate-row h4{
    margin:0 0 4px;
    color:var(--green-dark);
    font-size:.95rem;
}

.lux-rate-row p{
    margin:0;
    font-size:.78rem;
    color:var(--text-light);
}

.lux-rate-row span{
    color:var(--gold-dark);
    font-weight:700;
    white-space:nowrap;
}

/* POLICIES */
.lux-policy-list{
    padding:0;
    margin:0;
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.lux-policy-list li{
    color:var(--text-mid);
    font-size:.88rem;
    padding-left:18px;
    position:relative;
}

.lux-policy-list li::before{
    content:'';
    position:absolute;
    left:0;
    top:8px;
    width:7px;
    height:7px;
    border-radius:50%;
    background:#d4af37;
}

/* HELP */
.lux-help-links{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:20px;
}

.lux-help-links a{
    text-decoration:none;
    background:var(--cream);
    color:var(--green-dark);
    padding:14px 18px;
    border-radius:14px;
    font-weight:700;
    transition:.25s ease;
}

.lux-help-links a:hover{
    background:#f2e4b8;
}
/* FAQ */
.lux-faq{
    padding:90px 0;
    background:
        linear-gradient(135deg,#ffffff 0%,#fffdf8 45%,#f9f3df 100%);
    position:relative;
}

.lux-heading{
    text-align:center;
    margin-bottom:50px;
}

.lux-heading h2{
    color:var(--green-dark);
    font-size:2.6rem;
    margin:18px 0 14px;
}

.lux-heading p{
    max-width:700px;
    margin:0 auto;
    color:var(--text-mid);
    line-height:1.8;
}

.lux-faq-list{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:28px;
    align-items:start;
}

.lux-faq-item{
    background:linear-gradient(180deg,#ffffff,#fffdf8);
    border:1px solid rgba(212,175,55,.14);
    border-radius:24px;
    box-shadow:0 18px 45px rgba(0,0,0,.05);
    overflow:hidden;
    transition:
        transform .35s ease,
        box-shadow .35s ease;
    position:relative;
}

.lux-faq-item::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#d4af37,#b88b2d);
}

.lux-faq-item:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 60px rgba(0,0,0,.10);
}

.lux-faq-item summary{
    list-style:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding:26px 28px;
    font-size:1rem;
    font-weight:700;
    color:var(--green-dark);
}

.lux-faq-item summary::-webkit-details-marker{
    display:none;
}

.lux-faq-item summary span{
    flex:1;
    line-height:1.5;
}

.lux-faq-item summary svg{
    width:20px;
    height:20px;
    color:var(--gold-dark);
    flex-shrink:0;
    transition:transform .35s ease;
}

.lux-faq-item p{
    max-height:0;
    opacity:0;
    overflow:hidden;
    padding:0 28px;
    margin:0;
    color:var(--text-mid);
    line-height:1.9;
    font-size:.9rem;
    transition:
        max-height .45s ease,
        opacity .35s ease,
        padding .35s ease;
}

.lux-faq-item[open] p{
    max-height:300px;
    opacity:1;
    padding:0 28px 26px;
}

.lux-faq-item[open] summary svg{
    transform:rotate(180deg);
}

/* CTA */
.lux-booking-cta{
    padding:90px 0 120px;
    background:
        linear-gradient(135deg,#103121 0%,#1c4b34 100%);
    position:relative;
    overflow:hidden;
}

.lux-booking-cta::before{
    content:'';
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top right, rgba(212,175,55,.15), transparent 25%);
}

.lux-cta-box{
    position:relative;
    z-index:2;
    text-align:center;
    max-width:900px;
    margin:0 auto;
    color:#fff;
}

.lux-cta-box h2{
    font-size:3rem;
    margin:22px 0 18px;
    color:#fff;
}

.lux-cta-box p{
    max-width:720px;
    margin:0 auto;
    line-height:1.9;
    opacity:.95;
}

.lux-cta-btn{
    display:inline-block;
    margin-top:32px;
    padding:18px 36px;
    border-radius:40px;
    text-decoration:none;
    background:linear-gradient(135deg,#d4af37,#b88b2d);
    color:#fff;
    font-weight:700;
    transition:.3s ease;
}

.lux-cta-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 14px 30px rgba(212,175,55,.25);
}

/* RESPONSIVE */
@media(max-width:1200px){

    .lux-benefits-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .lux-booking-layout{
        grid-template-columns:1fr;
    }
}

@media(max-width:992px){

    .lux-booking-hero-content h1{
        font-size:3.2rem;
    }

    .lux-faq-list{
        grid-template-columns:1fr;
    }

    .lux-heading h2{
        font-size:2.1rem;
    }

    .lux-cta-box h2{
        font-size:2.4rem;
    }
}

@media(max-width:768px){

    .lux-booking-hero{
        min-height:500px;
    }

    .lux-booking-hero-content h1{
        font-size:2.3rem;
    }

    .lux-booking-hero-content p{
        font-size:.88rem;
    }

    .lux-benefits-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .lux-booking-section{
        padding:60px 0 70px;
    }

    .lux-booking-form-wrap{
        padding:24px;
    }

    .lux-form-header h2{
        font-size:1.8rem;
    }

    .lux-form-row{
        grid-template-columns:1fr;
        gap:14px;
    }

    .lux-side-card{
        padding:24px;
    }

    .lux-faq{
        padding:70px 0;
    }

    .lux-faq-item summary{
        padding:18px;
        font-size:.88rem;
    }

    .lux-faq-item p{
        padding:0 18px;
        font-size:.84rem;
    }

    .lux-faq-item[open] p{
        padding:0 18px 18px;
        max-height:400px;
    }

    .lux-booking-cta{
        padding:70px 0 90px;
    }

    .lux-cta-box h2{
        font-size:1.9rem;
    }

    .lux-cta-box p{
        font-size:.88rem;
    }

    .lux-cta-btn{
        padding:16px 28px;
        font-size:.85rem;
    }
}
.lux-booking-cta{
    position:relative;
    padding:120px 0;
    overflow:hidden;
    background:
        linear-gradient(135deg,#0f2c1d 0%, #18412d 40%, #225438 100%);
}

/* PREMIUM BACKGROUND EFFECTS */
.lux-booking-cta::before{
    content:'';
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top right, rgba(212,175,55,.18), transparent 22%),
        radial-gradient(circle at bottom left, rgba(212,175,55,.10), transparent 28%);
    pointer-events:none;
}

.lux-booking-cta::after{
    content:'';
    position:absolute;
    inset:0;
    opacity:.05;
    background-image:
        radial-gradient(circle, rgba(255,255,255,.8) 1px, transparent 1px);
    background-size:40px 40px;
    pointer-events:none;
}

/* CTA BOX */
.lux-cta-box{
    position:relative;
    z-index:2;
    max-width:950px;
    margin:0 auto;
    text-align:center;
    padding:70px 60px;
    border-radius:34px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(212,175,55,.18);
    backdrop-filter:blur(14px);
    box-shadow:
        0 30px 80px rgba(0,0,0,.22),
        inset 0 1px 0 rgba(255,255,255,.08);
}

/* TAG */
.lux-cta-box .lux-mini-tag{
    background:rgba(212,175,55,.16);
    border:1px solid rgba(212,175,55,.28);
    color:#f8d97d;
    padding:10px 22px;
    border-radius:40px;
    font-size:.72rem;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
}

/* HEADING */
.lux-cta-box h2{
    font-size:4rem;
    line-height:1.1;
    color:#fff;
    margin:28px 0 20px;
    font-weight:700;
    text-shadow:0 4px 20px rgba(0,0,0,.25);
}

/* TEXT */
.lux-cta-box p{
    max-width:720px;
    margin:0 auto;
    color:rgba(255,255,255,.9);
    font-size:1rem;
    line-height:1.95;
}

/* BUTTON */
.lux-cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin-top:38px;
    padding:18px 38px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    font-size:.9rem;
    letter-spacing:.04em;
    color:#fff;
    background:linear-gradient(135deg,#d4af37,#b88b2d);
    box-shadow:0 16px 35px rgba(212,175,55,.28);
    transition:all .35s ease;
    position:relative;
    overflow:hidden;
}

.lux-cta-btn::before{
    content:'';
    position:absolute;
    top:0;
    left:-120%;
    width:100%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );
    transition:.7s;
}

.lux-cta-btn:hover::before{
    left:120%;
}

.lux-cta-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 24px 45px rgba(212,175,55,.35);
}

/* MOBILE */
@media(max-width:992px){
    .lux-cta-box h2{
        font-size:3rem;
    }
}

@media(max-width:768px){

    .lux-booking-cta{
        padding:80px 0;
    }

    .lux-cta-box{
        padding:40px 24px;
        border-radius:24px;
    }

    .lux-cta-box h2{
        font-size:2rem;
    }

    .lux-cta-box p{
        font-size:.88rem;
    }

    .lux-cta-btn{
        width:100%;
        padding:16px 24px;
        font-size:.85rem;
    }
}
.lux-booking-cta{
    position:relative;
    padding:70px 0 80px;
    overflow:hidden;
    background:
        linear-gradient(135deg,#fffdf8 0%, #f9f3df 45%, #f5e7bf 100%);
}

/* soft premium background */
.lux-booking-cta::before{
    content:'';
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top right, rgba(212,175,55,.10), transparent 22%),
        radial-gradient(circle at bottom left, rgba(34,84,56,.05), transparent 28%);
    pointer-events:none;
}

.lux-booking-cta::after{
    content:'';
    position:absolute;
    top:50%;
    left:50%;
    width:600px;
    height:600px;
    transform:translate(-50%,-50%);
    border-radius:50%;
    background:radial-gradient(circle, rgba(212,175,55,.06), transparent 70%);
    pointer-events:none;
}

/* cleaner card */
.lux-cta-box{
    position:relative;
    z-index:2;
    max-width:980px;
    margin:0 auto;
    text-align:center;
    padding:55px 50px;
    border-radius:28px;
    background:rgba(255,255,255,.78);
    border:1px solid rgba(212,175,55,.14);
    backdrop-filter:blur(10px);
    box-shadow:
        0 18px 50px rgba(0,0,0,.06),
        inset 0 1px 0 rgba(255,255,255,.7);
}

/* tag */
.lux-cta-box .lux-mini-tag{
    background:rgba(212,175,55,.10);
    border:1px solid rgba(212,175,55,.18);
    color:#9d7a22;
    padding:10px 20px;
    border-radius:40px;
    font-size:.72rem;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
}

/* heading */
.lux-cta-box h2{
    font-size:3.2rem;
    line-height:1.1;
    color:var(--green-dark);
    margin:22px 0 16px;
    text-shadow:none;
}

/* text */
.lux-cta-box p{
    max-width:680px;
    margin:0 auto;
    color:var(--text-mid);
    font-size:.96rem;
    line-height:1.9;
}

/* button */
.lux-cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:28px;
    padding:16px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    font-size:.88rem;
    color:#fff;
    background:linear-gradient(135deg,#d4af37,#c39a2f);
    box-shadow:0 12px 28px rgba(212,175,55,.18);
    transition:.3s ease;
}

.lux-cta-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 34px rgba(212,175,55,.24);
}

/* mobile */
@media(max-width:768px){

    .lux-booking-cta{
        padding:55px 0;
    }

    .lux-cta-box{
        padding:34px 22px;
        border-radius:22px;
    }

    .lux-cta-box h2{
        font-size:2rem;
    }

    .lux-cta-box p{
        font-size:.85rem;
    }

    .lux-cta-btn{
        width:100%;
        padding:15px 22px;
        font-size:.84rem;
    }
}
.lux-success-message{
    display:none;
    margin-top:28px;
    padding:28px;
    border-radius:22px;
    text-align:center;
    background:linear-gradient(135deg,#ffffff,#fffaf0);
    border:1px solid rgba(212,175,55,.18);
    box-shadow:0 18px 40px rgba(0,0,0,.06);
    animation:luxFadeUp .6s ease;
}

.lux-success-icon{
    width:74px;
    height:74px;
    margin:0 auto 18px;
    border-radius:50%;
    background:linear-gradient(135deg,#d4af37,#b88b2d);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 14px 30px rgba(212,175,55,.20);
}

.lux-success-icon svg{
    width:32px;
    height:32px;
}

.lux-success-message h3{
    color:var(--green-dark);
    font-size:1.5rem;
    margin-bottom:12px;
}

.lux-success-message p{
    color:var(--text-mid);
    line-height:1.8;
    max-width:520px;
    margin:0 auto;
    font-size:.92rem;
}

@keyframes luxFadeUp{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

//=============ROOMS===========
/* =========================
   SAFARI ULTRA PREMIUM ROOMS
========================= */

.safari-rooms-page{
    padding:120px 0;
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at top right, rgba(212,175,55,.10), transparent 20%),
        radial-gradient(circle at bottom left, rgba(34,84,56,.06), transparent 24%),
        linear-gradient(135deg,#ffffff 0%, #fffdf8 45%, #f7f0db 100%);
}

/* premium botanical texture */
.safari-rooms-page::before{
    content:'';
    position:absolute;
    inset:0;
    opacity:.04;
    background-image:
        radial-gradient(circle, rgba(34,84,56,.5) 1px, transparent 1px);
    background-size:40px 40px;
    pointer-events:none;
}

.safari-rooms-header{
    text-align:center;
    max-width:900px;
    margin:0 auto 80px;
    position:relative;
    z-index:2;
}

.safari-tag{
    display:inline-block;
    padding:10px 20px;
    border-radius:40px;
    background:rgba(212,175,55,.10);
    border:1px solid rgba(212,175,55,.18);
    color:#9b7721;
    font-size:.72rem;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
}

.safari-rooms-header h2{
    font-size:4rem;
    line-height:1.08;
    margin:22px 0 18px;
    color:var(--green-dark);
}

.safari-rooms-header p{
    max-width:760px;
    margin:0 auto;
    color:var(--text-mid);
    font-size:1rem;
    line-height:1.95;
}

/* cards */
.safari-rooms-list{
    display:flex;
    flex-direction:column;
    gap:42px;
    position:relative;
    z-index:2;
}

.safari-room-card{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    align-items:center;
    gap:36px;
    background:rgba(255,255,255,.78);
    border:1px solid rgba(212,175,55,.14);
    border-radius:34px;
    overflow:hidden;
    backdrop-filter:blur(12px);
    box-shadow:
        0 24px 60px rgba(0,0,0,.06),
        inset 0 1px 0 rgba(255,255,255,.7);
    transition:.4s ease;
}

.safari-room-card:hover{
    transform:translateY(-8px);
    box-shadow:
        0 32px 70px rgba(0,0,0,.09),
        inset 0 1px 0 rgba(255,255,255,.8);
}

.safari-room-card.reverse{
    grid-template-columns:.95fr 1.05fr;
}

.safari-room-card.reverse .safari-room-image{
    order:2;
}

.safari-room-card.reverse .safari-room-content{
    order:1;
}

/* image */
.safari-room-image{
    position:relative;
    height:100%;
    min-height:480px;
    overflow:hidden;
}

.safari-room-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .8s ease;
}

.safari-room-card:hover .safari-room-image img{
    transform:scale(1.06);
}

.safari-room-badge{
    position:absolute;
    top:26px;
    left:26px;
    padding:10px 18px;
    border-radius:40px;
    background:rgba(16,49,33,.82);
    color:#fff;
    font-size:.72rem;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    backdrop-filter:blur(8px);
}

/* content */
.safari-room-content{
    padding:48px;
}

.safari-room-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
    margin-bottom:20px;
}

.safari-room-content h3{
    font-size:2.3rem;
    color:var(--green-dark);
    margin:0 0 8px;
    line-height:1.1;
}

.safari-room-sub{
    display:block;
    color:var(--gold-dark);
    font-size:.85rem;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.safari-room-price{
    font-size:2rem;
    font-weight:700;
    color:var(--green-dark);
    white-space:nowrap;
}

.safari-room-price small{
    font-size:.8rem;
    color:var(--text-light);
    font-weight:500;
}

.safari-room-content p{
    color:var(--text-mid);
    line-height:1.95;
    font-size:.95rem;
    margin-bottom:28px;
}

/* amenities */
.safari-amenities{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:32px;
}

.amenity-chip{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 16px;
    border-radius:40px;
    background:#fff;
    border:1px solid rgba(212,175,55,.14);
    color:var(--green-dark);
    font-size:.82rem;
    font-weight:600;
    box-shadow:0 8px 20px rgba(0,0,0,.03);
}

.amenity-chip svg{
    width:16px;
    height:16px;
    color:var(--gold-dark);
}

/* button */
.safari-book-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    font-size:.88rem;
    color:#fff;
    background:linear-gradient(135deg,#d4af37,#c39a2f);
    box-shadow:0 14px 28px rgba(212,175,55,.18);
    transition:.3s ease;
}

.safari-book-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 20px 34px rgba(212,175,55,.24);
}

/* responsive */
@media(max-width:1200px){
    .safari-room-card,
    .safari-room-card.reverse{
        grid-template-columns:1fr;
    }

    .safari-room-card.reverse .safari-room-image,
    .safari-room-card.reverse .safari-room-content{
        order:unset;
    }

    .safari-room-image{
        min-height:420px;
    }
}

@media(max-width:768px){

    .safari-rooms-page{
        padding:70px 0;
    }

    .safari-rooms-header{
        margin-bottom:50px;
    }

    .safari-rooms-header h2{
        font-size:2.2rem;
    }

    .safari-rooms-header p{
        font-size:.88rem;
    }

    .safari-room-card{
        border-radius:22px;
        gap:0;
    }

    .safari-room-image{
        min-height:280px;
    }

    .safari-room-content{
        padding:24px 20px;
    }

    .safari-room-top{
        flex-direction:column;
        gap:12px;
    }

    .safari-room-content h3{
        font-size:1.6rem;
    }

    .safari-room-price{
        font-size:1.4rem;
    }

    .safari-room-content p{
        font-size:.85rem;
    }

    .amenity-chip{
        font-size:.74rem;
        padding:10px 14px;
    }

    .safari-book-btn{
        width:100%;
        padding:15px 20px;
        font-size:.84rem;
    }
}
/* PREMIUM EDITORIAL ROOMS REDESIGN */

.rooms-page{
    padding:120px 0;
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at top right, rgba(212,175,55,.08), transparent 20%),
        linear-gradient(135deg,#ffffff 0%, #fffdf8 45%, #f7f0db 100%);
}

.rooms-list{
    display:flex;
    flex-direction:column;
    gap:80px;
}

/* CARD */
.room-detail{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    align-items:center;
    gap:0;
    background:rgba(255,255,255,.82);
    border-radius:34px;
    overflow:hidden;
    border:1px solid rgba(212,175,55,.12);
    box-shadow:
        0 28px 70px rgba(0,0,0,.06),
        inset 0 1px 0 rgba(255,255,255,.7);
    backdrop-filter:blur(12px);
    transition:.4s ease;
}

.room-detail:hover{
    transform:translateY(-8px);
    box-shadow:
        0 34px 80px rgba(0,0,0,.08),
        inset 0 1px 0 rgba(255,255,255,.8);
}

.room-detail.reverse{
    grid-template-columns:.95fr 1.05fr;
}

.room-detail.reverse .room-detail-img{
    order:2;
}

.room-detail.reverse .room-detail-body{
    order:1;
}

/* IMAGE */
.room-detail-img{
    position:relative;
    min-height:560px;
    overflow:hidden;
}

.room-detail-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .8s ease;
}

.room-detail:hover .room-detail-img img{
    transform:scale(1.05);
}

.room-detail-img::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(16,49,33,.25),
        transparent 45%
    );
}

/* CONTENT */
.room-detail-body{
    padding:55px;
    position:relative;
}

.room-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:40px;
    background:rgba(212,175,55,.10);
    border:1px solid rgba(212,175,55,.18);
    color:#9d7a22;
    font-size:.72rem;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.room-detail-body h2{
    font-size:3rem;
    line-height:1.08;
    color:var(--green-dark);
    margin:22px 0 18px;
}

.room-detail-body p{
    color:var(--text-mid);
    font-size:.95rem;
    line-height:1.95;
    margin-bottom:30px;
    max-width:90%;
}

/* AMENITIES */
.room-amenities-grid{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:34px;
}

.ra-item{
    padding:12px 18px;
    border-radius:40px;
    background:#fff;
    border:1px solid rgba(212,175,55,.14);
    color:var(--green-dark);
    font-size:.8rem;
    font-weight:600;
    box-shadow:0 8px 20px rgba(0,0,0,.03);
}

/* PRICE BAR */
.room-price-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:24px 26px;
    border-radius:22px;
    background:linear-gradient(135deg,#fff,#fff8e7);
    border:1px solid rgba(212,175,55,.14);
}

.room-price-display{
    font-size:2rem;
    font-weight:700;
    color:var(--green-dark);
}

.room-price-display small{
    font-size:.75rem;
    color:var(--text-light);
    font-weight:500;
}

.room-price-bar .btn{
    padding:16px 28px;
    border-radius:50px;
    background:linear-gradient(135deg,#d4af37,#c39a2f);
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:.3s ease;
    box-shadow:0 14px 28px rgba(212,175,55,.18);
}

.room-price-bar .btn:hover{
    transform:translateY(-3px);
    box-shadow:0 20px 34px rgba(212,175,55,.24);
}

/* HEADER */
.section-header h2{
    font-size:4rem;
    color:var(--green-dark);
}

.section-header p{
    max-width:820px;
    margin:0 auto;
    line-height:1.9;
    color:var(--text-mid);
}

/* REMOVE OLD DIVIDER STYLE FEEL */
.section-divider{
    display:none;
}

/* MOBILE */
@media(max-width:1200px){

    .room-detail,
    .room-detail.reverse{
        grid-template-columns:1fr;
    }

    .room-detail.reverse .room-detail-img,
    .room-detail.reverse .room-detail-body{
        order:unset;
    }

    .room-detail-img{
        min-height:420px;
    }
}

@media(max-width:768px){

    .rooms-page{
        padding:70px 0;
    }

    .rooms-list{
        gap:36px;
    }

    .section-header h2{
        font-size:2.2rem;
    }

    .room-detail{
        border-radius:22px;
    }

    .room-detail-img{
        min-height:280px;
    }

    .room-detail-body{
        padding:24px 20px;
    }

    .room-detail-body h2{
        font-size:1.8rem;
    }

    .room-detail-body p{
        max-width:100%;
        font-size:.85rem;
    }

    .room-amenities-grid{
        gap:10px;
    }

    .ra-item{
        font-size:.72rem;
        padding:10px 14px;
    }

    .room-price-bar{
        flex-direction:column;
        align-items:flex-start;
        padding:18px;
    }

    .room-price-bar .btn{
        width:100%;
        text-align:center;
    }
}

//=============about page================
.about-values{
  padding: 140px 0;
  background: linear-gradient(180deg,#faf8f2 0%, #f6f3eb 100%);
  position: relative;
}

.about-values .section-header{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}

.about-values .section-tag{
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(201,166,85,0.10);
  color: #c9a655;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-values h2{
  font-family: 'Cormorant Garamond', serif;
  font-size: 68px;
  font-weight: 600;
  line-height: 1.05;
  color: #143c2e;
  margin-bottom: 20px;
}

.about-values .section-header p{
  font-size: 20px;
  line-height: 1.8;
  color: #6f695d;
}

.values-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.value-card{
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 34px;
  padding: 50px 38px;
  box-shadow: 0 20px 60px rgba(20,60,46,0.06);
  transition: all .45s ease;
}

.value-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(20,60,46,0.12);
}

.value-icon{
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg,#143c2e,#2d6d50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: white;
}

.value-icon svg{
  width: 30px;
  height: 30px;
}

.value-card h3{
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  color: #143c2e;
  margin-bottom: 18px;
}

.value-card p{
  font-size: 17px;
  line-height: 1.9;
  color: #6c675b;
}

@media (max-width: 992px){
  .values-grid{
    grid-template-columns: 1fr;
  }

  .about-values h2{
    font-size: 46px;
  }

  .value-card{
    padding: 35px 28px;
  }
}
.gir-image{
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

.gir-slider{
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.20);
  background: #000;
  padding-bottom: 110px; /* space for arrows */
}

.gir-slides{
  display: flex;
  transition: transform 0.7s ease-in-out;
  width: 100%;
}

.gir-slides img{
  width: 100%;
  min-width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 28px;
}

.gir-prev,
.gir-next{
  position: absolute;
  bottom: 25px;
  top: auto;
  transform: none;
  width: 68px;
  height: 68px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  color: #143c2e;
  font-size: 28px;
  font-weight: 600;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  transition: all 0.35s ease;
}

.gir-prev{
  left: 50%;
  margin-left: -90px;
}

.gir-next{
  left: 50%;
  margin-left: 20px;
}

.gir-prev:hover,
.gir-next:hover{
  transform: translateY(-6px);
  background: white;
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}

.gir-dots{
  display: none;
}

@media(max-width: 992px){
  .gir-image{
    max-width: 100%;
  }

  .gir-slides img{
    height: 420px;
  }
}

@media(max-width: 768px){
  .gir-slider{
    padding-bottom: 90px;
  }

  .gir-slides img{
    height: 300px;
  }

  .gir-prev,
  .gir-next{
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  .gir-prev{
    margin-left: -70px;
  }

  .gir-next{
    margin-left: 15px;
  }
}

/* ===============================
   SAFARI ROOMS FULL FIX
================================= */

.safari-rooms-page {
  padding: 50px 0 100px 0 !important;
  margin: 0 !important;
  background: linear-gradient(180deg,#faf8f2 0%, #f6f3eb 100%) !important;
}

.safari-rooms-page .container {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.safari-rooms-header {
  text-align: center;
  margin: 0 0 70px 0 !important;
  padding: 0 !important;
}

.safari-tag {
  display: inline-block;
  padding: 10px 22px;
  background: rgba(200, 162, 39, 0.1);
  border: 1px solid rgba(200, 162, 39, 0.25);
  color: #c8a227;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.safari-rooms-header h2 {
  font-size: 52px;
  color: #183b2a;
  margin: 0 0 18px 0 !important;
  font-weight: 700;
}

.safari-rooms-header p {
  max-width: 760px;
  margin: auto;
  color: #666;
  font-size: 17px;
  line-height: 1.8;
}

.safari-rooms-list {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

/* ROOM CARD */
.safari-rooms-page .safari-room-card {
  display: grid !important;
  grid-template-columns: 1.05fr 1fr !important;
  gap: 35px !important;
  align-items: center !important;
  padding: 30px !important;
  background: #ffffff !important;
  border-radius: 28px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08) !important;
  border: none !important;
  overflow: hidden;
}

/* REVERSE */
.safari-rooms-page .safari-room-card.reverse .safari-room-image {
  order: 2 !important;
}

.safari-rooms-page .safari-room-card.reverse .safari-room-content {
  order: 1 !important;
}

/* IMAGE */
.safari-rooms-page .safari-room-image {
  width: 100% !important;
  position: relative !important;
}

.safari-rooms-page .main-room-image {
  width: 100% !important;
  height: 500px !important;
  object-fit: cover !important;
  border-radius: 20px !important;
  display: block !important;
}

/* BADGE */
.safari-room-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  z-index: 10;
}

/* THUMBNAILS */
.safari-rooms-page .room-thumbnails {
  display: flex !important;
  gap: 12px !important;
  margin-top: 18px !important;
  overflow-x: auto !important;
  padding-bottom: 6px;
}

.safari-rooms-page .room-thumbnails img {
  width: 95px !important;
  height: 70px !important;
  object-fit: cover !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  border: 2px solid transparent !important;
  transition: 0.3s ease;
  flex-shrink: 0;
}

.safari-rooms-page .room-thumbnails img:hover {
  border-color: #c8a227 !important;
  transform: translateY(-4px);
}

/* CONTENT */
.safari-rooms-page .safari-room-content {
  width: 100% !important;
  display: block !important;
}

.safari-rooms-page .safari-room-top {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 20px !important;
  margin-bottom: 20px !important;
}

.safari-rooms-page .safari-room-top h3 {
  font-size: 52px !important;
  color: #183b2a !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
  margin: 0;
}

.safari-room-sub {
  color: #777;
  font-size: 16px;
  display: block;
  margin-top: 10px;
}

.safari-rooms-page .safari-room-price {
  font-size: 56px !important;
  color: #c8a227 !important;
  font-weight: 700 !important;
  text-align: right;
  line-height: 1;
}

.safari-rooms-page .safari-room-price small {
  display: block;
  font-size: 15px;
  color: #777;
  margin-top: 8px;
}

/* DESCRIPTION */
.safari-rooms-page .safari-room-content p {
  color: #555 !important;
  line-height: 1.8 !important;
  margin: 20px 0 !important;
  font-size: 16px;
}

/* AMENITIES */
.safari-rooms-page .safari-amenities {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-bottom: 30px !important;
}

.safari-rooms-page .amenity-chip {
  padding: 12px 18px !important;
  background: #f5f5f5 !important;
  border-radius: 30px !important;
  color: #333 !important;
  display: inline-block !important;
  font-size: 14px;
  font-weight: 500;
  border: none !important;
}

/* BUTTON */
.safari-rooms-page .safari-book-btn {
  display: inline-block !important;
  background: #c8a227 !important;
  color: #111 !important;
  padding: 16px 30px !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  transition: 0.3s ease;
}

.safari-rooms-page .safari-book-btn:hover {
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 991px) {
  .safari-rooms-page .safari-room-card {
    grid-template-columns: 1fr !important;
  }

  .safari-rooms-page .safari-room-card.reverse .safari-room-image,
  .safari-rooms-page .safari-room-card.reverse .safari-room-content {
    order: unset !important;
  }

  .safari-rooms-page .main-room-image {
    height: 350px !important;
  }

  .safari-rooms-page .safari-room-top {
    flex-direction: column !important;
  }

  .safari-rooms-page .safari-room-top h3 {
    font-size: 34px !important;
  }

  .safari-rooms-page .safari-room-price {
    font-size: 40px !important;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .safari-rooms-page {
    padding: 40px 0 70px 0 !important;
  }

  .safari-rooms-header h2 {
    font-size: 36px;
  }

  .safari-rooms-page .main-room-image {
    height: 280px !important;
  }
}
.safari-rooms-header {
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto 70px auto !important;
  padding: 0 !important;
}

.safari-rooms-header p {
  max-width: 900px !important;
  width: 100% !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.safari-rooms-header h2 {
  width: 100% !important;
  text-align: center !important;
  margin: 0 0 20px 0 !important;
}

.safari-tag {
  margin: 0 auto 20px auto !important;
}
.reserve-btn-wrap {
  position: relative;
  display: inline-block;
}

.safari-room-card {
  position: relative;
}

.vantara-decor {
  position: absolute;
  right: -400px;
  bottom:200px;
  transform: translateY(-50%) rotate(-90deg);
  font-family: 'Cormorant Garamond', serif;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 10px;
  color: #c8a227;
  opacity: 0.50;
  pointer-events: none;
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
}
/* BUTTON */
.safari-book-btn {
  display: inline-block !important;
  background: linear-gradient(135deg, #d4af37 0%, #b88a18 100%) !important;
  color: #111 !important;
  padding: 16px 30px !important;
  border-radius: 14px !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  font-size: 16px;
  transition: all 0.35s ease;
  box-shadow:
    0 10px 30px rgba(200, 162, 39, 0.22),
    inset 0 1px 1px rgba(255,255,255,0.35);
}

.safari-book-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 15px 35px rgba(200, 162, 39, 0.3),
    inset 0 1px 1px rgba(255,255,255,0.45);
}

/* MOBILE */
@media (max-width: 991px) {
  .vantara-decor {
    right: -95px;
    font-size: 14px;
    letter-spacing: 5px;
    opacity: 0.18;
  }
}

@media (max-width: 768px) {
  .vantara-decor {
    display: none;
  }

  .safari-book-btn {
    padding: 14px 24px !important;
    font-size: 15px;
  }
}
/* normal cards (ROOM 1 + ROOM 3) */
.safari-room-card {
  position: relative;
}

.safari-room-card .vantara-decor {
  position: absolute;
  right: -400px;
  bottom:200px;
  transform: translateY(-50%) rotate(-90deg);
  font-family: 'Cormorant Garamond', serif;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 10px;
  color: #c8a227;
  opacity: 0.50;
  pointer-events: none;
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
}

/* reverse cards (ROOM 2 + ROOM 4) */
.safari-room-card.reverse .vantara-decor {
  left: 1px;
  right: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  z-index: 20;
}
.room-side-logo {
  position: absolute;
  right: 50px;
  bottom: 20px;
  opacity: 0.28;
  pointer-events: none;
  z-index: 1;
}

.room-side-logo img {
  width: 180px;
  height: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .vantara-decor,
  .room-side-logo {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .vantara-decor,
  .room-side-logo {
    display: none !important;
  }
}
.stay-inclusions {
  padding: 90px 0;
  background: linear-gradient(180deg, #faf8f2 0%, #f5f1e8 100%);
}

.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.inclusion-card {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 42px 28px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(19, 48, 36, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.08);
  transition: all 0.35s ease;
}

.inclusion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(19, 48, 36, 0.12);
}

.inclusion-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #b88a18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.inclusion-icon svg {
  width: 34px;
  height: 34px;
  stroke: white;
  stroke-width: 2.2;
  fill: none;
}

.inclusion-card h4 {
  color: var(--green-dark);
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 700;
}

.inclusion-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-mid);
}

/* tablet */
@media (max-width: 991px) {
  .inclusions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* mobile */
@media (max-width: 768px) {
  .stay-inclusions {
    padding: 60px 0;
  }

  .inclusions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .inclusion-card {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .inclusion-icon {
    width: 58px;
    height: 58px;
  }

  .inclusion-icon svg {
    width: 26px;
    height: 26px;
  }
}

//===============hero index page============
#hero {
  position: relative;
  height: 100vh;
  min-height: 780px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 15, 10, 0.45) 0%,
      rgba(5, 15, 10, 0.18) 40%,
      rgba(5, 15, 10, 0.05) 100%
    );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 500px;   /* reduced size */
  margin-left: 80px;

  padding: 0;
  background: none;
  backdrop-filter: none;
  border: none;
  box-shadow: none;
}

.hero-badge {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.35);
  color: #d4af37;
  font-size: 0.78rem;
  letter-spacing: 4px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 28px;
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(8px);
}

.hero-logo-wrap {
  margin-bottom: 20px;
}

.hero-logo-img {
  width: 90px;
  height: auto;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6.5rem;
  line-height: 0.9;
  font-weight: 500;
  color: white;
  margin: 0;
  letter-spacing: 4px;
  text-shadow: 0 8px 30px rgba(0,0,0,0.45);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: #d4af37;
  margin: 18px 0;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 320px;
  margin-bottom: 24px;
}

.hero-divider span {
  flex: 1;
  height: 1px;
  background: rgba(212,175,55,0.55);
}

.hero-divider em {
  color: #d4af37;
  font-style: normal;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-style: italic;
  color: rgba(255,255,255,0.95);
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-buttons .btn {
  padding: 16px 34px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.hero-buttons .btn-primary {
  background: linear-gradient(135deg, #d4af37, #b88a18);
  color: white;
}

.hero-buttons .btn-outline {
  border: 1px solid rgba(255,255,255,0.35);
  color: white;
  background: rgba(255,255,255,0.08);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 5;
  color: white;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 3px;
}

.hero-scroll .arrow {
  width: 1px;
  height: 35px;
  background: rgba(255,255,255,0.5);
  margin: 10px auto 0;
}
.hero-content {
  max-width: 420px;
  margin-left: 70px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.hero-logo-img {
  width: 70px;
}

.hero-title {
  font-size: 5rem;
  letter-spacing: 2px;
  line-height: 0.9;
}

.hero-subtitle {
  font-size: 1.35rem;
  letter-spacing: 3px;
  margin: 14px 0;
}

.hero-divider {
  width: 220px;
  margin-bottom: 18px;
}

.hero-tagline {
  font-size: 1.5rem;
  margin-bottom: 26px;
}

.hero-buttons {
  gap: 12px;
}

.hero-buttons .btn {
  padding: 13px 24px;
  font-size: 0.85rem;
}

.hero-badge {
  padding: 10px 18px;
  font-size: 0.68rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
/* MOBILE */
@media (max-width: 768px) {
  .hero-content {
    margin: 20px;
    max-width: calc(100% - 40px);
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .hero-tagline {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .hero-scroll {
    display: none;
  }
}

// FOOTER BUTTON 
/* FLOAT BUTTONS SMALLER */
.whatsapp-btn,
.call-btn,
#back-to-top {
  width: 20px;
  height: 20px;
  right: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* spacing between buttons */
.whatsapp-btn {
  bottom: 140px;
}

.call-btn {
  bottom: 78px;
}

#back-to-top {
  bottom: 16px;
}

/* SVG icon size smaller */
.whatsapp-btn svg,
.call-btn svg,
#back-to-top svg {
  width: 22px;
  height: 22px;
}

/* mobile even smaller */
@media (max-width: 768px) {
  .whatsapp-btn,
  .call-btn,
  #back-to-top {
    width: 44px;
    height: 44px;
    right: 14px;
  }

  .whatsapp-btn {
    bottom: 120px;
  }

  .call-btn {
    bottom: 68px;
  }

  #back-to-top {
    bottom: 16px;
  }

  .whatsapp-btn svg,
  .call-btn svg,
  #back-to-top svg {
    width: 18px;
    height: 18px;
  }
}
