/* css/styles.css - Modern Luxury Hotel */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Segoe UI',sans-serif; background:#f8f9fa; line-height:1.6; }

header.sticky {
    position:sticky; top:0; background:rgba(255,255,255,0.95);
    backdrop-filter:blur(12px); box-shadow:0 4px 20px rgba(0,0,0,0.1);
    z-index:1000; padding:1rem 5%;
}
nav a { margin:0 18px; color:#222; font-weight:600; text-decoration:none; }

.hero {
    height:100vh; background:linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.45)), 
    url('https://picsum.photos/id/1015/1920/1080') center/cover no-repeat;
    display:flex; align-items:center; justify-content:center; text-align:center; color:white;
}
.hero h1 { font-size:4.5rem; margin-bottom:1rem; text-shadow:0 4px 15px rgba(0,0,0,0.6); }

.room-card {
    background:white; border-radius:16px; overflow:hidden; box-shadow:0 10px 30px rgba(0,0,0,0.1);
    transition:transform 0.4s, box-shadow 0.4s;
}
.room-card:hover { transform:translateY(-15px); box-shadow:0 25px 50px rgba(0,0,0,0.2); }

.auth-form {
    max-width:420px; margin:60px auto; padding:40px; background:white;
    border-radius:16px; box-shadow:0 15px 40px rgba(0,0,0,0.15);
}
.auth-form input {
    width:100%; padding:14px; margin:12px 0; border:1px solid #ddd; border-radius:8px; font-size:1rem;
}
.auth-form button {
    width:100%; padding:15px; background:#c9a66b; color:white; border:none;
    border-radius:8px; font-size:1.1rem; cursor:pointer;
}
.error { color:#e74c3c; font-weight:bold; margin:10px 0; }

footer { background:#1a1a1a; color:#ccc; text-align:center; padding:25px; margin-top:50px; }

.hero { height: 100vh; background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('https://picsum.photos/id/1015/1920/1080') center/cover; display: flex; align-items: center; justify-content: center; color: white; text-align: center; }
.hero-overlay { max-width: 1100px; width: 90%; }
.booking-form { background: rgba(255,255,255,0.95); color: #222; padding: 30px; border-radius: 20px; margin-top: 30px; }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; }
.result-box { margin-top: 15px; font-weight: bold; }

.room-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; padding: 40px 5%; }
.room-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: all 0.4s; }
.room-card:hover { transform: translateY(-12px); }

.amenities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; text-align: center; font-size: 1.3rem; }

.slider { position: relative; height: 180px; overflow: hidden; }
.slide { position: absolute; width: 100%; text-align: center; font-size: 1.4rem; opacity: 0; transition: 0.6s; }
.slide.active { opacity: 1; }

.whatsapp-btn { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: white; padding: 15px 20px; border-radius: 50px; font-size: 1.2rem; box-shadow: 0 5px 20px rgba(0,0,0,0.3); text-decoration: none; z-index: 9999; }

/* HEADER & FOOTER STYLES - Luxury Look */
.sticky {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}
.logo a {
    font-size: 2rem;
    font-weight: 700;
    color: #c9a66b;
    text-decoration: none;
}
nav a {
    margin: 0 18px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    transition: color 0.3s;
}
nav a:hover { color: #c9a66b; }

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5% 30px;
    background: #1a1a1a;
    color: #ccc;
}
.footer-col h3, .footer-col h4 {
    color: #c9a66b;
    margin-bottom: 15px;
}
.footer-col a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

/* Rooms Page - Modern Luxury */
.rooms-page { padding: 60px 5%; }
.page-header { text-align: center; margin-bottom: 40px; }
.filters { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 40px; justify-content: center; }
.filters select, .filters input, .filters button { padding: 12px 18px; border-radius: 8px; border: 1px solid #ddd; }

.room-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 30px; }
.room-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: all 0.4s; }
.room-card:hover { transform: translateY(-15px); box-shadow: 0 25px 50px rgba(0,0,0,0.2); }
.room-card img { width: 100%; height: 220px; object-fit: cover; }

