* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    transition: all 0.3s ease;
}

/* Removed scroll-lock - now using button state instead */

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg-primary);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-light);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 200px;
    filter: brightness(0) saturate(100%) invert(24%) sepia(16%) saturate(1020%) hue-rotate(194deg) brightness(95%) contrast(89%);
}

.main-navigation {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-btn {
    padding: 0.5rem 1rem;
    border: none;
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    border-radius: 8px;
    font-size: 0.9rem;
}

.nav-btn:hover {
    background: var(--primary-color);
    color: var(--text-inverse);
    transform: translateY(-2px);
}

.language-switch {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.lang-btn.active {
    background: var(--primary-color);
    color: var(--text-inverse);
}

.lang-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-medium);
    background: var(--primary-color);
    color: var(--text-inverse);
}

.theme-toggle-btn {
    padding: 0.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
}

.theme-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-medium);
    background: var(--primary-color);
    color: var(--text-inverse);
}

.theme-toggle-btn.active {
    background: var(--primary-color);
    color: var(--text-inverse);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('https://images.unsplash.com/photo-1564501049412-61c2a3083791?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1932&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    /*align-items: center;*/
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 5px;
    animation: fadeInUp 1s ease-out;
    margin-top: 150px;
}

.tagline {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.booking-bar {
    background: var(--bg-primary);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 20px 40px var(--shadow-medium);
    animation: slideInUp 1s ease-out 0.5s both;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    z-index: 900;
}

.booking-bar.sticky {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    margin: 0 1rem;
    border-radius: 10px;
    padding: 1rem 2rem;
    box-shadow: 0 10px 30px var(--shadow-dark);
    animation: none;
    backdrop-filter: blur(20px);
    border: 2px solid var(--primary-color);
}

.booking-bar.sticky .booking-field {
    min-width: 150px;
}

.booking-bar.sticky .price-display {
    min-width: 100px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Booking bar spacer to prevent content jumping */
.booking-bar-spacer {
    height: 0;
    transition: height 0.3s ease;
}

.booking-bar-spacer.active {
    height: 100px;
}

.booking-field {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.booking-field input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.booking-field input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--shadow-medium);
}

.booking-field label {
    position: absolute;
    top: -10px;
    left: 15px;
    background: var(--bg-primary);
    padding: 0 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.booking-field i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #3498db;
    cursor: pointer;
}

.price-display {
    background: var(--primary-color);
    color: var(--text-inverse);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
}

.price-display:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.booking-bar-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--text-inverse);
    border-radius: 12px;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-width: 60px;
    height: 54px;
}

.booking-bar-cart:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.booking-bar-cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.booking-bar-cart-icon i {
    font-size: 1.2rem;
}

.booking-bar-cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--danger-color, #e74c3c);
    color: var(--text-inverse);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    min-width: 20px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.booking-bar-cart-badge.visible {
    opacity: 1;
    transform: scale(1);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: white;
}

