/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --green: #658b49;
    --dark: #232323;
    --gray: #626262;
    --light: #f7f7f7;
    --white: #ffffff;
    --red: #ff214f;
    --sidebar: 280px;
}
body { font-family: 'Roboto', sans-serif; color: var(--gray); line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color .3s; }
img { display: block; max-width: 100%; }
h1,h2,h3,h4,h5,h6 { font-family: 'Montserrat', sans-serif; color: var(--dark); }

/* ===== LAYOUT ===== */
.sidebar-nav {
    position: fixed; top: 0; left: 0; width: var(--sidebar);
    height: 100vh; background: var(--white);
    box-shadow: 2px 0 8px rgba(0,0,0,.06);
    display: flex; flex-direction: column; z-index: 1000;
    transition: left .3s;
}
.sidenav-header { padding: 30px 25px 20px; text-align: center; }
.sidenav-header img { max-width: 160px; margin: 0 auto; }
.navbar-collapse { flex: 1; overflow-y: auto; padding: 10px 30px; }
.nav-menu { list-style: none; }
.nav-menu > li { border-bottom: 1px solid #eee; }
.nav-menu > li > a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0; font-family: 'Montserrat', sans-serif;
    font-size: 13px; font-weight: 600; text-transform: uppercase;
    color: var(--dark); letter-spacing: .5px;
}
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--green); }
.nav-menu .dropdown-menu { list-style: none; padding: 5px 0 10px 10px; display: none; }
.nav-menu .dropdown-menu li { padding: 4px 0; }
.nav-menu .dropdown-menu a { font-size: 12px; color: var(--gray); }
.nav-menu .dropdown-menu a:hover { color: var(--green); }
.footer-holder { padding: 20px 25px 25px; border-top: 1px solid #eee; text-align: center; }
.btn-book {
    display: block; background: var(--green); color: var(--white);
    padding: 13px; font-family: 'Montserrat', sans-serif;
    font-size: 13px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 15px;
    transition: background .3s;
}
.btn-book:hover { background: #527a38; color: var(--white); }
.powered-by { font-size: 11px; color: #aaa; }
.powered-by a { color: #aaa; }
.powered-by a:hover { color: var(--green); }
.mobile-toggle {
    display: none; background: transparent; border: none;
    cursor: pointer; padding: 8px; flex-direction: column; gap: 5px;
}
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); }
.main-wrapper { margin-left: var(--sidebar); }

/* ===== HERO ===== */
.hero-section {
    position: relative; height: 100vh;
    display: flex; align-items: center; justify-content: center;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.35); }
.hero-container { position: relative; z-index: 2; text-align: center; }
.btn-explore {
    display: inline-block; border: 2px solid var(--white);
    color: var(--white); padding: 14px 40px;
    font-family: 'Montserrat', sans-serif; font-size: 13px;
    font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    transition: background .3s, color .3s;
}
.btn-explore:hover { background: var(--white); color: var(--dark); }

/* ===== ABOUT ===== */
.about-section { background: var(--dark); }
.about-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    padding: 80px 60px; gap: 50px;
}
.about-col-title {
    font-size: 15px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; color: var(--white); margin-bottom: 16px;
}
.about-col p { font-size: 14px; color: rgba(255,255,255,.7); font-weight: 300; margin-bottom: 20px; }
.separator-line { width: 40px; height: 2px; background: var(--red); }

/* ===== AMENITIES ===== */
.amenities-section { padding: 70px 60px; background: var(--white); }
.amenities-grid {
    display: grid; grid-template-columns: repeat(5,1fr);
    gap: 40px 20px; text-align: center;
}
.amenity-box { padding: 10px; }
.amenity-icon { width: 60px; height: 60px; margin: 0 auto 14px; object-fit: contain; }
.amenity-fa-icon { font-size: 42px; color: var(--green); margin-bottom: 14px; display: block; }
.amenity-title { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 600; color: var(--dark); }

