/* --- Color Palette & Variables --- */
:root {
    --primary-teal: #318a8f;      
    --dark-teal: #1f5d61;         
    --deep-canopy: #133a3d;       
    --light-bg: #f5f8f8;          
    --text-dark: #233131;         
    --accent-orange: #f39c12;     
    --accent-green: #2e7d32;      
    --white: #ffffff;
    --gray-light: #eaeeed;
}

/* --- Global Reset & Basics --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* --- Shared Textured Backgrounds --- */
.textured-light {
    background-color: var(--light-bg);
    background-image: 
        radial-gradient(rgba(49, 138, 143, 0.03) 1px, transparent 0),
        radial-gradient(rgba(49, 138, 143, 0.02) 1px, transparent 0);
    background-size: 24px 24px;
    background-position: 0 0, 12px 12px;
}

/* --- Header & Navigation --- */
header {
    background: radial-gradient(circle at 20% 50%, var(--primary-teal) 0%, var(--dark-teal) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 2rem;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px; 
    width: auto;
    display: block;
    background: transparent; 
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.2rem;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.25s ease;
}

.nav-links a:hover {
    color: var(--accent-orange);
}

/* Added: Header Premium Booking Link Button */
.nav-book-btn {
    padding: 0.6rem 1.4rem;
    background: var(--accent-orange);
    color: var(--white) !important;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-book-btn:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(243, 156, 18, 0.4);
}

/* --- Hero Section --- */
/* ==========================================================================
   RESPONSIVE HERO IMAGE ENGINE
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    min-height: 95vh; /* Holds structure cleanly across displays */
    display: flex;
    align-items: center;
    justify-content: center;
    /*overflow: hidden;*/
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -1px; /* Prevents tiny sub-pixel gap lines on high-DPI screens */
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #ffffff; /* Matches the background color of the next section */
    clip-path: ellipse(60% 100% at 50% 100%);
    z-index: 4; /* Keeps curve layer above dark background overlays */
    pointer-events: none;
}
.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fits image continuously without aspect-ratio distortion */
    object-position: center top; /* Keeps focal point centered */
    display: block;
}

/* Darkening Mask to Ensure Headline Text Readability */
.hero-media::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(19, 58, 61, 0.4) 0%, rgba(19, 58, 61, 0.7) 100%);
    z-index: 2;
}

.hero-overlay {
    position: relative;
    z-index: 3; /* Places textual overlay above media layer */
    width: 100%;
    max-width: 1200px;
    padding: 60px 20px 60px 20px;
    text-align: center;
    color: #ffffff;
}
/*.hero {
    background: linear-gradient(rgba(19, 58, 61, 0.35), rgba(19, 58, 61, 0.55)), 
                url("images/hero-1.webp") no-repeat top center/cover;
    height: 90vh; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 1.5rem;
    position: relative;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: var(--white);
    clip-path: ellipse(60% 100% at 50% 100%);
}
*/



.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.2rem;
    text-shadow: 2px 3px 15px rgba(0,0,0,0.5);
    font-weight: 700;
}

.hero p {
    font-size: 1.4rem;
    max-width: 760px;
    margin: 0 auto 2.5rem;
    text-shadow: 1px 2px 8px rgba(0,0,0,0.5);
    font-weight: 300;
}

.btn-main {
    display: inline-block;
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
    cursor: pointer;
    border: none;
    margin-bottom: 2rem;
}

.btn-main:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.5);
}

/* Added: Inline Hero Booking Bar Layout System */
.hero-booking-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr auto;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    padding: 1.25rem 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(19, 58, 61, 0.15);
    border: 1px solid rgba(19, 58, 61, 0.06);
    width: 100%;
    max-width: 950px;
    margin: 2rem auto -5rem auto; /* Overlaps seamlessly into the content layout section */
    position: relative;
    z-index: 100;
    text-align: left;
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    border-right: 1px solid rgba(19, 58, 61, 0.1);
    padding-right: 1.5rem;
}

.booking-field:nth-child(3) {
    border-right: none;
    padding-right: 0;
}

.booking-field label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-teal);
    font-weight: 700;
}

.booking-field input,
.booking-field select {
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--text-dark);
    background: transparent;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
}

