/* ============================================================
   style.css — RockNest Resort, Sigiriya
   Organised sections:
    1.  Variables
    2.  Reset & Base
    3.  Typography Helpers
    4.  Navbar
    5.  Booking Bar
    6.  Buttons
    7.  Hero (index)
    8.  Intro (index)
    9.  Why Stay (index)
    10. Section Icon
    11. Rooms (index)
    12. Experiences (index)
    13. Special Offers / Slider (index)
    14. More Experiences (index)
    15. Sustainability (index)
    16. Instagram (index)
    17. FAQ (index)
    18. Footer
    19. Concept page
    20. Accommodation page
    21. Special Offers page
    22. Gallery Page
    23. Loyalty Page
    24. Room detail pages
    25. Offer - Early Bird
    26. Early Bird Book Now - detail page
    27. Booking Form
    28. Responsive breakpoints
   ============================================================ */


/* ------------------------------------------------------------
   1. VARIABLES
   ------------------------------------------------------------ */
:root {
    --green:        #4a7c3f;
    --green-dark:   #3a6230;
    --red:          #c0392b;
    --off-white:    #f5f5f0;
    --light-bg:     #f0f0ea;
    --cream:        #f5f0e8;
    --dark-bg:      #2a2200;
    --charcoal:     #333333;
    --mid-grey:     #555555;
    --light-grey:   #dddddd;
    --nav-height:   90px;
}


/* ------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 300;
    color: var(--charcoal);
    background: #fff;
    width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
}


/* ------------------------------------------------------------
   3. TYPOGRAPHY HELPERS
   ------------------------------------------------------------ */
.serif {
    font-family: 'Playfair Display', serif;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3;
}

.section-sub {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
}


/* ------------------------------------------------------------
   4. NAVBAR
   ------------------------------------------------------------ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: var(--nav-height);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-img {
    width: 75px;
    height: 75px;
    object-fit: contain;
}

.logo-text {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    letter-spacing: 5px;
    line-height: 1;
}

.nav-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.nav-links a {
    color: #ccc;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a.active {
    border-bottom: 1px solid var(--green);
    padding-bottom: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}


/* ------------------------------------------------------------
   5. GREEN BOOKING BAR
   ------------------------------------------------------------ */
.pl-date-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.pl-bar {
    position: sticky;
    top: var(--nav-height);
    z-index: 500;
    background: var(--green);
    width: 100%;
    height: 72px;
    display: flex;
    align-items: center;
}

.pl-bar-inner {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.pl-date-block {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    text-align: left;
}

.pl-date-block:hover { background: #3a6230; }

.pl-date-icon {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    flex-shrink: 0;
}

.pl-date-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pl-date-day {
    font-size: 1rem;
    color: #fff;
    font-weight: 400;
    font-family: 'Source Sans 3', sans-serif;
    letter-spacing: 0.3px;
}

.pl-date-year {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
    font-family: 'Source Sans 3', sans-serif;
    letter-spacing: 0.5px;
}

.pl-bar-arrow {
    width: 46px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pl-bar-arrow-circle {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    padding-top: 1px;
}

.pl-guests-block {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 30px;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s;
    border: none;
}

.pl-guests-block:hover { background: #3a6230; }

.pl-guests-icon { font-size: 1.15rem; color: rgba(255,255,255,0.8); }
.pl-guests-main { font-size: 1rem; color: #fff; font-weight: 400; }
.pl-guests-sub  { font-size: 0.72rem; color: rgba(255,255,255,0.65); }

.pl-filters-block {
    height: 100%;
    padding: 0 50px;
    background: var(--green-dark);
    border: none;
    color: #fff;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
    white-space: nowrap;
}

.pl-filters-block:hover { background: #2e4e25; }

/* Flatpickr green theme overrides */
.flatpickr-calendar {
    border-radius: 0 !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
    font-family: 'Source Sans 3', sans-serif !important;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: var(--green) !important;
    border-color: var(--green) !important;
}

.flatpickr-day:hover {
    background: #e8f2e4 !important;
}

.flatpickr-months .flatpickr-month,
.flatpickr-weekdays,
.flatpickr-weekday {
    background: var(--green) !important;
    color: #fff !important;
    fill: #fff !important;
}

.flatpickr-current-month select,
.flatpickr-current-month .cur-year,
.flatpickr-current-month .cur-month {
    color: #fff !important;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg { fill: #fff !important; }

/* Responsive for green bar */
@media (max-width: 768px) {
    .pl-bar-inner    { height: auto; flex-wrap: wrap; padding: 10px 16px; gap: 8px; }
    .pl-date-block,
    .pl-guests-block { padding: 10px 16px; flex: auto; }
    .pl-bar-arrow    { display: none; }
    .pl-filters-block { padding: 10px 20px; }
}


/* ------------------------------------------------------------
   6. BUTTONS
   ------------------------------------------------------------ */
.outline-btn {
    border: 1px solid var(--charcoal);
    padding: 10px 22px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-block;
    white-space: nowrap;
}

.outline-btn:hover {
    background: var(--charcoal);
    color: #fff;
}

.outline-btn-white {
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 22px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-block;
}

.outline-btn-white:hover {
    background: #fff;
    color: var(--charcoal);
}


/* ------------------------------------------------------------
   7. HERO (index)
   ------------------------------------------------------------ */
.hero {
    position: relative;
    height: 100vh;
    margin-top: var(--nav-height);
    overflow: hidden;
    width: 100%;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #c8d8b0;
    min-height: 100vh;
}

.hero-text {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-style: italic;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    width: 90%;
}


/* ------------------------------------------------------------
   8. INTRO (index)
   ------------------------------------------------------------ */
.intro {
    text-align: center;
    padding: 80px 40px;
    max-width: 750px;
    margin: 0 auto;
}

.intro-sub {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 15px;
}

.intro-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 15px;
}

.intro-tagline {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 25px;
    font-style: italic;
}

.intro-desc {
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--mid-grey);
    margin-bottom: 12px;
}


/* ------------------------------------------------------------
   9. WHY STAY (index)
   ------------------------------------------------------------ */
.why-stay {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.why-img {
    position: relative;
    overflow: hidden;
}

.why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #b8cca0;
    min-height: 500px;
}

.img-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.img-count {
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.why-content {
    padding: 60px 50px;
    background: var(--light-bg);
}

.why-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 35px;
    line-height: 1.3;
}

.why-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--light-grey);
}

.why-item:last-child {
    border-bottom: none;
}

.why-item h4 {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.why-item p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.7;
}


/* ------------------------------------------------------------
   10. SECTION ICON
   ------------------------------------------------------------ */
.section-icon {
    width: 12px;
    height: 12px;
    border: 2px solid var(--red);
    border-radius: 50%;
    display: inline-block;
    margin: 15px 0;
    position: relative;
    flex-shrink: 0;
}

.section-icon::after {
    content: '';
    position: absolute;
    left: 12px;
    top: 3px;
    width: 80px;
    height: 1px;
    background: var(--red);
}


/* ------------------------------------------------------------
   11. ROOMS (index)
   ------------------------------------------------------------ */
.rooms {
    padding: 60px 0;
    width: 100%;
}

.section-quote {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--mid-grey);
    padding: 0 40px 50px;
}

.rooms-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 60px 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.rooms-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3;
}

.rooms-tabs {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tab {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #999;
    cursor: pointer;
    padding-bottom: 5px;
    transition: color 0.3s;
    white-space: nowrap;
}

.tab.active {
    color: var(--charcoal);
    border-bottom: 1px solid var(--charcoal);
}

.tab:hover {
    color: var(--charcoal);
}

.room-img-wrap {
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.room-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #c8b89a;
}

.room-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 60px;
    background: var(--off-white);
    flex-wrap: wrap;
    gap: 20px;
}

.room-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
}