/* Calendar */
.calendar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.calendar-container {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: scaleIn 0.3s ease-out;
    border: 1px solid var(--border-light);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.calendar-nav {
    background: #3498db;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    background: #2980b9;
    transform: scale(1.05);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.calendar-day {
    aspect-ratio: 1;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.calendar-day:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.calendar-day.selected {
    background: var(--primary-color);
    color: var(--text-inverse);
}

.calendar-day.in-range {
    background: linear-gradient(135deg, #e8f4f8 0%, #d6e9f4 100%);
    border-color: #3498db;
    border-left: none;
    border-right: none;
    border-radius: 0;
}

.calendar-day.range-start {
    background: var(--primary-color);
    color: var(--text-inverse);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    position: relative;
    z-index: 2;
}

.calendar-day.range-end {
    background: var(--primary-color);
    color: var(--text-inverse);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    position: relative;
    z-index: 2;
}

.calendar-day.range-start.range-end {
    border-radius: 10px;
}

.calendar-day.in-range .day-price {
    color: var(--primary-color);
}

.calendar-day.range-start .day-price,
.calendar-day.range-end .day-price {
    color: var(--text-inverse);
}

.calendar-day.disabled {
    background: #f8f9fa;
    color: #ccc;
    cursor: not-allowed;
}

.day-number {
    font-weight: bold;
    font-size: 1.1rem;
}

.day-price {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.calendar-day.selected .day-price {
    color: white;
}

.calendar-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

/* Guests Selection */
.guests-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    min-width: 450px;
    max-width: 500px;
    max-height: 70vh;
    background: var(--bg-primary);
    border-radius: 15px;
    box-shadow: 0 20px 60px var(--shadow-medium);
    z-index: 3000;
    display: none;
    margin-top: 0.5rem;
    padding: 0;
    animation: slideDown 0.3s ease-out;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.guests-dropdown.dropdown-up {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: 0.5rem;
    animation: slideUp 0.3s ease-out;
}

.guests-dropdown-header {
    padding: 1.5rem 2rem 1rem 2rem;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-secondary);
    border-radius: 15px 15px 0 0;
    position: sticky;
    top: 0;
    z-index: 1;
}

.guests-dropdown-title {
    font-weight: bold;
    color: var(--text-primary);
    font-size: 1.1rem;
    margin: 0;
}

.guests-dropdown-content {
    padding: 1rem 2rem 2rem 2rem;
    max-height: calc(70vh - 80px);
    overflow-y: auto;
    overflow-x: hidden;
}

.guests-dropdown-content::-webkit-scrollbar {
    width: 6px;
}

.guests-dropdown-content::-webkit-scrollbar-track {
    background: var(--border-light);
    border-radius: 3px;
}

.guests-dropdown-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.guests-dropdown-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.guest-row:last-child {
    border-bottom: none;
}

.guest-label {
    font-weight: 500;
    color: var(--text-primary);
}

.guest-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.guest-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: var(--bg-primary);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.guest-btn:hover {
    background: var(--primary-color);
    color: var(--text-inverse);
}

.guest-count {
    font-size: 1.1rem;
    font-weight: bold;
    min-width: 30px;
    text-align: center;
    color: var(--text-primary);
}

.room-dates-section {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid #e8f4f8;
    border-radius: 8px;
    background: #f8fdff;
}

.children-birth-years {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid #e8f8e8;
    border-radius: 8px;
    background: #f8fff8;
}

.children-birth-years-title {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.birth-year-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.birth-year-row:last-child {
    margin-bottom: 0;
}

.birth-year-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    flex: 1;
}

.birth-year-select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    background: white;
    min-width: 100px;
}

.birth-year-select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

.room-dates-header {
    margin-bottom: 1rem;
}

.room-dates-title {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.room-dates-controls {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    width: 100%;
}

.room-date-field {
    flex: 1;
    min-width: 120px;
}

.room-date-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.room-date-field input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.room-date-field input:hover {
    border-color: #3498db;
}

.room-date-field input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

/* Rooms Section */
.rooms-section {
    padding: 5rem 2rem;
    background: var(--bg-secondary);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.room-card {
    background: var(--bg-primary);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium);
    border-color: var(--primary-color);
}

.room-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.room-content {
    padding: 1.5rem;
}

.room-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.room-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: #e8f4f8;
    color: #3498db;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.room-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3498db;
}

.price-unit {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.select-room-btn {
    background: var(--primary-color);
    color: var(--text-inverse);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.select-room-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.select-room-btn.selected {
    background: var(--danger-color, #e74c3c);
    color: var(--text-inverse);
}

.select-room-btn.selected:hover {
    background: var(--danger-dark, #c0392b);
}

/* Room Selection Status */
.room-selection-status {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    background: #e8f4f8;
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid #3498db;
    animation: fadeIn 0.3s ease-out;
}

.status-content {
    text-align: center;
}

.status-text {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.status-progress {
    background: #d6e9f4;
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
}

.status-progress-bar {
    background: linear-gradient(90deg, #3498db, #2ecc71);
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
    width: 0%;
}

/* Extras Section */
.extras-section {
    padding: 5rem 2rem;
    background: var(--bg-primary);
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.extra-card {
    background: var(--bg-secondary);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.extra-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-light);
    border-color: var(--primary-color);
}

.extra-card.selected {
    border-color: var(--primary-color);
    background: var(--bg-primary);
}

.extra-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.extra-icon:hover {
    background: rgba(52, 152, 219, 0.2);
    transform: scale(1.1);
    color: #2980b9;
}

.extra-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.extra-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.extra-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #3498db;
}

/* Per-room extras styling */
.room-extras-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #3498db;
}

.room-extras-header {
    margin-bottom: 1.5rem;
}

.room-extras-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.room-extras-info {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.room-guest-details {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.room-guest-info,
.room-date-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c3e50;
    font-size: 0.9rem;
}

.room-guest-info i,
.room-date-info i {
    color: #3498db;
    width: 16px;
}

.room-date-selection {
    margin-top: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 2px solid #e8f4f8;
    overflow: hidden;
    transition: all 0.3s ease;
}

.room-date-selection.hidden {
    display: none;
}

.room-date-selection-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.room-date-selection-toggle:hover {
    background: #f0f8ff;
}

.room-date-selection-toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #3498db;
    cursor: pointer;
}

.room-date-selection-toggle label {
    font-weight: 500;
    color: #2c3e50;
    cursor: pointer;
    font-size: 0.9rem;
}

.room-date-selection-toggle i {
    color: #3498db;
    font-size: 0.9rem;
}

.room-date-selection-controls {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideDown 0.3s ease-out;
}

.room-date-selection-header {
    margin-bottom: 1rem;
}

.room-date-selection-title {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.room-date-selection-field {
    flex: 1;
    min-width: 140px;
}

.room-date-selection-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.room-date-selection-field input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.room-date-selection-field input:hover {
    border-color: #3498db;
}

.room-date-selection-field input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.3);
}

.room-extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.extra-card.room-extra {
    position: relative;
}

.extra-quantity-controls {
    display: none;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: white;
    border-radius: 20px;
    padding: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    align-items: center;
    gap: 0.5rem;
}

.extra-card.selected .extra-quantity-controls {
    display: flex;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #3498db;
    background: white;
    color: #3498db;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: #3498db;
    color: white;
}

.quantity-display {
    font-weight: bold;
    min-width: 25px;
    text-align: center;
    color: #2c3e50;
}

/* Shopping Cart */
.cart-overlay {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.cart-overlay.open {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    background: #3498db;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-title {
    font-size: 1.2rem;
    font-weight: bold;
}

.cart-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-content {
    padding: 1.5rem;
}

.cart-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-name {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.cart-item-details {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    font-weight: bold;
    color: #3498db;
}

.cart-item-guests,
.cart-item-dates {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-guests i,
.cart-item-dates i {
    color: #3498db;
    width: 14px;
    text-align: center;
}

.cart-room-section {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1rem;
}

.cart-room-section:last-child {
    border-bottom: none;
}

.cart-room-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.5rem;
}

.cart-extras-section {
    margin-left: 1rem;
    border-left: 3px solid #3498db;
    padding-left: 1rem;
}

.cart-extra-item {
    background: #ffffff;
    border: 1px solid #e8f4f8;
    border-radius: 6px;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.cart-extra-item:last-child {
    margin-bottom: 0;
}

.cart-extra-item .cart-item-name {
    font-weight: 500;
    color: #2c3e50;
}

.cart-extra-item .cart-item-details {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin: 0.25rem 0;
}

.cart-extra-item .cart-item-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e67e22;
}

.cart-total {
    background: #f8f9fa;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 10px;
}

.cart-total-amount {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
}

.cart-checkout {
    width: 100%;
    background: #3498db;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.cart-checkout:hover {
    background: #2980b9;
}

/* Services Section */
.services-section {
    padding: 5rem 2rem;
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-secondary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-medium);
    border-color: var(--primary-color);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-inverse);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-primary);
    margin: 0;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.service-duration {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-feature-tag {
    background: var(--bg-primary);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid var(--primary-color);
}

.service-book-btn {
    width: 100%;
    background: var(--primary-color);
    color: var(--text-inverse);
    border: none;
    padding: 0.75rem;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.service-book-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.service-book-btn.selected {
    background: var(--danger-color, #e74c3c);
    color: var(--text-inverse);
}

.service-book-btn.selected:hover {
    background: var(--danger-dark, #c0392b);
}

.service-card.selected {
    border-color: var(--primary-color);
    background: var(--bg-primary);
}

.service-popular {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--text-inverse);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Booking CTA Section */
.booking-cta-section {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    padding: 3rem 0;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.booking-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.booking-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.booking-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.booking-cta-text {
    flex: 1;
    min-width: 300px;
}

.booking-cta-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.booking-cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.cta-feature i {
    color: #2ecc71;
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.booking-cta-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 280px;
}

.booking-cta-button {
    background: #2c3e50;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    white-space: nowrap;
    min-width: 250px;
    justify-content: center;
}

.booking-cta-button i {
    font-size: 1.2rem;
}

.booking-cta-button:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.booking-cta-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .booking-cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .booking-cta-title {
        font-size: 1.2rem;
    }
    
    .booking-cta-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .cta-feature {
        justify-content: center;
    }
    
    .booking-cta-button-container {
        min-width: auto;
        width: 100%;
    }
    
    .booking-cta-button {
        width: 100%;
        min-width: auto;
    }
}

/* Service Details Overlay */
.service-details-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(8px);
}

.service-details-container {
    background: var(--bg-primary);
    border-radius: 20px;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: scaleIn 0.3s ease-out;
    border: 1px solid var(--border-light);
}

.service-details-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--text-muted);
    color: var(--text-inverse);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-details-close:hover {
    background: var(--danger-color);
    transform: scale(1.1);
}

.service-details-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.service-details-image {
    border-radius: 15px;
    overflow: hidden;
}

.service-details-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-details-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.service-details-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-primary);
    margin: 0;
}

.service-details-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.service-details-duration {
    font-size: 1rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-details-duration::before {
    content: '\f017';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
}

.service-details-content {
    padding: 2rem;
}

.service-details-description {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.service-details-features {
    margin-bottom: 2rem;
}

.service-details-features h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: 10px;
    border: 1px solid var(--border-light);
}

.service-feature-icon {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.service-feature-text {
    color: var(--text-primary);
    font-size: 0.9rem;
}

.service-details-booking-info {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.booking-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.booking-info-item:last-child {
    margin-bottom: 0;
}

.booking-info-item i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.service-details-actions {
    padding: 1.5rem 2rem 2rem;
    display: flex;
    gap: 1rem;
    border-top: 1px solid var(--border-light);
}

.service-details-btn {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.service-details-btn.primary {
    background: var(--primary-color);
    color: var(--text-inverse);
}

.service-details-btn.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.service-details-btn.secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.service-details-btn.secondary:hover {
    background: var(--border-light);
}

/* Booking Form */
.booking-form-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
    display: none;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.back-to-booking-btn {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.back-to-booking-btn:hover {
    background: var(--primary-color);
    color: var(--text-inverse);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-medium);
}

.back-to-booking-btn i {
    font-size: 0.9rem;
}

/* Mobile responsive for form header */
@media (max-width: 768px) {
    .form-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .back-to-booking-btn {
        align-self: flex-start;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.3);
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.payment-method {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method.selected {
    border-color: #3498db;
    background: #e8f4f8;
}

.billing-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.billing-option {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.billing-option.selected {
    border-color: #3498db;
    background: #e8f4f8;
}

.billing-option i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #3498db;
}

.room-billing-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid #3498db;
}

.room-billing-header {
    font-weight: bold;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.room-billing-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.room-billing-details i {
    color: #3498db;
    width: 16px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.submit-btn {
    width: 100%;
    background: #27ae60;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #219a52;
    transform: translateY(-2px);
}

/* Confirmation */
.confirmation-section {
    padding: 5rem 2rem;
    background: white;
    text-align: center;
    display: none;
}

.confirmation-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 2rem;
}

.confirmation-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.confirmation-message {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.booking-details {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 500px;
    text-align: left;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Room Details Overlay */
.room-details-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

/* Extra Details Overlay */
.extra-details-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2600;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.extra-details-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: scaleIn 0.3s ease-out;
    position: relative;
}

.extra-details-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #95a5a6;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.extra-details-close:hover {
    background: #7f8c8d;
    transform: scale(1.1);
}

.extra-details-header {
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 1rem;
}

.extra-details-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.extra-details-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e67e22;
}

.extra-details-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.extra-details-features {
    margin-bottom: 1.5rem;
}

.extra-details-features h4 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.extra-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.extra-feature-icon {
    color: #27ae60;
    margin-right: 0.75rem;
    font-size: 1rem;
}

.extra-details-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.extra-details-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.extra-details-btn.primary {
    background: #3498db;
    color: white;
}

.extra-details-btn.primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.extra-details-btn.secondary {
    background: #95a5a6;
    color: white;
}

.extra-details-btn.secondary:hover {
    background: #7f8c8d;
}

.room-details-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: scaleIn 0.3s ease-out;
    position: relative;
}

.room-details-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #95a5a6;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-details-header {
    margin-bottom: 2rem;
}

.room-details-title {
    font-size: 2rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.room-details-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.room-details-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.room-details-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.room-main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.room-thumbnail-container {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
}

.room-thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.room-thumbnail:hover,
.room-thumbnail.active {
    opacity: 1;
}

.room-details-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.room-amenities-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.room-amenities-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.room-amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.room-amenity-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.room-amenity-icon {
    width: 16px;
    color: #3498db;
}

.room-rates-section {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.room-rates-header {
    background: #3498db;
    color: white;
    padding: 1rem;
    font-weight: bold;
}

.room-rate-item {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.room-rate-item:last-child {
    border-bottom: none;
}

.room-rate-info {
    flex: 1;
}

.room-rate-name {
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.room-rate-details {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.room-rate-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #3498db;
    margin-right: 1rem;
}

.room-rate-select {
    background: #3498db;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.room-rate-select:hover {
    background: #2980b9;
}

/* Multi-room guest selection */
.rooms-breakdown {
    margin-top: 1rem;
}

.room-breakdown {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid #3498db;
    overflow: hidden;
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.room-breakdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.room-breakdown-title {
    font-weight: bold;
    color: #2c3e50;
}

.remove-room-btn {
    background: #e74c3c;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
}

.add-room-btn {
    width: 100%;
    background: #27ae60;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    margin-top: 1rem;
}

.add-room-btn:hover {
    background: #219a52;
}

/* Room card enhancements */
.room-card.selected {
    border: 3px solid #3498db;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.3);
}

.room-card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.room-info-btn {
    background: #95a5a6;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
}

.room-info-btn:hover {
    background: #7f8c8d;
}

.select-room-btn {
    flex: 1;
}

/* Sticky Cart Button */
.sticky-cart {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    background: var(--primary-color);
    color: var(--text-inverse);
    border: none;
    border-radius: 60px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px var(--shadow-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1500;
    font-weight: bold;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 180px;
    justify-content: center;
}

.sticky-cart:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow-dark);
}

.sticky-cart.pulse {
    animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.sticky-cart-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.sticky-cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.sticky-cart-hidden {
    transform: translateX(100px);
    opacity: 0;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }

    .theme-toggle-btn {
        width: 35px;
        height: 35px;
        margin-left: 0.25rem;
    }

    .tagline {
        font-size: 2rem;
    }

    .booking-bar {
        flex-direction: column;
        gap: 1rem;
    }

    .booking-field {
        min-width: 100%;
    }

    .calendar-container {
        width: 98%;
        padding: 0.75rem;
        margin: 0.5rem auto;
        max-width: none;
        border-radius: 15px;
    }

    .calendar-header {
        margin-bottom: 1rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .calendar-header h3 {
        font-size: 1.1rem;
    }

    .calendar-nav {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .calendar-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 0.15rem;
        margin-bottom: 1rem;
    }

    .calendar-day {
        font-size: 0.75rem;
        padding: 0.2rem;
        min-height: 45px;
        border-radius: 6px;
        border-width: 1px;
    }

    .calendar-day:hover {
        transform: none; /* Disable transform on mobile for performance */
    }

    .day-number {
        font-size: 0.85rem;
    }

    .day-price {
        font-size: 0.65rem;
        margin-top: 0.1rem;
    }

    .calendar-actions {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        flex: 1;
        min-width: 120px;
        max-width: 150px;
    }

    .calendar-day.range-start {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .calendar-day.range-end {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .calendar-day.range-start.range-end {
        border-radius: 10px;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .extras-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        border-radius: 15px;
    }

    .service-image {
        height: 180px;
    }

    .service-content {
        padding: 1.25rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-details-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .service-details-image img {
        height: 200px;
    }

    .service-details-title {
        font-size: 1.5rem;
    }

    .service-details-content {
        padding: 1.5rem;
    }

    .service-feature-list {
        grid-template-columns: 1fr;
    }

    .service-details-actions {
        padding: 1rem 1.5rem 1.5rem;
        flex-direction: column;
    }

    .cart-overlay {
        width: 100%;
        right: -100%;
    }

    .form-row {
        flex-direction: column;
    }

    .payment-methods {
        flex-direction: column;
    }

    .room-details-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .room-amenities-grid {
        grid-template-columns: 1fr;
    }

    .room-breakdown-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .room-extras-grid {
        grid-template-columns: 1fr;
    }

    .room-extras-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .room-date-selection-controls {
        flex-direction: column;
        gap: 0.5rem;
    }

    .room-date-selection-field {
        min-width: 100%;
    }

    .room-guest-details {
        flex-direction: column;
        gap: 1rem;
    }

    .guests-dropdown {
        min-width: 300px;
        max-width: 95vw;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        max-height: 80vh;
    }

    .guests-dropdown-header {
        padding: 1rem 1.5rem 0.75rem 1.5rem;
    }

    .guests-dropdown-title {
        font-size: 1rem;
    }

    .guests-dropdown-content {
        padding: 0.75rem 1.5rem 1.5rem 1.5rem;
        max-height: calc(80vh - 60px);
    }

    .billing-options {
        flex-direction: column;
    }

    .birth-year-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .birth-year-select {
        width: 100%;
        min-width: auto;
    }

    .sticky-cart {
        right: 1rem;
        bottom: 1rem;
        min-width: 140px;
        font-size: 0.9rem;
    }

    .main-navigation {
        display: none;
    }

    .host-reviews-container {
        margin: 0.5 auto;
        max-height: 95vh;
    }

    .host-profile {
        flex-direction: column;
        gap: 1rem;
    }

    .host-image {
        width: 120px;
        height: 120px;
    }

    .host-contact {
        gap: 0.75rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .reviews-summary {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .criteria-item {
        grid-template-columns: 80px 1fr 40px;
        gap: 0.75rem;
    }

    .testimonial-card {
        width: 280px;
    }

    .nav-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .booking-bar.sticky {
        margin: 0 0.5rem;
        padding: 0.75rem 1rem;
        top: 70px;
    }

    .booking-bar.sticky .booking-field {
        min-width: 120px;
    }

    .booking-bar.sticky .price-display {
        min-width: 80px;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .booking-bar-spacer.active {
        height: 80px;
    }

    .section-navigation {
        right: 1rem;
        padding: 0.75rem 0.4rem;
        transform: translateY(-50%) scale(0.9);
    }

    .section-nav-item {
        width: 10px;
        height: 10px;
        margin: 0.5rem 0;
    }

    .section-nav-item::after {
        display: none;
    }
}

/* Extra small screens (max-width: 480px) */
@media (max-width: 480px) {
    .calendar-overlay {
        padding: 0.5rem;
        align-items: flex-start;
        padding-top: 2rem;
    }

    .calendar-container {
        width: 100%;
        padding: 0.5rem;
        margin: 0;
        border-radius: 10px;
        max-height: 85vh;
    }

    .calendar-header {
        margin-bottom: 0.75rem;
        justify-content: center;
    }

    .calendar-header h3 {
        font-size: 1rem;
        order: 2;
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
    }

    .calendar-nav {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
        min-width: 40px;
    }

    .calendar-grid {
        gap: 0.1rem;
        margin-bottom: 0.75rem;
    }

    .calendar-day {
        font-size: 0.7rem;
        padding: 0.15rem;
        min-height: 40px;
        border-radius: 4px;
    }

    .day-number {
        font-size: 0.8rem;
    }

    .day-price {
        font-size: 0.6rem;
        margin-top: 0.05rem;
    }

    .calendar-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn {
        padding: 0.75rem;
        font-size: 0.9rem;
        width: 100%;
        min-width: auto;
        max-width: none;
    }
}

/* Very small screens (max-width: 360px) */
@media (max-width: 360px) {
    .calendar-day {
        min-height: 35px;
        font-size: 0.65rem;
        padding: 0.1rem;
    }

    .day-number {
        font-size: 0.75rem;
    }

    .day-price {
        font-size: 0.55rem;
    }

    .calendar-header h3 {
        font-size: 0.9rem;
    }

    .calendar-nav {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Host & Reviews Overlay */
.host-reviews-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.host-reviews-container {
    background: var(--bg-primary);
    border-radius: 20px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: scaleIn 0.3s ease-out;
    margin: 0 auto;
}

.host-reviews-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--text-muted);
    color: var(--text-inverse);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.host-reviews-close:hover {
    background: var(--danger-color);
    transform: scale(1.1);
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    border-bottom: 2px solid var(--border-light);
    background: var(--bg-secondary);
    border-radius: 20px 20px 0 0;
}

.tab-btn {
    flex: 1;
    padding: 1.5rem;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
}

.tab-btn:first-child {
    border-radius: 20px 0 0 0;
}

.tab-btn:last-child {
    border-radius: 0 20px 0 0;
}

.tab-btn.active {
    background: var(--primary-color);
    color: var(--text-inverse);
}

.tab-btn:hover:not(.active) {
    background: var(--bg-primary);
    color: var(--text-primary);
}

/* Tab Content */
.tab-content {
    display: none;
    padding: 2rem;
}

.tab-content.active {
    display: block;
}

/* Host Profile */
.host-profile {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.host-avatar {
    flex-shrink: 0;
}

.host-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

.host-info {
    flex: 1;
    min-width: 300px;
}

.host-name {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.host-greeting {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.host-contact {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: 10px;
}

.contact-item i {
    color: var(--primary-color);
    width: 20px;
    margin-top: 0.25rem;
}

.contact-item span {
    color: var(--text-primary);
    line-height: 1.4;
}

.host-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.host-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--primary-color);
    color: var(--text-inverse);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.host-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.host-link i {
    width: 16px;
}

/* Reviews Summary */
.reviews-summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 15px;
}

.overall-rating {
    text-align: center;
}

.rating-score {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.rating-stars {
    color: #f39c12;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.rating-count {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.rating-criteria {
    display: grid;
    gap: 1rem;
}

.criteria-item {
    display: grid;
    grid-template-columns: 120px 1fr 50px;
    align-items: center;
    gap: 1rem;
}

.criteria-label {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.criteria-bar {
    height: 8px;
    background: var(--border-light);
    border-radius: 4px;
    overflow: hidden;
}

.criteria-fill {
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.criteria-score {
    font-weight: bold;
    color: var(--text-primary);
    text-align: right;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials-container {
    margin-top: 2rem;
}

.testimonials-title {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.testimonials-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-behavior: smooth;
}

.testimonials-scroll::-webkit-scrollbar {
    height: 6px;
}

.testimonials-scroll::-webkit-scrollbar-track {
    background: var(--border-light);
    border-radius: 3px;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.testimonial-card {
    flex-shrink: 0;
    width: 350px;
    background: var(--bg-primary);
    border: 2px solid var(--border-light);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-light);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.guest-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.guest-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--text-inverse);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.guest-name {
    font-weight: bold;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.guest-date {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.testimonial-rating {
    color: #f39c12;
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
}

/* Section Navigation */
.section-navigation {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1999;
    background: var(--bg-primary);
    border-radius: 25px;
    padding: 1rem 0.5rem;
    box-shadow: 0 10px 30px var(--shadow-medium);
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.section-nav-item {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    margin: 0.75rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.section-nav-item:hover,
.section-nav-item.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.section-nav-item::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--text-primary);
    color: var(--text-inverse);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.section-nav-item:hover::after {
    opacity: 1;
    visibility: visible;
    right: 30px;
}

/* Disabled room buttons */
.select-room-btn.disabled {
    background: var(--text-muted);
    color: var(--text-inverse);
    cursor: not-allowed;
    opacity: 0.6;
}

.select-room-btn.disabled:hover {
    background: var(--text-muted);
    transform: none;
}