.booking-submit-btn {
    background: var(--dark-teal);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.booking-submit-btn:hover {
    background: var(--accent-orange);
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
}

/* --- Global Sections Framework --- */
section {
    padding: 4.5rem 2rem 4.5rem 2rem; /* Adjusted for the layout overlap offset */
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem; 
}

.section-title {
    font-size: 2.6rem;
    color: var(--dark-teal);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #617474;
}

/* --- Asymmetric Feature Details Section --- */
.sanctuary-section {
    background: linear-gradient(to bottom, var(--white) 0%, rgba(245, 248, 248, 0.5) 100%);
}

.details-row {
    max-width: 1140px;
    margin: 0 auto 3rem; 
    display: flex;
    align-items: center;
    gap: 4rem;
}

.details-row:nth-child(even) {
    flex-direction: row-reverse;
}

.details-text {
    flex: 1;
}

.details-text h3 {
    font-size: 2rem;
    color: var(--dark-teal);
    margin-bottom: 1.2rem;
}

.details-text p {
    margin-bottom: 1.2rem;
    color: #4a5858;
    font-size: 1.05rem;
}

.details-img-wrapper {
    flex: 1;
    position: relative;
}

.details-img-wrapper::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(135deg, rgba(49, 138, 143, 0.1), rgba(19, 58, 61, 0.05));
    z-index: -1;
    border-radius: 12px;
}

.details-img-wrapper img {
    box-shadow: 0 15px 35px rgba(19, 58, 61, 0.12);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 4px solid var(--white);
}

.details-img-wrapper img:hover {
    transform: scale(1.02) translateY(-5px);
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
}

.feature-block.reverse {
    direction: rtl;
}

.feature-block.reverse > * {
    direction: ltr;
}

.section-title {
    font-size: 2.2rem;
    color: #1f5d61;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.feature-text p {
    font-size: 1.15rem;
    color: #4a5858;
    line-height: 1.8;
}

.feature-text p + p {
    margin-top: 10px;
}

.feature-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* --- Master Premium Image Frame System with Animated Accent Border --- */
.premium-image-frame {
    position: relative;
    padding: 12px; 
    background: transparent;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateZ(0);
}

.premium-image-frame::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 2px dashed #d97706; 
    border-radius: 20px; 
    opacity: 0.35;
    pointer-events: none;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.6s ease, 
                box-shadow 0.6s ease;
}

.image-zoom-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 14px; 
    overflow: hidden;
    background: #133a3d;
    box-shadow: 0 10px 30px -10px rgba(19, 58, 61, 0.2);
    transition: box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(1.01);
}

.premium-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(19, 58, 61, 0) 50%, rgba(19, 58, 61, 0.5) 100%);
    mix-blend-mode: multiply;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.premium-image-frame:hover {
    transform: translateY(-8px);
}

.premium-image-frame:hover::before {
    opacity: 1;
    transform: scale(1.02) rotate(0.5deg); 
    box-shadow: 0 0 25px rgba(217, 119, 6, 0.2); 
}

.premium-image-frame:hover .image-zoom-container {
    box-shadow: 0 25px 50px -12px rgba(19, 58, 61, 0.35);
}

.premium-image-frame:hover img {
    transform: scale(1.07);
}

.premium-image-frame:hover .premium-overlay {
    opacity: 0.4;
}

/* --- Experiences & Utilities Section --- */
.highlights-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.highlight-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(19, 58, 61, 0.04);
    border: 1px solid rgba(49, 138, 143, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(to right, var(--accent-orange), var(--primary-teal));
    opacity: 0.7;
    transition: height 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(19, 58, 61, 0.08);
    border-color: rgba(49, 138, 143, 0.2);
}

.highlight-item h4 {
    font-size: 1.35rem;
    color: var(--dark-teal);
    margin-bottom: 1rem;
}

.highlight-item p {
    color: #556363;
    font-size: 0.95rem;
}

