/* ==========================================================================
   ANARA PEAK DESIGN SYSTEM & MAIN STYLES
   Author: Antigravity
   Theme: Mountain Cloud & Ocean Breeze (Glassmorphism Concept)
   ========================================================================== */

/* 1. Core Variables & Setup */
:root {
    /* Color Palette */
    --bg-fog-light: #F2F4F5;
    --bg-white: #FFFFFF;
    --primary-ocean: #0A2540;
    --primary-forest: #1B4332;
    --accent-amber: #FFB300;
    --accent-amber-glow: rgba(255, 179, 0, 0.35);
    
    /* Text Colors */
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --text-light: #E2E8F0;
    
    /* Fonts */
    --font-heading: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    /* Glassmorphism Presets */
    --glass-bg: rgba(255, 255, 255, 0.45);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px 0 rgba(10, 37, 64, 0.08);
    --glass-blur: blur(14px);
    
    --glass-dark-bg: rgba(10, 37, 64, 0.75);
    --glass-dark-border: rgba(255, 255, 255, 0.1);
    --glass-dark-blur: blur(16px);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset Defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-fog-light);
    color: var(--text-dark);
    line-height: 1.6;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-fog-light);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-ocean);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-amber);
}

/* Base Layout Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 2. Glassmorphism Utilities */
.glass-ui {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 16px;
}

.glass-ui-dark {
    background: var(--glass-dark-bg);
    backdrop-filter: var(--glass-dark-blur);
    -webkit-backdrop-filter: var(--glass-dark-blur);
    border: 1px solid var(--glass-dark-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    border-radius: 16px;
}

/* 3. Ambient Fog Animations */
.fog-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    opacity: 0.75;
}

.fog-layer {
    position: absolute;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(242,244,245,0) 70%);
    filter: blur(40px);
}

.fog-1 {
    top: -20%;
    left: -50%;
    animation: drift-fog-1 60s infinite linear;
}

.fog-2 {
    bottom: -20%;
    left: -30%;
    animation: drift-fog-2 80s infinite linear;
}

@keyframes drift-fog-1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(15%, 10%) scale(1.1); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes drift-fog-2 {
    0% { transform: translate(0, 0) scale(1.1); }
    50% { transform: translate(-10%, -15%) scale(0.95); }
    100% { transform: translate(0, 0) scale(1.1); }
}

/* 4. Typography & Headings */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary-ocean);
}

/* Không viết hoa toàn bộ tiêu đề (ALL CAPS) để giữ nét thẩm mỹ nhã nhặn theo quy tắc */
.section-title {
    font-size: 2.25rem;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    color: var(--primary-ocean);
}

.section-title::after {
    content: '';
    display: block;
    width: 45px;
    height: 3px;
    background: var(--accent-amber);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-header {
    margin-bottom: 50px;
}

.text-center { text-align: center; }
.text-white { color: var(--bg-white) !important; }
.text-light { color: var(--text-light) !important; }
.text-muted { color: var(--text-muted); }
.highlight { color: var(--primary-forest); }
.accent-text { color: var(--accent-amber); }

/* Badges & Buttons */
.accent-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(27, 67, 50, 0.1);
    color: var(--primary-forest);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.badge-amber {
    background: rgba(255, 179, 0, 0.2);
    color: var(--accent-amber);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--primary-ocean);
    color: var(--bg-white);
    border: none;
}

.btn-primary:hover {
    background-color: var(--accent-amber);
    color: var(--primary-ocean);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--glass-bg);
    color: var(--primary-ocean);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background-color: var(--primary-ocean);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-ocean);
    border: 2px solid var(--primary-ocean);
}

