:root {
    --primary-green: #3CB833;
    --primary-green-dark: #2a9422;
    --deep-black: #000000;
    --dark-charcoal: #1A1A1A;
    --light-gray: #F8F9FA;
    --white: #FFFFFF;
    --gold: #D4AF37;
    --gold-dark: #AA7C11;
    --gray-text: #666666;
    --border-color: #E2E8F0;
    --shadow: 0 4px 20px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-primary: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

/* 1. Global Reset & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: var(--font-primary);
    color: var(--dark-charcoal);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--deep-black);
    font-weight: 700;
}
a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
input, select, textarea, button {
    font-family: var(--font-primary);
}
button, .btn {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    transition: var(--transition);
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    /* CSS-only hard fallback: auto-hide after 2s even if JS fails */
    animation: loaderAutoHide 0.4s ease 2s forwards;
}
@keyframes loaderAutoHide {
    to { opacity: 0; visibility: hidden; pointer-events: none; }
}
.page-loader.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(60, 184, 51, 0.2);
    border-radius: 50%;
    border-top-color: var(--primary-green);
    animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(60, 184, 51, 0.3);
}
.btn-primary:hover {
    background-color: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(60, 184, 51, 0.4);
    color: var(--white);
}
.btn-secondary {
    background-color: transparent;
    color: var(--deep-black);
    border: 2px solid var(--deep-black);
    padding: 12px 26px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-secondary:hover {
    background-color: var(--deep-black);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-gold {
    background-color: var(--gold);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.btn-gold:hover {
    background-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: var(--white);
}

/* 2. Header & Sticky Navigation */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}
.site-header.sticky {
    position: fixed;
    background: var(--white);
    box-shadow: var(--shadow);
    animation: slideDown 0.4s ease-out forwards;
}
.site-header.sticky .logo-text, .site-header.sticky .logo-subtext {
    color: var(--deep-black) !important;
}
.site-header.sticky .nav-menu a {
    color: var(--dark-charcoal);
}
.site-header.sticky .nav-menu a:hover {
    color: var(--primary-green);
}
.site-header.sticky .currency-switcher select {
    color: var(--dark-charcoal);
    border-color: var(--border-color);
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-container {
    display: flex;
    flex-direction: column;
}
.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: 1px;
}
.logo-text span {
    color: var(--primary-green);
}
.logo-subtext {
    font-size: 10px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 2px;
}
.nav-menu-container {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 24px;
}
.nav-menu a {
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 8px 0;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: var(--transition);
}
.nav-menu a:hover::after, .nav-menu li.current-menu-item a::after {
    width: 100%;
}
.nav-menu a:hover, .nav-menu li.current-menu-item a {
    color: var(--primary-green) !important;
}

/* Header Action */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
.currency-switcher {
    position: relative;
}
.currency-switcher select {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 6px 28px 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    transition: var(--transition);
}
.currency-switcher::after {
    content: '▼';
    font-size: 8px;
    position: absolute;
    right: 12px;
    top: 52%;
    transform: translateY(-50%);
    color: inherit;
    pointer-events: none;
}
.currency-switcher select option {
    background: var(--white);
    color: var(--dark-charcoal);
}

.mobile-nav-toggle {
    display: none;
    font-size: 24px;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
}
.site-header.sticky .mobile-nav-toggle {
    color: var(--deep-black);
}

/* 3. Hero Section (Slider/Banner) */
.hero-slider-wrapper {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
}
.hero-slider {
    height: 100%;
    width: 100%;
    position: relative;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}
.slide.active {
    opacity: 1;
    visibility: visible;
}
.slide-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    transform: translateY(30px);
    transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.slide.active .slide-content {
    transform: translateY(0);
}
.slide-title {
    font-size: 64px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.slide-subtitle {
    font-size: 20px;
    font-style: italic;
    font-family: var(--font-heading);
    color: var(--primary-green);
    margin-bottom: 30px;
    letter-spacing: 1.5px;
}
.slide-btn {
    animation-delay: 0.6s;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    font-size: 18px;
    background: rgba(0,0,0,0.2);
}
.slider-arrow:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-50%) scale(1.05);
}
.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}
.dot.active {
    background: var(--primary-green);
    transform: scale(1.2);
}