/* --- Premium Dual-Tone Icon Engine --- */
.highlight-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff; 
    border: 1px solid rgba(19, 58, 61, 0.08);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(19, 58, 61, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.highlight-icon svg {
    width: 100%;
    height: 100%;
}

.highlight-icon .brand-primary {
    stroke: #1f5d61; 
    fill: none;
    transition: stroke 0.3s ease;
}

.highlight-icon .brand-accent {
    stroke: #d97706; 
    fill: none;
    transition: stroke 0.3s ease, fill 0.3s ease;
}

svg opacity.brand-accent, 
circle.brand-accent {
    fill: #d97706 !important;
}

.highlight-item:hover .highlight-icon {
    transform: translateY(-5px);
    border-color: rgba(19, 58, 61, 0.15);
    box-shadow: 0 12px 24px rgba(19, 58, 61, 0.08);
    background: #1f5d61; 
}

.highlight-item:hover .highlight-icon .brand-primary {
    stroke: #ffffff; 
}

.highlight-item:hover .highlight-icon .brand-accent {
    stroke: #fcd34d; 
}

.highlight-item:hover .highlight-icon circle.brand-accent {
    fill: #fcd34d !important;
}

/* --- Video Overlay & Trigger Styling --- */
.video-trigger-wrapper {
    position: relative;
    cursor: pointer;
}

.video-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    background: var(--white);
    color: var(--dark-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.video-play-btn svg {
    width: 30px; height: 30px;
    margin-left: 5px; 
}

.video-play-btn::before,
.video-play-btn::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 1px solid var(--white);
    border-radius: 50%;
    animation: playPulse 2.5s infinite linear;
    opacity: 0.7;
    pointer-events: none;
}

.video-play-btn::after {
    animation-delay: 1.25s;
}

.video-trigger-wrapper:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--accent-orange);
    color: var(--white);
}

@keyframes playPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* --- Video Modal Popup Framework --- */
.video-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(19, 58, 61, 0.98);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.video-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.video-modal-container {
    width: 85%; max-width: 900px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.video-modal-container iframe {
    width: 100%; height: 100%; border: 0;
}

.video-modal-close {
    position: absolute;
    top: 30px; right: 40px;
    color: var(--white);
    font-size: 3.5rem;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
}

.video-modal-close:hover {
    color: var(--accent-orange);
}

/* Added: Advanced Booking Lightbox Modal Window CSS System */
.booking-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(19, 58, 61, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 5000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.booking-modal-card {
    background: var(--white);
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(19, 58, 61, 0.3);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(217, 119, 6, 0.15); 
}

.booking-modal-overlay.active .booking-modal-card {
    transform: translateY(0);
}

.booking-modal-close {
    position: absolute;
    top: 1.25rem; right: 1.5rem;
    font-size: 2rem;
    color: var(--dark-teal);
    cursor: pointer;
    transition: color 0.2s ease;
}

.booking-modal-close:hover {
    color: var(--accent-orange);
}

.modal-card-header h3 {
    color: var(--dark-teal);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.modal-card-header p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.modal-booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark-teal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-field input,
.form-field select {
    padding: 0.85rem 1rem;
    border: 1px solid rgba(19, 58, 61, 0.15);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--text-dark);
    background: #f7fafc;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field select:focus {
    border-color: var(--accent-orange);
    background: var(--white);
}

.modal-submit-btn {
    background: var(--accent-orange);
    color: var(--white);
    border: none;
    padding: 1.1rem;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.2);
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.modal-submit-btn:hover {
    background: #e67e22;
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.35);
}

/* --- Unified Category Filter Gallery Section --- */
.gallery-section {
    background-color: #fafcfc;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
}

.filter-menu {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: -2.5rem auto 3rem; 
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    color: var(--dark-teal);
    border: 1px solid rgba(49, 138, 143, 0.3);
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-teal);
    color: var(--white);
    border-color: var(--primary-teal);
    box-shadow: 0 4px 10px rgba(49, 138, 143, 0.2);
}