.room-details {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.room-details span {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: #999;
    display: block;
    margin-bottom: 4px;
}

.room-details p {
    font-size: 0.85rem;
}


/* ------------------------------------------------------------
   12. EXPERIENCES (index)
   ------------------------------------------------------------ */
.experiences {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding: 80px 60px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.exp-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3;
}

.exp-sub {
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
    margin-bottom: 15px;
}

.exp-left p {
    font-size: 0.85rem;
    line-height: 1.9;
    color: var(--mid-grey);
}

.exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.exp-item {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.exp-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #9ab888;
    transition: transform 0.5s;
}

.exp-item:hover img {
    transform: scale(1.05);
}

.exp-item span {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #fff;
    font-size: 0.8rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}


/* ------------------------------------------------------------
   13. SPECIAL OFFERS / SLIDER (index)
   ------------------------------------------------------------ */
.offers {
    padding: 80px 60px;
    text-align: center;
    background: #fafafa;
    overflow: hidden;
}

.offers h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 40px;
}

.offers-slider {
    display: flex;
    align-items: center;
    gap: 15px;
    overflow: hidden;
}

.offers-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
    overflow: hidden;
}

.offer-card {
    min-width: 33.33%;
    position: relative;
    height: 400px;
    overflow: hidden;
    padding: 0 5px;
    flex-shrink: 0;
}

.offer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #b8a888;
}

.offer-card span {
    position: absolute;
    top: 20px;
    left: 25px;
    color: #fff;
    font-size: 0.85rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.slider-btn {
    background: none;
    border: 1px solid #999;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--charcoal);
    color: #fff;
}

.offers-count {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #999;
    margin-top: 15px;
    text-align: right;
}


/* ------------------------------------------------------------
   14. MORE EXPERIENCES (index)
   ------------------------------------------------------------ */
.more-exp {
    padding: 80px 60px;
    text-align: center;
}

.more-exp h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.more-exp > p {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 0.9rem;
    color: var(--mid-grey);
    line-height: 1.8;
}

.more-exp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.more-exp-item {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.more-exp-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #9aaa88;
    transition: transform 0.5s;
}

.more-exp-item:hover img {
    transform: scale(1.05);
}

.more-exp-item span {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #fff;
    font-size: 0.8rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.find-more {
    background: #2a2a2a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    gap: 20px;
}

.find-more p {
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.7;
}


/* ------------------------------------------------------------
   15. SUSTAINABILITY (index)
   ------------------------------------------------------------ */
.sustainability {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    min-height: 500px;
}

.sus-content {
    padding: 80px 60px;
    background: #fff;
}

.sus-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 10px;
}

.sus-sub {
    color: #999;
    font-size: 0.85rem;
    font-style: italic;
    margin-bottom: 20px;
}

.sus-content p {
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--mid-grey);
    margin-bottom: 30px;
}

.sus-img {
    overflow: hidden;
}

.sus-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #88aa78;
    min-height: 500px;
}


/* ------------------------------------------------------------
   16. INSTAGRAM (index)
   ------------------------------------------------------------ */
.instagram {
    padding: 60px;
    text-align: center;
}

.instagram h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 30px;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.insta-item {
    height: 220px;
    overflow: hidden;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #aabb99;
    transition: transform 0.5s;
}

.insta-item:hover img {
    transform: scale(1.05);
}


/* ------------------------------------------------------------
   17. FAQ (index)
   ------------------------------------------------------------ */