.btn-outline:hover {
    background: var(--primary-ocean);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-block {
    display: width;
    width: 100%;
}

.btn-glow {
    box-shadow: 0 4px 15px var(--accent-amber-glow);
}

.btn-glow:hover {
    box-shadow: 0 6px 20px rgba(255, 179, 0, 0.5);
}

/* 5. Header / Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 58px; /* Giảm chiều cao từ 65px xuống 58px giúp menu gọn gàng */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 100;
    transition: var(--transition-smooth);
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.logo a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    flex-shrink: 0; /* Logo không bao giờ bị co lại */
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-ocean);
    letter-spacing: 2px;
    white-space: nowrap; /* Đảm bảo ANARA PEAK luôn nằm trên 1 hàng */
}

.logo-sub {
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--primary-forest);
    letter-spacing: 3px;
    margin-top: -2px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 20px; /* Giảm độ giãn cách từ 35px xuống 20px */
}

.nav-link {
    text-decoration: none;
    color: var(--primary-ocean);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-amber);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-amber);
}

.header-cta .btn {
    padding: 8px 20px;
    font-size: 0.8rem;
    border-radius: 20px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-ocean);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    z-index: 110;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    transition: var(--transition-smooth);
    border-radius: 16px 0 0 16px;
    border-right: none;
}

.mobile-nav-drawer.open {
    right: 0;
}

.close-drawer {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-ocean);
    cursor: pointer;
}

.mobile-nav-drawer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drawer-link {
    text-decoration: none;
    color: var(--primary-ocean);
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.drawer-link:hover {
    color: var(--accent-amber);
    padding-left: 5px;
}

/* 6. Section Style: Home / Hero */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--bg-white);
    padding-top: 80px;
}

.hero-bg-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.active .hero-img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 37, 64, 0.4) 0%, rgba(10, 37, 64, 0.8) 100%);
    z-index: 3;
}

/* Slide Indicators */
.hero-indicators {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.hero-indicators .indicator:hover {
    background: rgba(255, 255, 255, 0.85);
}

.hero-indicators .indicator.active {
    background: var(--accent-amber);
    box-shadow: 0 0 12px var(--accent-amber-glow);
    width: 24px;
    border-radius: 5px;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    padding: 20px;
}

.hero-content .tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--bg-white);
    border-color: rgba(255, 255, 255, 0.2);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8); /* Thêm shadow cho tagline */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 20px;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.85); /* Tăng đổ bóng mạnh mẽ */
}

.hero-title .highlight {
    font-family: var(--font-serif);
    font-weight: 400;
    font-style: italic;
    font-size: 1.8rem;
    display: block;
    color: var(--accent-amber);
    margin-top: 10px;
    letter-spacing: 1px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.85);
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 35px;
    opacity: 0.98;
    line-height: 1.7;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.95); /* Đổ bóng cực rõ nét */
    color: #FFFFFF;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-buttons .btn-secondary {
    color: var(--bg-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    opacity: 0.95;
    color: #FFFFFF;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95);
    font-weight: 600;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* 7. Section Style: About / Check-in */
.about-section {
    padding: 100px 0;
    z-index: 2;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

/* Interactive Viewport (Vòng tròn kính rỗng) */
.viewport-trigger {
    position: absolute;
    top: auto;
    bottom: 25px; /* Đưa xuống sát chân ảnh */
    left: 50%;
    transform: translateX(-50%); /* Chỉ căn ngang */
    cursor: pointer;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 30px rgba(255, 179, 0, 0.7); }
    100% { transform: scale(0.9); opacity: 0.9; box-shadow: 0 0 10px var(--accent-amber-glow); }
}

.trigger-label {
    background: rgba(10, 37, 64, 0.85);
    color: var(--bg-white);
    padding: 10px 22px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid var(--accent-amber); /* Đổi viền sang màu vàng hổ phách */
    box-shadow: 0 4px 15px rgba(229, 142, 38, 0.35);
    backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
    animation: buttonPulse 2.5s infinite; /* Thêm hiệu ứng nhấp nháy phát sáng */
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(229, 142, 38, 0.8);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(229, 142, 38, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(229, 142, 38, 0);
    }
}

.viewport-trigger:hover .trigger-label {
    background: var(--accent-amber);
    color: var(--primary-ocean);
}

.about-info {
    padding: 40px;
}

.about-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.info-text {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(27, 67, 50, 0.1);
    color: var(--primary-forest);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* 8. Interactive Resort Map */
.map-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.interactive-map-wrapper {
    position: relative;
    overflow: hidden;
    padding: 10px;
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
}

.resort-map-img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
}

.map-pin {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-ocean);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 5;
    transition: var(--transition-smooth);
    border: 2px solid var(--bg-white);
}

