/* Hotel Neptune Inn - Main Stylesheet */
:root {
    --royal-blue: #1a3a6b;
    --blue-light: #2c5aa0;
    --gold: #c5a55a;
    --gold-light: #d4b96e;
    --white: #fff;
    --beige: #f5f0e8;
    --beige-light: #faf7f2;
    --dark: #1a1a2e;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    --shadow: 0 4px 20px rgba(0, 0, 0, .1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, .15);
    --radius: 12px;
    --transition: all .3s ease
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--beige-light);
    line-height: 1.6
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    color: var(--royal-blue)
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition)
}

img {
    max-width: 100%;
    height: auto
}

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

/* Top Bar */
.top-bar {
    background: var(--dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px
}

.top-bar span i {
    margin-right: 6px;
    color: var(--gold)
}

.social-links {
    display: flex;
    gap: 10px
}

.social-links a {
    color: var(--white);
    opacity: .8;
    transition: var(--transition)
}

.social-links a:hover {
    color: var(--gold);
    opacity: 1
}

/* Navbar */
.navbar {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow)
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--royal-blue)
}

.navbar-brand i {
    font-size: 28px;
    color: var(--gold)
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    display: block
}

.brand-tagline {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 1px
}

.navbar-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 5px
}

.navbar-menu a {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    color: var(--dark);
    transition: var(--transition)
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--royal-blue);
    background: var(--beige)
}

.nav-btn {
    background: var(--royal-blue) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 8px !important
}

.nav-btn:hover {
    background: var(--gold) !important
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px
}

.toggle-bar {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition)
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--dark) 100%);
    color: var(--white);
    padding: 100px 0 80px;
    text-align: 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 80 80"><circle cx="40" cy="40" r="1" fill="rgba(197,165,90,0.15)"/></svg>');
    background-size: 40px 40px
}

.hero-content {
    position: relative;
    z-index: 1
}

.hero-stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 8px;
    margin-bottom: 15px
}

.hero h1 {
    font-size: clamp(36px, 6vw, 64px);
    margin-bottom: 15px;
    line-height: 1.1;
    color: var(--white)
}

.hero h1 span {
    color: var(--gold)
}

.hero p {
    font-size: clamp(16px, 2vw, 20px);
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: .9
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center
}

.btn-primary {
    background: var(--gold);
    color: var(--dark)
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow)
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent
}

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

.btn-blue {
    background: var(--royal-blue);
    color: var(--white)
}

.btn-blue:hover {
    background: var(--blue-light);
    transform: translateY(-2px)
}

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

.btn-danger:hover {
    background: #dc2626
}

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

.btn-sm {
    padding: 8px 18px;
    font-size: 13px
}

/* Section Styles */
.section {
    padding: 80px 0
}

.section-header {
    text-align: center;
    margin-bottom: 50px
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 10px
}

.section-header p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto
}

.section-header .gold-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 15px auto 0;
    border-radius: 3px
}

.section-alt {
    background: var(--white)
}

/* Room Cards */
.rooms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px
}

@media (min-width: 576px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .rooms-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.room-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg)
}

.room-card-img {
    height: 180px;
    overflow: hidden;
    position: relative
}

.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition)
}

.room-card:hover .room-card-img img {
    transform: scale(1.05)
}

.room-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--dark);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600
}

.room-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-card-body h3 {
    font-size: 17px;
    margin-bottom: 8px;
    line-height: 1.3;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.room-card-meta {
    display: flex;
    gap: 8px 12px;
    color: var(--gray);
    font-size: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap
}

.room-card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.room-card-meta span i {
    margin-right: 0;
    color: var(--gold)
}

.room-card-desc {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 38px;
}

.room-card-amenities {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    min-height: 26px;
}

.room-card-amenities span {
    background: var(--beige);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    color: var(--royal-blue)
}

.room-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--gray-light);
    margin-top: auto;
}

.room-price-detail {
    display: flex;
    align-items: baseline;
    white-space: nowrap;
}

.room-price-amount {
    font-size: 19px;
    font-weight: 700;
    color: var(--royal-blue);
    line-height: 1;
}

.room-price-label {
    font-size: 11px;
    color: var(--gray);
    font-weight: 500;
    margin-left: 3px;
}