.faq {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    padding: 80px 60px;
    background: var(--off-white);
}

.faq-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 10px;
}

.faq-left p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--mid-grey);
    margin-bottom: 25px;
}

.faq-left img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: #8899aa;
}

.faq-item {
    border-bottom: 1px solid var(--light-grey);
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    min-height: 44px;
}

.faq-question span {
    font-size: 1.2rem;
    color: #999;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.8;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.open {
    max-height: 200px;
    padding-top: 15px;
}


/* ------------------------------------------------------------
   18. FOOTER
   ------------------------------------------------------------ */
.footer {
    position: relative;
    background: #1a1a10;
    color: #ccc;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    overflow: hidden;
    opacity: 0.3;
}

.footer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #334422;
}

.footer-top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 60px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: #aaa;
    margin-top: 15px;
    max-width: 300px;
}

.footer-logo-img {
    width: 80px;
    opacity: 0.9;
}

.footer-newsletter h4 {
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #ddd;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border: 1px solid #444;
    border-right: none;
    padding: 12px 15px;
    color: #fff;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.85rem;
    outline: none;
    min-width: 0;
}

.newsletter-form button {
    background: #555;
    border: none;
    padding: 12px 20px;
    color: #fff;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--green);
}

.footer-links {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 30px;
    padding: 0 60px 50px;
    border-bottom: 1px solid #333;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #aaa;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #fff;
}

.footer-contact p {
    font-size: 0.8rem;
    line-height: 1.9;
    color: #aaa;
}

.footer-contact span {
    color: #ddd;
}

.footer-awards {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    align-items: center;
}

.footer-awards img {
    width: auto;
    height: 50px;
    object-fit: contain;
    opacity: 0.8;
}

.footer-social {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 40px;
    padding: 30px 60px;
    border-bottom: 1px solid #333;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-social a {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #aaa;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #fff;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    padding: 20px 60px;
    font-size: 0.75rem;
    color: #666;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom a {
    color: #666;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #aaa;
}

.footer-dark {
    background: var(--dark-bg);
}

.footer-dark .footer-top,
.footer-dark .footer-links,
.footer-dark .footer-social,
.footer-dark .footer-bottom {
    border-color: #3a3200;
}


/* ------------------------------------------------------------
   19. CONCEPT PAGE
   ------------------------------------------------------------ */
.concept-header {
    text-align: center;
    padding: 70px 40px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.concept-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.concept-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.concept-subtitle span {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.concept-intro {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444;
    max-width: 680px;
    margin: 0 auto;
}

.concept-image {
    width: 88%;
    max-width: 1200px;
    margin: 40px auto;
    overflow: hidden;
    height: 480px;
}

.concept-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #b8cca0;
}

.concept-text {
    text-align: center;
    padding: 20px 40px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.concept-text p {
    font-size: 0.95rem;
    line-height: 1.95;
    color: var(--mid-grey);
}

.collection-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--cream);
    padding: 80px 60px;
    align-items: start;
    gap: 40px;
}

.collection-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 10px;
}

.collection-left h2 span {
    font-style: italic;
}

.collection-subtitle {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.collection-subtitle span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #888;
}

.collection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
    margin-bottom: 40px;
}

.collection-item {
    padding: 14px 0;
    border-bottom: 1px solid #ddd;
    font-size: 0.9rem;
}

.collection-item a {
    color: var(--charcoal);
    transition: color 0.3s;
}

.collection-item a:hover {
    color: var(--green);
}

.collection-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #444;
    line-height: 1.7;
    max-width: 400px;
}

.collection-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
}

.collection-right img {
    width: 100%;
    max-width: 500px;
    object-fit: contain;
    background: transparent;
}

.panoramic-section {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.panoramic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #8a7a6a;
    filter: sepia(60%) brightness(0.6);
}

.panoramic-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
}


/* ------------------------------------------------------------
   20. ACCOMMODATION PAGE
   ------------------------------------------------------------ */

/* Shared page header */
.page-header {
    text-align: center;
    padding: 70px 40px 50px;
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.page-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.page-subtitle span {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.page-intro {
    font-size: 1rem;
    line-height: 1.95;
    color: #555;
    max-width: 750px;
    margin: 0 auto;
}

/* Rooms grid */
.rooms-grid-wrap {
    padding: 20px 60px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.rooms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.room-card-single {
    grid-column: 1 / 2;
}

.room-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    overflow: hidden;
}

.room-card-img {
    width: 100%;
    height: 340px;
    overflow: hidden;
}

.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #c8b89a;
    transition: transform 0.5s;
}

.room-card:hover .room-card-img img {
    transform: scale(1.03);
}

.room-card-body {
    padding: 35px 35px 40px;
    background: var(--off-white);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.room-card-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--charcoal);
}

.room-card-body p {
    font-size: 0.9rem;
    line-height: 1.85;
    color: #666;
    flex: 1;
}

.room-card-specs {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding: 12px 0;
}

.room-card-specs span {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    color: #888;
    text-transform: uppercase;
}


/* ------------------------------------------------------------
   21. SPECIAL OFFERS PAGE
   ------------------------------------------------------------ */
.offers-page {
    padding: 10px 60px 90px;
    background: #fff;
}

.offers-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.offers-page-card {
    display: flex;
    flex-direction: column;
}

.offers-page-img {
    width: 100%;
    height: 390px;
    overflow: hidden;
}

.offers-page-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #b8a888;
    transition: transform 0.5s ease;
}

.offers-page-card:hover .offers-page-img img {
    transform: scale(1.04);
}