.map-pin:hover {
    background: var(--accent-amber);
    color: var(--primary-ocean);
    transform: scale(1.2);
}

.pin-pulse {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid var(--accent-amber);
    animation: pin-pulse-key 2s infinite;
    pointer-events: none;
    opacity: 0;
}

@keyframes pin-pulse-key {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* Map Tooltips */
.map-tooltip {
    position: absolute;
    width: 320px;
    padding: 24px;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    transform: translateY(10px) scale(0.95);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(10, 37, 64, 0.15);
}

.map-tooltip.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.tooltip-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.tooltip-header i {
    font-size: 1.25rem;
    color: var(--primary-forest);
}

.tooltip-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.map-tooltip p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 9. Mystical Garden Section */
.garden-section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
    text-align: center;
}

.garden-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: var(--font-serif);
    font-weight: 400;
    font-style: italic;
}

.garden-desc {
    max-width: 750px;
    margin: 0 auto 35px;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* 10. Dining / Cá Tầm Section */
.dining-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.infographic-container {
    margin-bottom: 60px;
}

.info-title {
    font-size: 1.5rem;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.infographic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-amber);
    background: rgba(255, 255, 255, 0.65);
}

.info-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(27, 67, 50, 0.25);
    margin-bottom: 15px;
    line-height: 1;
}

.info-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.dining-intro {
    padding: 45px;
    margin-bottom: 60px;
    border-left: 4px solid var(--primary-forest);
}

.dining-intro h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.dining-intro p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.menu-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.menu-card {
    overflow: hidden;
    transition: var(--transition-smooth);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(10, 37, 64, 0.1);
}

.menu-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.menu-card:hover .menu-img {
    transform: scale(1.05);
}

.menu-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-amber);
    color: var(--primary-ocean);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.menu-info {
    padding: 30px;
}

.menu-info h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.menu-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Signature Drink */
.signature-drink {
    padding: 40px;
    margin-bottom: 60px;
}

.drink-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.drink-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 179, 0, 0.15);
    color: var(--accent-amber);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.drink-info h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.drink-info p {
    color: var(--text-muted);
    line-height: 1.6;
}

.drink-gallery {
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
}

.drink-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dining Gallery */
.dining-gallery-section {
    margin-top: 50px;
}

.gallery-title {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.interior-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    height: 250px;
    overflow: hidden;
    padding: 6px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 6px;
    left: 6px;
    right: 6px;
    padding: 8px 12px;
    background: rgba(10, 37, 64, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 0 0 10px 10px;
    color: var(--bg-white);
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    transition: var(--transition-smooth);
}

/* 11. Stay & Camping Section */
.stay-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.combos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.combo-card {
    padding: 45px 35px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
}

.combo-card:hover {
    transform: translateY(-5px);
}

.combo-card.featured {
    border: 2px solid var(--accent-amber);
    box-shadow: 0 15px 35px rgba(255, 179, 0, 0.15);
    background: rgba(255, 255, 255, 0.65);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-amber);
    color: var(--primary-ocean);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.combo-header {
    text-align: center;
    margin-bottom: 30px;
}

.combo-icon {
    font-size: 2.25rem;
    color: var(--primary-forest);
    margin-bottom: 15px;
}

.combo-card.featured .combo-icon {
    color: var(--accent-amber);
}

.combo-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.combo-price {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--primary-ocean);
}

