/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0d7012;     /* Emerald green */
    --secondary-color: #0d7012;   /* Light emerald */
    --accent-color: #8b4513;      /* Warm wood brown */
    --gold-color: #d4af37;        /* Gold accent */
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

/* Account for fixed navbar when scrolling to sections */
section[id] {
    scroll-margin-top: 100px;
}

/* Ensure attractions section is properly positioned */
#attractions {
    scroll-margin-top: 100px;
}

/* Ensure gallery section is properly positioned */
#gallery {
    scroll-margin-top: 100px;
}

/* Ensure rooms section is properly positioned */
#rooms {
    scroll-margin-top: 100px;
}

/* Ensure contact section is properly positioned */
#contact {
    scroll-margin-top: 100px;
}

/* Ensure home section is properly positioned */
#home {
    scroll-margin-top: 100px;
}
a{text-decoration:none;color:#bdc3c7}

/* Ensure nav-toggle spans are not affected by global styles */
.nav-toggle span {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden !important;
    overflow-y: auto;
    min-height: 100vh;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--gold-color));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   FRESH RESPONSIVE NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(13, 112, 18, 0.1);
    z-index: 10000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    height: 80px;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 10001;
    margin-right: auto;
}

.navbar .nav-logo img {
    height: 80px;
    width: auto;
    max-height: 80px;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.book-now-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Mobile Menu Toggle Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    cursor: pointer;
    padding: 11px 8px;
    z-index: 10001;
    position: relative;
    margin-left: auto;
    visibility: visible;
    opacity: 1;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    box-sizing: border-box;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.nav-toggle span {
    width: 24px !important;
    height: 3px !important;
    min-height: 3px !important;
    max-width: 24px !important;
    background-color: #000000 !important;
    background: #000000 !important;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block !important;
    pointer-events: none;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

/* Mobile Menu */
@media (max-width: 768px) {
    .navbar .container {
        padding: 0 15px;
    }
    
    .nav-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        align-items: center !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 10001 !important;
        order: 2;
        margin-left: auto;
        flex-shrink: 0;
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        padding: 10px 8px !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border-radius: 4px !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15) !important;
        box-sizing: border-box !important;
    }
    
    .nav-toggle span {
        background: #000000 !important;
        width: 24px !important;
        height: 3px !important;
        min-height: 3px !important;
        max-width: 24px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 2px !important;
        flex-shrink: 0 !important;
        position: relative !important;
    }
    
    /* Ensure all three spans are visible and evenly spaced */
    .nav-toggle span:nth-child(1),
    .nav-toggle span:nth-child(2),
    .nav-toggle span:nth-child(3) {
        background: #000000 !important;
        width: 24px !important;
        height: 3px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-toggle:active {
        background: rgba(255, 255, 255, 1) !important;
    }
    
    /* Ensure hamburger is always visible and clickable on mobile */
    .navbar .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    .nav-toggle:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }
    
    .nav-logo {
        order: 1;
        flex-shrink: 0;
    }
    
    .nav-menu {
        order: 3;
    }
    
    .menu-overlay {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 0 20px 0;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 9999;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 15px 25px;
        border-bottom: 1px solid #f0f0f0;
        display: block;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .book-now-btn {
        margin: 20px 25px;
        width: calc(100% - 50px);
        justify-content: center;
    }
    
    /* Close button - only visible on mobile when menu is open */
    .menu-close {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        font-size: 32px;
        color: var(--text-dark);
        cursor: pointer;
        z-index: 10000;
        padding: 0;
        line-height: 1;
    }
    
    .menu-close:hover {
        color: var(--primary-color);
    }
    
    /* Lock body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    html.menu-open {
        overflow: hidden;
    }
}

/* Desktop: Hide mobile elements */
@media (min-width: 769px) {
    .nav-toggle {
        display: none !important;
    }
    
    .menu-overlay {
        display: none !important;
    }
    
    .menu-close {
        display: none !important;
    }
    
    .nav-menu {
        position: static;
        flex-direction: row;
        width: auto;
        height: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
        overflow: visible;
    }
}

.pt-0 {
    padding-top: 0 !important;
}

/* Hero Section */
.hero {
    position: relative;
    height: 75vh;
    min-height: 480px;
    overflow: hidden;
    z-index: 1; /* Below navbar and menu */
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

/* Hide text overlays and CTA buttons on mobile */
@media (max-width: 768px) {
    .slide-content {
        display: none !important;
    }
    
    .cta-btn {
        display: none !important;
    }
    
    /* Hide navigation arrows on mobile */
    .hero-nav-next,
    .hero-nav-prev {
        display: none !important;
    }
}

.slide-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: slideInUp 1s ease 0.5s forwards;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: slideInUp 1s ease 0.8s forwards;
}

.cta-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    animation: slideInUp 1s ease 1.1s forwards;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Swiper Navigation Arrows (Desktop Only) */
.hero-nav-next,
.hero-nav-prev {
    color: white;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero-nav-next:hover,
.hero-nav-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.hero-nav-next::after,
.hero-nav-prev::after {
    font-size: 20px;
    font-weight: bold;
}

/* Swiper Pagination Dots */
.hero-swiper .swiper-pagination {
    bottom: 30px;
    z-index: 10;
}

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Legacy dot styles (kept for compatibility) */
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.3);
}

/* About Section */
.about {
    padding: 60px 0;
    /* background:#f7f5df; */
    overflow: visible; /* Allow natural page scroll */
}

.about-content {
    display: block;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-text ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.about-text ul li {
    margin-bottom: 6px;
}

.about-features {
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;

    
}

.feature {
    text-align: center;
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* .about-image removed for full-width content */

.about-image:hover img {
    transform: scale(1.05);
}

/* Rooms Section */
.rooms {
    padding: 60px 0;
}

/* .rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
} */

.room-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.room-image {
    position: relative;
    height: 250px;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.room-content {
    padding: 30px;
}

.room-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.room-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.room-features {
    list-style: none;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 0;
}


.room-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: var(--text-light);
    flex: 1;
}

.room-features i,
.room-features span {
    color: var(--primary-color);
    margin-right: 0;
    width: auto;
}

.room-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 25px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    color: var(--text-light);
    margin-left: 5px;
}

.book-room-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
        padding: 10px 15px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-room-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* Facilities Section */
.facilities {
    padding: 60px 0;
    background: #f7f5df;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.facility-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.facility-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.facility-icon i {
    font-size: 2rem;
    color: white;
}

.facility-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.facility-card p {
    color: var(--text-light);
}

/* Attractions Section */
.attractions {
    padding: 60px 0;
}

.attractions-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease;
}

.attraction-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
}

