/* 
   Nedunilath Home Stay - Main Stylesheet
   Fully Responsive Layout (Mobile, Tablet, Laptop, Desktop)
   Light Green & Vibrant Luxury Resort Theme (No Dark Black Overlays)
*/

/* Local Font Definitions */
@font-face {
    font-family: 'Breakthrough';
    src: url('../fonts/Breakthrough.eot');
    src: url('../fonts/Breakthrough.eot#iefix') format('embedded-opentype'),
         url('../fonts/Breakthrough.woff2') format('woff2'),
         url('../fonts/Breakthrough.woff') format('woff'),
         url('../fonts/Breakthrough.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.eot');
    src: url('../fonts/Poppins-Regular.eot#iefix') format('embedded-opentype'),
         url('../fonts/Poppins-Regular.woff2') format('woff2'),
         url('../fonts/Poppins-Regular.woff') format('woff'),
         url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.eot');
    src: url('../fonts/Poppins-Medium.eot#iefix') format('embedded-opentype'),
         url('../fonts/Poppins-Medium.woff2') format('woff2'),
         url('../fonts/Poppins-Medium.woff') format('woff'),
         url('../fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.eot');
    src: url('../fonts/Poppins-SemiBold.eot#iefix') format('embedded-opentype'),
         url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
         url('../fonts/Poppins-SemiBold.woff') format('woff'),
         url('../fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.eot');
    src: url('../fonts/Poppins-Light.eot#iefix') format('embedded-opentype'),
         url('../fonts/Poppins-Light.woff2') format('woff2'),
         url('../fonts/Poppins-Light.woff') format('woff'),
         url('../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* FontAwesome Icon Fallback */
i[class^="fa-"], i[class*=" fa-"], .fa, .fa-solid, .fa-brands, .fa-regular {
    font-family: 'FontAwesome' !important;
    font-style: normal;
    font-weight: normal;
}

:root {
    --primary-gold: #ece9c8;
    --accent-brown: #84562e;
    --accent-brown-hover: #9e693b;
    --light-green-accent: #b5ea9f;
    --accent-green: #92c36a;
    --whatsapp-green: #25d366;
    --text-light: #f7faef;
    --text-muted: #d4e8cb;
    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(181, 234, 159, 0.35);
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    margin: 0px;
    padding: 0px;
    border: none;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

html {
    font-size: 10px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    scroll-behavior: smooth;
}

body {
    text-decoration: none;
    background: #183b2b !important;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #e4f2de;
    overflow-x: hidden;
    line-height: 1.6;
}

::selection {
    background: var(--light-green-accent);
    color: #000;
}

/* Headings */
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
}

.h1, h1 {
    font-size: 36px;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Exact Reference Title Font Styling - Wood Text Color */
.init-text {
    font-size: 6.2em;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    font-family: 'Breakthrough', serif;
    color: #ece9c8;
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: 1px;
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.6);
}

.hero-tag, .section-tag {
    font-family: 'Poppins', sans-serif;
    color: var(--light-green-accent);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

/* Header Alignment & Clean Responsive Fixed Bar */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 45px;
    transition: all 0.4s ease;
    background: linear-gradient(180deg, rgba(14, 32, 23, 0.85) 0%, rgba(14, 32, 23, 0.4) 70%, transparent 100%);
}

.main-header.scrolled {
    background: rgba(20, 48, 34, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 45px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(181, 234, 159, 0.3);
}

.nav-container {
    max-width: 1380px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ece9c8;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.brand-logo-badge {
    border: 2px solid var(--accent-brown);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(132, 86, 46, 0.35);
    box-shadow: 0 0 15px rgba(132, 86, 46, 0.4);
}

.brand-logo-badge i {
    font-size: 18px;
    color: var(--primary-gold);
}

.brand-text-wrap {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: 'Breakthrough', serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #ece9c8;
    line-height: 1;
}

.brand-sub {
    font-size: 10px;
    letter-spacing: 2.5px;
    color: var(--light-green-accent);
    text-transform: uppercase;
    margin-top: 3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
    margin: 0 35px 0 auto;
    padding: 0;
    white-space: nowrap;
}

.nav-menu li {
    display: inline-block;
}

.nav-menu a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
    white-space: nowrap;
    text-decoration: none;
    padding: 4px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--light-green-accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 0;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.header-phone:hover {
    color: var(--light-green-accent);
}

.header-phone i {
    color: var(--light-green-accent);
    font-size: 15px;
}

.btn-book-now {
    background: var(--accent-brown);
    color: #ffffff;
    padding: 9px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(132, 86, 46, 0.4);
    border: none;
}

.btn-book-now:hover {
    background: var(--accent-brown-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(132, 86, 46, 0.6);
}

/* Mobile Navigation Toggle Button */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    border: none;
    padding: 6px;
}

/* Hero Section */
.page-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 110px;
    background: url('../images/hero-bg.png') no-repeat center center / cover;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 32, 23, 0.4) 0%, rgba(14, 32, 23, 0.15) 45%, rgba(20, 48, 34, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.hero-title-main {
    margin-bottom: 12px;
}

/* Reference Green Indicator Subtitle */
.hero-bar-subtitle {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.green-indicator {
    width: 120px;
    height: 20px;
    background: var(--light-green-accent);
    display: inline-block;
    border-radius: 2px;
    box-shadow: 0 2px 12px rgba(181, 234, 159, 0.5);
}

.hero-bar-text {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.8);
}

/* Side Sticky Call Back Tab & Floating WhatsApp */
.want-call-back-side {
    position: fixed;
    right: 0;
    top: 35%;
    z-index: 999;
    background: var(--accent-brown);
    color: #ffffff;
    padding: 16px 12px;
    writing-mode: vertical-rl;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 12px;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.want-call-back-side:hover {
    background: var(--accent-brown-hover);
    padding-right: 18px;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: var(--whatsapp-green);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    animation: pulseWhatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
}

@keyframes pulseWhatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Custom User Glass Background Color (PRIME LOCATION, HOME COMFORT, VISUAL TOUR) */
.section-dark {
    position: relative;
    padding: 95px 40px;
    background: linear-gradient(135deg, #324335 0%, #223428 50%, #18261d 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.section-with-bg {
    position: relative;
    padding: 105px 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.section-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(35, 78, 57, 0.55) 0%, rgba(30, 68, 50, 0.3) 50%, rgba(35, 78, 57, 0.65) 100%);
    z-index: 1;
}

.section-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-highlight-box {
    background: rgba(132, 86, 46, 0.3);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(236, 233, 200, 0.35);
    border-left: 4px solid var(--accent-brown);
    padding: 22px 28px;
    border-radius: 0 14px 14px 0;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.about-highlight-box h4 {
    color: #ece9c8;
    font-size: 18px;
    margin-bottom: 8px;
}

/* Feature Cards Grid - Light Green Attractive Glassmorphism */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 45px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 20px;
    padding: 34px 30px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.3), inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.3);
    border-color: #ffffff;
    box-shadow: 0 20px 55px 0 rgba(0, 0, 0, 0.45), inset 0 1px 0 0 rgba(255, 255, 255, 0.6);
}

.feature-icon-wrap {
    width: 62px;
    height: 62px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 22px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.feature-card h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* Rooms & Accommodation Section */
.room-card {
    background: rgba(25, 60, 43, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(181, 234, 159, 0.35);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    margin-bottom: 40px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
}

.room-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
}

.room-card-img {
    position: relative;
    min-height: 360px;
    background-size: cover;
    background-position: center;
}

.room-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-brown);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.room-card-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-card-body h3 {
    font-size: 28px;
    color: #ece9c8;
    margin-bottom: 15px;
}

.room-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 25px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(181, 234, 159, 0.3);
    padding: 6px 14px;
    border-radius: 8px;
}

.spec-item i {
    color: var(--light-green-accent);
}

/* Homestay Photo Gallery Section Styles */
.gallery-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.gallery-tab-btn {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(181, 234, 159, 0.35);
    color: #ece9c8;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-tab-btn:hover,
.gallery-tab-btn.active {
    background: var(--accent-brown);
    border-color: var(--primary-gold);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(132, 86, 46, 0.5);
    transform: translateY(-2px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.gallery-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(25, 60, 43, 0.6);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(181, 234, 159, 0.35);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(0,0,0,0.45);
}

.gallery-img-wrap {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(20, 48, 34, 0.9) 0%, rgba(20, 48, 34, 0.2) 60%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-zoom-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--accent-brown);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-zoom-icon {
    transform: scale(1);
}

.gallery-caption {
    padding: 18px 22px;
    background: rgba(20, 48, 34, 0.92);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gallery-caption h4 {
    font-size: 16px;
    color: #ece9c8;
    font-weight: 600;
}

.gallery-tag-pill {
    background: rgba(181, 234, 159, 0.25);
    border: 1px solid var(--light-green-accent);
    color: var(--light-green-accent);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Nearby Attractions Section */
.attractions-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px auto;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.attraction-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 290px;
    border: 1px solid rgba(181, 234, 159, 0.35);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
}

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

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

.attraction-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(20, 48, 34, 0.92) 0%, rgba(20, 48, 34, 0.3) 60%, rgba(0,0,0,0) 100%);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: background 0.3s ease;
}

.attraction-distance {
    display: inline-block;
    align-self: flex-start;
    background: var(--light-green-accent);
    color: #000;
    font-weight: 700;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 14px;
    margin-bottom: 8px;
}

.attraction-title {
    font-size: 22px;
    color: #ece9c8;
    font-weight: 700;
}

.attraction-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Premium Glassmorphism Delivery Banner */
.delivery-banner {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 20px;
    padding: 35px 40px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.3), inset 0 1px 0 0 rgba(255, 255, 255, 0.4);
}

.delivery-text h3 {
    font-size: 22px;
    color: #ece9c8;
    margin-bottom: 8px;
}

.delivery-apps {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.app-pill {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    padding: 9px 20px;
    border-radius: 25px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

/* Contact & Footer Section */
.main-footer {
    background: #122b1f;
    border-top: 1px solid rgba(181, 234, 159, 0.3);
    position: relative;
}

.footer-top {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-col h4 {
    font-size: 18px;
    color: #ece9c8;
    margin-bottom: 25px;
    font-family: 'Breakthrough', serif;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-brown);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    color: var(--text-muted);
    font-size: 14px;
}

.footer-contact-item i {
    color: var(--light-green-accent);
    font-size: 18px;
    margin-top: 3px;
}

.footer-bottom {
    background: var(--accent-brown);
    padding: 18px 40px;
    color: #ece9c8;
    font-size: 13px;
}

.footer-bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(14, 32, 23, 0.94);
    backdrop-filter: blur(20px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    background: rgba(20, 48, 34, 0.95);
    border: 1px solid rgba(181, 234, 159, 0.4);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
}

.lightbox-img-container {
    width: 100%;
    max-height: 65vh;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img-container img {
    max-width: 100%;
    max-height: 65vh;
    object-fit: contain;
}

.lightbox-bottom-bar {
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(14, 32, 23, 0.95);
    border-top: 1px solid rgba(181, 234, 159, 0.3);
}

.lightbox-title {
    font-size: 18px;
    color: #ece9c8;
}

.lightbox-nav-btn {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(181,234,159,0.35);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-nav-btn:hover {
    background: var(--accent-brown);
    border-color: var(--primary-gold);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 10;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: var(--accent-brown);
}

/* Call Back Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(14, 32, 23, 0.88);
    backdrop-filter: blur(14px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-card {
    background: rgba(20, 48, 34, 0.96);
    border: 1px solid rgba(181, 234, 159, 0.4);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
}

.modal-title {
    font-family: 'Breakthrough', serif;
    font-size: 24px;
    color: #ece9c8;
    margin-bottom: 10px;
}

.modal-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

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

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

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(181, 234, 159, 0.35);
    border-radius: 8px;
    padding: 12px 15px;
    color: #ffffff;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

select.form-input {
    background-color: rgba(24, 42, 31, 0.95);
    color: #ece9c8;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ece9c8%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
    padding-right: 40px;
}

select.form-input option,
.form-input option,
option {
    background-color: #1a2a20 !important;
    color: #ece9c8 !important;
    padding: 12px 15px !important;
    font-size: 14px;
}

select.form-input option:hover,
select.form-input option:focus,
select.form-input option:active,
select.form-input option:checked {
    background-color: #84562e !important;
    color: #ffffff !important;
}

.form-input:focus {
    border-color: var(--accent-brown);
}

.btn-submit-form {
    width: 100%;
    background: var(--accent-brown);
    color: #ffffff;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(132, 86, 46, 0.4);
}

.btn-submit-form:hover {
    background: var(--accent-brown-hover);
}

/* ==========================================================================
   COMPREHENSIVE MEDIA QUERIES (DESKTOP, LAPTOP, TABLET & MOBILE)
   ========================================================================== */

/* Laptop Screens (1025px - 1280px) */
@media (max-width: 1280px) {
    .main-header {
        padding: 14px 25px;
    }

    .nav-menu {
        gap: 14px;
    }

    .nav-menu a {
        font-size: 13px;
    }

    .header-right {
        gap: 12px;
    }

    .header-phone {
        font-size: 13px;
    }

    .btn-book-now {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Tablets & Small Laptops (769px - 1024px) */
@media (max-width: 1024px) {
    .main-header {
        padding: 15px 25px;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(20, 48, 34, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 25px 30px;
        gap: 18px;
        border-bottom: 1px solid rgba(181, 234, 159, 0.3);
        box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        font-size: 15px;
        width: 100%;
    }

    .about-grid,
    .room-card {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Mobile Phones (Up to 768px) */
@media (max-width: 768px) {
    .main-header {
        padding: 12px 18px;
    }

    .brand-title {
        font-size: 18px;
    }

    .brand-sub {
        font-size: 9px;
    }

    .header-phone span {
        display: none; /* Hide number text on small mobile, keep icon + button */
    }

    .btn-book-now {
        padding: 8px 14px;
        font-size: 12px;
    }

    .page-hero {
        min-height: 90vh;
        padding-bottom: 70px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .init-text {
        font-size: 3.4em;
        line-height: 48px;
    }

    .green-indicator {
        width: 70px;
        height: 16px;
    }

    .hero-bar-text {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .want-call-back-side {
        font-size: 10px;
        padding: 10px 6px;
    }

    .section-dark, .section-with-bg {
        padding: 65px 20px;
    }

    .features-grid,
    .gallery-grid,
    .attractions-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        padding: 50px 20px;
    }

    .footer-bottom {
        padding: 15px 20px;
        text-align: center;
    }

    .footer-bottom-inner {
        justify-content: center;
    }
    
}


