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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    min-height: 100vh;
}

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

/* Header */
.header {
    background: rgba(26, 32, 44, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo h1 {
    color: #63b3ed;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-logo i {
    margin-right: 0.5rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.help-section {
    margin-left: 2rem;
}

.help-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.help-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.help-btn i {
    font-size: 1.1rem;
}

.nav-link {
    text-decoration: none;
    color: #a0aec0;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #63b3ed;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #63b3ed, #4299e1);
    transition: width 0.3s ease;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #63b3ed;
    margin: 3px 0;
    transition: 0.3s;
}

/* Banner Section */
.banner-section {
    position: relative;
    height: 300px;
    overflow: hidden;
    margin-top: 80px;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

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

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background: rgba(26, 32, 44, 0.8);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.banner-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.banner-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.banner-btn {
    background: linear-gradient(135deg, #63b3ed, #4299e1);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 179, 237, 0.3);
}

.banner-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s ease;
}

.banner-dot.active {
    background: white;
}

/* Floating Help Button */
.floating-help {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.floating-help-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-help-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    animation: none;
}

.floating-help-btn i {
    font-size: 1.5rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff08" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #cbd5e0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.hero-search {
    background: rgba(45, 55, 72, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.search-form {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.search-input {
    padding: 14px 18px;
    border: 2px solid #4a5568;
    border-radius: 10px;
    font-size: 1rem;
    min-width: 150px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #2d3748;
    color: #e2e8f0;
}

.search-input:focus {
    outline: none;
    border-color: #63b3ed;
    box-shadow: 0 0 0 3px rgba(99, 179, 237, 0.1);
}

.search-btn {
    background: linear-gradient(135deg, #63b3ed, #4299e1);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 179, 237, 0.3);
}

/* Filter Section */
.filter-section {
    background: #2d3748;
    padding: 2rem 0;
    border-bottom: 1px solid #4a5568;
}

.filter-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #e2e8f0;
    font-size: 2rem;
    font-weight: 700;
}

.price-filter {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.price-filter label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #a0aec0;
}

#price-range {
    width: 100%;
    height: 8px;
    background: #4a5568;
    border-radius: 5px;
    outline: none;
    margin-bottom: 1rem;
}

#price-range::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background: #63b3ed;
    border-radius: 50%;
    cursor: pointer;
}

.price-display {
    font-size: 1.2rem;
    font-weight: 600;
    color: #63b3ed;
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #e2e8f0;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #63b3ed, #4299e1);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #a0aec0;
    margin-bottom: 3rem;
}

/* Rooms Section */
.rooms-section {
    padding: 5rem 0;
    background: #1a202c;
}

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

.room-card {
    background: #2d3748;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #4a5568;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.room-images {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.room-image.active {
    opacity: 1;
}

.room-status-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.room-status-badge.vacant {
    background: rgba(34, 197, 94, 0.9);
    color: white;
}

.room-status-badge.booked {
    background: rgba(239, 68, 68, 0.9);
    color: white;
}

.image-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-card:hover .image-navigation {
    opacity: 1;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    backdrop-filter: blur(5px);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 1);
}

.room-info {
    padding: 1.5rem;
}

.room-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #e2e8f0;
}

.room-number {
    color: #a0aec0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.room-description {
    color: #a0aec0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.room-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a0aec0;
    font-size: 0.9rem;
}

.feature i {
    color: #63b3ed;
}

.room-facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.facility {
    background: #4a5568;
    color: #a0aec0;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.room-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #63b3ed;
}

.per-night {
    color: #a0aec0;
    font-size: 0.9rem;
}

.offer-badge {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
    text-align: center;
}

.booking-buttons {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
}

.book-btn {
    width: 100%;
    background: linear-gradient(135deg, #63b3ed, #4299e1);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-btn:hover:not(.disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 179, 237, 0.3);
}

.book-btn.disabled {
    background: #718096;
    cursor: not-allowed;
}

.instant-book-btn {
    width: 100%;
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 0.5rem;
}

.instant-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.3);
}

/* Party Halls Section */
.party-halls-section {
    padding: 5rem 0;
    background: #2d3748;
}

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

.hall-card {
    background: #1a202c;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hall-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hall-images {
    position: relative;
    height: 250px;
}

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

.hall-info {
    padding: 1.5rem;
}

.hall-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #e2e8f0;
}

.hall-type {
    color: #a0aec0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 600;
}

.hall-description {
    color: #a0aec0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hall-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hall-facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hall-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.per-day {
    color: #a0aec0;
    font-size: 0.9rem;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background: #1a202c;
}

.overall-ratings {
    background: #2d3748;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.overall-ratings h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #e2e8f0;
    font-size: 1.5rem;
}

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

.rating-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #1a202c;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.rating-label {
    font-weight: 600;
    color: #a0aec0;
    min-width: 100px;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: #4a5568;
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(135deg, #63b3ed, #4299e1);
    transition: width 0.3s ease;
}

.rating-value {
    font-weight: 700;
    color: #63b3ed;
    min-width: 30px;
    text-align: right;
}

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

.review-card {
    background: #2d3748;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #63b3ed;
}

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

.reviewer-name {
    font-weight: 600;
    color: #e2e8f0;
}

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

.review-rating i.filled {
    color: #fbbf24;
}

.review-rating i {
    color: #e5e7eb;
}

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

.review-comment {
    color: #a0aec0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.review-date {
    color: #718096;
    font-size: 0.9rem;
}

.add-review-section {
    text-align: center;
    background: linear-gradient(135deg, #2d3748, #4a5568);
    padding: 3rem;
    border-radius: 15px;
}

.add-review-section h3 {
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.add-review-section p {
    color: #a0aec0;
    margin-bottom: 2rem;
}

.review-btn {
    background: linear-gradient(135deg, #63b3ed, #4299e1);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.review-btn:hover {
    transform: translateY(-2px);
}

/* Facilities Section */
.facilities-section {
    padding: 5rem 0;
    background: #2d3748;
}

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

.facility-category {
    background: #1a202c;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.facility-category h3 {
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    border-bottom: 2px solid #63b3ed;
    padding-bottom: 0.5rem;
}

.facility-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: #a0aec0;
}

.facility-item i {
    color: #63b3ed;
    width: 20px;
    text-align: center;
}

/* House Rules Section */
.house-rules-section {
    padding: 5rem 0;
    background: #1a202c;
}

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

.rule-card {
    background: #2d3748;
    padding: 2rem;
    border-radius: 15px;
    border-top: 4px solid #63b3ed;
}

.rule-card h3 {
    color: #e2e8f0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rule-card h3 i {
    color: #63b3ed;
}

.rule-card p {
    color: #a0aec0;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(26, 32, 44, 0.3);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-item i {
    font-size: 2rem;
    color: #fbbf24;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 3rem 0 1rem;
}

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

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

.footer-section h3 {
    font-size: 1.5rem;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.6;
}

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

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

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

.footer-section ul li a:hover {
    color: #cbd5e0;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 2rem;
    text-align: center;
    color: #a0aec0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #2d3748;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    color: #e2e8f0;
}

.close {
    color: #a0aec0;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
}

.close:hover {
    color: #cbd5e0;
}

.modal h2 {
    color: #e2e8f0;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #4a5568;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #1a202c;
    color: #e2e8f0;
}

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

.form-group small {
    color: #a0aec0;
    font-size: 0.9rem;
    margin-top: 0.25rem;
    display: block;
}

.booking-summary {
    background: #1a202c;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.booking-summary h3 {
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: #a0aec0;
}

.summary-row.total {
    border-top: 2px solid #4a5568;
    padding-top: 0.5rem;
    margin-top: 1rem;
    font-weight: 700;
    color: #e2e8f0;
    font-size: 1.1rem;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #63b3ed, #4299e1);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.booking-note,
.review-note {
    text-align: center;
    color: #a0aec0;
    font-size: 0.9rem;
    font-style: italic;
}

/* ID Proof Section */
.id-proof-section {
    background: #1a202c;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.id-proof-section .form-row {
    margin-bottom: 1rem;
}

.id-proof-section input {
    text-transform: uppercase;
}

/* Payment Modal Styles */
.payment-summary {
    background: #1a202c;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.payment-methods {
    margin-bottom: 2rem;
}

.payment-options {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.payment-btn {
    flex: 1;
    padding: 1rem;
    border: 2px solid #4a5568;
    border-radius: 10px;
    background: #2d3748;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #e2e8f0;
}

.payment-btn:hover {
    border-color: #63b3ed;
    background: #1a202c;
}

.upi-btn {
    color: #059669;
}

.razorpay-btn {
    color: #63b3ed;
}

.payment-section {
    border: 1px solid #4a5568;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.upi-details {
    text-align: center;
    margin-bottom: 1.5rem;
}

.qr-code {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
}

.qr-code canvas {
    border: 2px solid #4a5568;
    border-radius: 10px;
    padding: 10px;
}

.payment-instruction {
    color: #a0aec0;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.screenshot-upload {
    border-top: 1px solid #4a5568;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.screenshot-upload input[type="file"] {
    margin-bottom: 1rem;
}

/* Rating Section */
.rating-section h3 {
    color: #e2e8f0;
    margin-bottom: 1.5rem;
}

.rating-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #1a202c;
    border-radius: 8px;
}

.rating-group label {
    font-weight: 600;
    color: #cbd5e0;
    margin: 0;
    min-width: 120px;
}

.star-rating {
    display: flex;
    gap: 0.25rem;
    cursor: pointer;
}

.star-rating i {
    color: #e5e7eb;
    font-size: 1.5rem;
    transition: color 0.2s ease;
}

.star-rating i.active,
.star-rating i:hover {
    color: #fbbf24;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-section {
        height: 200px;
        margin-top: 70px;
    }
    
    .banner-content {
        padding: 1rem;
    }
    
    .banner-content h2 {
        font-size: 1.5rem;
    }
    
    .floating-help {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-help-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .floating-help-btn span {
        display: none;
    }
    
    .help-section {
        margin-left: 1rem;
    }
    
    .help-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-input {
        width: 100%;
    }
    
    .banner-content h2 {
        font-size: 1.5rem;
    }
    
    .banner-content {
        padding: 1rem;
    }
    
    .rooms-grid,
    .halls-grid {
        grid-template-columns: 1fr;
    }
    
    .ratings-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .rating-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .rating-group label {
        min-width: auto;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .facilities-grid,
    .rules-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-buttons {
        flex-direction: column;
    }
    
    .payment-options {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .banner-section {
        height: 150px;
    }
    
    .floating-help-btn {
        padding: 8px 12px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 1.5rem;
    }
    
    .room-card,
    .hall-card {
        margin: 0 10px;
    }
    
    .help-btn {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #2d3748;
}

::-webkit-scrollbar-thumb {
    background: #63b3ed;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4299e1;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

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

/* Success/Error Messages */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.alert-success {
    background: #2d5a27;
    color: #68d391;
    border: 1px solid #38a169;
}

.alert-error {
    background: #742a2a;
    color: #fc8181;
    border: 1px solid #e53e3e;
}

.alert-info {
    background: #2a4365;
    color: #63b3ed;
    border: 1px solid #3182ce;
}

/* Print Styles */
@media print {
    .header,
    .banner-section,
    .hero,
    .filter-section,
    .footer,
    .modal,
    .nav-toggle,
    .book-btn,
    .review-btn,
    .image-navigation {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #fff;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .room-card,
    .hall-card,
    .review-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
        margin-bottom: 1rem;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .room-status-badge.vacant {
        background: #000;
        color: #fff;
    }
    
    .room-status-badge.booked {
        background: #fff;
        color: #000;
        border: 2px solid #000;
    }
    
    .nav-link::after {
        background: #000;
    }
    
    .book-btn {
        background: #000;
        border: 2px solid #fff;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}