.room-card-footer .btn-sm {
    padding: 6px 10px;
    font-size: 11.5px;
    border-radius: 6px;
}

.room-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--royal-blue), var(--blue-light));
    color: var(--white);
    font-size: 48px
}

/* Amenities Section */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px
}

.amenity-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition)
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg)
}

.amenity-card i {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 15px
}

.amenity-card h4 {
    font-size: 16px;
    margin-bottom: 5px
}

.amenity-card p {
    font-size: 13px;
    color: var(--gray)
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative
}

.testimonial-card::before {
    content: '\201C';
    font-size: 60px;
    color: var(--gold);
    opacity: .3;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif
}

.testimonial-text {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 15px;
    padding-top: 20px
}

.testimonial-author {
    font-weight: 600;
    color: var(--royal-blue)
}

.testimonial-stars {
    color: var(--gold);
    font-size: 14px;
    margin-top: 5px
}

/* Forms */
.form-group {
    margin-bottom: 20px
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--dark);
    font-size: 14px
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: var(--white)
}

.form-control:focus {
    outline: none;
    border-color: var(--royal-blue);
    box-shadow: 0 0 0 3px rgba(26, 58, 107, .1)
}

select.form-control {
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path d="M6 8L1 3h10z" fill="%236b7280"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center
}

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

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

.form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 0 auto
}

.form-card h2 {
    margin-bottom: 25px;
    text-align: center
}

/* Alerts */
.alert {
    padding: 14px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    animation: slideDown .3s ease
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid var(--success)
}

.alert-error {
    background: #fecaca;
    color: #991b1b;
    border-left: 4px solid var(--danger)
}

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

.alert-info {
    background: #dbeafe;
    color: #1e40af;
    border-left: 4px solid var(--info)
}

.alert-close {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    opacity: .6
}

.alert-close:hover {
    opacity: 1
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600
}

.badge-success {
    background: #d1fae5;
    color: #065f46
}

.badge-warning {
    background: #fef3c7;
    color: #92400e
}

.badge-danger {
    background: #fecaca;
    color: #991b1b
}

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, var(--royal-blue), var(--dark));
    color: var(--white);
    padding: 60px 0;
    text-align: center
}

.page-banner h1 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 8px;
    color: var(--white)
}

.page-banner p {
    opacity: .8
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 14px
}

.breadcrumb a {
    color: var(--gold)
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow)
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white)
}

th {
    background: var(--royal-blue);
    color: var(--white);
    padding: 14px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap
}

td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-light);
    font-size: 14px
}

tr:hover {
    background: var(--beige-light)
}

/* Booking Success */
.success-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 600px;
    margin: 0 auto
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px
}

.booking-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    text-align: left;
    margin: 25px 0;
    padding: 20px;
    background: var(--beige-light);
    border-radius: 8px
}

.booking-details-grid .detail-item label {
    font-size: 12px;
    color: var(--gray);
    display: block
}

.booking-details-grid .detail-item span {
    font-weight: 600;
    color: var(--dark)
}

.qr-section {
    margin: 25px 0;
    padding: 20px;
    border: 2px dashed var(--gold);
    border-radius: 8px
}

.qr-section img {
    width: 200px;
    height: 200px
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--gold);
    font-family: 'Playfair Display', serif
}

.footer-col p {
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    line-height: 1.7
}

.footer-col ul {
    list-style: none
}

.footer-col ul li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .7);
    font-size: 14px
}

.footer-col ul li a {
    color: rgba(255, 255, 255, .7);
    transition: var(--transition)
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px
}

.footer-col ul li i {
    margin-right: 8px;
    color: var(--gold);
    width: 16px
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition)
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark)
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
    color: rgba(255, 255, 255, .5);
    font-size: 13px
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow)
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible
}

.back-to-top:hover {
    background: var(--royal-blue);
    color: var(--white);
    transform: translateY(-3px)
}

/* FAQ */
.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: var(--shadow);
    overflow: hidden
}

.faq-question {
    padding: 18px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--royal-blue)
}

.faq-question:hover {
    background: var(--beige-light)
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all .3s ease;
    color: var(--gray);
    line-height: 1.7
}

.faq-item.active .faq-answer {
    padding: 0 24px 18px;
    max-height: 500px
}

.faq-item.active .faq-question i {
    transform: rotate(180deg)
}