.gallery-grid {
    /*display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;*/
    display: flex;
    gap: 1.5rem;
    /*max-width: 1200px;*/
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.gallery-item {
    position: relative;
    height: 260px;
    width: 260px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(19, 58, 61, 0.05);
    cursor: pointer;
    border: 4px solid var(--white);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-hover-mask {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(19, 58, 61, 0.75);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    color: var(--white);
    transition: opacity 0.3s ease;
    padding: 1rem;
}

.gallery-hover-mask span {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.gallery-hover-mask p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(19, 58, 61, 0.15);
    border-color: var(--primary-teal);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-hover-mask {
    opacity: 1;
}

/* --- COMPACT INTERACTIVE SHOWCASE FRAME (Tabbed Architecture) --- */
.excursions-section {
    background: linear-gradient(to bottom, rgba(245, 248, 248, 0.4) 0%, var(--white) 100%);
}

.showcase-container {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem; 
    min-height: 480px;
    align-items: start;
}

.showcase-tabs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.showcase-tab-btn {
    background: #ffffff;
    color: var(--dark-teal);
    border: 1px solid rgba(49, 138, 143, 0.2);
    padding: 1.1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(19, 58, 61, 0.02);
}

.showcase-tab-btn.active, .showcase-tab-btn:hover {
    background: var(--primary-teal);
    color: #ffffff;
    border-color: var(--primary-teal);
    transform: translateX(5px);
    box-shadow: 0 6px 15px rgba(49, 138, 143, 0.15);
}

.showcase-display-viewport {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(19, 58, 61, 0.12);
    border: 4px solid #ffffff;
}

.showcase-panel {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
    background-size: cover;
    background-position: center;
}

.showcase-panel.active {
    opacity: 1;
    visibility: visible;
}

.showcase-content-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0; top: 0;
    background: linear-gradient(to top, rgba(19, 58, 61, 0.95) 0%, rgba(19, 58, 61, 0.6) 50%, rgba(0,0,0,0.2) 100%);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
}

.showcase-content-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

.showcase-content-overlay p {
    color: #cbdad9;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 680px;
    display: none;
}

/* --- Slider Popup Overlay Layout --- */
.lightbox-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(19, 58, 61, 0.98);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 85%;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    border: 4px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 50px rgba(0,0,0,0.6);
}

.lightbox-close {
    position: absolute;
    top: -60px; right: 0;
    color: var(--white);
    font-size: 2.8rem;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
    z-index: 2010;
}

.lightbox-close:hover {
    color: var(--accent-orange);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    width: 50px; height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
    z-index: 2020;
}

.slider-arrow:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: translateY(-50%) scale(1.1);
}

.arrow-left { left: 20px; }
.arrow-right { right: 20px; }

/* --- Separate Contact & Location Section --- */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info-panel {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(19, 58, 61, 0.04);
    border: 1px solid rgba(49, 138, 143, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-block h3 {
    font-size: 1.8rem;
    color: var(--dark-teal);
    margin-bottom: 1.5rem;
}

.contact-detail-item {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-detail-item .icon-box {
    background: rgba(49, 138, 143, 0.1);
    color: var(--dark-teal);
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.contact-detail-item p {
    color: #4a5858;
    font-size: 1.05rem;
    margin-top: 4px;
}

.map-frame-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(19, 58, 61, 0.1);
    border: 4px solid #ffffff;
    min-height: 420px;
}

.map-frame-wrapper iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border: 0;
}

/* --- Footer Zone --- */
footer {
    background: radial-gradient(circle at 80% 20%, var(--dark-teal) 0%, var(--deep-canopy) 100%);
    color: #b2c2c2;
    padding: 4.5rem 2rem 2rem; 
    font-size: 0.95rem;
    border-top: 4px solid var(--accent-orange);
}

.footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.footer-nav h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 0.8rem;
}

.footer-nav ul li a {
    color: #b2c2c2;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav ul li a:hover {
    color: var(--accent-orange);
}

.footer-credits {
    text-align: center;
    color: #5c7272;
    font-size: 0.85rem;
}
/* Universal actions alignment wrapper */
.nav-actions-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* Hidden on desktop viewports by default */
.menu-toggle-icon, .menu-close-row {
    display: none;
}
/* ==========================================================================
   PREMIUM CIRCULAR PROGRESS SCROLL-TO-TOP BUTTON
   ========================================================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(19, 58, 61, 0.15);
    
    /* Animation entry/exit baselines */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.3s ease,
                visibility 0.3s;
}

/* Visibility toggled via JavaScript engine */
.scroll-to-top.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Structural placement of tracking rings */
.progress-circle {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    transform: rotate(-90deg); /* Spirals track cleanly clockwise from the top vertical point */
}