/* ===== ROOMS (Home Preview) ===== */
.rooms-home-section { background: var(--light); padding: 50px 0; }
.rooms-home-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.room-card { background: var(--white); border: 1px solid #e8e8e8; }
.room-card-img img { width: 100%; height: 260px; object-fit: cover; display: block; }
.room-card-body { padding: 28px 25px; }
.room-card-title {
    font-size: 15px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .5px; color: var(--dark); margin-bottom: 12px;
}
.room-card-desc { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 20px; min-height: 60px; }
.room-card-actions { display: flex; gap: 10px; padding-top: 15px; border-top: 1px solid #eee; }
.btn-room-outline {
    display: inline-block; border: 1px solid var(--green); color: var(--green);
    padding: 9px 18px; font-family: 'Montserrat', sans-serif;
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .5px; transition: all .3s;
}
.btn-room-outline:hover { background: var(--green); color: var(--white); }
.btn-room-solid {
    display: inline-block; background: var(--dark); color: var(--white);
    padding: 9px 18px; font-family: 'Montserrat', sans-serif;
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .5px; transition: all .3s;
}
.btn-room-solid:hover { background: var(--green); }

/* ===== GALLERY HOME ===== */
.gallery-home-section { background: var(--white); }
.gallery-home-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 0;
}
.gallery-home-item { overflow: hidden; }
.gallery-home-item a { display: block; height: 100%; }
.gallery-home-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-home-item:hover img { transform: scale(1.07); }
.gallery-home-item--tall { grid-row: span 2; }
.gallery-home-btn-wrap { text-align: center; padding: 40px; background: var(--white); }
.btn-view-gallery {
    display: inline-block; background: var(--dark); color: var(--white);
    padding: 14px 40px; font-family: 'Montserrat', sans-serif;
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; transition: background .3s;
}
.btn-view-gallery:hover { background: var(--green); }

/* ===== MICE ===== */
.mice-section { background: var(--light); }
.mice-intro { padding: 80px 60px 60px; background: var(--white); }
.mice-main-title {
    font-size: 28px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; color: var(--dark); margin-bottom: 14px;
}
.separator-line-red { width: 50px; height: 3px; background: var(--red); margin: 0 auto 24px; }
.mice-main-subtitle { font-size: 14px; color: var(--gray); max-width: 780px; margin: 0 auto; line-height: 1.8; }
.mice-split { display: grid; grid-template-columns: 1fr 1fr; }
.mice-split-img img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 450px; }
.mice-split-content {
    background: var(--dark); display: flex;
    align-items: center; padding: 60px 70px;
}
.mice-inner { width: 100%; }
.mice-why-title {
    font-size: 14px; font-weight: 400; text-transform: uppercase;
    letter-spacing: 1px; color: #888; margin-bottom: 35px; line-height: 1.6;
}
.mice-why-title strong { color: var(--white); font-weight: 700; }
.mice-feature { display: flex; gap: 20px; margin-bottom: 22px; }
.mice-num {
    font-family: 'Montserrat', sans-serif; font-size: 20px;
    font-weight: 700; color: var(--white); flex-shrink: 0; min-width: 30px;
}
.mice-desc { font-size: 12px; text-transform: uppercase; color: rgba(255,255,255,.7); line-height: 1.6; }
.mice-desc .highlight { color: var(--white); font-weight: 700; }
.btn-enquire-now {
    display: inline-block; border: 2px solid var(--white); color: var(--white);
    padding: 12px 35px; font-family: 'Montserrat', sans-serif;
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; margin-top: 20px; transition: all .3s;
}
.btn-enquire-now:hover { background: var(--white); color: var(--dark); }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    position: relative; padding: 100px 0;
    background-size: cover; background-position: center; background-attachment: fixed;
}
.testi-overlay { position: absolute; inset: 0; background: rgba(255,255,255,.93); }
.testi-container { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 0 20px; }
.testi-block { text-align: center; padding: 50px 40px; background: #f9f9f9; }
.testi-quote { color: var(--green); margin-bottom: 20px; }
.testi-text { font-size: 15px; font-style: italic; color: var(--gray); margin-bottom: 30px; line-height: 1.8; }
.testi-profile { display: flex; align-items: center; justify-content: center; gap: 18px; }
.testi-avatar { width: 70px; height: 70px; border-radius: 50%; border: 3px solid var(--white); object-fit: cover; box-shadow: 0 2px 10px rgba(0,0,0,.1); }
.testi-name { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; color: var(--dark); margin-bottom: 4px; }
.testi-source { font-size: 12px; color: var(--gray); }
.testi-source i { margin-right: 5px; color: var(--green); }
.testi-pagination { margin-top: 30px; }
.swiper-pagination-bullet-active { background: var(--green) !important; }

/* ===== CONTACT + MAP (Home) ===== */
.contact-home-section {}
.contact-home-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.contact-home-map iframe { width: 100%; height: 100%; min-height: 560px; border: 0; display: block; }
.contact-home-form { background: var(--dark); display: flex; align-items: center; justify-content: center; padding: 60px 70px; }
.contact-form-inner { width: 100%; }
.contact-form-subtitle { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: #888; margin-bottom: 10px; }
.contact-form-title { font-size: 28px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 35px; letter-spacing: 1px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 15px; }
.cf-input {
    width: 100%; padding: 14px 16px; background: transparent;
    border: 1px solid #444; color: var(--white);
    font-family: 'Roboto', sans-serif; font-size: 13px;
    outline: none; transition: border-color .3s;
}
.cf-input::placeholder { color: rgba(255,255,255,.45); }
.cf-input:focus { border-color: var(--green); }
.cf-textarea { display: block; resize: vertical; margin-bottom: 15px; min-height: 120px; }
.form-submit-wrap { text-align: center; margin-top: 10px; }
.btn-send-message {
    display: inline-block; background: var(--green); color: var(--white);
    border: none; padding: 14px 45px; font-family: 'Montserrat', sans-serif;
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; cursor: pointer; transition: background .3s;
}
.btn-send-message:hover { background: #527a38; }

/* ===== FOOTER ===== */
.footer-standard { background: var(--white); }
.footer-widget-area { padding: 60px 0; border-top: 1px solid #eee; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1.4fr; gap: 40px; padding: 0 60px; }
.footer-logo { max-width: 150px; margin-bottom: 22px; }
.social-icon { list-style: none; display: flex; gap: 14px; margin-top: 18px; }
.social-icon a { color: #aaa; font-size: 15px; }
.social-icon a:hover { color: var(--green); }
.widget-title { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--dark); margin-bottom: 22px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; font-weight: 600; color: var(--gray); }
.footer-links a:hover { color: var(--green); }
.widget-contact p, .widget-contact a, .widget-contact div { font-size: 13px; font-weight: 500; color: var(--gray); display: block; margin-bottom: 10px; line-height: 1.7; }
.widget-contact a:hover { color: var(--green); }
.footer-bottom { background: var(--light); padding: 22px 60px; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--gray); }
.footer-bottom-inner a { color: var(--gray); margin-left: 15px; }
.footer-bottom-inner a:hover { color: var(--green); }

/* ===== SCROLL TOP ===== */
.scroll-top-arrow {
    position: fixed; bottom: 30px; right: 20px;
    width: 42px; height: 42px; background: var(--white);
    color: var(--dark); border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,.12);
    opacity: 0; visibility: hidden; transition: all .3s; z-index: 99;
}
.scroll-top-arrow.show { opacity: 1; visibility: visible; }
.scroll-top-arrow:hover { background: var(--green); color: var(--white); }

/* ===== REVEAL ANIMATION ===== */
.reveal-up { opacity: 0; transform: translateY(35px); transition: opacity .7s ease, transform .7s ease; }
.reveal-up.active { opacity: 1; transform: translateY(0); }

/* ===== GALLERY PAGE ===== */
.gallery-page-section { padding: 70px 0 0; }
.gallery-page-header { text-align: center; padding: 0 30px 50px; }
.section-title { font-size: 28px; font-weight: 700; text-transform: uppercase; color: var(--dark); margin-bottom: 12px; }
.section-line { width: 50px; height: 3px; background: var(--red); margin: 0 auto; }
.gallery-page-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 4px;
}
.gallery-page-item { overflow: hidden; position: relative; height: 260px; }
.gallery-page-item a { display: block; height: 100%; }
.gallery-page-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-page-item:hover img { transform: scale(1.1); }
.gallery-hover-overlay {
    position: absolute; inset: 0; background: rgba(101,139,73,.8);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .3s;
}
.gallery-page-item:hover .gallery-hover-overlay { opacity: 1; }
.gallery-hover-overlay i { color: var(--white); font-size: 24px; }

/* ===== ROOMS PAGE ===== */
.rooms-page-section { padding: 70px 0; }
.rooms-page-header { text-align: center; padding: 0 30px 50px; }
.rooms-page-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; padding: 0 40px; }