/* Info Cards Row */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 3px solid var(--gold)
}

.info-card i {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 12px
}

.info-card h4 {
    margin-bottom: 8px
}

.info-card p {
    font-size: 14px;
    color: var(--gray)
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start
}

.contact-info-cards {
    display: grid;
    gap: 20px
}

.contact-info-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow)
}

.contact-info-card i {
    font-size: 24px;
    color: var(--gold);
    margin-top: 3px
}

.contact-info-card h4 {
    margin-bottom: 4px;
    font-size: 16px
}

.contact-info-card p {
    font-size: 14px;
    color: var(--gray)
}

.map-placeholder {
    width: 100%;
    height: 450px;
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 20px;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: 0
}

/* Print Styles */
@media print {

    .navbar,
    .top-bar,
    .footer,
    .back-to-top,
    .no-print,
    .hero-btns {
        display: none !important
    }

    .page-banner {
        padding: 20px 0;
        background: none;
        color: var(--dark)
    }

    .page-banner h1 {
        color: var(--dark)
    }
}

/* ========== ADMIN PANEL STYLES ========== */
.admin-wrap {
    display: flex;
    min-height: 100vh
}

.admin-sidebar {
    width: 260px;
    background: var(--dark);
    color: var(--white);
    padding: 20px 0;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 100
}

.admin-sidebar .sidebar-brand {
    padding: 15px 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.admin-sidebar .sidebar-brand h3 {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 18px
}

.admin-sidebar .sidebar-brand p {
    font-size: 11px;
    color: rgba(255, 255, 255, .5);
    margin-top: 4px
}

.admin-sidebar .nav-menu {
    list-style: none;
    padding: 15px 0
}

.admin-sidebar .nav-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    transition: var(--transition)
}

.admin-sidebar .nav-menu li a:hover,
.admin-sidebar .nav-menu li a.active {
    background: rgba(255, 255, 255, .1);
    color: var(--gold)
}

.admin-sidebar .nav-menu li a i {
    width: 20px;
    text-align: center
}

.admin-sidebar .nav-menu .badge-count {
    margin-left: auto;
    background: var(--danger);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px
}

.admin-content {
    margin-left: 260px;
    flex: 1;
    padding: 30px;
    background: var(--beige-light);
    min-height: 100vh
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px
}

.admin-header h1 {
    font-size: 24px
}

/* Dashboard Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px
}

.stat-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--gold)
}

.stat-card .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px
}

.stat-card .stat-icon.blue {
    background: rgba(26, 58, 107, .1);
    color: var(--royal-blue)
}

.stat-card .stat-icon.green {
    background: rgba(16, 185, 129, .1);
    color: var(--success)
}

.stat-card .stat-icon.gold {
    background: rgba(197, 165, 90, .1);
    color: var(--gold)
}

.stat-card .stat-icon.red {
    background: rgba(239, 68, 68, .1);
    color: var(--danger)
}

.stat-card h3 {
    font-size: 28px;
    margin-bottom: 4px
}

.stat-card p {
    font-size: 13px;
    color: var(--gray)
}

/* Admin Forms */
.admin-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 25px
}

.admin-card h2 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--beige)
}

/* Search Bar */
.search-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap
}

.search-bar .form-control {
    max-width: 300px
}

.search-bar .btn {
    white-space: nowrap
}

/* Filter Bar */
.filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    align-items: center
}

.filter-bar label {
    font-weight: 500;
    font-size: 14px
}

/* Admin Mobile Toggle */
.admin-toggle {
    display: none;
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 200;
    background: var(--royal-blue);
    color: var(--white);
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer
}

/* Responsive */
@media(max-width:992px) {
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 1001;
        overflow-y: auto
    }

    .navbar-menu.active {
        right: 0
    }

    .navbar-toggle {
        display: flex;
        z-index: 1002
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .admin-sidebar {
        transform: translateX(-100%);
        transition: var(--transition)
    }

    .admin-sidebar.active {
        transform: translateX(0)
    }

    .admin-content {
        margin-left: 0;
        padding: 20px 15px
    }

    .admin-toggle {
        display: block
    }

    .admin-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px
    }

    .admin-header h1 {
        font-size: 20px
    }

    .search-bar {
        flex-direction: column
    }

    .search-bar .form-control {
        max-width: 100%
    }

    .filter-bar {
        flex-direction: column;
        align-items: stretch
    }

    .filter-bar .form-control {
        max-width: 100%
    }
}