.combo-price span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.combo-features {
    list-style: none;
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.combo-features li {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.combo-features li i {
    color: var(--primary-forest);
    margin-top: 3px;
}

.combo-card.featured .combo-features li i {
    color: var(--accent-amber);
}

.combo-card .btn {
    margin-top: auto;
}

/* Booking Form */
.booking-section-wrapper {
    padding: 60px;
}

.booking-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

.booking-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.booking-info p {
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.booking-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-forest);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 5px;
    font-weight: 600;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-ocean);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 18px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-ocean);
    background: var(--bg-white);
}

/* Success Overlay */
.success-message {
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: fadeIn 0.5s ease-out;
}

.success-icon {
    font-size: 3.5rem;
    color: var(--primary-forest);
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* 12. Store Section */
.store-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.store-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 45px;
}

.tab-btn {
    padding: 8px 24px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--primary-ocean);
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-ocean);
    color: var(--bg-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-forest);
}

.prod-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(27, 67, 50, 0.1);
    color: var(--primary-forest);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
}

.product-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(10, 37, 64, 0.05);
    color: var(--primary-ocean);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.product-card:hover .product-icon {
    background: var(--primary-ocean);
    color: var(--bg-white);
}

.product-info h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.product-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.price-tag {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-forest);
    margin-top: auto;
}

/* 13. Contact & Maps Section */
.contact-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
}

.map-container {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge-active {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-forest);
    text-transform: uppercase;
}

.map-header h3 {
    font-size: 1.35rem;
}

.visual-map {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 350px;
}

.road-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.visual-map:hover .map-overlay {
    opacity: 1;
}

.map-details {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-details {
    padding: 40px;
}

.contact-details h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.mb-4 { margin-bottom: 24px; }
.mt-5 { margin-top: 35px; }

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    gap: 15px;
}

.info-item i {
    font-size: 1.25rem;
    color: var(--primary-forest);
    margin-top: 4px;
}

