/* Beach House PMS - Main Stylesheet */

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

:root {
    --primary-color: #0077BE;
    --secondary-color: #FFB347;
    --accent-color: #FF6B6B;
    --text-dark: #333333;
    --text-light: #666666;
    --background: #FFFFFF;
    --background-light: #F8F9FA;
    --border-color: #DEE2E6;
    --success: #28A745;
    --warning: #FFC107;
    --danger: #DC3545;
    --info: #17A2B8;
                --calendar-primary: #667eea;
            --calendar-primary-light: #f0f3ff;
            --calendar-success: #10b981;
            --calendar-danger: #ef4444;
            --calendar-gray: #6b7280;
            --calendar-light: #f3f4f6;
            --calendar-border: #e5e7eb;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
                        --gallery-primary: #667eea;
            --gallery-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p { margin-bottom: 1rem; }

/* Header & Navigation */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    position: relative;
}

.navbar-brand a {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.navbar-brand a:hover {
    transform: translateY(-2px);
}

.navbar-brand h1 {
    font-size: 1.75rem;
    margin: 0;
    background: linear-gradient(135deg, #0077BE 0%, #00A8E8 50%, #005A8D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding: 0.25rem 0;
}

/* Keyframe animation for the underline */
@keyframes expandUnderline {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

/* Add a bold underline accent with gradient that animates on load */
.navbar-brand h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, #FF8C42 100%);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 179, 71, 0.4);
    animation: expandUnderline 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
    width: 0;
    opacity: 0;
}

/* Optional: Add a subtle glow effect on hover */
.navbar-brand a:hover h1 {
    filter: drop-shadow(0 0 8px rgba(0, 119, 190, 0.3));
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Ensure buttons in nav menu have proper contrast */
.nav-menu .btn-primary {
    color: white !important;
}

.nav-menu .btn-primary:hover {
    color: white !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* ── User dropdown ──────────────────────────────────────── */
.nav-user-dropdown {
    position: relative;
}

.nav-user-trigger {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.35rem 0.5rem;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: background 0.18s;
    position: relative;
}
.nav-user-trigger:hover {
    background: rgba(0,0,0,0.05);
}

.nav-user-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    flex-shrink: 0;
}

.nav-user-name {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-user-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: #dc2626;
    color: #fff;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1;
}

.nav-user-chevron {
    transition: transform 0.2s ease;
    flex-shrink: 0;
    opacity: 0.55;
}
.nav-user-trigger[aria-expanded="true"] .nav-user-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    list-style: none;
    padding: 6px 0;
    margin: 0;
    z-index: 9999;
}
.nav-dropdown-menu.open {
    display: block;
    animation: dropdownFadeIn 0.14s ease;
}
@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.nav-dropdown-header {
    padding: 10px 16px 8px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 4px;
    pointer-events: none;
}
.nav-dropdown-header span {
    display: block;
    font-size: 0.72rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1px;
}
.nav-dropdown-header strong {
    font-size: 0.875rem;
    color: #111827;
    font-weight: 600;
}

.nav-dropdown-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    font-size: 0.875rem;
    color: #374151;
    text-decoration: none;
    transition: background 0.14s;
}
.nav-dropdown-menu li a:hover {
    background: #f9fafb;
    color: var(--primary-color);
}

.nav-dropdown-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: #dc2626;
    color: #fff;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1;
    margin-left: 6px;
}

.nav-dropdown-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 5px 0;
}

