/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Great+Vibes&display=swap');

/* ===================================================
   Template Preview CSS — Dynamic Theme System
   CSS Variables defined in :root (overridden per-hotel)
   =================================================== */

/* :root variables are injected dynamically by theme-vars.blade.php */




/* Universal box-sizing reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* ===================== PREVIEW CONTAINER ===================== */
.preview-container {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.preview-header {
    background: var(--color-secondary);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preview-header h2 {
    margin: 0;
    font-size: 1.5em;
}

.view-toggle {
    display: flex;
    gap: 10px;
}

.view-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85em;
    transition: all 0.3s;
}

.view-btn.desktop {
    background: #fff;
    color: var(--color-nav-bg);
}

.view-btn.tablet {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.view-btn.mobile {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.view-btn:hover {
    opacity: 0.9;
}

.preview-frame-wrapper {
    position: relative;
    background: #f5f5f5;
    padding: 20px;
    min-height: 600px;
}

.preview-frame {
    width: 100%;
    min-height: 800px;
    border: none;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* ===================== SECTION NAV SIDEBAR ===================== */
.section-nav {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.section-nav h4 {
    margin: 0 0 15px 0;
    font-size: 1em;
    color: var(--color-nav-bg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.section-link {
    padding: 6px 14px;
    background: #ebeef2;
    border-radius: 20px;
    font-size: 0.8em;
    color: #526484;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.section-link:hover,
.section-link.active {
    background: var(--color-primary);
    color: white;
}

/* ===================== NAVIGATION PREVIEW ===================== */
.preview-nav {
    background: var(--color-secondary);
    padding: 18px 50px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    font-family: 'Outfit', sans-serif;
    border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.2);
}

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

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

.preview-nav-logo {
    height: 55px;
    width: auto;
}

.preview-nav .logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4em;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.preview-nav-menu {
    display: flex;
    gap: 38px;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.preview-nav-menu li>a {
    color: #fff;
    text-decoration: none;
    font-size: 0.82em;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Outfit', sans-serif;
}

.preview-nav-menu li>a:hover {
    color: var(--color-primary);
}

.preview-nav-menu li>a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.preview-nav-menu li>a:hover::after {
    width: 100%;
}

/* CTA "BOOK NOW" button â€” outlined gold border style */
.preview-nav-cta {
    background: transparent !important;
    color: var(--color-primary) !important;
    border: 2px solid var(--color-primary) !important;
    padding: 9px 24px !important;
    border-radius: 0 !important;
    font-weight: 600 !important;
    font-size: 0.82em !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
}

.preview-nav-cta:hover {
    background: var(--color-accent-hover) !important;
    border-color: var(--color-accent-hover) !important;
    color: var(--color-secondary) !important;
    transform: none !important;
}

.preview-nav-cta::after {
    display: none !important;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Sidebar */
.preview-nav-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: var(--color-secondary);
    z-index: 10000;
    padding: 30px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transform: translateX(101%);
    visibility: hidden;
}

.preview-nav-sidebar.active {
    transform: translateX(0);
    visibility: visible;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.3);
}

.sidebar-close {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 2.5em;
    cursor: pointer;
    line-height: 1;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sidebar-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s;
}

.sidebar-menu a:hover {
    color: var(--color-primary);
}

.sidebar-cta {
    background: var(--color-primary);
    color: var(--color-secondary) !important;
    padding: 14px;
    border-radius: 2px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-top: 10px;
    text-decoration: none;
    display: block;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

/* ===================== HERO SECTION ===================== */
.preview-hero {
    position: relative;
    height: 500px;
    background: linear-gradient(rgba(var(--color-secondary-rgb), 0.45), rgba(var(--color-secondary-rgb), 0.45)), var(--color-nav-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.preview-hero-content h1 {
    font-size: 3em;
    margin-bottom: 15px;
    color: var(--color-primary);
    font-family: 'Playfair Display', serif;
}

.preview-hero-content p {
    font-size: 1.2em;
    opacity: 0.9;
    color: #fff;
}

/* ===================== SECTION BASE ===================== */
.preview-section {
    padding: 90px 60px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Outfit', sans-serif;
}

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

/* Gold script "Welcome" badge style */
.section-badge {
    display: block;
    font-family: 'Great Vibes', cursive;
    font-size: 2em;
    color: rgba(var(--color-accent-light-rgb), 0.22);
    letter-spacing: 1px;
    font-weight: 400;
    margin-bottom: -22px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    position: relative; z-index: 0;
}

.section-title {
    position: relative; z-index: 1;
    font-family: 'Playfair Display', serif;
    font-size: 2.4em;
    color: var(--color-nav-bg);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.25;
}

.section-subtitle {
    font-size: 1em;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-family: 'Outfit', sans-serif;
}

/* ===================== ABOUT SECTION ===================== */
.about-section-wrapper {
    padding: 90px 60px;
    background: #fff;
    font-family: 'Outfit', sans-serif;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content .script-badge {
    font-family: 'Great Vibes', cursive;
    font-size: 2.4em;
    color: rgba(var(--color-accent-light-rgb), 0.22);
    display: block;
    margin-bottom: -22px;
    font-weight: 400;
    position: relative; z-index: 0;
}

.about-content h2 {
    position: relative; z-index: 1;
    font-family: 'Playfair Display', serif;
    font-size: 2.2em;
    color: var(--color-nav-bg);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.about-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    color: var(--color-nav-bg);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.about-content p {
    color: #555;
    line-height: 1.85;
    margin-bottom: 18px;
    font-size: 0.97em;
}

.about-image {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    position: relative;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

/* ===================== ATTRACTIONS SECTION ===================== */
.attractions-section-wrapper {
    padding: 90px 60px;
    background: #f8f7f4;
    font-family: 'Outfit', sans-serif;
}

.attractions-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Attraction card â€” ravantangalle style */
.attraction-card {
    background: white;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    padding: 0;
}

.attraction-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.13);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.attraction-card:hover .card-image-wrapper img {
    transform: scale(1.06);
}

/* Gold date badge â€” top-left of image */
.card-date-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--color-primary);
    color: #fff;
    text-align: center;
    padding: 10px 14px;
    z-index: 2;
    min-width: 58px;
    font-family: 'Outfit', sans-serif;
}

.card-date-badge .badge-day {
    display: block;
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1;
}

.card-date-badge .badge-month {
    display: block;
    font-size: 0.72em;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
    font-weight: 500;
}

.card-body {
    padding: 22px 22px 24px;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.18em;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.35;
}

.card-text {
    color: #666;
    font-size: 0.9em;
    line-height: 1.65;
    margin-bottom: 12px;
}

.card-read-more {
    font-size: 0.8em;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-bottom: 1px solid var(--color-primary);
    padding-bottom: 2px;
    transition: opacity 0.2s;
    cursor: pointer;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    display: inline-block;
}

.card-read-more:hover {
    opacity: 0.7;
}

/* Legacy .card class kept for other sections */
.card {
    background: white;
    border-radius: 3px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: all 0.3s;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f0ebe6;
}

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

/* ===================== SERVICES GRID ===================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(var(--color-primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px 25px 15px;
    font-size: 1.5em;
    color: var(--color-primary);
}

/* ===================== ROOMS GRID ===================== */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.room-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.room-image {
    width: 100%;
    height: 220px;
    position: relative;
}

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

.room-price {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--color-primary);
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9em;
    font-weight: 600;
}

.room-content {
    padding: 20px;
}

.room-title {
    font-size: 1.1em;
    color: var(--color-nav-bg);
    margin-bottom: 8px;
    font-weight: 700;
}

.room-desc {
    color: #666;
    font-size: 0.85em;
    line-height: 1.5;
}

/* ===================== GALLERY ===================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    border-radius: 4px;
    overflow: hidden;
    height: 220px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

/* ===================== REVIEWS ===================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.review-card {
    background: white;
    border-radius: 4px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--color-primary);
}

.review-stars {
    color: var(--color-primary);
    margin-bottom: 15px;
    font-size: 1.1em;
}

.review-text {
    color: #666;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(var(--color-primary-rgb), 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1em;
}

.review-name {
    font-weight: 600;
    color: var(--color-nav-bg);
}

.review-location {
    font-size: 0.85em;
    color: #888;
}

/* ===================== CTA SECTION ===================== */
.cta-section {
    background: var(--color-secondary);
    color: white;
    padding: 100px 60px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b3892a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

.cta-section>* {
    position: relative;
    z-index: 1;
}

.cta-script {
    font-family: 'Great Vibes', cursive;
    font-size: 2.2em;
    color: rgba(var(--color-accent-light-rgb), 0.22);
    display: block;
    margin-bottom: -25px;
    font-weight: 400;
    position: relative; z-index: 0;
}

.cta-title {
    position: relative; z-index: 1;
    font-family: 'Playfair Display', serif;
    font-size: 2.8em;
    margin-bottom: 18px;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
}

.cta-text {
    font-size: 1.05em;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: 16px 45px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85em;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.cta-button:hover {
    background: var(--color-accent-hover);
    color: #fff;
    transform: translateY(-2px);
}

.cta-button-outline {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 14px 45px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85em;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.cta-button-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* ===================== FOOTER ===================== */
.preview-footer {
    background: var(--color-secondary);
    color: white;
    padding: 70px 60px 0;
    font-family: 'Outfit', sans-serif;
    border-top: 1px solid rgba(var(--color-primary-rgb), 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.footer-logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    display: block;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 0.8em;
    margin-bottom: 22px;
    color: var(--color-primary);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.25);
    padding-bottom: 12px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9em;
    line-height: 1.85;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-col p i,
.footer-col .contact-icon {
    color: var(--color-primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9em;
    line-height: 1.6;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.25s;
    padding-left: 12px;
    position: relative;
}

.footer-col a::before {
    content: 'â€º';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.footer-col a:hover {
    color: var(--color-primary);
}

/* Social icons row */
.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.footer-social-icon {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(var(--color-primary-rgb), 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95em;
    transition: all 0.3s;
}

.footer-social-icon:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.footer-social-img {
    width: 38px;
    height: 38px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(var(--color-primary-rgb), 0.4);
    transition: border-color 0.3s;
}

.footer-social-img:hover {
    border-color: var(--color-primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 22px 0;
    border-top: 1px solid rgba(var(--color-primary-rgb), 0.15);
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82em;
    letter-spacing: 0.5px;
}

/* "View More" button in card */
.card-text-container {
    position: relative;
}

.view-more-btn {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 0.82em;
    font-weight: 600;
    cursor: pointer;
    padding: 5px 0;
    margin-top: 5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}

.view-more-btn:hover {
    color: var(--color-accent-hover);
}

.view-more-btn em {
    font-size: 0.8em;
    transition: transform 0.2s;
}

.view-more-btn.expanded em {
    transform: rotate(180deg);
}

.full-text {
    margin-top: 5px;
}

/* ===================== ATTRACTION DETAIL PAGE ===================== */

/* â”€â”€ Hero Banner â”€â”€ */
.attraction-detail-hero {
    position: relative;
    min-height: 420px;
    background: linear-gradient(rgba(var(--color-secondary-rgb), 0.55), rgba(var(--color-secondary-rgb), 0.72)), var(--color-nav-bg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 60px 40px 50px;
    font-family: 'Outfit', sans-serif;
}

.attraction-detail-hero-inner {
    max-width: 860px;
    width: 100%;
    text-align: center;
}

.attraction-hero-cats {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.attraction-hero-cat {
    background: rgba(var(--color-primary-rgb), 0.2);
    color: var(--color-primary);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border: 1px solid rgba(var(--color-primary-rgb), 0.35);
}

.attraction-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8em;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 22px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.attraction-detail-meta {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.adm-item {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88em;
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 400;
}

.adm-item i {
    color: var(--color-primary);
    font-size: 0.85em;
}

/* â”€â”€ Article Body â”€â”€ */
.attraction-detail-body {
    background: #fff;
    padding: 0 40px;
}

.attraction-detail-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 50px 0 60px;
}

/* Social share bar */
.attraction-social-share {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    padding: 18px 0 28px;
    border-bottom: 1px solid #eee;
    margin-bottom: 35px;
}

.share-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82em;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    white-space: nowrap;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.82em;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    color: #fff;
}

.share-btn span {
    display: none;
}

@media (min-width: 600px) {
    .share-btn span {
        display: inline;
    }
}

.share-facebook {
    background: #1877f2;
}

.share-facebook:hover {
    background: #145db5;
}

.share-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.share-instagram:hover {
    opacity: 0.85;
}

.share-whatsapp {
    background: #25d366;
}

.share-whatsapp:hover {
    background: #1da851;
}

.share-twitter {
    background: #1a1a1a;
}

.share-twitter:hover {
    background: #333;
}

/* Featured Image */
.attraction-featured-img {
    margin-bottom: 35px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
}

.attraction-featured-img img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.attraction-featured-img img:hover {
    transform: scale(1.02);
}

/* Lead / excerpt quote */
.attraction-lead {
    font-family: 'Playfair Display', serif;
    font-size: 1.15em;
    color: #555;
    font-style: italic;
    line-height: 1.85;
    border-left: 4px solid var(--color-primary);
    padding: 20px 25px;
    margin: 0 0 35px;
    background: #faf8f3;
    border-radius: 0 6px 6px 0;
}

/* Info box */
.attraction-info-box {
    background: #f8f7f4;
    border: 1px solid rgba(var(--color-primary-rgb), 0.2);
    border-left: 5px solid var(--color-primary);
    border-radius: 0 8px 8px 0;
    padding: 28px 30px;
    margin-bottom: 40px;
}

.info-box-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1em;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.15);
}

.info-box-title i {
    margin-right: 6px;
}

.attraction-info-box p {
    margin: 0 0 12px;
    font-size: 0.92em;
    color: #555;
    line-height: 1.7;
    font-family: 'Outfit', sans-serif;
}

.attraction-info-box p:last-child {
    margin-bottom: 0;
}

.attraction-info-box p strong {
    color: #333;
    font-weight: 600;
}

.attraction-info-box p strong i {
    color: var(--color-primary);
    width: 18px;
    text-align: center;
    margin-right: 4px;
}

.attraction-info-box a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.attraction-info-box a:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
}

/* Article text */
.attraction-article-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1em;
    color: #555;
    line-height: 1.85;
    margin-bottom: 40px;
}

.attraction-article-text p,
.attraction-article-text br+br {
    margin-bottom: 18px;
}

/* â”€â”€ Gallery Section â”€â”€ */
.attraction-gallery-section {
    margin-bottom: 40px;
}

.attraction-gallery-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6em;
    color: var(--color-nav-bg);
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-primary);
    font-weight: 700;
}

.attraction-gallery-section h2 i {
    color: var(--color-primary);
    margin-right: 8px;
    font-size: 0.85em;
}

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

.attraction-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    background: #f0ebe6;
}

.attraction-gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.attraction-gallery-item img:hover {
    transform: scale(1.06);
}

/* Category tags */
.attraction-categories {
    padding: 25px 0;
    border-top: 1px solid #eee;
    margin-bottom: 25px;
}

.cat-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82em;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 14px;
}

.cat-label i {
    margin-right: 6px;
}

.cat-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cat-tag {
    display: inline-block;
    background: rgba(var(--color-primary-rgb), 0.1);
    color: var(--color-primary);
    padding: 7px 18px;
    border-radius: 22px;
    font-size: 0.85em;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    border: 1px solid rgba(var(--color-primary-rgb), 0.2);
    transition: all 0.2s ease;
}

.cat-tag:hover {
    background: var(--color-primary);
    color: #fff;
}

/* Back nav */
.attraction-back-nav {
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.attraction-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88em;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.2s;
    padding: 10px 0;
}

.attraction-back-link:hover {
    color: var(--color-accent-hover);
    gap: 12px;
}

/* â”€â”€ Rooms Sidebar Section â”€â”€ */
.attraction-rooms-section {
    background: #f8f7f4;
    padding: 70px 40px;
    font-family: 'Outfit', sans-serif;
}

.attraction-rooms-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.attraction-rooms-heading {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    color: var(--color-nav-bg);
    font-weight: 700;
    margin-bottom: 40px;
}

.attraction-rooms-heading .section-badge {
    display: block;
    margin-bottom: 8px;
}

.attraction-rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.attraction-room-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.attraction-room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.13);
}

.attraction-room-img {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.attraction-room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.attraction-room-card:hover .attraction-room-img img {
    transform: scale(1.06);
}

.attraction-room-price {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: var(--color-primary);
    color: #fff;
    padding: 7px 16px;
    border-radius: 25px;
    font-size: 0.88em;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 3px 12px rgba(var(--color-primary-rgb), 0.35);
}

.attraction-room-price small {
    font-weight: 400;
    font-size: 0.8em;
    opacity: 0.9;
}

.attraction-room-body {
    padding: 18px 20px;
}

.attraction-room-body h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05em;
    color: var(--color-nav-bg);
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
}

/* â”€â”€ Lightbox â”€â”€ */
.attraction-lightbox {
    display: none;
    position: fixed;
    z-index: 50000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    padding: 20px;
    backdrop-filter: blur(6px);
}

.attraction-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lbFadeIn 0.25s ease;
}

@keyframes lbFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.attraction-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.attraction-lightbox-img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    border-radius: 4px;
    object-fit: contain;
}

.attraction-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(var(--color-primary-rgb), 0.35);
    color: #fff;
    border: none;
    font-size: 26px;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
    font-weight: bold;
}

.attraction-lightbox-nav:hover {
    background: rgba(var(--color-primary-rgb), 0.7);
}

.attraction-lb-prev {
    left: 10px;
}

.attraction-lb-next {
    right: 10px;
}

.attraction-lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.4);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.attraction-lightbox-close:hover {
    background: rgba(var(--color-primary-rgb), 0.7);
    border-color: var(--color-primary);
}

.attraction-lightbox-counter {
    text-align: center;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85em;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 2px;
}


/* ===================== TOUR DETAIL PAGE ===================== */

/* â”€â”€ Hero Banner â”€â”€ */
.tour-detail-hero {
    position: relative;
    min-height: 420px;
    background: linear-gradient(rgba(var(--color-secondary-rgb), 0.55), rgba(var(--color-secondary-rgb), 0.72)), var(--color-nav-bg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 60px 40px 50px;
    font-family: 'Outfit', sans-serif;
}

.tour-detail-hero-inner {
    max-width: 860px;
    width: 100%;
    text-align: center;
}

.tour-hero-cats {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.tour-hero-cat {
    background: rgba(var(--color-primary-rgb), 0.2);
    color: var(--color-primary);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border: 1px solid rgba(var(--color-primary-rgb), 0.35);
}

.tour-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8em;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 22px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.tour-detail-meta {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.tdm-item {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88em;
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 400;
}

.tdm-item i {
    color: var(--color-primary);
    font-size: 0.85em;
}

/* â”€â”€ Article Body â”€â”€ */
.tour-detail-body {
    background: #fff;
    padding: 0 40px;
}

.tour-detail-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 50px 0 60px;
}

/* Social share bar â€” reuse .share-* classes from attraction detail */
.tour-social-share {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    padding: 18px 0 28px;
    border-bottom: 1px solid #eee;
    margin-bottom: 35px;
}

/* Featured Image */
.tour-featured-img {
    margin-bottom: 35px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
}

.tour-featured-img img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.tour-featured-img img:hover {
    transform: scale(1.02);
}

/* Lead / excerpt quote */
.tour-lead {
    font-family: 'Playfair Display', serif;
    font-size: 1.15em;
    color: #555;
    font-style: italic;
    line-height: 1.85;
    border-left: 4px solid var(--color-primary);
    padding: 20px 25px;
    margin: 0 0 35px;
    background: #faf8f3;
    border-radius: 0 6px 6px 0;
}

/* Info box */
.tour-info-box {
    background: #f8f7f4;
    border: 1px solid rgba(var(--color-primary-rgb), 0.2);
    border-left: 5px solid var(--color-primary);
    border-radius: 0 8px 8px 0;
    padding: 28px 30px;
    margin-bottom: 40px;
}

.tour-info-box .info-box-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1em;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.15);
}

.tour-info-box .info-box-title i {
    margin-right: 6px;
}

.tour-info-box p {
    margin: 0 0 12px;
    font-size: 0.92em;
    color: #555;
    line-height: 1.7;
    font-family: 'Outfit', sans-serif;
}

.tour-info-box p:last-child {
    margin-bottom: 0;
}

.tour-info-box p strong {
    color: #333;
    font-weight: 600;
}

.tour-info-box p strong i {
    color: var(--color-primary);
    width: 18px;
    text-align: center;
    margin-right: 4px;
}

/* Article text */
.tour-article-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1em;
    color: #555;
    line-height: 1.85;
    margin-bottom: 40px;
}

.tour-article-text p,
.tour-article-text br+br {
    margin-bottom: 18px;
}

/* â”€â”€ Gallery Section â”€â”€ */
.tour-gallery-section {
    margin-bottom: 40px;
}

.tour-gallery-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6em;
    color: var(--color-nav-bg);
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-primary);
    font-weight: 700;
}

.tour-gallery-section h2 i {
    color: var(--color-primary);
    margin-right: 8px;
    font-size: 0.85em;
}

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

.tour-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    background: #f0ebe6;
}