.offers-page-body {
    padding: 28px 15px 35px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    flex: 1;
    border-bottom: 1px solid #e8e8e0;
}

.offers-page-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--charcoal);
}

.offers-page-body p {
    font-size: 0.85rem;
    line-height: 1.9;
    color: #777;
    max-width: 300px;
}


/* ------------------------------------------------------------
   22. GALLERY PAGE
   ------------------------------------------------------------ */
.gallery-section {
    padding: 20px 60px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 8px;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #aab898;
    transition: transform 0.5s;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item.g-hero {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.gallery-item.g-hero-top {
    grid-column: 3 / 5;
}

.gallery-item.g-hero-bottom {
    grid-column: 3 / 5;
}


/* ------------------------------------------------------------
   23. LOYALTY PAGE
   ------------------------------------------------------------ */

/* JOIN button inside page-header */
.loyalty-join-btn {
    display: inline-block;
    margin-top: 10px;
    background: var(--green);
    color: #fff;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 38px;
    transition: background 0.3s;
}

.loyalty-join-btn:hover {
    background: var(--green-dark);
}

/* Member Benefits */
.loyalty-benefits {
    padding: 70px 60px 80px;
    background: #faf9f7;
}

.loyalty-benefits h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    text-align: center;
    color: var(--charcoal);
    margin-bottom: 50px;
}

.loyalty-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.tier-card {
    background: #fff;
    border: 1px solid #e8e8e0;
    padding-top: 20px;
}

.tier-badge {
    display: inline-block;
    font-size: 0.62rem;
    letter-spacing: 1.5px;
    font-weight: 500;
    padding: 6px 14px;
    color: #fff;
    margin: 0 0 18px 18px;
    text-transform: uppercase;
}

.tier-badge--blue  { background: #5b9bd5; }
.tier-badge--green { background: #4a9a7a; }
.tier-badge--gold  { background: #c8752a; }

.tier-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 5px;
    text-align: center;
    color: var(--charcoal);
    padding: 0 20px 20px;
}

.tier-bar {
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    padding: 13px 20px;
}

.tier-bar--blue  { background: #5b9bd5; }
.tier-bar--green { background: linear-gradient(90deg, #4a9a7a, #3a8a6a); }
.tier-bar--gold  { background: linear-gradient(90deg, #d4883a, #c8752a); }

.tier-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tier-list li {
    font-size: 0.82rem;
    line-height: 1.5;
    color: #555;
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0ea;
}

.tier-list li:last-child {
    border-bottom: none;
}

/* Accordion */
.loyalty-accordion-section {
    background: #faf9f7;
    padding: 0 60px 70px;
}

.loyalty-accordion {
    max-width: 1000px;
    margin: 0 auto;
    border-top: 1px solid #ddd;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--charcoal);
    cursor: pointer;
    text-align: left;
}

.accordion-chevron {
    font-size: 1.5rem;
    color: #888;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.accordion-item.open .accordion-chevron {
    transform: rotate(180deg);
}

.accordion-body {
    display: none;
    padding: 0 0 24px;
}

.accordion-item.open .accordion-body {
    display: block;
}

.accordion-body p {
    font-size: 0.85rem;
    line-height: 1.9;
    color: #777;
}

/* Contact Banner */
.loyalty-contact {
    background: #e4f2ec;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.loyalty-contact h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--charcoal);
    max-width: 320px;
    line-height: 1.3;
}

.loyalty-contact-details {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
}

.loyalty-contact-details a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--charcoal);
    transition: color 0.3s;
}

.loyalty-contact-details a:hover {
    color: var(--green);
}

.contact-icon {
    font-size: 1.3rem;
}


/* ------------------------------------------------------------
   24. ROOM DETAIL PAGES
   ------------------------------------------------------------ */

/* Image Slider */
.room-slider { background: #111; }

.room-slider-main {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
}

.room-slider-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 14px 20px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    line-height: 1;
}

.slider-arrow:hover { background: rgba(255,255,255,0.3); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.room-slider-thumbs {
    display: flex;
    gap: 6px;
    padding: 6px;
    background: #111;
    justify-content: center;
}

.slider-thumb {
    width: 200px;
    height: 110px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.55;
    transition: opacity 0.3s;
    flex-shrink: 0;
}

.slider-thumb.active,
.slider-thumb:hover { opacity: 1; }

.slider-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Stats Bar */
.room-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 110px;
    border-bottom: 1px solid #e8e8e0;
}

.room-stat {
    padding: 32px 20px;
    text-align: center;
    border-right: 1px solid #e8e8e0;
}

.room-stat:last-child { border-right: none; }

.room-stat label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.room-stat span {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--charcoal);
    letter-spacing: 1px;
}

/* Room Description */
.room-description {
    padding: 55px 220px;
    text-align: center;
}

.room-description p {
    font-size: 0.88rem;
    line-height: 2;
    color: #666;
}

/* Facilities & Amenities */
.room-amenities {
    background: #f5f5f0;
    padding: 60px 110px;
}

.room-amenities h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    color: var(--charcoal);
    margin-bottom: 40px;
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border: 1px solid #e8e8e0;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-bottom: 1px solid #f0f0ea;
    border-right: 1px solid #f0f0ea;
}

.amenity-item:nth-child(4n) { border-right: none; }

.amenity-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 36px;
    text-align: center;
}

.amenity-label {
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #555;
}

/* Bullet extras list */
.amenity-extras {
    list-style: none;
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 20px;
    padding: 0;
}

.amenity-extras li {
    font-size: 0.8rem;
    color: #666;
    padding-left: 16px;
    position: relative;
}

.amenity-extras li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--green);
}

/* Other Room Types */
.other-rooms {
    padding: 70px 110px;
    background: #fff;
}

.other-rooms-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 40px;
}