@media(max-width:768px) {

    html,
    body {
        overflow-x: hidden
    }

    .top-bar-content {
        justify-content: center;
        text-align: center
    }

    .top-bar-left,
    .top-bar-right {
        flex-wrap: wrap;
        justify-content: center
    }

    .hero {
        padding: 60px 0
    }


    .testimonials-grid {
        grid-template-columns: 1fr
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .booking-details-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center
    }

    .footer-col ul {
        padding-left: 0
    }

    .footer-contact li {
        justify-content: center
    }

    .footer-social {
        justify-content: center
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .info-cards {
        grid-template-columns: 1fr
    }

    .form-card {
        padding: 25px 20px
    }

    .success-card {
        padding: 25px 20px
    }

    .qr-section img {
        width: 160px;
        height: 160px
    }

    .page-banner {
        padding: 40px 0
    }

    .page-banner h1 {
        font-size: 26px
    }

    .section {
        padding: 50px 0
    }

    .section-header {
        margin-bottom: 30px
    }

    table {
        font-size: 12px
    }

    th,
    td {
        padding: 8px 10px
    }

    .admin-card {
        padding: 20px 15px
    }

    .stat-card {
        padding: 18px
    }

    .stat-card h3 {
        font-size: 22px
    }

    .stat-card .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 16px
    }

    .map-placeholder {
        height: 300px
    }
}

@media(max-width:480px) {
    .stats-grid {
        grid-template-columns: 1fr
    }

    .hero-btns {
        flex-direction: column;
        align-items: center
    }

    .amenities-grid {
        grid-template-columns: 1fr
    }

    .container {
        padding: 0 15px
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px
    }

    .navbar-brand .brand-name {
        font-size: 18px
    }

    .top-bar {
        font-size: 11px
    }

    .top-bar-left,
    .top-bar-right {
        gap: 10px
    }
}

/* ============================================ */
/* GALLERY & LIGHTBOX CUSTOM STYLES */
/* ============================================ */
.gallery-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.gallery-filter-btn {
    background: var(--white);
    color: var(--dark);
    border: 1px solid var(--gray-light);
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.gallery-filter-btn:hover {
    background: var(--beige);
    color: var(--royal-blue);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.gallery-filter-btn.active {
    background: var(--royal-blue);
    color: var(--white);
    border-color: var(--royal-blue);
    box-shadow: 0 4px 15px rgba(26, 58, 107, 0.25);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    opacity: 1;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
    aspect-ratio: 4 / 3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: scale(1);
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.85);
    position: absolute;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    border: 0;
    overflow: hidden;
    pointer-events: none;
}

.gallery-item-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26, 58, 107, 0.9) 0%, rgba(26, 58, 107, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.gallery-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 10px;
}

.gallery-cat {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.05s;
}

.gallery-item-inner:hover img {
    transform: scale(1.1);
}

.gallery-item-inner:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item-inner:hover .gallery-icon,
.gallery-item-inner:hover .gallery-cat {
    transform: translateY(0);
}

/* Lightbox Modal */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 42px;
    font-weight: 300;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    z-index: 2010;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2010;
}

.lightbox-nav:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(197, 165, 90, 0.45);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: scale(0.93);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.lightbox-caption {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.lightbox-cat-badge {
    background: var(--gold);
    color: var(--dark);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.lightbox-index-badge {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
}

/* Lightbox Responsive Adjustments */
@media (max-width: 768px) {
    .lightbox-nav {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 32px;
    }

    .lightbox-content {
        max-width: 95%;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 15px;
    }
}

/* Custom Contact Styles */
.underline-purple {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8e44ad, #9b59b6);
    margin: 12px 0 25px 0;
    border-radius: 3px;
}

.address-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
    transition: transform 0.3s ease;
}

.address-item:last-child {
    margin-bottom: 0;
}

.address-item:hover {
    transform: translateX(5px);
}

.address-item i {
    font-size: 18px;
    color: #8e44ad;
    width: 32px;
    height: 32px;
    background: rgba(142, 68, 173, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.address-item p {
    margin: 0;
    font-size: 15px;
    color: var(--gray);
    line-height: 1.5;
    font-weight: 500;
}