.tour-gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.tour-gallery-item img:hover {
    transform: scale(1.06);
}

/* Category tags â€” reuse .cat-* styles from attraction detail */
.tour-categories {
    padding: 25px 0;
    border-top: 1px solid #eee;
    margin-bottom: 25px;
}

/* Back nav */
.tour-back-nav {
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.tour-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88em;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.2s;
    padding: 10px 0;
}

.tour-back-link:hover {
    color: var(--color-accent-hover);
    gap: 12px;
}

/* â”€â”€ Rooms Sidebar Section â”€â”€ */
.tour-rooms-section {
    background: #f8f7f4;
    padding: 70px 40px;
    font-family: 'Outfit', sans-serif;
}

.tour-rooms-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.tour-rooms-heading {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    color: var(--color-nav-bg);
    font-weight: 700;
    margin-bottom: 40px;
}

.tour-rooms-heading .section-badge {
    display: block;
    margin-bottom: 8px;
}

.tour-rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.tour-room-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.tour-room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.13);
}

.tour-room-img {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.tour-room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.tour-room-card:hover .tour-room-img img {
    transform: scale(1.06);
}

.tour-room-price {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: var(--color-primary);
    color: #fff;
    padding: 7px 16px;
    border-radius: 25px;
    font-size: 0.88em;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 3px 12px rgba(var(--color-primary-rgb), 0.35);
}

.tour-room-price small {
    font-weight: 400;
    font-size: 0.8em;
    opacity: 0.9;
}

.tour-room-body {
    padding: 18px 20px;
}

.tour-room-body h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05em;
    color: var(--color-nav-bg);
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
}