.attraction-image {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.attraction-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.attraction-content {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.attraction-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.distance {
    color: var(--gold-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.attraction-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel-btn:hover {
    background: white;
    box-shadow: var(--shadow);
}

.prev-attraction {
    left: 20px;
}

.next-attraction {
    right: 20px;
}

/* Gallery Section */
.gallery {
    padding: 60px 0;
    background: #f7f5df;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    justify-items: stretch;
    align-items: stretch;
}

.gallery-item {
    position: relative;
    width: 100%;
    /* Consistent 4:3 aspect ratio for all thumbnails */
    aspect-ratio: 4 / 3;
    /* Fallback for older browsers */
    height: 0;
    padding-bottom: 75%; /* 3/4 = 75% for 4:3 aspect ratio */
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    user-select: none;
    display: block;
    text-decoration: none;
    color: inherit;
    background-color: #f5f5f5; /* Fallback background */
}

/* Modern browsers with aspect-ratio support */
@supports (aspect-ratio: 4 / 3) {
    .gallery-item {
        height: auto;
        padding-bottom: 0;
    }
}

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

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: all 0.3s ease;
    pointer-events: none; /* Let parent handle clicks */
    user-select: none;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 124, 71, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none; /* Don't block clicks */
    z-index: 1;
}

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

.gallery-overlay i {
    font-size: 2rem;
    color: white;
}

/* Gallery now uses GLightbox library */

/* Enquiry Modal */
.enquiry-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    /* Ensure modal is always on top */
    pointer-events: none;
}

.enquiry-modal:target {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto;
    align-items: center;
    justify-content: center;
}

/* Prevent page scroll when modal is open */
body.enquiry-modal-open {
    overflow: hidden;
}

.enquiry-modal-content {
    background: #ffffff;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: none; /* No height restriction - allows natural page scroll */
    overflow: visible; /* No scroll trap */
    padding: 25px 25px 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 1px solid #e5e5e5;
    margin: auto;
    pointer-events: auto;
    z-index: 100000;
}


/* Enquiry Form Responsive Styles */
#enquiryForm .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

#enquiryForm .form-field-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#enquiryForm label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-size: 0.95rem;
    display: block;
}

#enquiryForm label .required {
    color: #dc3545;
    margin-left: 2px;
}