/* ===== CONTACT PAGE ===== */
.contact-page-section {}
.contact-page-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; }
.contact-page-map iframe { width: 100%; height: 100%; min-height: 620px; border: 0; display: block; }
.contact-page-form { background: var(--dark); display: flex; align-items: center; justify-content: center; padding: 70px 70px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .amenities-grid { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 991px) {
    .sidebar-nav { left: calc(-1 * var(--sidebar)); }
    .sidebar-nav.active { left: 0; }
    .main-wrapper { margin-left: 0; }
    .mobile-toggle { display: flex; position: fixed; top: 15px; right: 15px; z-index: 1001; background: var(--white); padding: 10px; box-shadow: 0 2px 8px rgba(0,0,0,.1); }
    .sidenav-header { display: flex; justify-content: space-between; align-items: center; }
    .about-grid { grid-template-columns: 1fr; padding: 50px 30px; gap: 30px; }
    .amenities-grid { grid-template-columns: repeat(3,1fr); padding: 50px 30px; }
    .amenities-section { padding: 50px 30px; }
    .rooms-home-grid { grid-template-columns: 1fr; }
    .gallery-home-grid { grid-template-columns: repeat(2,1fr); }
    .gallery-home-item--tall { grid-row: span 1; }
    .mice-split { grid-template-columns: 1fr; }
    .mice-split-img img { min-height: 300px; }
    .mice-split-content { padding: 50px 30px; }
    .contact-home-split { grid-template-columns: 1fr; }
    .contact-home-form { padding: 50px 30px; }
    .form-row-2 { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; padding: 0 30px; gap: 30px; }
    .footer-bottom { padding: 20px 30px; }
    .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
    .rooms-page-grid { grid-template-columns: 1fr; padding: 0 20px; }
    .gallery-page-grid { grid-template-columns: repeat(2,1fr); }
    .contact-page-split { grid-template-columns: 1fr; }
    .contact-page-form { padding: 50px 30px; }
    .mice-intro { padding: 60px 30px 40px; }
}
@media (max-width: 600px) {
    .amenities-grid { grid-template-columns: repeat(2,1fr); }
    .gallery-home-grid { grid-template-columns: 1fr; }
    .gallery-page-grid { grid-template-columns: 1fr; }
    .hero-section { height: 70vh; }
}