/* Booking Search Bar */
.booking-search-container {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    background: var(--white);
    padding: 24px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}
.booking-search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) 180px;
    gap: 15px;
    align-items: flex-end;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}
.form-group label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-text);
}
.form-group input, .form-group select {
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    color: var(--dark-charcoal);
    background: var(--white);
    outline: none;
    transition: var(--transition);
    width: 100%;
}
.form-group input:focus, .form-group select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(60, 184, 51, 0.15);
}
.booking-search-form button {
    height: 48px;
    width: 100%;
    justify-content: center;
}

/* 4. Sections Styling */
.section-padding {
    padding: 120px 0 80px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.text-center {
    text-align: center;
}
.section-title-wrapper {
    margin-bottom: 60px;
    text-align: center;
}
.section-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    display: inline-block;
}
.section-title {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--deep-black);
    position: relative;
    padding-bottom: 20px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-green);
}

/* 5. About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-images-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
    height: 480px;
}
.about-img-1 {
    grid-column: 1 / 5;
    grid-row: 1 / 5;
    z-index: 2;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-2 {
    grid-column: 3 / 7;
    grid-row: 3 / 7;
    z-index: 1;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.about-img:hover img {
    transform: scale(1.05);
}
.about-content {
    padding-right: 20px;
}
.about-text {
    font-size: 16px;
    color: var(--gray-text);
    margin-bottom: 30px;
    line-height: 1.8;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}
.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.about-feature-icon {
    font-size: 20px;
    color: var(--primary-green);
    background: rgba(60, 184, 51, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.about-feature-text {
    font-weight: 600;
    font-size: 14px;
}

/* 6. Rooms Section */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}
.room-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}
.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.room-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}
.room-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.room-card:hover .room-image-wrapper img {
    transform: scale(1.08);
}
.room-badge-price {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    border-left: 3px solid var(--primary-green);
    letter-spacing: 0.5px;
}
.room-badge-price span {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
}
.room-details {
    padding: 24px;
}
.room-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}
.room-card-title a:hover {
    color: var(--primary-green);
}
.room-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    font-size: 13px;
    color: var(--gray-text);
}
.room-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.room-meta-item svg, .room-meta-item i {
    color: var(--primary-green);
}
.room-card-description {
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 44px;
}
.room-card-actions {
    display: flex;
    gap: 12px;
}
.room-card-actions .btn {
    flex: 1;
    justify-content: center;
    font-size: 12px;
    padding: 12px;
}

/* 7. Single Room Details Style */
.room-detail-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}
.room-gallery-slider {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}
.room-main-image {
    height: 450px;
    width: 100%;
}
.room-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.room-gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.gallery-thumb {
    flex: 1;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}
.gallery-thumb.active, .gallery-thumb:hover {
    border-color: var(--primary-green);
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.room-amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin: 30px 0;
}
.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}
.amenity-icon {
    color: var(--primary-green);
    background: rgba(60, 184, 51, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

/* Booking Widget Card */
.booking-widget-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: sticky;
    top: 100px;
    height: fit-content;
}
.widget-price-display {
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 24px;
}
.widget-price-label {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gray-text);
}
.widget-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--deep-black);
    font-family: var(--font-heading);
}
.widget-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-text);
}

.widget-booking-form .form-group {
    margin-bottom: 16px;
}
.widget-booking-form button {
    margin-top: 10px;
}

.booking-summary-box {
    background: var(--light-gray);
    border-radius: 4px;
    padding: 15px;
    margin-top: 15px;
    font-size: 13px;
    border-left: 3px solid var(--primary-green);
}
.booking-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}
.booking-summary-row:last-child {
    margin-bottom: 0;
    font-weight: 700;
    border-top: 1px dashed var(--border-color);
    padding-top: 8px;
    color: var(--deep-black);
}