#enquiryForm input[type="text"],
#enquiryForm input[type="tel"],
#enquiryForm input[type="number"],
#enquiryForm select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    background-color: #ffffff;
}

#enquiryForm select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

#enquiryForm input[type="text"]:focus,
#enquiryForm input[type="tel"]:focus,
#enquiryForm input[type="number"]:focus,
#enquiryForm select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 112, 18, 0.1);
}

#enquiryForm input[type="text"][readonly],
#enquiryForm input[type="tel"][readonly] {
    background-color: #f8f9fa;
    cursor: pointer;
}

#enquiryForm input[type="tel"].error {
    border-color: #dc3545;
}

#enquiryForm .error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

#enquiryForm .submit-btn {
    width: 100%;
    margin-top: 10px;
}

/* Responsive: Single column on mobile */
@media (max-width: 768px) {
    .enquiry-modal {
        padding: 15px;
    }
    
    /* Enquiry Modal Content - Mobile Responsive */
    .enquiry-modal-content {
        max-width: 100% !important;
        width: 100% !important;
        max-height: 90vh;
        padding: 15px 12px 20px !important; /* Reduced padding */
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    /* Ensure all form elements are responsive */
    .enquiry-modal-content * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    #enquiryForm {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    #enquiryForm .form-row {
        grid-template-columns: 1fr !important; /* Single column on mobile */
        gap: 15px !important;
        margin-bottom: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    #enquiryForm .form-field-wrapper {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    #enquiryForm label {
        width: 100% !important;
        max-width: 100% !important;
        word-wrap: break-word;
        font-size: clamp(0.9rem, 2.5vw, 0.95rem) !important;
    }
    
    #enquiryForm input[type="text"],
    #enquiryForm input[type="tel"],
    #enquiryForm input[type="number"],
    #enquiryForm select {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px !important;
        font-size: 16px !important; /* Prevents zoom on iOS */
        box-sizing: border-box !important;
        margin: 0 !important;
    }
    
    #enquiryForm .form-actions {
        display: flex !important;
        flex-direction: column !important; /* Stack vertically */
        gap: 12px !important;
        width: 100% !important;
        margin-top: 20px !important;
    }
    
    #enquiryForm .form-actions button,
    #enquiryForm .form-actions a {
        width: 100% !important;
        flex: none !important;
        min-height: 44px !important; /* Touch-friendly */
    }
    
    #enquiryForm label {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    /* Flatpickr responsive adjustments */
    .flatpickr-calendar {
        max-width: 100% !important;
    }
    
    .flatpickr-time {
        width: 100% !important;
    }
    
    .flatpickr-time input {
        font-size: 0.9rem !important;
    }
}

/* Flatpickr time picker styling */
.flatpickr-time {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.flatpickr-time input.flatpickr-hour,
.flatpickr-time input.flatpickr-minute,
.flatpickr-time .flatpickr-am-pm {
    font-size: 1rem;
    padding: 8px;
    border-radius: 4px;
}

@media (max-width: 480px) {
    .flatpickr-calendar {
        width: 100% !important;
        max-width: 280px !important;
    }
    
    .flatpickr-time input {
        font-size: 0.85rem !important;
        padding: 6px !important;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile - further reduce padding */
    .enquiry-modal {
        padding: 5px !important;
    }
    
    .enquiry-section {
        padding: 100px 0 30px !important; /* Top clears fixed navbar; normal bottom */
    }
    
    .enquiry-section .container {
        padding: 0 12px !important; /* Normal container padding */
    }
    
    .enquiry-modal-content {
        padding: 15px 12px 20px !important; /* Normal card padding */
        max-height: none !important; /* No height restriction */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        border-radius: 8px !important;
        overflow: visible !important; /* No scroll trap */
    }
    
    .enquiry-section .section-header {
        margin-bottom: 12px !important;
    }
    
    .enquiry-section .section-header h2 {
        font-size: 1.2rem !important;
        margin-bottom: 6px !important;
    }
    
    .enquiry-section .section-header p {
        font-size: 0.8rem !important;
    }
    
    #enquiryForm {
        gap: 12px !important;
    }
    
    #enquiryForm .form-row {
        gap: 12px !important;
        margin-bottom: 12px !important;
    }
    
    #enquiryForm input[type="text"],
    #enquiryForm input[type="tel"],
    #enquiryForm input[type="number"],
    #enquiryForm select {
        font-size: 16px !important; /* Prevents zoom on iOS */
        padding: 12px !important;
    }
    
    #enquiryForm label {
        font-size: 0.85rem !important;
        margin-bottom: 5px !important;
    }
    
    #enquiryForm .form-actions {
        gap: 10px !important;
        margin-top: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        position: relative !important; /* Not sticky */
    }
    
    #enquiryForm .form-actions button,
    #enquiryForm .form-actions a {
        padding: 12px 15px !important;
        font-size: 0.95rem !important;
        min-height: 44px !important;
    }
    
    #enquiryForm select {
        background-position: right 12px center;
        padding-right: 35px;
        font-size: 0.9rem;
    }
    
    #enquiryForm small {
        font-size: 0.8rem;
    }
    
    /* Header responsive on enquiry page */
    .navbar .nav-logo img {
        height: 50px !important;
        max-width: 100% !important;
    }
    
    .navbar .nav-container {
        padding: 0 10px !important;
    }
}