/* Underneath track path guide */
.progress-circle .track-line {
    fill: none;
    stroke: var(--gray-light);
    stroke-width: 4px;
}

/* Forefront dynamic gold/orange indicator tracking ring */
.progress-circle .progress-line {
    fill: none;
    stroke: var(--accent-orange);
    stroke-width: 4px;
    stroke-linecap: round;
    
    /* 2 * PI * Radius (44) = ~276.46 Stroke Dash Array baseline constraint scale */
    stroke-dasharray: 276.46;
    stroke-dashoffset: 276.46;
    transition: stroke-dashoffset 0.1s linear;
}

/* Center arrow layout text configurations */
.scroll-to-top .arrow-icon {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-teal);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Interactive Hover States */
.scroll-to-top:hover {
    box-shadow: 0 6px 20px rgba(19, 58, 61, 0.25);
    transform: translateY(-2px);
}

.scroll-to-top:hover .arrow-icon {
    transform: translateY(-2px);
    color: var(--accent-orange);
}

/* ==========================================================================
   ROOMS SECTION STYLES
   ========================================================================== */
.rooms-section {
    padding: 80px 0;
    background-color: #fafafa; /* Slight off-white to make the cards pop from background */
}

.rooms-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Elements matching your branding */
.rooms-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.rooms-section .sub-title {
    color: #ff8c00; /* Warm Accent Orange */
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.rooms-section .main-title {
    color: #008080; /* HornBill Brand Teal */
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.rooms-section .title-divider {
    width: 60px;
    height: 3px;
    background-color: #ff8c00;
    margin: 0 auto 20px auto;
}

.rooms-section .section-desc {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    line-height: 1.6;
}

/* Grid layout matching the clean visual grid from reference */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.room-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 128, 128, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #eaeaea;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 128, 128, 0.12);
}

/* Entire Property Highlight */
.room-card.exclusive-card {
    border: 1px solid rgba(0, 128, 128, 0.2);
}

/* Image Container & Badges */
.room-img-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.room-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    object-position: bottom;
}

.room-card:hover .room-img {
    transform: scale(1.05);
}

.room-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #008080;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.room-badge.premium {
    background-color: #ff8c00;
}

/* Card Content Body */
.room-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-title {
    color: #333;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.room-text {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Bullet Features formatting */
.room-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.room-features li {
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.feature-icon {
    color: #008080;
    margin-right: 10px;
    font-weight: bold;
}

.room-card.exclusive-card .feature-icon {
    color: #ff8c00;
}

/* Card Footer with Price and Call to Action Button */
.room-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.room-price {
    font-family: inherit;
}

.room-price .currency {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-right: 2px;
}

.room-price .amount {
    font-size: 26px;
    font-weight: 700;
    color: #333;
}

.room-price .period {
    font-size: 13px;
    color: #777;
    margin-left: 4px;
}

/* Action Button styling */
.btn-room-book {
    text-decoration: none;
    background-color: transparent;
    color: #008080;
    border: 2px solid #008080;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-room-book:hover {
    background-color: #008080;
    color: #ffffff;
}

.btn-room-book.premium {
    color: #ff8c00;
    border-color: #ff8c00;
}

.btn-room-book.premium:hover {
    background-color: #ff8c00;
    color: #ffffff;
}

/* Guest capacity metadata boxes */
.stay-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background-color: #f1f7f7;
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 3px solid #008080;
}

.room-card.exclusive-card .stay-details {
    background-color: #fffaf4;
    border-left-color: #ff8c00;
}

.detail-item {
    font-size: 13px;
    color: #444;
}

/* Optional Add-on highlight */
.feature-add-on {
    font-style: normal;
    font-weight: 600;
    color: #ff8c00;
    margin-right: 6px;
}

.room-card.exclusive-card .feature-add-on {
    color: #008080;
}

/* ==========================================================================
   MODAL POPUP STYLES
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px); /* Smooth modern background blur */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: #ffffff;
    width: 100%;
    max-width: 450px;
    padding: 35px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #888;
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-close-btn:hover {
    color: #333;
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-header h3 {
    color: #008080; /* Teal Accent */
    font-size: 24px;
    margin-bottom: 5px;
}

.modal-header p {
    color: #666;
    font-size: 14px;
}

#modalStayType {
    color: #ff8c00; /* Orange Highlight */
    font-weight: 600;
}

/* Form layouts */
.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #008080;
}

