/* ========================================
   NAKSHATRA VILAS - Main Stylesheet
   ======================================== */

/* CSS Variables */
:root {
    --primary-color: #8B5A2B;
    --primary-dark: #6B4423;
    --secondary-color: #D4A574;
    --accent-color: #C9A962;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --text-white: #FFFFFF;
    --bg-light: #FAF8F5;
    --bg-cream: #F5F0E8;
    --bg-dark: #1A1A1A;
    --border-color: #E5E5E5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled,
.navbar.navbar-light {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

.navbar.navbar-light .logo-text,
.navbar.navbar-light .nav-menu a,
.navbar.scrolled .logo-text,
.navbar.scrolled .nav-menu a {
    color: var(--text-dark);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-white);
    position: relative;
}

.nav-menu a:not(.btn-book)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-menu a:not(.btn-book):hover::after,
.nav-menu a:not(.btn-book).active::after {
    width: 100%;
}

.btn-book {
    background: var(--accent-color);
    color: var(--text-dark) !important;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-book:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-white);
}

.navbar.navbar-light .nav-toggle,
.navbar.scrolled .nav-toggle {
    color: var(--text-dark);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.btn-block {
    width: 100%;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2C1810 0%, #4A2C17 50%, #1A1A1A 100%);
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.85) 0%, rgba(26, 26, 26, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-white);
    padding: 20px;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-price {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-unit {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.price-badge {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========================================
   HIGHLIGHTS SECTION
   ======================================== */
.highlights {
    background: var(--text-white);
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--text-white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.highlight-item {
    padding: 40px 30px;
    text-align: center;
    border-right: 1px solid var(--border-color);
}

.highlight-item:last-child {
    border-right: none;
}

.highlight-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.highlight-item h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.highlight-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ========================================
   SECTION STYLES
   ======================================== */
.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    border-radius: 15px;
    border: 5px solid var(--text-white);
    box-shadow: var(--shadow-md);
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-features {
    margin: 30px 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.about-features i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* ========================================
   AMENITIES SECTION
   ======================================== */
.amenities {
    padding: 100px 0;
    background: var(--text-white);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.amenity-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.amenity-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 20px;
}

.amenity-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.amenity-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.amenity-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--text-white);
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 3px solid var(--accent-color);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.pricing-amount {
    margin-bottom: 10px;
}

.pricing-amount .currency {
    font-size: 1.5rem;
    color: var(--text-dark);
    vertical-align: top;
}

.pricing-amount .price {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-amount .period {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-note {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--primary-color);
}

/* ========================================
   HOUSE RULES SECTION
   ======================================== */
.house-rules {
    padding: 80px 0;
    background: var(--text-white);
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.rule-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 15px;
}

.rule-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.rule-item h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.rule-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ========================================
   GALLERY PREVIEW SECTION
   ======================================== */
.gallery-preview {
    padding: 100px 0;
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--text-white);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-weight: 600;
}

.gallery-cta {
    text-align: center;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: 100px 0;
    background: var(--text-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-item h4 {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--text-dark);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.booking-platforms h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.platform-links {
    display: flex;
    gap: 15px;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.platform-btn.airbnb {
    background: #FF5A5F;
    color: var(--text-white);
}

.platform-btn.google {
    background: #4285F4;
    color: var(--text-white);
}

.platform-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 25px;
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--text-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-icon {
    font-size: 2rem;
}

.footer-brand .logo-text {
    font-size: 1.8rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 15px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-contact i {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   PAGE HEADER (For Gallery & Booking)
   ======================================== */
.page-header {
    padding: 150px 0 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    text-align: center;
    color: var(--text-white);
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* ========================================
   GALLERY PAGE
   ======================================== */
.gallery-filters {
    padding: 40px 0;
    background: var(--text-white);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid var(--border-color);
    background: transparent;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
}

.main-gallery {
    padding: 60px 0;
    background: var(--bg-light);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-masonry .gallery-item {
    height: 280px;
}

.gallery-masonry .gallery-item.large {
    grid-column: span 2;
    height: 400px;
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--text-white);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-overlay h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-item-overlay p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.gallery-zoom {
    background: var(--text-white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-dark);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 2rem;
    cursor: pointer;
    padding: 20px;
    transition: var(--transition);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--accent-color);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    margin: 0 auto;
}

.lightbox-caption {
    color: var(--text-white);
    margin-top: 20px;
}

.lightbox-caption h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.lightbox-caption p {
    color: rgba(255, 255, 255, 0.7);
}

.gallery-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.cta-content {
    text-align: center;
    color: var(--text-white);
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cta-buttons .btn-primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-dark);
}

.cta-buttons .btn-outline {
    border-color: var(--text-white);
    color: var(--text-white);
}

.cta-buttons .btn-outline:hover {
    background: var(--text-white);
    color: var(--primary-color);
}

/* ========================================
   BOOKING PAGE
   ======================================== */
.booking-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: var(--bg-light);
}

.booking-header {
    text-align: center;
    margin-bottom: 50px;
}

.booking-header h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.booking-header p {
    color: var(--text-light);
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Booking Steps */
.booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.booking-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50px;
    right: 50px;
    height: 3px;
    background: var(--border-color);
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--border-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: var(--transition);
}

.step.active .step-number,
.step.completed .step-number {
    background: var(--primary-color);
    color: var(--text-white);
}

.step-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.step.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

/* Booking Form Container */
.booking-form-container {
    background: var(--text-white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
}

.booking-step-content {
    display: none;
}

.booking-step-content.active {
    display: block;
}

.booking-step-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

/* Date Selection */
.date-selection {
    margin-bottom: 30px;
}

/* Price Summary */
.price-summary {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.price-summary h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.price-breakdown {
    margin-bottom: 15px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row.total {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    border-top: 2px solid var(--primary-color);
    margin-top: 10px;
    padding-top: 15px;
}

.price-note {
    color: var(--text-light);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-note i {
    color: var(--accent-color);
}

/* Booking Summary Card */
.booking-summary-card {
    background: var(--bg-cream);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.booking-summary-card h4 {
    font-family: var(--font-display);
    margin-bottom: 15px;
    color: var(--text-dark);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--text-dark);
}

.summary-row.total {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    border-top: 1px solid var(--border-color);
    margin-top: 10px;
    padding-top: 15px;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Payment Section */
.payment-container {
    text-align: center;
}

.payment-amount {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.payment-amount p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.payment-amount h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
}

.upi-payment h4 {
    font-family: var(--font-display);
    color: var(--text-dark);
    margin-bottom: 20px;
}

.qr-code-container {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 25px;
}

.qr-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto 15px;
    background: var(--text-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.upi-id {
    color: var(--text-dark);
    font-size: 1rem;
}

.payment-steps-info {
    background: var(--bg-cream);
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    margin-bottom: 30px;
}

.payment-steps-info h5 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.payment-steps-info ol {
    padding-left: 20px;
    color: var(--text-light);
}

.payment-steps-info li {
    margin-bottom: 8px;
}

.payment-verification {
    text-align: left;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.payment-verification h4 {
    text-align: center;
    margin-bottom: 25px;
}

/* Confirmation Section */
.confirmation-content {
    text-align: center;
}

.confirmation-icon {
    font-size: 5rem;
    color: #28a745;
    margin-bottom: 20px;
}

.confirmation-message {
    color: var(--text-light);
    margin-bottom: 30px;
}

.booking-id-display {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 30px;
}

.booking-id-display p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.booking-id-display h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.confirmation-details {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    margin-bottom: 30px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-row:last-child {
    border-bottom: none;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

.status-badge.confirmed {
    background: #d4edda;
    color: #155724;
}

.confirmation-note {
    background: #e7f3ff;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
    text-align: left;
}

.confirmation-note i {
    color: #0066cc;
    font-size: 1.5rem;
    margin-top: 3px;
}

.confirmation-note p {
    color: #004085;
    font-size: 0.95rem;
}

.confirmation-note a {
    color: #004085;
    font-weight: 600;
}

.confirmation-rules {
    background: var(--bg-cream);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.confirmation-rules h4 {
    font-family: var(--font-display);
    margin-bottom: 15px;
    color: var(--text-dark);
}

.confirmation-rules ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.confirmation-rules li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.confirmation-rules i {
    color: var(--primary-color);
}

.confirmation-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .highlight-item {
        border-bottom: 1px solid var(--border-color);
    }
    
    .highlight-item:nth-child(2) {
        border-right: none;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 180px);
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--text-white);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 25px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        color: var(--text-dark) !important;
        font-size: 1.1rem;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero-price {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-item {
        border-right: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .rules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .gallery-item,
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
        height: 200px;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
    }
    
    .gallery-masonry .gallery-item,
    .gallery-masonry .gallery-item.large {
        grid-column: span 1;
        height: 250px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-steps {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .booking-steps::before {
        display: none;
    }
    
    .booking-form-container {
        padding: 25px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .confirmation-rules ul {
        flex-direction: column;
        align-items: center;
    }
    
    .confirmation-actions {
        flex-direction: column;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-links {
        flex-direction: column;
    }
    
    .filter-buttons {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .form-actions,
    .confirmation-actions {
        display: none;
    }
    
    .booking-section {
        padding-top: 20px;
    }
    
    .booking-form-container {
        box-shadow: none;
    }
}

/* ========================================
   BLOCKED DATES & DATE ERROR STYLES
   ======================================== */
.blocked-dates-info {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.blocked-dates-info h4 {
    color: #856404;
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blocked-dates-info ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blocked-dates-info li {
    background: rgba(133, 100, 4, 0.1);
    color: #856404;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.date-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 12px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.date-error i {
    font-size: 1.2rem;
}

/* ========================================
   ADMIN DASHBOARD STYLES
   ======================================== */
.admin-section {
    padding: 120px 0 80px;
    background: var(--bg-light);
    min-height: 100vh;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.admin-header h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.stat-card h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.stat-card.warning h3 {
    color: #ffc107;
}

.stat-card.success h3 {
    color: #28a745;
}

.stat-card.danger h3 {
    color: #dc3545;
}

/* Admin Tabs */
.admin-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.admin-tab {
    background: white;
    border: 2px solid var(--border-color);
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.admin-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.admin-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.filter-tab {
    background: white;
    border: 1px solid var(--border-color);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
}

.filter-tab:hover {
    background: var(--bg-cream);
}

.filter-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Booking Cards */
.bookings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.booking-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--border-color);
    transition: var(--transition);
}

.booking-card:hover {
    box-shadow: var(--shadow-md);
}

.booking-card.pending {
    border-left-color: #ffc107;
}

.booking-card.confirmed {
    border-left-color: #28a745;
}

.booking-card.cancelled {
    border-left-color: #dc3545;
    opacity: 0.8;
}

.booking-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.booking-id {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

.booking-date-badge {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 5px;
}

.booking-status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-confirmed {
    background: #d4edda;
    color: #155724;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.booking-guest {
    margin-bottom: 20px;
}

.booking-guest h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.booking-guest p {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.booking-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--bg-cream);
    border-radius: 12px;
}

.booking-detail label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.booking-detail span {
    font-weight: 600;
    color: var(--text-dark);
}

.booking-payment {
    margin-bottom: 20px;
}

.booking-payment h5 {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-cream);
    padding: 12px 15px;
    border-radius: 10px;
}

.payment-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.transaction-id {
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--text-light);
    background: white;
    padding: 5px 10px;
    border-radius: 6px;
}

.booking-requests {
    margin-bottom: 20px;
    padding: 15px;
    background: #e3f2fd;
    border-radius: 12px;
}

.booking-requests h5 {
    font-size: 0.9rem;
    color: #1976d2;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-requests p {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.6;
}

.cancellation-reason {
    padding: 12px 15px;
    background: #f8d7da;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #721c24;
}

.booking-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.btn-confirm, .btn-cancel, .btn-reopen, .btn-delete {
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.btn-confirm {
    background: #28a745;
    color: white;
}

.btn-confirm:hover {
    background: #218838;
}

.btn-cancel {
    background: #dc3545;
    color: white;
}

.btn-cancel:hover {
    background: #c82333;
}

.btn-reopen {
    background: #17a2b8;
    color: white;
}

.btn-reopen:hover {
    background: #138496;
}

.btn-delete {
    background: transparent;
    color: #dc3545;
    border: 1px solid #dc3545;
}

.btn-delete:hover {
    background: #dc3545;
    color: white;
}

/* Blocked Dates List */
.blocked-calendar {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.blocked-dates-list {
    display: grid;
    gap: 15px;
}

.blocked-date-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--bg-cream);
    border-radius: 12px;
    border-left: 4px solid #dc3545;
}

.blocked-date-range {
    font-weight: 600;
    color: var(--text-dark);
}

.blocked-date-guest {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 5px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
}

.modal-close:hover {
    color: #dc3545;
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    padding: 20px 25px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.4;
}

.empty-state h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

/* Admin Responsive */
@media (max-width: 768px) {
    .admin-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bookings-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-details {
        grid-template-columns: 1fr;
    }
}