.other-rooms-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--charcoal);
}

.view-all-link {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--charcoal);
    border-bottom: 1px solid var(--charcoal);
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
}

.view-all-link:hover { color: var(--green); border-color: var(--green); }

.other-rooms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.other-room-card { background: #faf9f7; }

.other-room-img {
    width: 100%;
    height: 360px;
    overflow: hidden;
}

.other-room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.other-room-card:hover .other-room-img img { transform: scale(1.04); }

.other-room-body { padding: 28px 28px 34px; }

.other-room-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.other-room-body p {
    font-size: 0.83rem;
    line-height: 1.9;
    color: #777;
    margin-bottom: 20px;
}

.other-room-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 22px;
}

.other-room-meta span {
    font-size: 0.67rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
}


/* ------------------------------------------------------------
   25. OFFER — EARLY BIRD
   ------------------------------------------------------------ */
.offer-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    padding: 0 110px 70px;
    align-items: start;
}

.offer-detail-img {
    width: 100%;
    min-height: 520px;
    overflow: hidden;
}

.offer-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.offer-inclusions-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.offer-inclusions-list {
    list-style: none;
    padding: 0;
    margin-bottom: 44px;
}

.offer-inclusions-list li {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #555;
    padding: 13px 0;
    border-bottom: 1px solid #f0f0ea;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.offer-inclusions-list li::before {
    content: '▶';
    font-size: 0.5rem;
    color: var(--green);
    margin-top: 5px;
    flex-shrink: 0;
}

.offer-book h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.offer-book-btn {
    display: inline-block;
    background: var(--green);
    color: #fff;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 13px 32px;
    transition: background 0.3s;
}

.offer-book-btn:hover { background: var(--green-dark); }

/* Offer accordion */
.offer-accordion-section {
    padding: 0 110px 60px;
}

/* Contact banner */
.offer-contact {
    background: #e4f2ec;
    padding: 50px 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.offer-contact h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--charcoal);
    max-width: 300px;
    line-height: 1.3;
}

.offer-contact-details {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
}

.offer-contact-details a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--charcoal);
    transition: color 0.3s;
}

.offer-contact-details a:hover { color: var(--green); }

/* More Offers */
.more-offers-section {
    padding: 70px 60px 80px;
    background: #fff;
}

.more-offers-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    color: var(--charcoal);
    margin-bottom: 50px;
}


/* ------------------------------------------------------------
   26. EARLY BIRD BOOK NOW — DETAIL PAGE
   ------------------------------------------------------------ */
.book-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    height: 65px;
    background: #111;
    position: sticky;
    top: 0;
    z-index: 1000;
    gap: 20px;
}

.book-header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.book-header-logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.book-header-logo span {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    letter-spacing: 4px;
}

.book-header-title {
    text-align: center;
    flex: 1;
}

.book-header-title h1 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.book-header-title span {
    color: #aaa;
    font-size: 0.72rem;
    letter-spacing: 1px;
}

.book-header-back {
    color: #ccc;
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    flex-shrink: 0;
    transition: color 0.3s;
}

.book-header-back:hover { color: #fff; }

/* Hero */
.book-hero {
    width: 100%;
    height: 520px;
    overflow: hidden;
}

.book-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Main two-column layout */
.book-main {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    padding: 50px 80px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: start;
}

/* Left column */
.book-desc {
    font-size: 0.88rem;
    line-height: 2;
    color: #555;
    margin-bottom: 30px;
}

.book-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    padding: 20px;
    background: #faf9f7;
    border: 1px solid #e8e8e0;
}

.book-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: #444;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.book-badge-icon {
    color: var(--green);
    font-size: 0.9rem;
}

.book-list {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: 30px;
}

.book-list li {
    font-size: 0.83rem;
    line-height: 1.8;
    color: #555;
    padding: 4px 0;
}

.book-note {
    background: #faf9f7;
    border: 1px solid #e8e8e0;
    padding: 20px;
}

.book-note-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #444;
    margin-bottom: 10px;
}

.book-note p {
    font-size: 0.8rem;
    line-height: 1.8;
    color: #777;
}

/* Right column – price box */
.book-sidebar {
    position: sticky;
    top: 85px;
}

.book-price-box {
    border: 1px solid #e8e8e0;
    padding: 30px 25px;
    text-align: center;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.book-from {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.book-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--green);
    line-height: 1;
    margin-bottom: 4px;
}

.book-per-night {
    display: block;
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 22px;
}

.book-price-btn {
    display: block;
    background: var(--green);
    color: #fff;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px;
    text-align: center;
    transition: background 0.3s;
    margin-bottom: 16px;
}

.book-price-btn:hover { background: var(--green-dark); }

.book-avail {
    font-size: 0.75rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 4px;
}

.book-excl {
    font-size: 0.72rem;
    color: #aaa;
}

/* Other Offers */
.book-other {
    background: #faf9f7;
    padding: 60px 80px;
}

.book-other h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 40px;
    text-align: center;
}

.book-other-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.book-other-card {
    background: #fff;
    border: 1px solid #e8e8e0;
}

.book-other-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.book-other-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.book-other-card:hover .book-other-img img { transform: scale(1.04); }

.book-other-body {
    padding: 20px;
}

.book-other-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 12px;
    line-height: 1.3;
}

.book-other-badges {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
}

.book-other-badges span {
    font-size: 0.72rem;
    color: #666;
}

.book-other-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 4px;
}

.book-other-from {
    font-size: 0.72rem;
    color: #888;
}