.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 2000; }
.modal-content { background: white; max-width: 900px; margin: 5% auto; border-radius: 20px; padding: 30px; position: relative; }
.close { position: absolute; top: 15px; right: 25px; font-size: 2rem; cursor: pointer; }

.gallery { display: flex; gap: 10px; overflow-x: auto; margin: 20px 0; }
.gallery img { width: 280px; height: 200px; object-fit: cover; border-radius: 12px; flex-shrink: 0; }

/* ADMIN DASHBOARD - Luxury Style */
.admin-dashboard {
    padding: 30px 5%;
    max-width: 1400px;
    margin: 0 auto;
}
.admin-dashboard h1 {
    color: #c9a66b;
    font-size: 2.4rem;
    margin-bottom: 8px;
}
.welcome { color: #666; margin-bottom: 30px; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.stat-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}
.stat-card:hover { transform: translateY(-8px); }
.stat-card .icon { font-size: 2.8rem; margin-bottom: 10px; }
.stat-card h3 { color: #555; font-size: 1.1rem; margin-bottom: 8px; }
.stat-card h2 { font-size: 2.2rem; color: #222; margin: 0; }

.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}
.btn-action {
    background: #c9a66b;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(201,166,107,0.3);
    transition: all 0.3s;
}
.btn-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201,166,107,0.4);
}

