/* assets/css/style.css */
:root {
    --primary: #1b4332;
    --primary-light: #2d6a4f;
    --primary-dark: #081c15;
    --accent: #d4af37; /* Gold */
    --accent-hover: #b8972e;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --font-bengali: 'SolaimanLipi', 'Kalpurush', 'Siyam Rupali', 'Hind Siliguri', 'Noto Sans Bengali', 'Nikosh', 'Arial Unicode MS', sans-serif;
    --font-heading: 'Plus Jakarta Sans', 'SolaimanLipi', 'Kalpurush', 'Hind Siliguri', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: var(--font-bengali);
    color: var(--text-main);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.2px;
}

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

a:hover {
    color: var(--accent);
}

ul {
    list-style: none;
}

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

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.w-100 { width: 100%; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

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

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

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

.btn-gold:hover {
    background-color: var(--accent-hover);
    color: var(--white);
}

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

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

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

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

.btn-full {
    display: block;
    width: 100%;
}

.btn-link {
    font-weight: 600;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 2px;
}
.btn-link:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* Header & Topbar */
.top-hotline-bar {
    background-color: var(--primary-dark);
    color: var(--white);
    font-size: 0.9rem;
    padding: 8px 0;
}
.top-hotline-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-hotline-bar a {
    color: var(--white);
    margin-left: 15px;
}
.top-hotline-bar a:hover {
    color: var(--accent);
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 2rem;
    color: var(--primary);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.desktop-nav a {
    font-weight: 600;
    color: var(--primary-dark);
}

.desktop-nav a:hover {
    color: var(--accent);
}

.desktop-nav .btn-book-now {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 6px;
}

.desktop-nav .btn-book-now:hover {
    background-color: var(--primary-light);
}

.mobile-hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 1002;
    transition: 0.4s ease-in-out;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}
.mobile-drawer.open {
    right: 0;
}
.drawer-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}
.drawer-title {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-dark);
}
.drawer-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}
.drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
}
.drawer-nav a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}
.drawer-nav .btn-drawer {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    margin-top: 10px;
    border: none;
}
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    display: none;
}
.mobile-drawer-overlay.active {
    display: block;
}

/* Hero Section */
.hero-section {
    height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8, 28, 21, 0.4), rgba(8, 28, 21, 0.8));
}
.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 800px;
}
.hero-badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.3);
}
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.hero-subtext {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 500;
    opacity: 0.9;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 1;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

.page-hero {
    background: var(--primary-dark);
    color: var(--white);
    padding: 80px 0 60px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Stats Bar */
.stats-bar {
    background: rgba(8, 28, 21, 0.95);
    color: var(--white);
    padding: 30px 0;
    margin-top: -30px;
    position: relative;
    z-index: 2;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.stat-box i {
    font-size: 2rem;
    color: var(--accent);
}
.stat-box span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 800;
}
.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Rooms Grid */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.room-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.room-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
}
.room-content {
    padding: 20px;
}
.room-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}
.amenities-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.amenities-pills span {
    background: var(--bg-light);
    color: var(--text-main);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}
.amenities-pills i {
    color: var(--primary);
    margin-right: 4px;
}

/* Room Details (rooms.php) */
.room-details-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    overflow: hidden;
}
.room-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.room-gallery img:hover {
    transform: scale(1.02);
}
.room-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.room-info h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}
.price-big {
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: 800;
    margin-bottom: 20px;
}
.price-big span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}
.room-features {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.room-features span {
    font-weight: 600;
    color: var(--primary-dark);
}
.room-features i {
    color: var(--primary);
    margin-right: 8px;
}
.amenities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.amenities-list .amenity {
    display: flex;
    align-items: center;
    gap: 10px;
}
.amenities-list i {
    color: var(--primary);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.blog-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.cat-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}
.blog-content {
    padding: 20px;
}
.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
    line-height: 1.4;
}
.blog-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}
.blog-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.read-more {
    font-weight: 600;
    color: var(--primary);
}
.read-more:hover {
    color: var(--accent);
}