/* 8. Testimonials Section */
.testimonials-section {
    background-color: var(--light-gray);
    position: relative;
}
.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    height: 320px;
}
.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    text-align: center;
    padding: 20px;
}
.testimonial-card.active {
    opacity: 1;
    visibility: visible;
}
.testimonial-quote {
    font-size: 20px;
    font-family: var(--font-heading);
    color: var(--dark-charcoal);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
}
.testimonial-quote::before, .testimonial-quote::after {
    font-size: 60px;
    color: rgba(60, 184, 51, 0.15);
    position: absolute;
    line-height: 1;
    font-family: serif;
}
.testimonial-quote::before {
    content: '“';
    left: -20px;
    top: -30px;
}
.testimonial-quote::after {
    content: '”';
    right: -20px;
    bottom: -40px;
}
.testimonial-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
    border: 3px solid var(--primary-green);
}
.testimonial-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--deep-black);
}
.testimonial-author-role {
    font-size: 12px;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}
.testimonials-arrows {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}
.testimonials-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: var(--shadow);
}
.testimonials-arrow:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
}

/* 9. Booking Modals / Checkouts */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}
.modal-container {
    background: var(--white);
    width: 90%;
    max-width: 650px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}
.modal-overlay.open .modal-container {
    transform: translateY(0);
}
.modal-header {
    background: var(--primary-green);
    color: var(--white);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-title {
    font-size: 20px;
    color: var(--white);
    font-weight: 700;
}
.modal-close {
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    background: none;
    border: none;
}
.modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

/* 10. Footer Section */
.site-footer {
    background: var(--deep-black);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px;
    font-size: 14px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}
.footer-widget-title {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}
.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-green);
}
.footer-brand .logo-text, .footer-brand .logo-subtext {
    color: var(--white) !important;
}
.footer-brand p {
    margin-top: 15px;
    line-height: 1.8;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: rgba(255,255,255,0.7);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-links a:hover {
    color: var(--primary-green);
    transform: translateX(4px);
}
.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}
.footer-contact-icon {
    color: var(--primary-green);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}
.footer-contact-text a:hover {
    color: var(--primary-green);
}
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    transition: var(--transition);
}
.social-icon:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
}

/* Floating Elements */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--primary-green-dark);
    transform: translateY(-3px);
}

.whatsapp-chat-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25D366;
    color: var(--white);
    padding: 10px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.whatsapp-chat-float:hover {
    transform: translateY(-3px);
    background: #128C7E;
    color: var(--white);
}

/* 11. Custom Pages Layouts */
.page-banner {
    background-size: cover;
    background-position: center;
    padding: 180px 0 100px;
    color: var(--white);
    text-align: center;
    position: relative;
}
.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}
.page-banner-container {
    position: relative;
    z-index: 2;
}
.page-banner-title {
    font-size: 44px;
    color: var(--white);
    margin-bottom: 10px;
}
.breadcrumbs {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    display: flex;
    justify-content: center;
    gap: 8px;
}
.breadcrumbs a:hover {
    color: var(--primary-green);
}

/* Gallery Filter Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.gallery-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 250px;
    box-shadow: var(--shadow);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(60, 184, 51, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
    text-align: center;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-cat {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.8);
}
.gallery-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

/* Contact Us Styling */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}
.contact-info-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
}
.contact-block {
    margin-bottom: 30px;
}
.contact-block:last-child {
    margin-bottom: 0;
}
.contact-block-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    color: var(--deep-black);
}
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}
.map-container {
    margin-top: 60px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Success/Confirmation Page */
.confirmation-card {
    max-width: 600px;
    margin: 60px auto;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--primary-green);
    overflow: hidden;
    padding: 40px;
    text-align: center;
}
.confirmation-icon {
    width: 80px;
    height: 80px;
    background: rgba(60, 184, 51, 0.1);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    margin: 0 auto 24px;
}
.confirmation-title {
    font-size: 28px;
    margin-bottom: 12px;
}
.confirmation-subtitle {
    font-size: 16px;
    color: var(--gray-text);
    margin-bottom: 30px;
}
.confirmation-details-box {
    background: var(--light-gray);
    border-radius: 6px;
    padding: 20px;
    text-align: left;
    margin-bottom: 30px;
}
.confirmation-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}
.confirmation-row:last-child {
    border-bottom: none;
    font-weight: 700;
    color: var(--deep-black);
}

