@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette - Forest Greens, Warm Sand, Gold Accents */
    --primary: hsl(152, 48%, 18%);
    --primary-light: hsl(152, 38%, 28%);
    --primary-glow: rgba(24, 69, 48, 0.15);
    --secondary: hsl(38, 92%, 52%);
    --secondary-dark: hsl(35, 90%, 42%);
    --accent: hsl(162, 70%, 40%);
    --accent-bg: hsl(152, 40%, 96%);
    --bg-primary: hsl(40, 20%, 97%);
    --bg-secondary: hsl(40, 20%, 94%);
    --bg-card: hsl(0, 0%, 100%);
    --text-main: hsl(152, 40%, 10%);
    --text-muted: hsl(152, 12%, 40%);
    --text-light: hsl(0, 0%, 100%);
    --primary-dark: hsl(152, 48%, 8%);
    
    /* UI Styling */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px 0 rgba(24, 69, 48, 0.08);
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    
    --shadow-sm: 0 4px 12px rgba(24, 69, 48, 0.04);
    --shadow-md: 0 12px 30px rgba(24, 69, 48, 0.08);
    --shadow-lg: 0 24px 60px rgba(24, 69, 48, 0.12);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button, input, select {
    font-family: inherit;
    outline: none;
    border: none;
}

ul {
    list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 12px auto 0 auto;
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-smooth);
}

header.scrolled .nav-container {
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
    transition: var(--transition-smooth);
}

header.scrolled .logo {
    color: var(--primary);
}

.logo svg {
    fill: currentColor;
    width: 32px;
    height: 32px;
    transition: var(--transition-smooth);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-light);
    font-size: 0.95rem;
    position: relative;
}

header.scrolled .nav-link {
    color: var(--text-main);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition-smooth);
}

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

.nav-btn {
    background: var(--secondary);
    color: var(--text-main);
    padding: 10px 24px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.nav-btn:hover {
    background: var(--secondary-dark);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 150, 0, 0.4);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1010;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

header.scrolled .mobile-toggle span {
    background: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(24, 69, 48, 0.5), rgba(24, 69, 48, 0.7)), url('images/hero_bg.png') no-repeat center center/cover;
    transform: scale(1.05);
    animation: zoomHero 20s infinite alternate ease-in-out;
}

@keyframes zoomHero {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    margin-top: 50px;
}

.hero-subtitle {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.2s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 800;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.4s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-desc {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

/* Floating Search Bar */
.search-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-xl);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    animation: fadeInUp 0.8s 0.8s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.search-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 12px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-fast);
}

.search-field:hover {
    background: rgba(24, 69, 48, 0.04);
}

.search-field label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.search-field input, .search-field select {
    background: transparent;
    width: 100%;
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 600;
    cursor: pointer;
    border: none;
    outline: none;
}

.search-field select option {
    background-color: var(--bg-card);
    color: var(--text-main);
}

.search-field input::placeholder {
    color: rgba(24, 69, 48, 0.5);
}

.divider-vertical {
    width: 1px;
    height: 40px;
    background: rgba(24, 69, 48, 0.15);
}

.search-btn {
    background: var(--primary);
    color: var(--text-light);
    height: 54px;
    padding: 0 32px;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.search-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 69, 48, 0.3);
}

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