/* Action Trigger */
.btn-modal-submit {
    width: 100%;
    background-color: #008080;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 5px;
}

.btn-modal-submit:hover {
    background-color: #005959;
}

.form-control-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.form-control-select:focus {
    outline: none;
    border-color: #008080;
}

/* ==========================================================================
   EXCURSION EXPLORER DISCLAIMER
   ========================================================================== */
.excursion-disclaimer {
    max-width: 750px;
    margin: 25px auto 0 auto;
    background-color: #f2f8f8; /* Soft subtle tint of your teal brand palette */
    border-left: 4px solid #ff8c00; /* Distinct orange reminder border strip */
    padding: 15px 20px;
    border-radius: 4px 8px 8px 4px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 128, 128, 0.02);
}

.disclaimer-icon {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
}

.excursion-disclaimer p {
    margin: 0;
    color: #444;
    font-size: 13.5px;
    line-height: 1.6;
}

.excursion-disclaimer strong {
    color: #008080; /* Hornbill Teal accent highlights */
}

/* ==========================================================================
   REGIONAL WILDERNESS CIRCUIT STYLES
   ========================================================================== */
.regional-section {
    padding: 60px 20px;
    background-color: #fcfdfe;
}

.regional-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.regional-title {
    font-size: 28px;
    color: #1f5d61;
    margin-bottom: 10px;
}

.regional-subtitle {
    font-size: 15px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.regional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.regional-card {
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover transition */
}

/* Premium Card Hover Interaction Effect */
.regional-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(31, 93, 97, 0.08);
}

.regional-card h3 {
    color: #1f5d61;
    font-size: 18px;
    margin-bottom: 10px;
}

.regional-card p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.6;
    text-align: left;
}
/* ==========================================================================
   FOOTER INLINE SOCIAL MEDIA STYLES
   ========================================================================== */
.footer-social {
    margin-top: 20px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icons a {
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Hover Effect: Accent gold highlight & subtle float */
.social-icons a:hover {
    background: #f39c12;
    color: #133a3d;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

/* ==========================================================================
   FLOATING LEFT SOCIAL MEDIA BAR
   ========================================================================== */
.floating-social-bar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px 6px 8px 0;
    background: rgba(19, 58, 61, 0.85); /* Dark teal semi-transparent backdrop */
    backdrop-filter: blur(8px);
    border-radius: 0 10px 10px 0;
    box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: none;
    transition: all 0.3s ease;
}

.floating-social-bar .social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #ffffff;
    border-radius: 0 6px 6px 0;
    text-decoration: none;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.25s ease;
    background: transparent;
}

/* Hover Slide-Out Animation */
.floating-social-bar .social-btn:hover {
    transform: translateX(6px);
    color: #133a3d;
}

/* Brand Accent Colors on Hover */
.floating-social-bar .social-btn.facebook:hover {
    background: #1877f2;
    color: #ffffff;
}

.floating-social-bar .social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #ffffff;
}

.floating-social-bar .social-btn.youtube:hover {
    background: #ff0000;
    color: #ffffff;
}