/* 12. Responsive Adjustments */
@media (max-width: 991px) {
    .header-container {
        padding: 15px 20px;
    }
    .mobile-nav-toggle {
        display: block;
    }
    .nav-menu-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 40px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        z-index: 1100;
        transition: right 0.4s ease;
        gap: 40px;
    }
    .nav-menu-container.open {
        right: 0;
    }
    .nav-menu {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    .nav-menu a {
        color: var(--dark-charcoal);
        font-size: 15px;
        display: block;
        width: 100%;
    }
    .currency-switcher select {
        color: var(--dark-charcoal);
        border-color: var(--border-color);
    }
    .mobile-nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 24px;
        color: var(--dark-charcoal);
        cursor: pointer;
    }
    .hero-slider-wrapper {
        height: 85vh;
    }
    .slide-title {
        font-size: 44px;
    }
    .slide-subtitle {
        font-size: 16px;
    }
    .booking-search-container {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        margin-top: -50px;
    }
    .about-grid, .room-detail-container, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-images-wrapper {
        height: 380px;
    }
    .room-main-image {
        height: 320px;
    }
}

@media (max-width: 600px) {
    .slide-title {
        font-size: 32px;
    }
    .booking-search-form {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 30px;
    }
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    .room-card-actions {
        flex-direction: column;
    }
    .confirmation-card {
        padding: 24px;
    }
}

/* =============================================
   FIXES & ADDITIONS — v1.0.1
   ============================================= */

/* Ensure font-primary is always applied to body */
body {
    font-family: var(--font-primary);
}

/* ── Image size fixes ── */
.room-card .room-image-wrapper img,
.about-img img,
.room-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Header fix: ensure logo text color on scroll ── */
.site-header.sticky .logo-text { color: var(--white); }
.site-header.sticky .logo-subtext { color: #ccc; }

/* ── Booking summary box ── */
.booking-summary-box {
    background: #f0fdf0;
    border: 1px solid var(--primary-green);
    border-radius: 6px;
    padding: 16px 18px;
    margin: 16px 0;
    font-size: 14px;
}
.booking-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
    color: var(--dark-charcoal);
}
.booking-summary-row:last-of-type { border-bottom: none; font-weight: 700; }

/* ── Confirmation page card ── */
.confirmation-card {
    max-width: 680px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    padding: 50px 44px;
    text-align: center;
    border-top: 5px solid var(--primary-green);
}
.confirmation-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(60,184,51,.1);
    color: var(--primary-green);
    font-size: 32px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
}
.confirmation-title { font-family: var(--font-heading); font-size: 36px; margin-bottom: 14px; }
.confirmation-subtitle { color: var(--gray-text); font-size: 16px; margin-bottom: 36px; line-height: 1.7; }
.confirmation-details-box {
    background: var(--light-gray);
    border-radius: 8px;
    padding: 28px;
    margin-bottom: 32px;
    text-align: left;
}
.confirmation-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}
.confirmation-row:last-child { border-bottom: none; }
.confirmation-row span { color: var(--gray-text); }

/* ── Room gallery thumb click states ── */
.gallery-thumb { cursor: pointer; border-radius: 6px; overflow: hidden; border: 2px solid transparent; transition: var(--transition); }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--primary-green); }
.gallery-thumb img { width: 100%; height: 70px; object-fit: cover; }

/* ── Contact grid responsive tweak ── */
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .confirmation-card { padding: 32px 20px; }
    .room-detail-container { grid-template-columns: 1fr; }
    .booking-sidebar { position: static; }
    .about-grid { grid-template-columns: 1fr; }
    .about-images-wrapper { display: none; } /* hide on mobile, show content first */
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .rooms-grid { grid-template-columns: 1fr; }
}

/* ── Print styles for booking confirmation ── */
@media print {
    .site-header, .site-footer, .whatsapp-chat-float, .back-to-top, .page-loader { display: none !important; }
    .confirmation-card { box-shadow: none; border: 1px solid #ddd; }
}