.enquiry-modal-content h3 {
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
}

.enquiry-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: var(--text-light);
    background: none;
    border: none;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.enquiry-close:hover {
    color: var(--text-dark);
}

/* Contact Section */
.contact {
    padding: 60px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.about-features .material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: 300;
    font-style: normal;

    font-size: 50px!important;
    color: #0d7012;

}
li{color:var(--text-light)}
.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h3 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-light);
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-form {
    margin-top: 40px;
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 350px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    min-height: 350px;
    display: block;
}

/* Footer */
.footer {
    background: #031304;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: block;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.footer-logo span {
    color: var(--gold-color);
    font-size: 0.9rem;
}

.footer-section p {
    color: #bdc3c7;
    margin: 20px 0;
    line-height: 1.7;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #bdc3c7;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Global responsive fixes */
    * {
        max-width: 100%;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    .container {
        padding: 0 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Bootstrap grid fixes for enquiry section only */
    .enquiry-section .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .enquiry-section [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Natural page scrolling - no scroll trap */
    body.enquiry-page {
        overflow-x: hidden !important;
        overflow-y: auto !important; /* Allow natural page scroll */
        height: auto !important;
        min-height: 0; /* No viewport min-height - content flows naturally */
        position: relative !important; /* Not fixed */
        width: 100%;
    }
    
    .enquiry-section {
        position: relative !important; /* Not fixed - allows page scroll */
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        min-height: 0 !important; /* Content-driven height - no clipping */
        max-height: none !important;
        padding: 100px 0 40px !important; /* Top padding clears fixed navbar; normal bottom */
        overflow: visible !important; /* No scroll trap */
        overflow-x: hidden !important;
        z-index: 1;
    }
    
    .enquiry-section .container {
        height: auto !important; /* Auto height - no scroll trap */
        display: block !important; /* Normal flow */
        flex-direction: column;
        padding: 0 15px;
    }
    
    .enquiry-section .section-header {
        flex-shrink: 0;
        margin-bottom: 20px;
        padding: 0;
    }
    
    .enquiry-section .section-header h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .enquiry-section .section-header p {
        font-size: 0.9rem;
        margin-top: 5px !important;
    }
    
    .enquiry-section .row {
        display: flex !important;
        flex-direction: column;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .enquiry-section .col-lg-8 {
        display: block !important; /* Normal flow */
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .enquiry-section .enquiry-modal-content {
        display: block !important; /* Normal flow - no flex scroll trap */
        max-height: none !important;
        overflow: visible !important; /* No scroll trap */
        overflow-x: hidden !important;
        margin: 0 auto !important;
        padding: 20px 15px !important;
        background: #ffffff !important;
        border-radius: 12px !important;
        box-shadow: var(--shadow-lg) !important;
        border: 1px solid #e5e5e5 !important;
        max-width: 600px !important; /* Centered card */
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .enquiry-section #enquiryForm {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .enquiry-section #enquiryForm .form-row {
        margin-bottom: 0;
        flex-shrink: 0;
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .enquiry-section #enquiryForm .form-field-wrapper {
        width: 100% !important;
        min-width: 0 !important;
    }
    
    .enquiry-section #enquiryForm input[type="text"],
    .enquiry-section #enquiryForm input[type="tel"],
    .enquiry-section #enquiryForm input[type="number"],
    .enquiry-section #enquiryForm select {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 15px !important;
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
    
    .enquiry-section #enquiryForm .form-actions {
        margin-top: 25px !important; /* Normal margin - not sticky */
        padding-top: 15px;
        padding-bottom: 10px;
        position: relative !important; /* Not sticky - allows page scroll */
        background: transparent !important; /* No background needed */
        z-index: auto;
        border-top: 1px solid #e5e5e5;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .enquiry-section #enquiryForm button[type="submit"],
    .enquiry-section #enquiryForm a.submit-btn {
        width: 100% !important;
        flex: 1 !important;
        padding: 14px 20px !important;
        font-size: 1rem !important;
        white-space: normal !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }
    
    /* Ensure navbar stays on top and is responsive */
    .navbar .container {
        padding: 0 15px;
        height: 70px;
    }
    
    .navbar .nav-logo img {
        height: 60px;
        max-width: 100%;
    }

    /* Hero section responsive */
    .hero {
        height: 50vh;
        min-height: 300px;
    }
    
    /* Text overlays and buttons already hidden on mobile via media query above */
    .hero-swiper .swiper-pagination {
        bottom: 20px;
    }
    
    .hero-swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
    
    .hero-swiper .swiper-pagination-bullet-active {
        width: 25px;
    }

    /* Section headers responsive */
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }

    /* About section responsive */
    .about {
        padding: 40px 0;
    }
    
    .about-content {
        display: block;
    }

    /* Back to single column list on mobile */
    .about-text ul {
        columns: 1;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Rooms section responsive */
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .room-card {
        margin-bottom: 20px;
    }
    
    .room-card img {
        width: 100%;
        height: auto;
    }
    
    .room-features {
        flex-wrap: wrap;
        gap: 10px;
    }

    .facilities-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .attraction-slide {
        grid-template-columns: 1fr;
    }

    .attraction-image {
        height: 250px;
    }

    .attraction-content {
        padding: 30px 20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-content {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    /* Hide Quick Links and Services on mobile */
    .footer-section:nth-child(2),
    .footer-section:nth-child(3) {
        display: none !important;
    }
    
    /* First section (logo/about) - full width */
    .footer-section:nth-child(1) {
        grid-column: 1 / -1;
    }
    
    /* Contact Info full width */
    .footer-section:nth-child(4) {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* Lightbox responsive styles moved to css/gallery.css */
    .about-features {
        flex-direction: column;
    }
    
    .gallery-item {
        position: relative;
        height: 200px;
        border-radius: 15px;
        overflow: hidden;
        cursor: pointer;
        transition: all 0.3s ease;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 1rem 15px;
    }

    .slide-content h1 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero {
        height: 60vh;
        min-height: 350px;
    }
    
    .hero-swiper .swiper-pagination {
        bottom: 15px;
    }

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

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .prev-attraction {
        left: 10px;
    }

    .next-attraction {
        right: 10px;
    }
}

/* Smooth entrance animations for sections */
section {
    opacity: 1;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

section.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998; /* Below lightbox (9999) */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Scroll-top button hidden when GLightbox is open */

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}


/* ---------- Layout ---------- */
#stylized {
  background-color: #fff;
  padding: 20px;
  margin-top: 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

/* ---------- Inputs ---------- */
#stylized input[type="text"] {
  width: 100%;
  max-width: 320px;
  height: 50px;
  padding: 0 10px 0 40px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  background: #fff url(https://www.eglobe-solutions.com/extras/Content/WebsiteTemplate/L6deluxe/libs/images/calendar-icon.png)
             no-repeat 10px center;
  background-size: 20px;
  transition: border-color 0.2s;
}
#stylized input[type="text"]:focus {
  outline: none;
  border-color: #369616;
  box-shadow: 0 0 0 2px rgba(54,150,22,0.2);
}

/* ---------- Button ---------- */
#stylized .btn {
  width: 100%;
  max-width: 320px;
  height: 50px;
  background: linear-gradient(135deg, #42b72a, #2f8e1d);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
}
#stylized .btn:hover {
  background: linear-gradient(135deg, #2f8e1d, #42b72a);
  transform: translateY(-2px);
}

/* ---------- Credit Card Image ---------- */
#stylized img {
  height: 40px;
  object-fit: contain;
  margin-top: 5px;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  #stylized {
    flex-direction: column;
    align-items: center;
  }
}