/* Blog Listing / Post */
.blog-container, .post-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}
.filter-bar {
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
}
.btn-filter {
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 20px;
    color: var(--text-main);
    font-weight: 500;
}
.btn-filter.active, .btn-filter:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.sidebar-widget {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}
.sidebar-widget h3 {
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-size: 1.2rem;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 10px;
}
.search-form {
    display: flex;
}
.search-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px 0 0 6px;
    outline: none;
}
.search-form button {
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
}
.cat-list li {
    margin-bottom: 10px;
}
.cat-list a {
    display: flex;
    justify-content: space-between;
    color: var(--text-main);
    font-weight: 500;
}
.cat-list a:hover {
    color: var(--primary);
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}
.pagination a {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: var(--text-main);
}
.pagination a.active, .pagination a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.breadcrumb a {
    color: var(--primary);
}
.post-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}
.post-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.post-featured-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}
.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}
.prose {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-main);
}
.prose h2, .prose h3 {
    margin: 30px 0 15px;
    color: var(--primary-dark);
}
.prose p {
    margin-bottom: 20px;
}
.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 40px 0;
}
.post-tags .tag {
    background: var(--bg-light);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-right: 10px;
}
.social-share {
    display: flex;
    align-items: center;
    gap: 10px;
}
.share-text {
    font-weight: 600;
    margin-right: 10px;
}
.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: transform 0.2s;
}
.share-btn:hover {
    transform: scale(1.1);
}
.share-btn.fb { background: #1877F2; }
.share-btn.wa { background: #25D366; }
.share-btn.copy { background: var(--text-muted); }

.author-box {
    display: flex;
    gap: 20px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}
.author-avatar {
    font-size: 4rem;
    color: var(--primary);
}
.author-info h4 {
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--accent);
    width: 0%;
    z-index: 10000;
    transition: width 0.1s ease;
}

/* Sightseeing Guide */
.sightseeing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.sight-card {
    background: var(--bg-light);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
}
.sight-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}
.sight-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.dist-badge {
    display: block;
    width: max-content;
    margin: 0 auto 15px;
    background: var(--accent);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}
.sight-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}
.faq-question:hover, .faq-question.active {
    background: var(--primary);
    color: var(--white);
}
.faq-question i {
    transition: transform 0.3s ease;
}
.faq-question.active i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--white);
}
.faq-answer p {
    padding: 20px;
    border-top: 1px solid #eee;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 80px 0;
}
.cta-banner h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}
.contact-card {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.contact-card i {
    font-size: 1.5rem;
    color: var(--primary);
}
.contact-card h4 {
    margin-bottom: 5px;
}
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

/* Footer */
.site-footer {
    background: var(--primary-dark);
    color: #e0e0e0;
    padding: 80px 0 0;
}
.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}
.about-col p {
    margin-bottom: 15px;
    opacity: 0.8;
}
.footer-col h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}
.links-col ul li {
    margin-bottom: 12px;
}
.links-col ul li a {
    color: #e0e0e0;
    opacity: 0.8;
}
.links-col ul li a:hover {
    color: var(--accent);
    opacity: 1;
    padding-left: 5px;
}
.contact-col p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-col i {
    color: var(--accent);
}
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
}
.social-icons a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}
.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Floating Elements */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}
.floating-whatsapp:hover {
    color: #fff;
    background-color: #128c7e;
}
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 35px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 99;
    box-shadow: var(--shadow);
}
.scroll-to-top.show {
    display: flex;
}
.scroll-to-top:hover {
    background: var(--accent);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .rooms-grid, .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sightseeing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        padding: 10px 15px;
    }
    .brand-logo {
        margin: 0 auto;
        justify-content: center;
        text-align: center;
    }
    .brand-logo img {
        height: 40px !important;
        max-width: 200px;
    }
    .desktop-nav {
        display: none;
    }
    .mobile-hamburger {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 20px;
        background: none;
        border: none;
        color: var(--primary-dark);
        cursor: pointer;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .rooms-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 2.3rem;
    }
    .blog-container, .post-container {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
    .room-details-card {
        grid-template-columns: 1fr;
    }
    .room-gallery img {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .top-hotline-bar .container {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .sightseeing-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 1.85rem;
    }
    .contact-cards {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}