.book-other-amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--green);
    font-weight: 400;
}

.book-other-per {
    font-size: 0.72rem;
    color: #888;
}

.book-other-excl {
    font-size: 0.7rem;
    color: #aaa;
    margin-bottom: 16px;
}

.book-other-btn {
    display: inline-block;
    border: 1px solid var(--charcoal);
    color: var(--charcoal);
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 9px 18px;
    transition: all 0.3s;
}

.book-other-btn:hover {
    background: var(--charcoal);
    color: #fff;
}

/* Simple footer */
.book-footer {
    background: #111;
    padding: 40px 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.book-footer-hotel {
    display: flex;
    align-items: center;
    gap: 20px;
}

.book-footer-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.book-footer-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 4px;
}

.book-footer-info p {
    font-size: 0.78rem;
    color: #888;
}

.book-footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.book-footer-links a {
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
    transition: color 0.3s;
}

.book-footer-links a:hover { color: #fff; }

.book-footer-copy {
    font-size: 0.72rem;
    color: #555;
}


/* ------------------------------------------------------------
   27. BOOKING FORM
   ------------------------------------------------------------ */
/* Styles for booking-form.html are inline in that file (bf-* classes).
   Add any shared overrides here if needed in future. */


/* ------------------------------------------------------------
   29. SITE-WIDE GREEN BOOKING BAR
   ------------------------------------------------------------ */

/* Flatpickr theme — green to match site */
.flatpickr-calendar { font-family: 'Source Sans 3', sans-serif !important; border-radius: 0 !important; box-shadow: 0 8px 30px rgba(0,0,0,0.15) !important; }
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange { background: #4a7c3f !important; border-color: #4a7c3f !important; }
.flatpickr-day.inRange { background: #d4e8ce !important; border-color: #d4e8ce !important; color: #2d4f24 !important; }
.flatpickr-day:hover { background: #eaf2e8 !important; border-color: #eaf2e8 !important; }
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg { fill: #4a7c3f !important; }

/* Hidden date inputs — functional but invisible */
.pl-date-input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

/* Bar wrapper */
.pl-bar {
    position: sticky;
    top: var(--nav-height);
    z-index: 500;
    background: #4a7c3f;
    overflow: visible;
}

.pl-bar-inner {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
    height: 72px;
    gap: 0;
}

/* Date blocks */
.pl-date-block {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 28px;
    cursor: pointer;
    background: #4a7c3f;
    border: none;
    transition: background 0.2s;
    flex: 1;
}
.pl-date-block:hover { background: #3a6230; }

.pl-date-icon {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    flex-shrink: 0;
}

.pl-date-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pl-date-day {
    font-size: 1rem;
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.pl-date-year {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.5px;
}

/* Arrow between dates */
.pl-bar-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    flex-shrink: 0;
}

.pl-bar-arrow-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
}

/* Guests block */
.pl-guests-block {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 28px;
    cursor: pointer;
    background: #4a7c3f;
    border: none;
    transition: background 0.2s;
    flex: 1;
}
.pl-guests-block:hover { background: #3a6230; }

.pl-guests-icon { font-size: 1.15rem; color: rgba(255,255,255,0.8); }
.pl-guests-main { font-size: 1rem; color: #fff; font-weight: 400; }
.pl-guests-sub  { font-size: 0.72rem; color: rgba(255,255,255,0.65); }

/* Book Now / Filters button */
.pl-filters-block {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 32px;
    cursor: pointer;
    background: #3a6230;
    border: none;
    color: #fff;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background 0.2s;
    flex-shrink: 0;
    white-space: nowrap;
}
.pl-filters-block:hover { background: #2e4e25; }

/* Guest dropdown panel */
.pl-guest-dropdown {
    display: none;
    position: absolute;
    top: calc(var(--nav-height) + 72px);
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px 22px;
    min-width: 280px;
    z-index: 600;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 768px) {
    .pl-bar-inner  { height: auto; flex-wrap: wrap; padding: 10px 16px; gap: 8px; }
    .pl-date-block,
    .pl-guests-block { padding: 10px 16px; flex: auto; }
    .pl-bar-arrow  { display: none; }
    .pl-filters-block { padding: 10px 20px; }
}

/* ------------------------------------------------------------
   28. RESPONSIVE BREAKPOINTS
   ------------------------------------------------------------ */

/* — Large screens (1400px+) — */
@media (min-width: 1400px) {
    .rooms-header,
    .room-info {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
    .offers,
    .more-exp,
    .instagram,
    .faq {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* — Tablet landscape (1024px) — */
@media (max-width: 1024px) {
    .experiences      { grid-template-columns: 1fr 1.5fr; gap: 40px; padding: 60px 40px; }
    .more-exp-grid    { grid-template-columns: repeat(2, 1fr); }
    .more-exp-item    { height: 260px; }
    .insta-item       { height: 180px; }
    .room-img-wrap    { height: 450px; }
    .rooms-header     { padding: 0 40px 20px; }
    .room-info        { padding: 25px 40px; }
    .offers           { padding: 60px 40px; }
    .faq              { padding: 60px 40px; gap: 40px; }
    .footer-top       { padding: 60px 40px 40px; gap: 40px; }
    .footer-links     { padding: 0 40px 40px; grid-template-columns: 1fr 1fr 1fr; }
    .footer-social,
    .footer-bottom    { padding-left: 40px; padding-right: 40px; }
    .collection-section { padding: 60px 40px; }
    .concept-image    { height: 380px; }
    .rooms-grid-wrap  { padding: 20px 40px 60px; }
    .room-card-img    { height: 280px; }
    .offers-page      { padding: 10px 40px 70px; }
    .offers-page-img  { height: 320px; }
    .panoramic-section { height: 340px; }
    .gallery-section  { padding: 20px 40px 60px; }
    .gallery-grid     { grid-auto-rows: 240px; }
    .room-stats         { margin: 0 40px; }
    .room-description   { padding: 50px 80px; }
    .room-amenities     { padding: 50px 40px; }
    .other-rooms        { padding: 60px 40px; }
    .offer-detail           { padding: 0 40px 60px; gap: 40px; }
    .offer-accordion-section { padding: 0 40px 50px; }
    .offer-contact          { padding: 50px 40px; }
    .more-offers-section    { padding: 60px 40px 70px; }
    .book-main        { padding: 40px; grid-template-columns: 1fr 300px; }
    .book-other       { padding: 50px 40px; }
    .book-footer      { padding: 40px; }
}

/* — Tablet portrait (768px) — */
@media (max-width: 768px) {

    /* Navbar */
    .navbar           { padding: 0 20px; height: 80px; }
    .logo-img         { width: 60px; height: 60px; }
    .logo-text        { font-size: 1.7rem; }
    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: #111;
        flex-direction: column;
        padding: 25px 30px;
        gap: 20px;
        z-index: 998;
    }
    .nav-links.open   { display: flex; }
    .hamburger        { display: flex; }

    /* Booking bar */
    .booking-bar-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 20px;
        cursor: pointer;
    }
    .booking-bar-title {
        font-size: 0.75rem;
        letter-spacing: 2px;
        color: var(--green);
        font-weight: 500;
    }
    .booking-chevron {
        width: 26px;
        height: 26px;
        border: 1px solid #ccc;
        border-radius: 3px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .booking-chevron::after {
        content: '';
        width: 7px;
        height: 7px;
        border-right: 1.5px solid #666;
        border-bottom: 1.5px solid #666;
        transform: rotate(45deg);
        margin-bottom: 3px;
        transition: transform 0.3s;
    }
    .booking-bar.expanded .booking-chevron::after {
        transform: rotate(-135deg);
        margin-bottom: -3px;
    }
    .booking-fields {
        display: none;
        flex-direction: column;
        padding: 0 20px 15px;
        gap: 12px;
    }
    .booking-bar.expanded .booking-fields { display: flex; }
    .booking-field    { padding: 0; width: 100%; }
    .booking-field select,
    .booking-field input {
        padding: 6px 0;
        border-bottom: 1px solid #eee;
        width: 100%;
    }
    .booking-divider  { display: none; }
    .book-btn         { width: 100%; margin-left: 0; padding: 14px; margin-top: 5px; }

    /* Hero */
    .hero             { height: 60vh; min-height: 400px; }
    .hero-img         { min-height: 60vh; }
    .hero-text        { font-size: 1.2rem; bottom: 40px; width: 90%; }

    /* Intro */
    .intro            { padding: 50px 25px; }
    .intro-title      { font-size: 2.2rem; }

    /* Why Stay */
    .why-stay         { grid-template-columns: 1fr; }
    .why-img img      { min-height: 300px; height: 300px; }
    .why-content      { padding: 40px 25px; }

    /* Rooms (index) */
    .section-quote    { padding: 0 25px 30px; font-size: 1.1rem; }
    .rooms-header     { padding: 0 25px 20px; flex-direction: column; align-items: flex-start; }
    .rooms-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        flex-wrap: nowrap;
        width: 100%;
        gap: 25px;
        scrollbar-width: none;
    }
    .rooms-tabs::-webkit-scrollbar { display: none; }
    .room-img-wrap    { height: 280px; }
    .room-info        { flex-direction: column; align-items: flex-start; padding: 25px; }
    .room-details     { gap: 20px; }

    /* Experiences */
    .experiences      { grid-template-columns: 1fr; padding: 50px 25px; gap: 30px; }
    .exp-grid         { grid-template-columns: 1fr 1fr; gap: 6px; }
    .exp-item         { height: 180px; }

    /* Offers (index) */
    .offers           { padding: 50px 20px; }
    .offer-card       { min-width: 100%; height: 300px; }

    /* More Experiences */
    .more-exp         { padding: 50px 25px; }
    .more-exp-grid    { grid-template-columns: 1fr 1fr; gap: 6px; }
    .more-exp-item    { height: 200px; }

    /* Sustainability */
    .sustainability   { grid-template-columns: 1fr; }
    .sus-content      { padding: 50px 25px; }
    .sus-img img      { min-height: 300px; height: 300px; }

    /* Instagram */
    .instagram        { padding: 50px 25px; }
    .insta-grid       { grid-template-columns: 1fr 1fr; gap: 6px; }
    .insta-item       { height: 160px; }

    /* FAQ */
    .faq              { grid-template-columns: 1fr; gap: 30px; padding: 50px 25px; }
    .faq-left img     { height: 220px; }

    /* Footer */
    .footer-top       { grid-template-columns: 1fr; padding: 50px 25px 30px; gap: 30px; }
    .footer-links     { grid-template-columns: 1fr 1fr; padding: 30px 25px; gap: 25px; }
    .footer-social    { padding: 25px; gap: 20px; }
    .footer-bottom    { padding: 20px 25px; flex-direction: column; text-align: center; }

    /* Concept */
    .concept-header   { padding: 50px 25px 30px; }
    .concept-header h1 { font-size: 2.2rem; }
    .concept-image    { width: 100%; height: 280px; margin: 25px 0; }
    .concept-text     { padding: 15px 25px 30px; }
    .collection-section { grid-template-columns: 1fr; padding: 50px 25px; gap: 40px; }
    .collection-left h2 { font-size: 2.2rem; }
    .collection-right { padding-left: 0; }
    .panoramic-section { height: 260px; }

    /* Accommodation */
    .page-header      { padding: 50px 25px 35px; }
    .page-header h1   { font-size: 2.2rem; }
    .rooms-grid-wrap  { padding: 20px 20px 50px; }
    .rooms-grid       { grid-template-columns: 1fr; }
    .room-card-single { grid-column: 1 / 2; }
    .room-card-img    { height: 260px; }
    .room-card-body   { padding: 25px 25px 30px; }

    /* Special Offers page */
    .offers-page      { padding: 10px 25px 60px; }
    .offers-page-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .offers-page-img  { height: 260px; }

    /* Gallery */
    .gallery-section        { padding: 20px 20px 50px; }
    .gallery-grid           { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
    .gallery-item.g-hero    { grid-column: 1 / 3; grid-row: span 1; }
    .gallery-item.g-hero-top,
    .gallery-item.g-hero-bottom { grid-column: 1 / 3; }

    /* Loyalty */
    .loyalty-benefits       { padding: 50px 25px 60px; }
    .loyalty-tiers          { grid-template-columns: 1fr; }
    .loyalty-accordion-section { padding: 0 25px 50px; }
    .loyalty-contact        { padding: 40px 25px; flex-direction: column; align-items: flex-start; }
    .loyalty-contact-details { flex-direction: column; gap: 20px; }

    /* Room detail pages */
    .room-slider-main   { height: 380px; }
    .slider-thumb       { width: 80px; height: 55px; }
    .room-stats         { margin: 0 20px; grid-template-columns: repeat(2, 1fr); }
    .room-stat          { border-right: 1px solid #e8e8e0; border-bottom: 1px solid #e8e8e0; }
    .room-description   { padding: 40px 25px; }
    .room-amenities     { padding: 40px 20px; }
    .amenity-grid       { grid-template-columns: repeat(2, 1fr); }
    .amenity-extras     { grid-template-columns: repeat(2, 1fr); }
    .other-rooms        { padding: 50px 20px; }
    .other-rooms-grid   { grid-template-columns: 1fr; }
    .other-room-img     { height: 260px; }

    /* Early Bird offer */
    .offer-detail           { grid-template-columns: 1fr; padding: 0 25px 50px; gap: 30px; }
    .offer-detail-img       { min-height: 280px; }
    .offer-accordion-section { padding: 0 25px 50px; }
    .offer-contact          { padding: 40px 25px; flex-direction: column; align-items: flex-start; }
    .offer-contact-details  { flex-direction: column; gap: 20px; }
    .more-offers-section    { padding: 50px 20px 60px; }

    /* Book Now detail page */
    .book-header          { padding: 0 20px; }
    .book-header-title h1 { font-size: 0.82rem; }
    .book-header-back     { display: none; }
    .book-hero            { height: 300px; }
    .book-main            { grid-template-columns: 1fr; padding: 30px 20px; }
    .book-sidebar         { position: static; }
    .book-other           { padding: 40px 20px; }
    .book-other-grid      { grid-template-columns: 1fr; }
    .book-footer          { padding: 30px 20px; }
    .book-footer-links    { gap: 16px; }
}

/* — Mobile (480px) — */
@media (max-width: 480px) {
    .navbar           { height: 70px; }
    .logo-img         { width: 50px; height: 50px; }
    .logo-text        { font-size: 1.5rem; letter-spacing: 4px; }
    .intro-title      { font-size: 1.8rem; }
    .hero-text        { font-size: 1rem; bottom: 30px; }
    .exp-grid         { grid-template-columns: 1fr; }
    .exp-item         { height: 220px; }
    .more-exp-grid    { grid-template-columns: 1fr; }
    .more-exp-item    { height: 220px; }
    .footer-links     { grid-template-columns: 1fr; }
    .room-details     { flex-direction: column; gap: 10px; }
    .collection-grid  { grid-template-columns: 1fr; }
    .concept-header h1 { font-size: 1.8rem; }
    .page-header h1   { font-size: 1.8rem; }
    .room-card-img    { height: 220px; }
    .room-card-specs  { flex-direction: column; gap: 6px; }
    .newsletter-form  { flex-direction: column; }
    .newsletter-form input  { border-right: 1px solid #444; border-bottom: none; }
    .newsletter-form button { padding: 14px; text-align: center; }
    .insta-grid       { grid-template-columns: repeat(2, 1fr); }
    .offers-page-grid { grid-template-columns: 1fr; }
    .offers-page-img  { height: 260px; }
    .panoramic-section { height: 200px; }
    .gallery-grid           { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .gallery-item.g-hero    { grid-column: 1; }
    .gallery-item.g-hero-top,
    .gallery-item.g-hero-bottom { grid-column: 1; }
    .loyalty-benefits h2    { font-size: 1.7rem; }
    .room-slider-main   { height: 260px; }
    .amenity-grid       { grid-template-columns: 1fr; }
    .amenity-extras     { grid-template-columns: 1fr; }
    .offer-detail-img       { min-height: 220px; }
    .offer-contact-details  { gap: 16px; }
    .more-offers-section h2 { font-size: 1.7rem; }
    .book-hero            { height: 220px; }
    .book-header-title    { display: none; }
    .book-other h2        { font-size: 1.6rem; }

    .why-content h2,
    .exp-left h2,
    .sus-content h2,
    .faq-left h2,
    .more-exp h2,
    .offers h2,
    .instagram h2,
    .rooms-title h2   { font-size: 1.6rem; }
}