/* â”€â”€ Lightbox â”€â”€ */
.tour-lightbox {
    display: none;
    position: fixed;
    z-index: 50000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    padding: 20px;
    backdrop-filter: blur(6px);
}

.tour-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lbFadeIn 0.25s ease;
}

.tour-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.tour-lightbox-img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    border-radius: 4px;
    object-fit: contain;
}

.tour-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(var(--color-primary-rgb), 0.35);
    color: #fff;
    border: none;
    font-size: 26px;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
    font-weight: bold;
}

.tour-lightbox-nav:hover {
    background: rgba(var(--color-primary-rgb), 0.7);
}

.tour-lb-prev {
    left: 10px;
}

.tour-lb-next {
    right: 10px;
}

.tour-lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.4);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.tour-lightbox-close:hover {
    background: rgba(var(--color-primary-rgb), 0.7);
    border-color: var(--color-primary);
}

.tour-lightbox-counter {
    text-align: center;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85em;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 2px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

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

    .attraction-rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tour-rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .preview-nav {
        padding: 15px 25px;
    }
}

@media (max-width: 768px) {
    .attraction-detail-hero {
        min-height: 320px;
        padding: 40px 20px 35px;
    }

    .attraction-detail-title {
        font-size: 1.8em;
    }

    .attraction-detail-meta {
        gap: 14px;
    }

    .adm-item {
        font-size: 0.8em;
    }

    .attraction-detail-body {
        padding: 0 20px;
    }

    .attraction-detail-content {
        padding: 35px 0 45px;
    }

    .attraction-social-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .attraction-gallery-grid {
        grid-template-columns: 1fr;
    }

    .attraction-rooms-section {
        padding: 50px 20px;
    }

    .attraction-rooms-grid {
        grid-template-columns: 1fr;
    }

    .attraction-lightbox-nav {
        font-size: 20px;
        padding: 8px 12px;
    }

    /* Tour detail responsive */
    .tour-detail-hero {
        min-height: 320px;
        padding: 40px 20px 35px;
    }

    .tour-detail-title {
        font-size: 1.8em;
    }

    .tour-detail-meta {
        gap: 14px;
    }

    .tdm-item {
        font-size: 0.8em;
    }

    .tour-detail-body {
        padding: 0 20px;
    }

    .tour-detail-content {
        padding: 35px 0 45px;
    }

    .tour-social-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .tour-gallery-grid {
        grid-template-columns: 1fr;
    }

    .tour-rooms-section {
        padding: 50px 20px;
    }

    .tour-rooms-grid {
        grid-template-columns: 1fr;
    }

    .tour-lightbox-nav {
        font-size: 20px;
        padding: 8px 12px;
    }
}

@media (max-width: 1067px) {
    .preview-nav {
        padding: 18px 20px;
    }

    .preview-nav-menu.desktop-only {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-section-wrapper {
        padding: 60px 25px;
    }

    .attractions-section-wrapper {
        padding: 60px 25px;
    }

    .attractions-grid {
        grid-template-columns: 1fr;
    }

    .preview-section {
        padding: 60px 25px;
    }

    .cta-section {
        padding: 70px 25px;
    }

    .cta-title {
    position: relative; z-index: 1;
        font-size: 2em;
    }

    .preview-footer {
        padding: 50px 25px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .preview-hero-content h1 {
        font-size: 2em;
    }
}