/* --- Breakpoint Trigger: Under 1200px Viewport Scaling --- */
@media (max-width: 1440px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}
@media (max-width: 1200px) {
    .nav-container {
        padding: 0.6rem 1.5rem;
    }

    /* Enable Hamburger Icon Properties */
    .menu-toggle-icon {
        display: flex;
        background: transparent;
        border: none;
        color: var(--white);
        cursor: pointer;
        padding: 4px;
        align-items: center;
        justify-content: center;
        transition: color 0.2s ease;
    }

    .menu-toggle-icon:hover {
        color: var(--accent-orange);
    }

    /* Transform navigation links container into a premium full-screen mobile backdrop overlay */
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(19, 58, 61, 0.98); /* Rich, branded frosted glass background tone */
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        z-index: 9999;
        
        /* Slide animation defaults */
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                    opacity 0.4s ease;
    }

    /* Activation injection hook state */
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    /* Display typography in massive, easy-to-tap luxury mobile alignments */
    .nav-links a {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    /* Top positioning alignment for close icon row inside drawer view */
    .menu-close-row {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }

    .menu-close-icon {
        background: transparent;
        border: none;
        color: var(--white);
        font-size: 3rem;
        cursor: pointer;
        line-height: 1;
        transition: color 0.2s ease;
    }

    .menu-close-icon:hover {
        color: var(--accent-orange);
    }

    /* --- Page Elements Responsive Adaptations --- */
    .hero-booking-bar { 
        grid-template-columns: repeat(2, 1fr); 
        margin-bottom: -7rem; 
        width: 92%;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .booking-field:nth-child(2) { border-right: none; padding-right: 0; }
    .booking-field { padding-bottom: 0.5rem; }
    .booking-submit-btn { grid-column: span 2; justify-content: center; }
    
    .highlights-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .showcase-container { grid-template-columns: 1fr; gap: 1.5rem; }
    .showcase-tabs { flex-direction: row; flex-wrap: wrap; }
    .showcase-tab-btn { flex: 1 1 calc(33.33% - 0.5rem); padding: 0.8rem 1.2rem; font-size: 0.9rem; }
    .showcase-display-viewport { height: 400px; }
    .contact-container { grid-template-columns: 1fr; gap: 2rem; }
    .details-row, .details-row:nth-child(even) { flex-direction: column; gap: 3rem; }
    
    .footer-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.3rem;
    }
    .gallery-grid {
        gap: 0.5rem;
    }
    .gallery-item {
        height: 200px;
        width:200px;
    }
}
/* --- Mobile Viewport Deep Scaling Optimization --- */
@media (max-width: 768px) {
    .hero-img {
        object-position: center top; /* Adjusts focal alignment to favor upper architecture */
    }
    .hero-overlay {
        padding: 0px 20px 60px 20px;
    }
    .hero h1 { font-size: 2.6rem; }
    .hero-booking-bar { display: none; }
    .booking-field { border-right: none; border-bottom: 1px solid rgba(19, 58, 61, 0.1); padding-right: 0; padding-bottom: 1rem; }
    .booking-submit-btn { grid-column: span 1; }
    .highlights-grid { grid-template-columns: 1fr; }
    section { padding: 3rem 1.25rem 3rem 1.25rem }
    .showcase-tab-btn { flex: 1 1 calc(50% - 0.5rem); }
    .feature-block { grid-template-columns: 1fr; gap: 2rem; }
    
    .content-wrapper {
        gap: 3rem;
    }

    .section-title {
        font-size: 1.7rem;
        line-height: 1;
    }
    .showcase-content-overlay{
        padding: 1.5rem;
    }
    .showcase-content-overlay h3 {
        font-size: 1.3rem;
    }
    section.sanctuary-section {
        padding: 3rem 1.25rem 3rem 1.25rem;
    }
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .room-img-container {
        height: 220px;
    }
    
    .rooms-section {
        padding: 60px 0;
    }
    
    .rooms-section .main-title {
        font-size: 28px;
    }

    .excursion-disclaimer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin: 20px 15px 0 15px;
        padding: 15px;
    }

    .floating-social-bar {
        display: none;
    }
    
    .gallery-item {
        height: 150px;
        width:150px;
    }
    footer {
        padding: 2rem;
    }
    .footer-wrap {
       gap:  2rem;
       padding-bottom: 1.5rem;
    }
}

@media(max-width: 576px) {
    .showcase-tab-btn { flex: 1 1 100%; }
    .logo-wrapper {
        width: 200px;
    }
    .nav-book-btn {
        padding: 0.6rem 1rem;
        font-weight: 600;
        font-size: 0.75rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 476px) {
   .hero h1 {
        font-size: 1.8rem;
    } 
}

/*#videoModalPlayer {
    width: 100% !important;
    height: calc(100% + 60px) !important; 
    margin-bottom: -60px !important;       
    clip-path: inset(0px 0px 60px 0px); 
}
*/

/* Keeps the container context clean and isolates the video area */
/*
#videoPopupEngine .modal-box, 
#videoPopupEngine .video-container {
    overflow: hidden !important;
    background: #000 !important;
}*/