.info-item h4 {
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.info-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Reviews Widget */
.reviews-widget {
    padding: 24px;
    border-radius: 12px;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.stars {
    color: var(--accent-amber);
    display: flex;
    gap: 2px;
}

.review-slide p {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.review-author {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* 14. Footer */
.main-footer {
    background: var(--primary-ocean);
    color: var(--text-light);
    padding: 70px 0 30px;
    position: relative;
    z-index: 2;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 500px;
}

.footer-brand h2 {
    color: var(--bg-white);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links h3 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-amber);
    opacity: 1;
    padding-left: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* 15. Panorama 360° Modal */
.panorama-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.8);
    backdrop-filter: blur(10px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.panorama-modal.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.panorama-container {
    width: 90%;
    max-width: 950px;
    padding: 30px;
    position: relative;
}

.close-panorama {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--primary-ocean);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-panorama:hover {
    color: var(--accent-amber);
}

.panorama-header {
    margin-bottom: 20px;
}

.panorama-header h3 {
    font-size: 1.35rem;
}

.panorama-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.panorama-viewer {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: grab;
}

.panorama-viewer:active {
    cursor: grabbing;
}

.panorama-img {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    user-select: none;
    pointer-events: none; /* Dùng JS để điều khiển kéo */
}

/* 16. Scroll Reveal Effects */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE-FIRST)
   ========================================================================== */

/* Large Tablets & Small Desktops (max-width: 1024px) */
@media (max-width: 1024px) {
    .nav-menu, .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .combos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .interior-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Tablets (max-width: 768px) */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.85rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-title .highlight {
        font-size: 1.35rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .infographic-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .drink-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .combos-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-section-wrapper {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .panorama-viewer {
        height: 300px;
    }
    
    .main-header {
        top: 0;
        width: 100%;
        left: 0;
        padding: 0 16px;
    }
}

/* Mobile Phones (max-width: 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .interior-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .about-info {
        padding: 24px;
    }
    
    .map-tooltip {
        width: 280px;
        padding: 16px;
    }
}


/* ==========================================================================
   17. Blog Section Styles
   ========================================================================== */
.blog-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(10, 37, 64, 0.1);
}

.blog-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-date-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(10, 37, 64, 0.8);
    backdrop-filter: blur(5px);
    color: var(--bg-white);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-seo-keyword {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-forest);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.blog-card-title {
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 700;
    color: var(--primary-ocean);
    margin-bottom: 12px;
    /* Giới hạn tiêu đề tối đa 2 dòng */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.1rem;
}

.blog-card-summary {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.8rem;
}

.blog-card .btn {
    margin-top: auto;
}

/* 18. Blog Detail Modal */
.blog-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.8);
    backdrop-filter: blur(10px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.blog-modal.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.blog-modal-container {
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    padding: 40px;
    position: relative;
    overflow-y: auto;
}

.close-blog-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--primary-ocean);
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.close-blog-modal:hover {
    color: var(--accent-amber);
}

.blog-detail-header {
    margin-bottom: 24px;
}

.blog-detail-date,
.blog-detail-keyword {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-right: 20px;
}

.blog-detail-keyword {
    color: var(--primary-forest);
    text-transform: uppercase;
}

.blog-detail-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-ocean);
    margin-top: 10px;
    line-height: 1.3;
}

.blog-detail-img-wrapper {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

.blog-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-body {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.blog-detail-body p {
    margin-bottom: 18px;
}

.blog-detail-body strong {
    color: var(--primary-ocean);
}

.blog-detail-footer {
    border-top: 1px solid rgba(10, 37, 64, 0.1);
    padding-top: 24px;
}

/* Responsive Blog Grid */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-modal-container {
        padding: 24px;
    }
    .blog-detail-title {
        font-size: 1.35rem;
    }
    .blog-detail-img-wrapper {
        height: 220px;
    }
}


/* ==========================================================================
   19. Video Tour Section Styles
   ========================================================================== */
.video-section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%; /* Tỷ lệ khung hình 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .video-section {
        padding: 50px 0;
    }
}


/* ==========================================================================
   20. Mobile Layout Fixes & Tuning
   ========================================================================== */
@media (max-width: 768px) {
    /* Hero Section Mobile Tuning */
    .hero-section {
        min-height: 100vh !important;
        height: auto !important;
        padding-top: 80px !important;
        padding-bottom: 70px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-content {
        padding: 10px 16px !important;
        width: 100% !important;
    }

    .hero-content .tagline {
        font-size: 0.78rem !important;
        padding: 6px 14px !important;
        margin-bottom: 14px !important;
    }

    .hero-title {
        font-size: 1.95rem !important;
        margin-bottom: 12px !important;
        line-height: 1.25 !important;
    }

    .hero-title .highlight {
        font-size: 1.2rem !important;
        margin-top: 6px !important;
        color: #FFD56B !important;
        font-style: italic !important;
        font-weight: 500 !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95) !important;
    }

    .hero-subtitle {
        font-size: 0.88rem !important;
        line-height: 1.65 !important;
        margin-bottom: 22px !important;
        color: #FFFFFF !important;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95) !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
    }

    .hero-buttons .btn {
        width: 100% !important;
        padding: 11px 20px !important;
        font-size: 0.88rem !important;
    }

    .hero-indicators {
        bottom: 50px !important;
    }

    .scroll-indicator {
        bottom: 15px !important;
        font-size: 0.75rem !important;
    }

    /* Main Header Mobile Styling Fix */
    .main-header {
        padding: 0 20px !important;
        height: 60px !important;
        background: rgba(10, 37, 64, 0.95) !important;
        backdrop-filter: blur(16px) !important;
        -webkit-backdrop-filter: blur(16px) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
    }

    .main-header .logo-text {
        color: #ffffff !important;
    }

    .main-header .logo-sub {
        color: var(--accent-amber) !important;
    }

    .main-header .mobile-menu-toggle {
        color: #ffffff !important;
        font-size: 1.35rem !important;
    }

    /* Khắc phục triệt để lỗi khoảng trắng do hiệu ứng cuộn Scroll Reveal */
    .scroll-reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    /* Thu gọn chiều cao giãn cách các section trên di động */
    section {
        padding: 45px 0 !important;
    }
    
    /* Chỉnh sửa Footer thành 1 cột căn giữa chuẩn đẹp trên di động */
    .footer-top {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 25px !important;
        margin-bottom: 30px !important;
    }
    
    .footer-brand {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .footer-brand p {
        font-size: 0.88rem !important;
        line-height: 1.6 !important;
        max-width: 340px;
        margin: 0 auto;
        opacity: 0.85;
    }
    
    .footer-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }

    .footer-links h3 {
        margin-bottom: 14px !important;
    }
    
    .footer-links ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding-left: 0 !important;
        gap: 12px !important;
        width: 100% !important;
    }
    
    .footer-links ul li {
        margin-bottom: 0 !important;
        width: 100% !important;
        text-align: center !important;
    }

    .footer-links ul li a {
        white-space: normal !important;
        display: inline-block !important;
        font-size: 0.95rem !important;
    }

    /* Dining Gallery Interior Grid trên di động */
    .interior-gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .gallery-item {
        height: 160px !important;
    }
}

@media (max-width: 480px) {
    .interior-gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .gallery-item {
        height: 145px !important;
    }
    .gallery-caption {
        font-size: 0.72rem !important;
        padding: 5px 6px !important;
    }
}


/* Tối ưu hóa kích thước các chấm định vị (Map Pin) trên di động */
@media (max-width: 768px) {
    .map-pin {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.85rem !important;
        border-width: 1.5px !important;
    }
    
    /* Thu nhỏ hiệu ứng vòng tròn phát sáng xung quanh để không bị chồng lấp */
    .pin-pulse {
        top: -3px !important;
        left: -3px !important;
        right: -3px !important;
        bottom: -3px !important;
        border-width: 1.5px !important;
    }
}

/* ==========================================================================
   Sturgeon Raw Material Slider
   ========================================================================== */
.sturgeon-slider-container {
    position: relative;
    width: 100%;
    max-width: 960px;
    height: 480px;
    margin: 30px auto 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
}

.sturgeon-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.sturgeon-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.sturgeon-slide.active {
    opacity: 1;
    z-index: 2;
}

.sturgeon-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sturgeon-slide-caption {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    padding: 16px 24px;
    background: rgba(10, 37, 64, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    color: var(--bg-white);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.sturgeon-slide-caption .badge-amber {
    margin-bottom: 0;
    white-space: nowrap;
}

.sturgeon-slide-caption p {
    font-size: 0.95rem;
    color: #E2E8F0;
    margin: 0;
}

.sturgeon-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(10, 37, 64, 0.7);
    color: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
}

.sturgeon-slider-btn:hover {
    background: var(--accent-amber);
    color: var(--primary-ocean);
    transform: translateY(-50%) scale(1.1);
}

.sturgeon-slider-btn.prev-btn { left: 15px; }
.sturgeon-slider-btn.next-btn { right: 15px; }

.sturgeon-indicators {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.sturgeon-indicators .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.sturgeon-indicators .indicator.active {
    background: var(--accent-amber);
    width: 20px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .sturgeon-slider-container {
        height: 320px;
    }
    .sturgeon-slide-caption {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 12px 16px;
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
    .sturgeon-slide-caption p {
        font-size: 0.8rem;
    }
}

/* Blog Article Content Styling */
.blog-detail-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-detail-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-ocean);
    margin: 25px 0 12px;
}

.blog-detail-body p {
    margin-bottom: 16px;
}

.blog-detail-body ul {
    margin: 15px 0 20px 25px;
    line-height: 1.8;
}

.blog-detail-body ul li {
    margin-bottom: 8px;
}

.blog-content-img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    margin: 20px 0;
    box-shadow: 0 8px 25px rgba(10, 37, 64, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.4);
}