.chart-section, .recent-section {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}
.status-badge.pending { background: #f0ad4e; color: white; }
.status-badge.approved { background: #5cb85c; color: white; }
.status-badge.checked_in { background: #0275d8; color: white; }
.status-badge.checked_out { background: #777; color: white; }
.status-badge.cancelled { background: #d9534f; color: white; }

/* ====================== ADMIN ROOMS PAGE ====================== */
.admin-rooms {
    padding: 30px 5%;
    max-width: 1400px;
    margin: 0 auto;
}
.admin-rooms h1, .admin-rooms h2 {
    color: #c9a66b;
    margin-bottom: 20px;
}

.add-room-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    margin-bottom: 50px;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}
.form-grid label, .add-room-card label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #444;
}
.form-grid input, .form-grid select, .add-room-card textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
}

.amenities-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0 25px;
}
.amenity-label {
    background: #f8f9fa;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.95rem;
}

.btn-primary {
    background: #c9a66b;
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
}

/* Table */
.rooms-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.rooms-table th, .rooms-table td {
    padding: 18px 15px;
    text-align: left;
}
.rooms-table th {
    background: #1a1a1a;
    color: white;
}
.rooms-table tr:nth-child(even) {
    background: #f8f9fa;
}
.thumb {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}
.btn-small {
    padding: 6px 14px;
    margin: 0 4px;
    border-radius: 30px;
    font-size: 0.9rem;
    text-decoration: none;
}
.btn-small.edit { background: #0275d8; color: white; }
.btn-small.delete { background: #d9534f; color: white; }

/* ====================== ABOUT PAGE ====================== */
.about-hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://picsum.photos/id/1015/1920/1080') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.about-hero h1 { font-size: 4rem; margin-bottom: 15px; }
.about-hero p { font-size: 1.5rem; }

.story-section, .why-us, .team-section, .stats-section, .about-cta {
    padding: 80px 5%;
}
.container { max-width: 1200px; margin: 0 auto; }

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.features-grid, .team-grid, .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.feature, .team-member, .stat-item {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.feature .icon, .team-member img {
    font-size: 3.5rem;
    margin-bottom: 15px;
}
.team-member img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.stats-grid {
    background: #1a1a1a;
    color: white;
    padding: 40px;
    border-radius: 20px;
}
.counter { font-size: 3rem; font-weight: 700; color: #c9a66b; }

.about-cta {
    background: linear-gradient(135deg, #c9a66b, #b38c4f);
    color: white;
    text-align: center;
}
.about-cta h2 { margin-bottom: 25px; }

/* ====================== TESTIMONIALS PAGE ====================== */
.testimonial-hero {
    height: 65vh;
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('https://picsum.photos/id/1015/1920/1080') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.testimonial-hero h1 { font-size: 3.8rem; }

.testimonials-page { padding: 60px 5%; max-width: 1400px; margin: 0 auto; }

.filters { margin-bottom: 40px; text-align: center; }
.filters select { padding: 12px 20px; border-radius: 50px; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.4s;
}
.testimonial-card:hover { transform: translateY(-10px); }
.testimonial-card img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin-bottom: 15px; }
.stars { font-size: 1.8rem; color: #c9a66b; margin-bottom: 15px; }

.submit-review {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin-top: 80px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.star-rating span { font-size: 2.5rem; cursor: pointer; color: #ddd; }
.star-rating span:hover, .star-rating span.active { color: #c9a66b; }

/* ====================== TESTIMONIALS PAGE - STATIC LUXURY ====================== */
.testimonial-hero {
    height: 65vh;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('https://picsum.photos/id/1015/1920/1080') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.testimonial-hero h1 { font-size: 3.8rem; margin-bottom: 10px; }
.testimonial-hero p { font-size: 1.4rem; }

.testimonials-page {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(201,166,107,0.25);
}

.stars {
    font-size: 1.9rem;
    color: #c9a66b;
    margin-bottom: 18px;
}

.message {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    flex-grow: 1;
    margin-bottom: 25px;
}

.author {
    border-top: 1px solid #eee;
    padding-top: 18px;
    font-size: 1rem;
}
.author strong {
    color: #222;
}
.author small {
    color: #888;
    font-size: 0.9rem;
}

/* ====================== CONTACT PAGE ====================== */
.contact-hero {
    height: 65vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://picsum.photos/id/1015/1920/1080') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.contact-hero h1 { font-size: 3.8rem; }

.contact-page { padding: 80px 5%; max-width: 1400px; margin: 0 auto; }

.contact-info, .contact-form, .map-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 1.1rem;
}
.info-item .icon { font-size: 2rem; width: 40px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    z-index: 9999;
}

.directions-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background: #c9a66b;
    color: white;
    border-radius: 50px;
    text-decoration: none;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 25px 0;
}
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    font-size: 1.05rem;
    transition: all 0.3s;
}
.social-btn i {
    font-size: 1.4rem;
}
.google  { background: #DB4437; }
.apple   { background: #000000; }
.outlook { background: #0078D4; }

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
    color: #888;
}
.divider:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
}
.divider span {
    background: #fff;
    padding: 0 20px;
}

/* ROOM DETAILS MODAL - LUXURY STYLE */
.room-details-modal h2 {
    color: #222;
    margin-bottom: 8px;
}
.room-details-modal .price {
    font-size: 1.9rem;
    color: #c9a66b;
    margin-bottom: 25px;
}

.gallery {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 15px 0;
    margin-bottom: 30px;
    scroll-behavior: smooth;
}
.gallery img {
    width: 300px;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.amenities-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}
.amenities-list li {
    background: #f8f9fa;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 1.05rem;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}
.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
}
.btn-primary { background: #c9a66b; color: white; }
.btn-secondary { background: #ddd; color: #333; }

/* ====================== HOMEPAGE SECTIONS - LUXURY STYLE ====================== */

/* Rooms Section */
.rooms-section {
    padding: 80px 5%;
    background: #f8f9fa;
}
.rooms-section h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 50px;
    color: #222;
}
.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Amenities / Services */
.services {
    padding: 80px 5%;
    background: white;
}
.services h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.4rem;
}
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.amenity {
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 16px;
    font-size: 1.3rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

/* Testimonials */
.testimonials {
    padding: 80px 5%;
    background: #f8f9fa;
}
.testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
}
.slider {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.7;
    color: #444;
}

/* Newsletter */
.newsletter {
    padding: 60px 5%;
    background: #1a1a1a;
    color: white;
    text-align: center;
}
.newsletter form {
    max-width: 500px;
    margin: 30px auto;
    display: flex;
    gap: 10px;
}
.newsletter input {
    flex: 1;
    padding: 16px;
    border-radius: 50px;
    border: none;
}
.newsletter button {
    padding: 16px 40px;
    background: #c9a66b;
    color: white;
    border: none;
    border-radius: 50px;
}

/* Map */
.map {
    padding: 80px 5%;
}
.map h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* ====================== CONTACT PAGE - LUXURY STYLE ====================== */
.contact-hero {
    height: 65vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://picsum.photos/id/1015/1920/1080') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.contact-hero h1 { font-size: 3.8rem; margin-bottom: 10px; }
.contact-hero p { font-size: 1.4rem; }

.contact-page {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info, .contact-form, .map-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
}
.info-item .icon {
    font-size: 2.2rem;
    width: 40px;
    flex-shrink: 0;
}
.info-item a {
    color: #222;
    text-decoration: none;
    font-weight: 500;
}
.info-item a:hover {
    color: #c9a66b;
}

/* Form */
.contact-form h2 {
    margin-bottom: 25px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1.05rem;
}
.contact-form button {
    width: 100%;
    padding: 18px;
    background: #c9a66b;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

/* Map */
.map-section iframe {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ====================== HERO IMAGES - FIXED ====================== */

/* Homepage Hero */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('../images/hero-home.png') center/cover no-repeat;
}

/* About Page Hero */
.about-hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('../images/hero-about.png') center/cover no-repeat;
}

/* Testimonials Page Hero */
.testimonial-hero {
    height: 65vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('../images/hero-testimonial.png') center/cover no-repeat;
}

/* Contact Page Hero */
.contact-hero {
    height: 65vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('../images/hero-contact.png') center/cover no-repeat;
}

/* ====================== BOOKING PAGES ====================== */
.booking-page, .booking-history-page, .invoice-page, .room-details-page {
    padding: 60px 5%;
    max-width: 1100px;
    margin: 0 auto;
}

.booking-page h1, .booking-history-page h1, .invoice-page h1 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.btn-check, .btn-primary {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
}
.btn-check { background: #f0ad4e; color: white; }
.btn-primary { background: #c9a66b; color: white; }

.invoice-page .booked-date { color: #666; }
.invoice-page .expiry { color: #d9534f; font-weight: 600; }
.invoice-page ul { margin: 20px 0; line-height: 1.8; }
.invoice-page .contact-info { margin-top: 40px; }

.status { padding: 4px 12px; border-radius: 20px; font-size: 0.9rem; }
.status.pending { background: #f0ad4e; color: white; }
.status.approved { background: #5cb85c; color: white; }
.status.cancelled { background: #d9534f; color: white; }

/* ====================== HOMEPAGE - HERO BOOKING FORM & SIGNATURE ROOMS ====================== */

/* Hero Booking Form */
.hero .booking-form {
    background: rgba(255,255,255,0.95);
    color: #222;
    padding: 30px;
    border-radius: 20px;
    margin-top: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}
.hero .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}
.hero .booking-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #444;
}
.hero .booking-form input,
.hero .booking-form select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
}
.hero #check-btn {
    width: 100%;
    padding: 16px;
    background: #c9a66b;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 10px;
    cursor: pointer;
}

/* Signature Rooms Section */
.rooms-section {
    padding: 80px 5%;
    background: #f8f9fa;
}
.rooms-section h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 50px;
    color: #222;
}
.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}
.room-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}
.room-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(201,166,107,0.25);
}
.room-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.room-info {
    padding: 22px;
}
.room-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.room-info .price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
    margin: 12px 0;
}
.room-info .price span {
    font-size: 0.95rem;
    font-weight: normal;
    color: #777;
}

/* ====================== SIGNATURE ROOMS SECTION FIX ====================== */
.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Force 4 rooms in one row on large screens */
@media (min-width: 1200px) {
    .room-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Fix link styling */
.room-card a {
    color: #c9a66b;
    text-decoration: none;
    font-weight: 600;
}
.room-card a:hover {
    color: #b38c4f;
    text-decoration: underline;
}

/* ====================== TESTIMONIALS SECTION - HOMEPAGE ====================== */
.testimonials {
    padding: 80px 5%;
    background: #f8f9fa;
    text-align: center;
}
.testimonials h2 {
    font-size: 2.6rem;
    margin-bottom: 50px;
    color: #222;
}

.slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    height: 180px;
    overflow: hidden;
}
.slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    font-size: 1.35rem;
    line-height: 1.8;
    color: #444;
    padding: 0 20px;
}
.slide.active {
    opacity: 1;
}

/* Optional nice navigation dots */
.dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}
.dot {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}
.dot.active {
    background: #c9a66b;
}

/* ====================== ROOMS LISTING PAGE ONLY ====================== */
.rooms-page {
    padding: 60px 5%;
    background: #f8f9fa;
}

.rooms-page .page-header {
    text-align: center;
    margin-bottom: 50px;
}
.rooms-page .page-header h1 {
    font-size: 2.8rem;
    color: #222;
}

.rooms-page .filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    background: white;
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.rooms-page .filters select,
.rooms-page .filters input,
.rooms-page .filters button {
    padding: 14px 20px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 1rem;
}
.rooms-page .filters button {
    background: #c9a66b;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

/* Room Grid - Only for /rooms page */
.rooms-page .room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.rooms-page .room-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}
.rooms-page .room-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(201,166,107,0.25);
}
.rooms-page .room-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.rooms-page .room-info {
    padding: 22px;
}
.rooms-page .room-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.rooms-page .room-info .type {
    color: #c9a66b;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
}
.rooms-page .room-info .price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
    margin: 12px 0;
}
.rooms-page .room-info .btn {
    width: 100%;
    padding: 14px;
    background: #c9a66b;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 10px;
}

/* ====================== USER PROFILE PAGE ====================== */
.profile-page {
    padding: 80px 5%;
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    min-height: 70vh;
}

.profile-container h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #222;
    font-size: 2.4rem;
}

.profile-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.form-group input {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1.05rem;
}

.read-only-note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 4px;
}

.btn-update {
    width: 100%;
    padding: 16px;
    background: #c9a66b;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-update:hover {
    background: #b38c4f;
    transform: translateY(-2px);
}

/* ====================== ADMIN TABLES - LUXURY STYLE ====================== */
.admin-bookings, .admin-users {
    padding: 30px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.admin-table th, .admin-table td {
    padding: 18px 15px;
    text-align: left;
}
.admin-table th {
    background: #1a1a1a;
    color: white;
    font-weight: 600;
}
.admin-table tr:nth-child(even) {
    background: #f8f9fa;
}

.status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}
.status-badge.pending { background: #f0ad4e; color: white; }
.status-badge.approved { background: #5cb85c; color: white; }
.status-badge.checked_in { background: #0275d8; color: white; }
.status-badge.checked_out { background: #777; color: white; }
.status-badge.cancelled { background: #d9534f; color: white; }

.btn-small {
    padding: 6px 14px;
    margin: 0 4px;
    border-radius: 30px;
    font-size: 0.9rem;
    text-decoration: none;
}
.btn-small.edit { background: #0275d8; color: white; }
.btn-small.delete { background: #d9534f; color: white; }

/* ====================== ADMIN ROOM EDIT PAGE ====================== */
.admin-room-edit {
    padding: 40px 5%;
    max-width: 1100px;
    margin: 0 auto;
}

.admin-room-edit h1 {
    color: #c9a66b;
    margin-bottom: 40px;
    font-size: 2.4rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1.05rem;
}

.amenities-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0 30px;
}
.amenity-label {
    background: #f8f9fa;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
}

.form-actions {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.btn-primary, .btn-secondary {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
}

.btn-primary {
    background: #c9a66b;
    color: white;
}

.btn-secondary {
    background: #ddd;
    color: #333;
}