.nav-dropdown-logout {
    color: #b91c1c !important;
}
.nav-dropdown-logout:hover {
    background: #fef2f2 !important;
    color: #991b1b !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: #005A8D;
    border-color: #005A8D;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

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

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

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.hero-features span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
    font-size: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.hero-features span::after {
    content: '•';
    position: absolute;
    right: -1.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.hero-features span:last-child::after {
    content: '';
}

.hero-features span:hover {
    transform: translateY(-2px);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-features span i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Quick Info Section */
.quick-info {
    background: #ffffff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.quick-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 179, 71, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 119, 190, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.info-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.info-item {
    flex: 0 1 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    background: none;
    border: none !important;
    border-left: none !important;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
}

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

.info-item .info-icon {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 1.25rem;
    display: block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.info-item:hover .info-icon {
    transform: translateY(-5px) scale(1.1);
}

.info-item i {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
    color: #ffffff;
    background: linear-gradient(135deg, var(--secondary-color), #ff9f5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 6px 20px rgba(255, 179, 71, 0.3);
    transition: all 0.3s ease;
}

.info-item:hover i {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 179, 71, 0.4);
}

.info-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.3;
}

.info-item p {
    color: #6c757d;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Featured Rate Section */
.featured-rate {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 2px solid #dee2e6;
}

.rate-label {
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.rate-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin: 0.5rem 0;
}

.rate-subtext {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 400;
}

/* Additional Fees Section */
.additional-fees {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.additional-fees h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.fee-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #dee2e6;
}

.fee-row:last-of-type {
    border-bottom: none;
}

.fee-label {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.fee-value {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.fee-note {
    font-size: 0.85rem;
    color: #6c757d;
    font-style: italic;
    margin-top: 0.75rem;
}

/* Booking Requirements Section */
.booking-requirements {
    margin-bottom: 1.5rem;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

.requirement-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.requirement-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.requirement-item p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Property Overview */
.property-overview {
    padding: 4rem 0;
}

.property-overview h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.overview-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Features Section */
.features-section {
    background: var(--background-light);
    padding: 4rem 0;
}

.features-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.feature-category {
    margin-bottom: 3rem;
}

.feature-category h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.feature-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.feature-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0;
}

/* Reviews Section */
.reviews-preview {
    padding: 4rem 0;
}

.reviews-preview h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.review-rating {
    margin-bottom: 1rem;
}

.star {
    color: #ddd;
    font-size: 1.25rem;
}

.star.filled {
    color: var(--secondary-color);
}

.review-card h4 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.review-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.review-author {
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #005A8D);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Primary button in CTA section - make it stand out with white background */
.cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
    border-color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-section .btn-primary:hover {
    background: var(--background-light);
    color: var(--primary-color);
    border-color: var(--background-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Outline button in CTA section */
.cta-section .btn-outline {
    color: white;
    border-color: white;
    background: transparent;
    font-weight: 600;
}

.cta-section .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: white;
}

/* Footer */
.site-footer {
    background: #2C3E50;
    color: #ECF0F1;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ECF0F1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.footer-bottom a {
    color: #ECF0F1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--secondary-color);
}

/* Flash Messages */
.flash-message {
    padding: 1rem;
    margin-bottom: 0;
    position: relative;
}

.flash-message .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flash-success { background: var(--success); color: white; }
.flash-error { background: var(--danger); color: white; }
.flash-warning { background: var(--warning); color: var(--text-dark); }
.flash-info { background: var(--info); color: white; }

.flash-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }

    /* On mobile the user dropdown sits inline in the stacked nav */
    .nav-user-dropdown {
        width: 100%;
    }
    .nav-user-trigger {
        width: 100%;
        justify-content: flex-start;
        padding: 0.5rem 0.25rem;
    }
    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        margin: 4px 0 8px;
        width: 100%;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .info-grid,
    .features-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0,119,190,0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-error {
    color: var(--danger);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Calendar */
.calendar {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 2rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.calendar-day:hover:not(.disabled) {
    background: var(--background-light);
    border-color: var(--primary-color);
}

.calendar-day.booked {
    background: #ffebee;
    cursor: not-allowed;
}

.calendar-day.selected {
    background: var(--primary-color);
    color: white;
}

.calendar-day.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.calendar-day.past {
    background: #f3f4f6;
    color: #c4c9d4;
    cursor: not-allowed;
    opacity: 0.55;
}

.calendar-day.past .day-number {
    color: #c4c9d4;
}

.nav-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}
        .login-container {
            max-width: 400px;
            margin: 4rem auto;
            padding: 2rem;
        }
        .login-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }
        .login-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        .login-header h1 {
            color: var(--primary-color);
        }


        
        body {
            background: #f8f9fa;
            min-height: 100vh;
        }
        
        .availability-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }
        
        .calendar-card {
            background: white;
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            margin-bottom: 1.5rem;
        }
        
        .calendar-header-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 2rem;
            text-align: center;
        }
        
        .calendar-header-section h1 {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            margin: 0 0 0.5rem 0;
            font-weight: 700;
        }
        
        .calendar-header-section p {
            margin: 0;
            opacity: 0.9;
            font-size: clamp(0.875rem, 2vw, 1rem);
        }
        
        .calendar-navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            border-bottom: 1px solid var(--calendar-border);
            background: var(--calendar-light);
        }
        
        .calendar-month-title {
            font-size: clamp(1.25rem, 3vw, 1.75rem);
            font-weight: 700;
            color: var(--calendar-primary);
        }
        
        .nav-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.625rem 1.25rem;
            background: white;
            color: var(--calendar-primary);
            border: 2px solid var(--calendar-primary);
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.875rem;
            transition: all 0.3s;
        }
        
        .nav-button:hover {
            background: var(--calendar-primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        
        .calendar-grid-container {
            padding: 1.5rem;
        }
        
        .calendar-days-header {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 0.5rem;
            margin-bottom: 0.75rem;
        }
        
        .day-header {
            text-align: center;
            font-weight: 700;
            padding: 0.75rem 0.25rem;
            background: var(--calendar-primary);
            color: white;
            border-radius: 8px;
            font-size: clamp(0.75rem, 2vw, 0.875rem);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 0.5rem;
        }
        
        .calendar-day {
            aspect-ratio: 1;
            border: 2px solid var(--calendar-border);
            border-radius: 12px;
            padding: clamp(0.25rem, 1vw, 0.75rem);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            background: white;
            position: relative;
            overflow: hidden;
        }
        
        .calendar-day::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--calendar-primary) 0%, #764ba2 100%);
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .calendar-day:hover:not(.booked):not(.blackout) {
            border-color: var(--calendar-primary);
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }
        
        .calendar-day:hover:not(.booked):not(.blackout)::before {
            opacity: 0.05;
        }
        
        .calendar-day.available {
            background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
        }
        
        .calendar-day.booked {
            background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
            border-color: var(--calendar-danger);
            cursor: not-allowed;
        }
        
        .calendar-day.blackout {
            background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
            border-color: var(--calendar-gray);
            cursor: not-allowed;
            opacity: 0.6;
        }
        
        .day-number {
            font-weight: 700;
            font-size: clamp(0.875rem, 2.5vw, 1.25rem);
            color: #1f2937;
            z-index: 1;
            margin-bottom: clamp(0.125rem, 0.5vw, 0.25rem);
        }
        
        .calendar-day.booked .day-number,
        .calendar-day.blackout .day-number {
            opacity: 0.7;
        }
        
        .day-price {
            font-size: clamp(0.625rem, 1.5vw, 0.875rem);
            color: var(--calendar-primary);
            font-weight: 700;
            z-index: 1;
            background: var(--calendar-primary-light);
            padding: 0.125rem 0.5rem;
            border-radius: 6px;
        }
        
        .day-status {
            font-size: clamp(0.625rem, 1.5vw, 0.75rem);
            color: var(--calendar-gray);
            z-index: 1;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .calendar-day.booked .day-status {
            color: var(--calendar-danger);
        }
        
        .legend {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            padding: 1.5rem;
            background: var(--calendar-light);
            border-top: 1px solid var(--calendar-border);
        }
        
        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.875rem;
            font-weight: 600;
        }
        
        .legend-box {
            width: 32px;
            height: 32px;
            border: 2px solid var(--calendar-border);
            border-radius: 8px;
            box-shadow: var(--shadow-sm);
        }
        
        .legend-box.available {
            background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
        }
        
        .legend-box.booked {
            background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
            border-color: var(--calendar-danger);
        }
        
        .legend-box.blackout {
            background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
            border-color: var(--calendar-gray);
        }
        
        .info-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: var(--shadow-lg);
            margin-bottom: 1.5rem;
        }
        
        .info-card h3 {
            color: var(--calendar-primary);
            margin: 0 0 1.5rem 0;
            font-size: 1.5rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }
        
        .info-item {
            padding: 1rem;
            background: var(--calendar-light);
            border-radius: 8px;
            border-left: 4px solid var(--calendar-primary);
        }
        
        .info-label {
            font-weight: 700;
            color: var(--calendar-gray);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.25rem;
        }
        
        .info-value {
            font-size: 1.125rem;
            font-weight: 600;
            color: #1f2937;
        }
        
        .info-note {
            margin-top: 1.5rem;
            padding: 1rem;
            background: var(--calendar-primary-light);
            border-radius: 8px;
            color: var(--calendar-gray);
            font-size: 0.875rem;
            line-height: 1.6;
        }
        
        .cta-section {
            text-align: center;
            padding: 2rem;
        }
        
        .btn-cta {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, var(--calendar-success) 0%, #059669 100%);
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.125rem;
            box-shadow: var(--shadow-lg);
            transition: all 0.3s;
        }
        
        .btn-cta:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }
        
        /* Mobile optimizations */
        @media (max-width: 768px) {
            .availability-container {
                padding: 1rem 0.5rem;
            }
            
            .calendar-header-section {
                padding: 1.5rem 1rem;
            }
            
            .calendar-navigation {
                padding: 1rem;
                flex-wrap: wrap;
                gap: 0.75rem;
            }
            
            .calendar-month-title {
                width: 100%;
                text-align: center;
                order: -1;
                margin-bottom: 0.5rem;
            }
            
            .nav-button {
                flex: 1;
                justify-content: center;
                padding: 0.75rem 1rem;
            }
            
            .calendar-grid-container {
                padding: 1rem;
            }
            
            .calendar-grid,
            .calendar-days-header {
                gap: 0.25rem;
            }
            
            .day-header {
                padding: 0.5rem 0.125rem;
                font-size: 0.625rem;
            }
            
            .calendar-day {
                border-width: 1.5px;
                border-radius: 8px;
                min-height: 50px;
            }
            
            .legend {
                gap: 1rem;
                padding: 1rem;
            }
            
            .legend-item {
                gap: 0.5rem;
                font-size: 0.75rem;
            }
            
            .legend-box {
                width: 24px;
                height: 24px;
            }
            
            .info-card {
                padding: 1.5rem 1rem;
            }
            
            .info-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 400px) {
            .day-header {
                font-size: 0.5rem;
                padding: 0.375rem 0;
            }
            
            .calendar-day {
                min-height: 45px;
            }
        }

                
        body {
            background: #f8f9fa;
            min-height: 100vh;
        }
        
        .property-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }
        
        .property-card {
            background: white;
            border-radius: 16px;
            box-shadow: var(--property-shadow);
            overflow: hidden;
            margin-bottom: 1.5rem;
        }
        
        .property-header-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 2rem;
            text-align: center;
        }
        
        .property-header-section h1 {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            margin: 0 0 0.5rem 0;
            font-weight: 700;
        }
        
        .property-header-section p {
            margin: 0;
            opacity: 0.9;
            font-size: clamp(0.875rem, 2vw, 1rem);
        }
        
        .property-content-section {
            padding: 2rem;
        }
        
        .hero-gallery {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 0.5rem;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 2rem;
        }
        
        .main-photo {
            grid-row: span 2;
        }
        
        .main-photo img,
        .photo-grid img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        
        .main-photo img:hover,
        .photo-grid img:hover {
            opacity: 0.9;
        }
        
        .photo-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.5rem;
        }
        
        .view-all-photos {
            position: relative;
            background: rgba(0,0,0,0.7);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s;
            text-decoration: none;
        }
        
        .view-all-photos:hover {
            background: rgba(0,0,0,0.8);
            color: white;
        }
        
        .property-grid {
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 2rem;
        }
        
        .property-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 1.5rem 0;
            padding: 1.5rem;
            background: #f3f4f6;
            border-radius: 12px;
        }
        
        .property-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #6b7280;
            font-size: 0.95rem;
        }
        
        .property-rating {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem;
            background: #fef3c7;
            border-radius: 8px;
            margin-bottom: 1.5rem;
        }
        
        .stars {
            color: #f59e0b;
            font-size: 1.2rem;
        }
        
        .property-description {
            margin-bottom: 2rem;
        }
        
        .property-description h2,
        .bedrooms-section h2,
        .bathrooms-section h2,
        .amenities-section h2,
        .location-features-section h2,
        .restaurants-section h2,
        .house-rules-section h2,
        .location-section h2,
        .reviews-preview h2 {
            color: #1f2937;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #667eea;
        }
        
        .bedroom-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0 2rem;
        }
        
        .bedroom-card {
            padding: 1.5rem;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            background: #f9fafb;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        
        .bedroom-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        
        .bedroom-card h3 {
            margin: 0 0 0.5rem;
            color: #667eea;
            font-size: 1.1rem;
        }
        
        .bedroom-desc {
            color: #6b7280;
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }
        
        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0 2rem;
        }
        
        .amenity-category {
            margin-bottom: 2rem;
        }
        
        .amenity-category h3 {
            color: #667eea;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e5e7eb;
        }
        
        .amenity-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem;
            background: #f9fafb;
            border-radius: 8px;
        }
        
        .amenity-item span:first-child {
            font-size: 1.5rem;
            line-height: 1;
        }
        
        .amenity-item span:last-child {
            color: #1f2937;
            font-size: 0.95rem;
        }
        
        .house-rules-section {
            margin: 2rem 0;
        }
        
        .location-features-section {
            margin: 2rem 0;
        }
        
        /* Restaurants & Bars Section */
        .restaurants-section {
            margin: 3rem 0;
        }
        
        .restaurant-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .restaurant-card-horizontal {
            display: flex;
            flex-direction: column;
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.2s ease;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        }
        
        .restaurant-card-horizontal:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            border-color: #d1d5db;
        }
        
        .restaurant-card-hidden {
            display: none;
        }
        
        .restaurant-top-section {
            display: flex;
        }
        
        .restaurant-icon-column {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.25rem 1rem;
        }
        
        .restaurant-icon-large {
            font-size: 3.5rem;
            line-height: 1;
            display: block;
        }
        
        .restaurant-info-column {
            flex: 1;
            padding: 1.25rem 1.5rem 1.25rem 0.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .restaurant-title-row {
            display: flex;
            align-items: center;
        }
        
        .restaurant-icon-compact {
            font-size: 1.75rem;
            line-height: 1;
            flex-shrink: 0;
        }
        
        .restaurant-header-horizontal h3 {
            color: var(--text-dark);
            font-size: 1.3rem;
            margin: 0;
            font-weight: 600;
            line-height: 1.2;
        }
        
        .restaurant-meta-line {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
            color: #6b7280;
            font-size: 0.95rem;
        }
        
        .meta-item {
            white-space: nowrap;
        }
        
        .meta-separator {
            color: #d1d5db;
            font-weight: 300;
        }
        
        .attribute-icon-subdued {
            opacity: 0.6;
            font-size: 0.9rem;
            cursor: help;
            transition: opacity 0.2s ease;
            filter: grayscale(40%);
        }
        
        .attribute-icon-subdued:hover {
            opacity: 1;
            filter: grayscale(0%);
        }
        
        .restaurant-distance-line {
            color: #6b7280;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.25rem;
            margin-top: 0.25rem;
        }
        
        .distance-icon {
            font-size: 0.95rem;
        }
        
        .restaurant-description-horizontal {
            color: #4b5563;
            line-height: 1.6;
            font-size: 0.95rem;
            margin: 0;
            padding: 0 1.5rem;
        }
        
        .restaurant-actions {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            margin-top: 0.25rem;
            padding: 0 1.5rem 1.25rem 1.5rem;
        }
        
        .restaurant-action-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.375rem;
            padding: 0.5rem 1rem;
            background: #f9fafb;
            border: 1px solid #e5e7eb;
            border-radius: 6px;
            color: var(--primary-color);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.2s;
        }
        
        .restaurant-action-btn:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        .action-icon {
            font-size: 1rem;
        }
        
        .restaurant-show-more-container {
            text-align: center;
            margin-top: 1.5rem;
        }
        
        .btn-show-more-restaurants {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: #fff;
            border: 2px solid var(--primary-color);
            border-radius: 8px;
            color: var(--primary-color);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-show-more-restaurants:hover {
            background: var(--primary-color);
            color: white;
        }
        
        .show-more-icon {
            font-size: 0.85rem;
            transition: transform 0.3s ease;
        }
        
        .btn-show-more-restaurants.expanded .show-more-icon {
            transform: rotate(180deg);
        }
        
        /* Mobile responsive */
        @media (max-width: 768px) {
            .restaurant-top-section {
                flex-direction: column;
            }
            
            .restaurant-icon-column {
                padding: 1rem;
                border-bottom: 1px solid #e5e7eb;
            }
            
            .restaurant-icon-large {
                font-size: 3rem;
            }
            
            .restaurant-info-column {
                padding: 1rem;
            }
            
            .restaurant-header-horizontal h3 {
                font-size: 1.15rem;
            }
            
            .restaurant-meta-line {
                font-size: 0.875rem;
            }
        }
        
        .rules-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0 2rem;
        }
        
        .rules-list li {
            display: flex;
            align-items: flex-start;
            flex-direction: column;
            gap: 0.25rem;
            padding: 0.75rem;
            background: #f9fafb;
            border-radius: 8px;
            color: #1f2937;
        }
        
        .feature-detail {
            display: block;
            font-size: 0.85rem;
            color: #6b7280;
            margin-top: 0.25rem;
            margin-left: 1.75rem;
        }
        
        .location-section {
            margin: 2rem 0;
        }
        
        .location-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        
        .location-highlights p {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem;
            background: #eff6ff;
            border-radius: 8px;
            color: #1e40af;
            margin: 0;
            font-size: 0.95rem;
        }
        
        #map {
            width: 100%;
            height: 400px;
            border-radius: 12px;
            margin-top: 1rem;
            border: 2px solid #e5e7eb;
        }
        
        .reviews-grid {
            display: grid;
            gap: 1.5rem;
            margin: 1.5rem 0 2rem;
        }
        
        .review-card {
            padding: 1.5rem;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            background: #f9fafb;
        }
        
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: start;
            margin-bottom: 1rem;
        }
        
        .review-rating {
            color: #f59e0b;
        }
        
        .review-date {
            display: block;
            color: #6b7280;
            font-size: 0.875rem;
            font-weight: normal;
        }
        
        .review-card h4 {
            color: #1f2937;
            margin: 0 0 0.5rem;
        }
        
        .property-sidebar {
            position: sticky;
            top: 2rem;
            align-self: start;
        }
        
        .booking-widget,
        .quick-info,
        .contact-widget {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        
        .widget-header .price {
            text-align: center;
            padding-bottom: 1rem;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .widget-header .amount {
            font-size: 2rem;
            font-weight: bold;
            color: #667eea;
            display: block;
        }
        
        .widget-header .per {
            display: block;
            color: #6b7280;
            font-size: 0.9rem;
            margin-top: 0.25rem;
        }
        
        .widget-body {
            padding: 1.5rem 0;
        }
        
        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            text-align: center;
            font-weight: 600;
            transition: all 0.2s;
            border: 2px solid transparent;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        
        .btn-secondary {
            background: white;
            color: #667eea;
            border-color: #667eea;
        }
        
        .btn-secondary:hover {
            background: #667eea;
            color: white;
        }
        
        .btn-outline {
            background: white;
            color: #6b7280;
            border-color: #e5e7eb;
        }
        
        .btn-outline:hover {
            border-color: #667eea;
            color: #667eea;
        }
        
        .btn-block {
            display: block;
            width: 100%;
            margin-bottom: 0.75rem;
        }
        
        .widget-footer {
            text-align: center;
            padding-top: 1rem;
            border-top: 1px solid #e5e7eb;
        }
        
        .text-sm {
            font-size: 0.875rem;
        }
        
        .text-muted {
            color: #6b7280;
        }
        
        .quick-info h3,
        .contact-widget h3 {
            margin: 0 0 1rem;
            color: #1f2937;
            font-size: 1.2rem;
        }
        
        .quick-info ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .quick-info li {
            display: flex;
            justify-content: space-between;
            padding: 0.75rem 0;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .quick-info li:last-child {
            border-bottom: none;
        }
        
        .contact-widget p {
            color: #6b7280;
            margin: 0 0 1rem;
        }
        
        @media (max-width: 768px) {
            .property-container {
                padding: 1rem 0.5rem;
            }
            
            .property-header-section {
                padding: 1.5rem 1rem;
            }
            
            .property-content-section {
                padding: 1.5rem 1rem;
            }
            
            .hero-gallery {
                grid-template-columns: 1fr;
            }
            
            .property-grid {
                grid-template-columns: 1fr;
            }
            
            .property-sidebar {
                position: static;
            }
            
            .property-meta {
                gap: 1rem;
            }
            
            .bedroom-cards,
            .amenities-grid,
            .rules-list,
            .location-highlights {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 400px) {
            .property-container {
                padding: 0.5rem;
            }
            
            .property-content-section {
                padding: 1rem;
            }
        }

        .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }
        
        .gallery-card {
            background: white;
            border-radius: 16px;
            box-shadow: var(--gallery-shadow);
            overflow: hidden;
            margin-bottom: 1.5rem;
        }
        
        .gallery-header-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 2rem;
            text-align: center;
        }
        
        .gallery-header-section h1 {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            margin: 0 0 0.5rem 0;
            font-weight: 700;
        }
        
        .gallery-header-section p {
            margin: 0;
            opacity: 0.9;
            font-size: clamp(0.875rem, 2vw, 1rem);
        }
        
        .gallery-filters-section {
            padding: 1.5rem;
            background: #f3f4f6;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .gallery-content-section {
            padding: 2rem;
        }
        
        .no-photos {
            text-align: center;
            padding: 3rem 1rem;
            color: #6b7280;
        }

        /* Tag Filters */
        .tag-filters {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .tag-filter {
            padding: 8px 16px;
            background: #f5f5f5;
            border: 2px solid #e0e0e0;
            border-radius: 20px;
            color: #333;
            text-decoration: none;
            font-size: 0.9em;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .tag-filter:hover {
            background: #e8e8e8;
            border-color: #ccc;
        }

        .tag-filter.active {
            background: #667eea;
            color: white;
            border-color: #667eea;
        }

        /* Main Slider */
        .gallery-slider {
            position: relative;
            background: #000;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            margin-bottom: 30px;
        }

        .slider-container {
            position: relative;
            width: 100%;
            padding-bottom: 66.67%; /* 3:2 aspect ratio */
            overflow: hidden;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide.active {
            opacity: 1;
            z-index: 1;
        }

        .slide img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            display: block;
        }

        /* Slider Navigation */
        .slider-nav {
            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;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        .slider-nav:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .slider-nav.prev {
            left: 20px;
        }

        .slider-nav.next {
            right: 20px;
        }

        .slider-nav svg {
            color: #333;
        }

        /* Slide Counter */
        .slide-counter {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9em;
            font-weight: 500;
            z-index: 10;
        }

        /* Photo Info */
        .photo-info {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            min-height: 150px;
        }

        .info-panel {
            display: none;
        }

        .info-panel.active {
            display: block;
            animation: fadeIn 0.5s ease-in;
        }

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

        .photo-title {
            font-size: 1.8em;
            margin-bottom: 15px;
            color: #333;
        }

        .photo-summary {
            font-size: 1.1em;
            line-height: 1.6;
            color: #666;
            margin-bottom: 20px;
        }

        .photo-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .photo-tag {
            display: inline-block;
            padding: 4px 12px;
            background: #e3f2fd;
            color: #1976d2;
            border-radius: 12px;
            font-size: 0.85em;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .photo-tag:hover {
            background: #1976d2;
            color: white;
        }

        /* Thumbnail Navigation */
        .thumbnail-nav {
            overflow: hidden;
            background: white;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .thumbnail-container {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding: 5px;
            scroll-behavior: smooth;
        }

        .thumbnail-container::-webkit-scrollbar {
            height: 8px;
        }

        .thumbnail-container::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 4px;
        }

        .thumbnail-container::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 4px;
        }

        .thumbnail-container::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

        .thumbnail {
            flex-shrink: 0;
            width: 120px;
            height: 80px;
            border-radius: 6px;
            overflow: hidden;
            cursor: pointer;
            border: 3px solid transparent;
            transition: all 0.3s ease;
            position: relative;
        }

        .thumbnail:hover {
            transform: translateY(-4px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .thumbnail.active {
            border-color: #667eea;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
        }

        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        @media (max-width: 768px) {
            .gallery-container {
                padding: 1rem 0.5rem;
            }
            
            .gallery-header-section {
                padding: 1.5rem 1rem;
            }
            
            .gallery-content-section {
                padding: 1rem;
            }

            .slider-nav {
                width: 40px;
                height: 40px;
            }

            .slider-nav.prev {
                left: 10px;
            }

            .slider-nav.next {
                right: 10px;
            }

            .photo-info {
                padding: 20px;
            }

            .thumbnail {
                width: 80px;
                height: 60px;
            }
        }

/* ============================================
   Reviews Page Styles
   ============================================ */

:root {
    --reviews-primary: #667eea;
    --reviews-gold: #fbbf24;
    --reviews-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.reviews-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--reviews-shadow);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.reviews-header-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.reviews-header-section h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.reviews-header-section p {
    margin: 0;
    opacity: 0.95;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
}

.reviews-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
}

.stat-card h3 {
    margin: 0 0 1rem 0;
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.overall-rating {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
}

.overall-rating .rating-display {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.overall-rating .stars {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.overall-rating .review-count {
    font-size: 0.875rem;
    opacity: 0.95;
}

.rating-bar-wrapper {
    margin: 0.75rem 0;
}

.rating-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    color: #4b5563;
}

.rating-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--reviews-gold) 0%, #f59e0b 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.reviews-list {
    padding: 2rem;
}

.review-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.review-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--reviews-primary) 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.reviewer-details h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1.125rem;
    color: #111827;
}

.reviewer-details .stay-date {
    font-size: 0.875rem;
    color: #6b7280;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: var(--reviews-gold);
    font-size: 1.25rem;
}

.rating-number {
    font-weight: 600;
    color: #111827;
}

.review-content {
    margin: 1rem 0;
    line-height: 1.6;
    color: #374151;
}

.review-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.category-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.category-label {
    color: #6b7280;
}

.category-stars {
    color: var(--reviews-gold);
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state h2 {
    font-size: 1.5rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.empty-state p {
    color: #9ca3af;
    margin-bottom: 2rem;
}

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    border-radius: 0 0 16px 16px;
}

.cta-section h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin: 0 0 1rem 0;
}

.cta-section p {
    margin: 0 0 1.5rem 0;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .reviews-stats {
        grid-template-columns: 1fr;
    }
    
    .review-header {
        flex-direction: column;
    }
    
    .review-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   Reset Password Page Styles
   ============================================ */

.reset-password-container {
    max-width: 500px;
    margin: 4rem auto;
    padding: 2rem 1rem;
}

.reset-password-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.reset-password-card .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.reset-password-card .card-header h1 {
    margin: 0 0 0.5rem 0;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
}

.reset-password-card .card-header p {
    margin: 0;
    opacity: 0.95;
    font-size: clamp(0.875rem, 2vw, 1rem);
}

.reset-password-card .card-header .icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.reset-password-card .card-body {
    padding: 2rem;
}

.password-requirements {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.password-requirements h3 {
    margin: 0 0 0.75rem 0;
    font-size: 0.875rem;
    color: #1f2937;
    font-weight: 600;
}

.password-requirements ul {
    margin: 0;
    padding-left: 1.5rem;
}

.password-requirements li {
    margin: 0.25rem 0;
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.5;
}

.password-strength {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.password-strength-fill {
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.strength-weak {
    width: 33%;
    background: #ef4444;
}

.strength-medium {
    width: 66%;
    background: #fbbf24;
}

.strength-strong {
    width: 100%;
    background: #10b981;
}

.user-info {
    background: #dbeafe;
    border-left: 4px solid #3b82f6;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.user-info p {
    margin: 0;
    color: #1e40af;
    font-size: 0.875rem;
}

.success-message {
    text-align: center;
    padding: 2rem 0;
}

.success-message .icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-message h2 {
    color: #10b981;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

.success-message p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0.5rem 0;
}

.error-state {
    text-align: center;
    padding: 2rem 0;
}

.error-state .icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.error-state h2 {
    color: #ef4444;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

@media (max-width: 640px) {
    .reset-password-container {
        margin: 2rem auto;
    }
    
    .reset-password-card .card-body {
        padding: 1.5rem;
    }
}

/* ============================================
   Forgot Password Page Styles
   ============================================ */

.forgot-password-container {
    max-width: 500px;
    margin: 4rem auto;
    padding: 2rem 1rem;
}

.forgot-password-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.forgot-password-card .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.forgot-password-card .card-header h1 {
    margin: 0 0 0.5rem 0;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
}

.forgot-password-card .card-header p {
    margin: 0;
    opacity: 0.95;
    font-size: clamp(0.875rem, 2vw, 1rem);
}

.forgot-password-card .card-header .icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.forgot-password-card .card-body {
    padding: 2rem;
}

.info-box {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.25rem;
    margin: 1.5rem 0;
}

.info-box h3 {
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
    color: #1f2937;
}

.info-box ul {
    margin: 0.5rem 0 0 1.5rem;
    padding: 0;
}

.info-box li {
    margin: 0.25rem 0;
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.5;
}

.back-to-login {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.back-to-login a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.back-to-login a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .forgot-password-container {
        margin: 2rem auto;
    }
    
    .forgot-password-card .card-body {
        padding: 1.5rem;
    }
}

/* ============================================
   Legal Pages Styles (Terms, Privacy, etc.)
   ============================================ */

:root {
    --legal-primary: #667eea;
    --legal-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.legal-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--legal-shadow);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.legal-header-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.legal-header-section h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.legal-header-section p {
    margin: 0;
    opacity: 0.95;
    font-size: clamp(0.875rem, 2vw, 1rem);
}

.legal-content {
    padding: 3rem 2rem;
    line-height: 1.8;
    color: #374151;
}

.legal-content h2 {
    color: var(--legal-primary);
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.legal-content h3 {
    color: #1f2937;
    font-size: 1.25rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.legal-content p {
    margin: 1rem 0;
}

.legal-content ul, .legal-content ol {
    margin: 1rem 0 1rem 2rem;
}

.legal-content li {
    margin: 0.5rem 0;
}

.legal-content strong {
    color: #1f2937;
    font-weight: 600;
}

.highlight-box {
    background: #fef3c7;
    border-left: 4px solid #fbbf24;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.highlight-box strong {
    color: #92400e;
}

.warning-box {
    background: #fee2e2;
    border-left: 4px solid #ef4444;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.warning-box strong {
    color: #991b1b;
}

.legal-content .info-box {
    background: #dbeafe;
    border-left: 4px solid #3b82f6;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
    border: none;
}

.legal-content .info-box strong {
    color: #1e40af;
}

.last-updated {
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

/* Cancellation Policy Specific Styles */
.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.policy-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.policy-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.policy-table tr:last-child td {
    border-bottom: none;
}

.policy-table tr:nth-child(even) {
    background: #f9fafb;
}

.refund-amount {
    font-weight: 600;
    font-size: 1.125rem;
}

.refund-none {
    color: #ef4444;
}

.refund-partial {
    color: #f59e0b;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }
    
    .policy-table {
        font-size: 0.875rem;
    }
    
    .policy-table th,
    .policy-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* ===================================
   Account Dashboard Styles
   =================================== */

.dashboard-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.dashboard-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.dashboard-header h1 {
    margin: 0 0 0.5rem 0;
}

.dashboard-header p {
    margin: 0;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #667eea;
    margin: 0.5rem 0;
}

.stat-label {
    color: #6b7280;
    font-size: 0.875rem;
}

.section-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    margin: 0;
    color: #1f2937;
}

.booking-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.booking-property {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
}

.booking-reference {
    font-family: monospace;
    color: #6b7280;
    font-size: 0.875rem;
}

.booking-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.booking-detail {
    display: flex;
    flex-direction: column;
}

.booking-detail-label {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.booking-detail-value {
    font-weight: 600;
    color: #1f2937;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending { background: #fef3c7; color: #92400e; }
.status-confirmed { background: #d1fae5; color: #065f46; }
.status-completed { background: #e0e7ff; color: #3730a3; }
.status-cancelled { background: #fee2e2; color: #991b1b; }

.empty-state {
    text-align: center;
    padding: 3rem;
    color: #6b7280;
}

.empty-state svg {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Account Dashboard Responsive */
@media (max-width: 768px) {
    .dashboard-header {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-card {
        padding: 1.5rem;
    }
    
    .booking-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .booking-details {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Account Bookings Page Styles
   =================================== */

.bookings-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.bookings-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.bookings-header h1 {
    margin: 0 0 0.5rem 0;
}

.bookings-header p {
    margin: 0;
    opacity: 0.9;
}

.breadcrumb {
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
    flex-wrap: wrap;
}

.tab {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: #6b7280;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    font-size: 1rem;
}

.tab:hover {
    color: #667eea;
}

.tab.active {
    color: #667eea;
    border-bottom-color: #667eea;
}

.tab-badge {
    display: inline-block;
    background: #e5e7eb;
    color: #1f2937;
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.tab.active .tab-badge {
    background: #667eea;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.booking-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-danger {
    background: #fee2e2;
    color: #991b1b;
}

.btn-danger:hover {
    background: #fecaca;
}

.empty-state-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state p {
    margin-bottom: 1.5rem;
}

.current-stay {
    border-left: 4px solid #10b981;
}

/* ===================================
   Account Settings Page Styles
   =================================== */

.settings-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.settings-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.settings-header h1 {
    margin: 0 0 0.5rem 0;
}

.settings-header p {
    margin: 0;
    opacity: 0.9;
}

.settings-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.settings-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.settings-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.settings-section h2 {
    margin: 0 0 1rem 0;
    color: #1f2937;
    font-size: 1.25rem;
}

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

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-help {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.alert-warning {
    background: #fef3c7;
    color: #92400e;
    border-left: 4px solid #fbbf24;
}

/* Account Pages Responsive */
@media (max-width: 768px) {
    .bookings-container,
    .settings-container {
        padding: 0 1rem;
    }
    
    .bookings-header,
    .settings-header {
        padding: 1.5rem;
    }
    
    .tabs {
        overflow-x: auto;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Booking Confirmation Page Styles
   =================================== */

.confirmation-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.confirmation-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

.confirmation-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.confirmation-header h1 {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
}

.booking-reference {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1rem 0;
    font-family: monospace;
    letter-spacing: 2px;
    color: #1f2937;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.confirmation-body {
    padding: 2rem;
}

.info-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.info-section:last-child {
    border-bottom: none;
}

.info-section h2 {
    color: #667eea;
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

.price-breakdown {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    color: #4b5563;
}

.price-total {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 2px solid #667eea;
    font-size: 1.5rem;
    font-weight: bold;
    color: #667eea;
}

.alert-pending {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.alert-pending h3 {
    color: #856404;
    margin: 0 0 0.5rem 0;
}

.alert-pending p {
    color: #856404;
    margin: 0;
}

.alert-pending a {
    color: #856404;
    text-decoration: underline;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.print-btn {
    background: white;
    border: 2px solid #667eea;
    color: #667eea;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    cursor: pointer;
}

.print-btn:hover {
    background: #667eea;
    color: white;
}

@media print {
    .action-buttons, 
    .alert-pending,
    .site-header,
    .site-footer { 
        display: none; 
    }
    
    .confirmation-container {
        margin: 0;
        padding: 0;
    }
}

/* ===================================
   Registration Page Styles
   =================================== */

.register-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.register-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 2.5rem;
}

.register-header {
    text-align: center;
    margin-bottom: 2rem;
}

.register-header h1 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-section {
    margin-bottom: 2.5rem;
}

.form-section h2 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

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

.form-group {
    margin-bottom: 1rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-label .required {
    color: #dc3545;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-control[type="file"] {
    padding: 0.5rem;
    cursor: pointer;
}

.form-control[type="file"]::-webkit-file-upload-button {
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 1rem;
    transition: background 0.3s;
}

.form-control[type="file"]::-webkit-file-upload-button:hover {
    background: #5568d3;
}

.help-text {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.login-link {
    text-align: center;
    margin-top: 1.5rem;
    color: #6c757d;
}

.login-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Register Page Responsive */
@media (max-width: 768px) {
    .register-card {
        padding: 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
}