/* About Section */
.about {
    background: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.about-img-wrapper {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.about-img-wrapper img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-img-wrapper:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

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

.about-img-featured {
    grid-row: span 2;
    height: 100%;
}

.about-img-featured img {
    height: 100%;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--secondary);
    color: var(--text-main);
    padding: 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 160px;
    font-family: 'Outfit', sans-serif;
    animation: floatBadge 4s infinite alternate ease-in-out;
}

.about-badge span {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.about-badge label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@keyframes floatBadge {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.about-content h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: left;
}

.stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Rooms & Accommodation */
.rooms {
    background: var(--bg-secondary);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.room-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

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

.room-gallery {
    height: 320px;
    position: relative;
    overflow: hidden;
}

.room-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.room-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 2;
}

.room-details {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.room-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--secondary);
    font-weight: 600;
}

.room-title {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.room-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.room-amenities-strip {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(24, 69, 48, 0.08);
}

.room-amenity {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.room-amenity svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-light);
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.room-price {
    font-family: 'Outfit', sans-serif;
}

.room-price-val {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.room-price-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.room-select-btn {
    background: var(--primary);
    color: var(--text-light);
    padding: 12px 24px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.room-select-btn:hover {
    background: var(--secondary);
    color: var(--text-main);
    transform: translateY(-2px);
}

/* Booking Engine Section */
.booking-section {
    background: var(--bg-primary);
}

.booking-panel {
    background: var(--bg-card);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
}

.booking-form-side {
    padding: 48px;
    border-right: 1px solid rgba(24, 69, 48, 0.06);
}

.booking-form-side h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input, .form-group select {
    background: var(--bg-secondary);
    border: 1px solid rgba(24, 69, 48, 0.08);
    padding: 12px 16px;
    border-radius: var(--border-radius-md);
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--primary);
    background: var(--bg-card);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

/* Guest Dropdown CSS Styling */
.guest-inputs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.guest-input-sub {
    position: relative;
}

/* Summary / Bill Side */
.booking-summary-side {
    padding: 48px;
    background: var(--accent-bg);
    display: flex;
    flex-direction: column;
}

.booking-summary-side h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(24, 69, 48, 0.1);
    padding-bottom: 16px;
}

.summary-details {
    flex-grow: 1;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.summary-row.total {
    border-top: 1px solid rgba(24, 69, 48, 0.1);
    padding-top: 16px;
    margin-top: 16px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.summary-row label {
    color: var(--text-muted);
}

.summary-row.total label {
    color: var(--primary);
}

.summary-row span {
    font-weight: 600;
    color: var(--text-main);
}

.summary-row.total span {
    font-size: 1.5rem;
    color: var(--primary);
}

.book-now-btn {
    background: var(--secondary);
    color: var(--text-main);
    width: 100%;
    padding: 16px;
    border-radius: var(--border-radius-md);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    margin-top: 24px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.book-now-btn:hover {
    background: var(--secondary-dark);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 150, 0, 0.35);
}

.empty-summary-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 0;
    color: var(--text-muted);
    flex-grow: 1;
}

.empty-summary-state svg {
    width: 48px;
    height: 48px;
    fill: rgba(24, 69, 48, 0.15);
    margin-bottom: 16px;
}

/* Amenities Grid */
.amenities {
    background: var(--bg-secondary);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.amenity-card {
    background: var(--bg-card);
    padding: 32px 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.amenity-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(24, 69, 48, 0.08);
}

.amenity-icon-box {
    width: 60px;
    height: 60px;
    background: var(--accent-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.amenity-card:hover .amenity-icon-box {
    background: var(--primary);
    color: var(--text-light);
    transform: rotate(360deg);
}

.amenity-icon-box svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.amenity-card h4 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.amenity-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Gallery Section */
.gallery {
    background: var(--bg-primary);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.gallery-filter-btn {
    background: var(--bg-secondary);
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.gallery-filter-btn.active, .gallery-filter-btn:hover {
    background: var(--primary);
    color: var(--text-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    height: 250px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(24, 69, 48, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

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

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

.gallery-item-overlay svg {
    width: 36px;
    height: 36px;
    fill: var(--text-light);
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-item-overlay svg {
    transform: translateY(0);
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255,255,255,0.1);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    background: var(--secondary);
    color: var(--text-main);
}

/* Attractions Slider Section */
.attractions {
    background: var(--bg-secondary);
}

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

.attraction-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.attraction-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.attraction-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.attraction-info {
    padding: 24px;
}

.attraction-info h4 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.attraction-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Testimonials */
.testimonials {
    background: var(--bg-primary);
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: var(--transition-smooth);
}

.testimonial-slide {
    min-width: 100%;
    padding: 10px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 48px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid rgba(24, 69, 48, 0.04);
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 24px;
    font-weight: 300;
}

.testimonial-rating {
    color: var(--secondary);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 1.05rem;
    color: var(--primary);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    background: rgba(24, 69, 48, 0.15);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 5px;
}

/* Contact & Map Grid */
.contact {
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-form-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.contact-form-card form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-map-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 400px;
}

.leaflet-map-container {
    flex-grow: 1;
    width: 100%;
    height: 100%;
}

.contact-info-footer {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background: var(--accent-bg);
    border-top: 1px solid rgba(24, 69, 48, 0.08);
}

.info-item {
    text-align: center;
    font-size: 0.88rem;
}

.info-item label {
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 4px;
}

.info-item span {
    color: var(--text-muted);
}

/* Simulated Razorpay Payment Modal */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1500;
    display: none;
    align-items: center;
    justify-content: center;
}

.payment-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(10, 30, 20, 0.6);
    backdrop-filter: blur(10px);
}

.payment-box {
    background: var(--bg-card);
    width: 100%;
    max-width: 600px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.payment-modal.active .payment-box {
    transform: translateY(0);
    opacity: 1;
}

.payment-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--text-light);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-header-left {
    display: flex;
    flex-direction: column;
}

.payment-header-left h3 {
    font-size: 1.4rem;
}

.payment-header-left span {
    font-size: 0.85rem;
    opacity: 0.8;
}

.payment-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
}

.payment-body {
    display: grid;
    grid-template-columns: 200px 1fr;
    height: 380px;
}

.payment-methods-tabs {
    background: var(--bg-secondary);
    border-right: 1px solid rgba(24, 69, 48, 0.08);
    display: flex;
    flex-direction: column;
}

.payment-tab-btn {
    padding: 16px 20px;
    text-align: left;
    background: transparent;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 1px solid rgba(24, 69, 48, 0.04);
    transition: var(--transition-fast);
}

.payment-tab-btn:hover, .payment-tab-btn.active {
    background: var(--bg-card);
    color: var(--primary);
}

.payment-tab-btn.active {
    box-shadow: inset 4px 0 0 var(--secondary);
}

.payment-content-panels {
    padding: 32px;
    overflow-y: auto;
}

.payment-panel {
    display: none;
}

.payment-panel.active {
    display: block;
}

/* Card Flipping Simulation */
.card-wrapper {
    perspective: 1000px;
    margin-bottom: 24px;
}

.credit-card-preview {
    width: 100%;
    height: 160px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.credit-card-preview.flipped {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--border-radius-md);
    padding: 20px;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-front {
    background: linear-gradient(135deg, #1f4e38, #35805c);
}

.card-back {
    background: linear-gradient(135deg, #103020, #1f4e38);
    transform: rotateY(180deg);
    padding: 20px 0;
    justify-content: flex-start;
    gap: 16px;
}

.card-chip {
    width: 40px;
    height: 30px;
    background: #d4af37;
    border-radius: 4px;
}

.card-number-display {
    font-family: monospace;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    word-spacing: 0.1em;
}

.card-meta-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.card-magnetic-stripe {
    background: #000;
    width: 100%;
    height: 35px;
}

.card-signature-area {
    background: #fff;
    width: 80%;
    height: 30px;
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    color: var(--text-main);
    font-family: monospace;
    font-weight: 700;
}

/* UPI QR Code simulator */
.upi-qr-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
}

.upi-qr-image {
    width: 160px;
    height: 160px;
    border: 1px solid rgba(24, 69, 48, 0.15);
    border-radius: var(--border-radius-md);
    padding: 8px;
    background: #fff;
}

.upi-apps-icons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 12px;
}

.upi-app {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.pay-action-btn {
    background: var(--primary);
    color: var(--text-light);
    width: 100%;
    padding: 14px;
    border-radius: var(--border-radius-md);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    margin-top: 16px;
}

.pay-action-btn:hover {
    background: var(--accent);
    transform: translateY(-1px);
}

/* Modal Processing Screen */
.payment-processing {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    z-index: 10;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.payment-processing.active {
    display: flex;
}

/* Processing Spinner */
.spinner {
    width: 64px;
    height: 64px;
    border: 4px solid var(--accent-bg);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s infinite linear;
    margin-bottom: 24px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success Voucher Container */
.payment-success {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    z-index: 10;
    display: none;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    padding: 40px 24px;
}

.payment-success.active {
    display: flex;
}

/* Success Checkmark Anim */
.success-checkmark-box {
    margin-bottom: 20px;
}

.success-ring {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: strokeRing 0.6s ease-in-out forwards;
}

.success-check {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: strokeCheck 0.4s 0.5s ease-in-out forwards;
}

@keyframes strokeRing {
    to { stroke-dashoffset: 0; }
}

@keyframes strokeCheck {
    to { stroke-dashoffset: 0; }
}

.voucher-card {
    background: var(--bg-primary);
    border: 2px dashed rgba(24, 69, 48, 0.15);
    border-radius: var(--border-radius-md);
    padding: 24px;
    width: 100%;
    max-width: 450px;
    margin-bottom: 24px;
    position: relative;
}

.voucher-header {
    border-bottom: 1px dashed rgba(24, 69, 48, 0.15);
    padding-bottom: 16px;
    margin-bottom: 16px;
    text-align: center;
}

.voucher-header h4 {
    font-size: 1.3rem;
    color: var(--primary);
}

.voucher-ref {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: monospace;
    margin-top: 4px;
}

.voucher-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.voucher-row.total {
    border-top: 1px dashed rgba(24, 69, 48, 0.15);
    padding-top: 12px;
    margin-top: 12px;
    font-weight: 700;
    color: var(--primary);
}

.voucher-row label {
    color: var(--text-muted);
}

.voucher-row span {
    font-weight: 600;
}

/* Footer Section */
footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.footer-col p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-logo svg {
    fill: var(--secondary);
    width: 36px;
    height: 36px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--secondary);
    color: var(--text-main);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

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

#ownerLoginLink {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
    transition: var(--transition-fast);
}

#ownerLoginLink:hover {
    color: var(--secondary);
}

/* Dashboard Helper classes */
.dashboard-body {
    grid-template-columns: 220px 1fr;
    height: 480px;
}

.dashboard-flex-row {
    display: flex;
    gap: 12px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .rooms-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .booking-panel {
        grid-template-columns: 1fr;
    }
    .booking-form-side {
        border-right: none;
        border-bottom: 1px solid rgba(24, 69, 48, 0.06);
        padding: 24px;
    }
    .booking-summary-side {
        padding: 24px;
    }
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 24px 80px 24px;
        flex-direction: column;
        justify-content: flex-start;
        overflow: visible;
    }
    .hero-content {
        margin-top: 0;
        margin-bottom: 40px;
    }
    .search-container {
        position: relative;
        flex-direction: column;
        padding: 24px;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        margin: 0 auto;
        border-radius: var(--border-radius-lg);
        opacity: 1;
        animation: fadeInUp 0.8s 0.2s forwards ease;
    }
    .divider-vertical {
        display: none;
    }
    .search-field {
        width: 100%;
        border-bottom: 1px solid rgba(24, 69, 48, 0.1);
        padding-bottom: 12px;
        margin-bottom: 8px;
    }
    .search-btn {
        width: 100%;
        justify-content: center;
        margin-top: 8px;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-card);
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        gap: 24px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-smooth);
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-link {
        color: var(--text-main);
        font-size: 1.1rem;
    }
    .mobile-toggle {
        display: flex;
    }
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .payment-body {
        grid-template-columns: 1fr;
        height: auto;
    }
    .payment-methods-tabs {
        flex-direction: row;
        overflow-x: auto;
    }
    .payment-tab-btn {
        padding: 12px 16px;
        white-space: nowrap;
        border-bottom: none;
    }
    .payment-tab-btn.active {
        box-shadow: inset 0 -4px 0 var(--secondary);
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 12px;
    }
    .payment-modal {
        align-items: flex-start;
        overflow-y: auto;
        padding: 20px 10px;
    }
    .payment-content-panels {
        padding: 16px !important;
    }
    .dashboard-body {
        grid-template-columns: 1fr;
        height: auto;
    }
}

@media (max-width: 576px) {
    .dashboard-flex-row {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .gallery-grid, .attractions-grid, .amenities-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
}

/* Owner Dashboard Specific Styling */
#blockedRangesList li {
    background: var(--bg-secondary);
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid var(--primary-light);
    font-weight: 500;
}

.delete-block-btn {
    background: transparent;
    color: #c62828;
    font-weight: 800;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 4px;
    transition: var(--transition-fast);
    line-height: 1;
}

.delete-block-btn:hover {
    color: #ff1744;
    transform: scale(1.2);
}

#ownerReservationsTableBody tr {
    border-bottom: 1px solid rgba(24,69,48,0.06);
    transition: var(--transition-fast);
}

#ownerReservationsTableBody tr:hover {
    background: rgba(24,69,48,0.02);
}

#ownerReservationsTableBody td {
    padding: 12px 6px;
}

#ownerRoomsListBody tr {
    border-bottom: 1px solid rgba(24,69,48,0.06);
    transition: var(--transition-fast);
}

#ownerRoomsListBody tr:hover {
    background: rgba(24,69,48,0.02);
}

#ownerRoomsListBody td {
    padding: 8px 4px;
    vertical-align: middle;
}

.ob-btn {
    padding: 4px 8px;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    outline: none;
}

.ob-btn-edit {
    background: var(--accent-bg);
    color: var(--primary);
}

.ob-btn-edit:hover {
    background: var(--primary);
    color: white;
}

.ob-btn-delete {
    background: rgba(198, 40, 40, 0.05);
    color: #c62828;
    margin-left: 6px;
}

.ob-btn-delete:hover {
    background: #c62828;
    color: white;
}
