

.fs-13 { font-size: 13px; }
.fs-11-muted { font-size: 11px; color: var(--text-muted); }
.fs-12-muted { font-size: 12px; color: var(--text-muted); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.fw-600 { font-weight: 600; }

.link-dark { color: var(--text-dark); text-decoration: none; }
.link-dark:hover { color: var(--accent); }
.link-muted { color: var(--text-muted); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color .3s; }
.link-muted:hover { color: var(--accent); }

.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-center { display: flex; align-items: center; }
.flex-gap-12 { display: flex; gap: 12px; }
.flex-gap-6 { display: flex; flex-wrap: wrap; gap: 6px; }
.flex-gap-8 { display: flex; gap: 8px; align-items: center; }

.bg-warm { background: var(--bg-warm); }
.bg-white { background: #fff; }
.bg-accent { background: var(--accent); }

.radius-6 { border-radius: 6px; }
.radius-8 { border-radius: 8px; }
.radius-12 { border-radius: 12px; }
.radius-20 { border-radius: 20px; }

.img-cover { width: 100%; height: 100%; object-fit: cover; }
.img-fill { width: 100%; height: 100%; object-fit: cover; }
.thumb-70 { width: 70px; height: 70px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.h-260 { height: 260px; object-fit: cover; }
.h-280 { height: 280px; object-fit: cover; }
.h-170 { height: 170px; object-fit: cover; }
.h-300 { height: 300px; object-fit: cover; }

.tag-sm { background: var(--bg-warm); border: 1px solid var(--border-light); border-radius: 20px; padding: 4px 14px; font-size: 12px; color: var(--text-muted); text-decoration: none; transition: all .3s; }
.tag-sm:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.badge-sm { background: var(--bg-warm); padding: 1px 10px; border-radius: 12px; font-size: 11px; color: var(--text-muted); }

.card-simple { background: #fff; border-radius: 12px; padding: 24px; margin-bottom: 24px; box-shadow: 0 2px 20px rgba(0,0,0,0.04); }
.card-accent { background: #0f2352; display: flex; align-items: center; justify-content: center; font-size: 18px; color: #fff; font-weight: 600; }

.section-title-line { font-family: var(--title-font); font-size: 18px; color: var(--text-dark); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--border-light); }

.list-flush { list-style: none; padding: 0; margin: 0; }

.post-item { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-light); font-size: 13px; }
.post-meta { font-size: 13px; margin-bottom: 3px; line-height: 1.4; }

.btn-whatsapp { background: #25D366; border-color: #25D366; font-size: 13px; font-weight: 600; padding: 9px; border-radius: 6px; }
.btn-accent { background: var(--accent); border-color: var(--accent); font-size: 13px; font-weight: 600; padding: 9px; border-radius: 6px; }

.icon-accent-sm { color: var(--accent); font-size: 14px; }
.icon-accent-xs { color: var(--accent); font-size: 10px; }

.blog-spec-row { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-light); font-size: 13px; }

.faq-spec-item { display: flex; gap: 12px; margin-bottom: 14px; }

.sidebar-card { background: #fff; border-radius: 12px; padding: 24px; margin-bottom: 24px; box-shadow: 0 2px 20px rgba(0,0,0,0.04); }

.author-avatar { object-fit: contain; padding: 8px; background: var(--bg-warm); }

.fs-7 { font-size: 7px; }
.fs-10 { font-size: 10px; }
.h-40 { height: 40px; }
.h-250 { height: 250px; }
.h-320 { height: 320px; object-fit: cover; }
.h-360 { height: 360px; object-fit: cover; }
.h-400 { height: 400px; object-fit: cover; }
.card-cream { background: #e0d6cc; display: flex; align-items: center; justify-content: center; font-size: 18px; color: #fff; font-weight: 600; }

.preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background-color: #0b132b !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.preloader::after {
    content: '';
    width: 120px;
    height: 120px;
    border: 3px solid rgba(255, 255, 255, 0.05);
    border-top-color: #c5a880 !important;
    border-radius: 50%;
    position: absolute;
    animation: preloader-spin 1.2s linear infinite;
}
.preloader-logo {
    max-width: 90px;
    height: auto;
    animation: preloader-pulse 2s ease-in-out infinite;
    z-index: 2;
}
@keyframes preloader-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes preloader-pulse {
    0%, 100% { transform: scale(0.95); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
}

.reveal, .fade-up, .fade-in, .scale-in {
    opacity: 0;
    will-change: transform, opacity;
}
.reveal {
    transform: translateY(40px);
    transition: opacity .8s cubic-bezier(.4, 0, .2, 1), transform .8s cubic-bezier(.4, 0, .2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-up {
    transform: translateY(40px);
    transition: opacity .8s cubic-bezier(.4, 0, .2, 1), transform .8s cubic-bezier(.4, 0, .2, 1);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in {
    transition: opacity .8s ease;
}
.fade-in.visible {
    opacity: 1;
}
.scale-in {
    transform: scale(.92);
    transition: opacity .8s cubic-bezier(.4, 0, .2, 1), transform .8s cubic-bezier(.4, 0, .2, 1);
}
.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}


*,*::before,*::after{box-sizing:border-box}
:root{
    --accent:#0f2352;--accent-dark:#09163a;--accent-light:#1a3a7a;
    --accent-rgb:15,35,82;
    --bg-warm:#f8f7f4;--text-dark:#111;--text-muted:#6b7280;--border-light:#e5e7eb;
    --font-sans:'Inter',system-ui,-apple-system,sans-serif;
    --font-serif:'Playfair Display',Georgia,serif;
}

.lim-header{position:fixed;top:0;left:0;right:0;z-index:1000;background:transparent;transition:all .5s cubic-bezier(.4,0,.2,1);padding:20px 0}
.lim-header.scrolled{background:rgba(255,255,255,0.92);backdrop-filter:blur(20px) saturate(180%);box-shadow:0 1px 40px rgba(0,0,0,0.06);padding:10px 0}
.lim-header .header-inner{display:flex;align-items:center;justify-content:space-between}
.lim-header .logo img{height:100px;transition:all .5s}
.lim-header.scrolled .logo img{height:60px}
.lim-header .logo-light{display:block}
.lim-header .logo-dark{display:none}
.lim-header.scrolled .logo-light{display:none}
.lim-header.scrolled .logo-dark{display:block}
.lim-header .header-nav{display:flex;align-items:center;gap:28px}
.lim-header .header-nav a{color:rgba(255,255,255,0.85);font-size:13px;font-weight:500;letter-spacing:.3px;transition:color .3s;position:relative;text-decoration:none}
.lim-header .header-nav a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:1.5px;background:var(--accent);transition:width .4s cubic-bezier(.4,0,.2,1)}
.lim-header .header-nav a:hover::after{width:100%}
.lim-header .header-nav a:hover{color:#fff}
.lim-header.scrolled .header-nav a{color:var(--text-dark)}
.lim-header.scrolled .header-nav a:hover{color:var(--accent)}
.lim-header .header-actions{display:flex;align-items:center;gap:12px}
.lim-header .contact-chip{display:flex;align-items:center;gap:5px;color:rgba(255,255,255,0.75);font-size:12px;text-decoration:none;transition:color .3s}
.lim-header .contact-chip i{color:var(--accent);font-size:11px}
.lim-header.scrolled .contact-chip{color:var(--text-muted)}
.lim-header .lang-select{background:transparent;border:1px solid rgba(255,255,255,0.25);color:rgba(255,255,255,0.85);padding:3px 8px;border-radius:4px;font-size:11px;cursor:pointer;font-family:var(--font-sans)}
.lim-header.scrolled .lang-select{border-color:var(--border-light);color:var(--text-muted)}
.lim-header .btn-contact,.lim-header .btn-reserve{background:var(--accent);color:#fff;padding:10px 24px;border-radius:8px;font-size:12px;font-weight:600;transition:all .3s;text-decoration:none;white-space:nowrap;letter-spacing:.3px;display:inline-flex;align-items:center;gap:6px}
.lim-header .btn-contact:hover,.lim-header .btn-reserve:hover{background:var(--accent-light);transform:translateY(-1px);box-shadow:0 4px 15px rgba(var(--accent-rgb),.3)}
.lim-header .mobile-toggle{display:none;color:#fff;font-size:20px;cursor:pointer;align-items:center;justify-content:center}
.lim-header.scrolled .mobile-toggle{color:var(--text-dark)}
@media(max-width:991px){
    .lim-header .header-nav{display:none;position:fixed;top:140px;left:0;right:0;background:#fff;flex-direction:column;padding:20px;gap:16px;box-shadow:0 10px 40px rgba(0,0,0,0.1);z-index:9999;transition:top .3s}
    .lim-header.scrolled .header-nav{top:80px}
    .lim-header .header-nav.d-flex{display:flex!important}
    .lim-header .header-nav a{color:var(--text-dark)!important;font-size:15px}
    .lim-header .header-nav a::after{display:none}
    .lim-header .header-actions .contact-chip,.lim-header .header-actions .lang-select{display:none}
    .lim-header .mobile-toggle{display:flex;align-items:center;justify-content:center;width:34px;height:34px}
    .lim-header .btn-contact,.lim-header .btn-reserve{padding:7px 14px;font-size:11px;display:inline-flex;align-items:center;gap:4px}
}

.hero-section{position:relative;min-height:220px;display:flex;align-items:flex-end;overflow:hidden;background:linear-gradient(160deg,#0a0a1a 0%,#0f2352 40%,#1a3a7a 100%)}
.hero-section .hero-overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(to top,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.1) 50%,transparent 100%)}
.hero-section .hero-content{position:relative;z-index:2;width:100%;padding:180px 0 28px}
.hero-section .breadcrumb{display:inline-flex;align-items:center;gap:5px;font-size:11px;color:rgba(255,255,255,0.35);margin-bottom:10px;text-decoration:none}
.hero-section .breadcrumb a{color:rgba(255,255,255,0.45);text-decoration:none;transition:color .3s}
.hero-section .breadcrumb a:hover{color:#fff}
.hero-section .breadcrumb span{color:rgba(255,255,255,0.7)}
.hero-section .hero-title{font-family:var(--font-serif);font-size:30px;color:#fff;font-weight:400;margin:0;line-height:1.2}
.hero-section .hero-badge{font-size:11px;color:rgba(255,255,255,0.5);padding:3px 12px;border-radius:20px;background:rgba(255,255,255,0.08)}

.lim-section-title { text-align:center;margin-bottom:48px; }
.lim-section-title .sub { color:var(--accent);font-size:12px;text-transform:uppercase;letter-spacing:2px;font-weight:600;margin-bottom:8px;display:block; }
.lim-section-title h2 { font-family:var(--title-font,"Playfair Display",serif);font-size:40px;color:var(--text-dark);margin-bottom:12px; }
.lim-section-title p { color:var(--text-muted);font-size:15px;max-width:560px;margin:0 auto;line-height:1.7; }
.lim-specs-grid { display:grid;grid-template-columns:1fr 1fr;gap:12px;padding:0;list-style:none; }
.lim-specs-grid li { font-size:14px;color:var(--text-muted);display:flex;align-items:center;gap:8px; }
.lim-specs-grid li i { color:var(--accent);width:18px;font-size:13px; }
.lim-features-list { display:flex;flex-wrap:wrap;gap:8px;padding:0;list-style:none; }
.lim-features-list li { background:var(--bg-warm);border:1px solid var(--border-light);border-radius:20px;padding:5px 14px;font-size:12px;color:var(--text-muted);display:inline-flex;align-items:center;gap:5px; }
.lim-features-list li i { color:var(--accent);font-size:11px; }
.lim-amenity-icon { text-align:center;padding:24px 12px;border-radius:12px;background:#fff;border:1px solid var(--border-light);transition:all .3s;height:100%; }
.lim-amenity-icon:hover { border-color:var(--accent);box-shadow:0 4px 20px rgba(15,35,82,0.10); }
.lim-amenity-icon .icon-wrap { width:50px;height:50px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:var(--bg-warm);margin:0 auto 8px;font-size:20px;color:var(--accent); }
.lim-amenity-icon h6 { font-size:12px;margin-bottom:0;font-weight:500;color:var(--text-dark); }
.lim-faq .accordion-item { border:1px solid var(--border-light);border-radius:10px;margin-bottom:8px;overflow:hidden; }
.lim-faq .accordion-item .accordion-button { padding:14px 20px;font-size:14px;font-weight:500;color:var(--text-dark);background:#fafafa;box-shadow:none; }
.lim-faq .accordion-item .accordion-button:not(.collapsed) { background:var(--accent);color:#fff; }
.lim-faq .accordion-item .accordion-body { padding:16px 20px;font-size:13px;color:var(--text-muted);line-height:1.7; }
.lim-room-cta { background:linear-gradient(135deg,var(--accent) 0%,var(--accent-dark) 100%);border-radius:16px;padding:48px;text-align:center;color:#fff; }
.lim-room-cta h3 { font-family:var(--title-font,"Playfair Display",serif);font-size:32px;margin-bottom:10px; }
.lim-room-cta p { font-size:15px;opacity:1;max-width:540px;margin:0 auto 20px; }
.lim-room-cta a { display:inline-block;background:rgba(255,255,255,0.12);color:#fff!important;padding:12px 36px;border-radius:8px;font-weight:700;font-size:14px;text-decoration:none;transition:all .3s;border:1px solid rgba(255,255,255,0.25); }
.lim-room-cta a:hover { background:rgba(255,255,255,0.2);border-color:rgba(255,255,255,0.4);color:#fff!important; }
.lim-footer { background:var(--bg-warm);color:var(--text-muted);border-top:1px solid var(--border-light); }
.lim-footer .widget-title { color:var(--text-dark);font-family:var(--title-font,"Playfair Display",serif);font-size:18px;margin-bottom:18px; }
.lim-footer a { color:var(--text-muted);transition:all .3s;text-decoration:none; }
.lim-footer a:hover { color:var(--accent); }
.lim-footer .links li { margin-bottom:5px; }
.lim-footer .links li a { font-size:13px; }
.lim-footer .contact-list .list-info { font-size:13px;margin-bottom:8px;display:flex;align-items:flex-start;gap:8px; }
.lim-footer .contact-list .list-info i { color:var(--accent);margin-top:3px; }
.lim-footer .footer-bottom { border-top:1px solid var(--border-light);padding:18px 0; }
.lim-footer .footer-bottom .copyright { font-size:12px; }
.lim-footer .social a { width:36px;height:36px;border-radius:50%;border:1px solid #ddd;display:inline-flex;align-items:center;justify-content:center;color:#bbb;transition:all .3s;margin-right:5px; }
.lim-footer .social a:hover { background:var(--accent);border-color:var(--accent);color:#fff; }
.lim-sticky-mobile { position:fixed;bottom:0;left:0;right:0;z-index:999;background:#fff;box-shadow:0 -2px 20px rgba(0,0,0,0.08);padding:8px 0;display:none; }
@media (max-width:991px) { .lim-sticky-mobile { display:block; }.lim-page-hero { min-height:40vh; }.lim-page-hero .hero-content h1 { font-size:34px; }.lim-section-title h2 { font-size:30px; }.lim-room-cta { padding:30px 20px; }.lim-room-cta h3 { font-size:24px; } }
@media (max-width:767px) { .lim-page-hero .hero-content h1 { font-size:26px; }.lim-page-hero .hero-content p { font-size:14px; } }
.fade-in { opacity:0;transform:translateY(30px);transition:opacity .7s ease,transform .7s ease; }
.fade-in.visible { opacity:1;transform:translateY(0); }
.price-badge { display:inline-block;background:var(--accent);color:#fff;padding:8px 20px;border-radius:8px;font-size:18px;font-weight:700; }
.room-badge { display:inline-block;background:rgba(255,255,255,0.92);color:var(--text-dark);padding:4px 14px;border-radius:20px;font-size:12px;font-weight:600;backdrop-filter:blur(6px); }
.room-gallery-img { height:500px;object-fit:cover;border-radius:12px; }
@media (max-width:767px) { .room-gallery-img { height:300px; } }
.detail-divider { width:40px;height:3px;background:var(--accent);margin:16px 0;border-radius:2px; }

*,
*::before,
*::after {
    box-sizing: border-box
}

:root {
    --accent: #0f2352;
    --accent-dark: #09163a;
    --accent-light: #1a3a7a;
    --accent-rgb: 15, 35, 82;
    --bg-warm: #f8f7f4;
    --text-dark: #111;
    --text-muted: #6b7280;
    --border-light: #e5e7eb;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

.lim-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all .5s cubic-bezier(.4, 0, .2, 1);
    padding: 20px 0
}

.lim-header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 40px rgba(0, 0, 0, 0.06);
    padding: 10px 0
}

.lim-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.lim-header .logo img {
    height: 120px;
    transition: all .5s
}

.lim-header.scrolled .logo img {
    height: 80px
}

.lim-header .logo-light {
    display: block
}

.lim-header .logo-dark {
    display: none
}

.lim-header.scrolled .logo-light {
    display: none
}

.lim-header.scrolled .logo-dark {
    display: block
}

.lim-header .header-nav {
    display: flex;
    align-items: center;
    gap: 28px
}

.lim-header .header-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .3px;
    transition: color .3s;
    position: relative;
    text-decoration: none
}

.lim-header .header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width .4s cubic-bezier(.4, 0, .2, 1)
}

.lim-header .header-nav a:hover::after {
    width: 100%
}

.lim-header .header-nav a:hover {
    color: #fff
}

.lim-header.scrolled .header-nav a {
    color: var(--text-dark)
}

.lim-header.scrolled .header-nav a:hover {
    color: var(--accent)
}

.lim-header .header-actions {
    display: flex;
    align-items: center;
    gap: 12px
}

.lim-header .contact-chip {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    text-decoration: none;
    transition: color .3s
}

.lim-header .contact-chip i {
    color: var(--accent);
    font-size: 11px
}

.lim-header.scrolled .contact-chip {
    color: var(--text-muted)
}

.lim-header .lang-select {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    font-family: var(--font-sans)
}

.lim-header.scrolled .lang-select {
    border-color: var(--border-light);
    color: var(--text-muted)
}

.lim-header .btn-contact,
.lim-header .btn-reserve {
    background: var(--accent);
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    transition: all .3s;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: .3px;
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.lim-header .btn-contact:hover,
.lim-header .btn-reserve:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(var(--accent-rgb), .3)
}

.lim-header .mobile-toggle {
    display: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    align-items: center;
    justify-content: center
}

.lim-header.scrolled .mobile-toggle {
    color: var(--text-dark)
}

@media(max-width:991px) {
    .lim-header .header-nav {
        display: none;
        position: fixed;
        top: 140px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        z-index: 9999;
        transition: top .3s
    }

    .lim-header.scrolled .header-nav {
        top: 80px
    }

    .lim-header .header-nav.d-flex {
        display: flex !important
    }

    .lim-header .header-nav a {
        color: var(--text-dark) !important;
        font-size: 15px
    }

    .lim-header .header-nav a::after {
        display: none
    }

    .lim-header .header-actions .contact-chip,
    .lim-header .header-actions .lang-select {
        display: none
    }

    .lim-header .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
    }

    .lim-header .btn-contact,
    .lim-header .btn-reserve {
        padding: 7px 14px;
        font-size: 11px;
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }
}

.hero-section {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: linear-gradient(160deg, #0a0a1a 0%, #0f2352 40%, #1a3a7a 100%)
}

.hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%)
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 180px 0 28px
}

.hero-section .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 10px;
    text-decoration: none
}

.hero-section .breadcrumb a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color .3s
}

.hero-section .breadcrumb a:hover {
    color: #fff
}

.hero-section .breadcrumb span {
    color: rgba(255, 255, 255, 0.7)
}

.hero-section .hero-title {
    font-family: var(--font-serif);
    font-size: 30px;
    color: #fff;
    font-weight: 400;
    margin: 0;
    line-height: 1.2
}

.lim-section-title {
    text-align: center;
    margin-bottom: 48px
}

.lim-section-title .sub {
    color: var(--accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block
}

.lim-section-title h2 {
    font-family: var(--title-font);
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 12px
}

.lim-section-title p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7
}

.lim-stat {
    text-align: center;
    padding: 28px 12px
}

.lim-stat .stat-number {
    font-family: var(--title-font);
    font-size: 42px;
    font-weight: 600;
    color: var(--accent);
    line-height: 1.2;
    margin-bottom: 4px
}

.lim-stat .stat-label {
    font-size: 13px;
    color: var(--text-muted)
}

.lim-service-icon {
    text-align: center;
    padding: 32px 16px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--border-light);
    transition: all .3s;
    height: 100%
}

.lim-service-icon:hover {
    border-color: var(--accent);
    box-shadow: 0 6px 28px rgba(15, 35, 82, 0.10);
    transform: translateY(-4px)
}

.lim-service-icon .s-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-warm);
    margin: 0 auto 14px;
    font-size: 26px;
    color: var(--accent)
}

.lim-service-icon h5 {
    font-family: var(--title-font);
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--text-dark)
}

.lim-service-icon p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6
}

.lim-value-card {
    padding: 28px 24px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all .4s;
    height: 100%;
    border-left: 3px solid var(--accent)
}

.lim-value-card:hover {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.10);
    transform: translateY(-4px)
}

.lim-value-card .v-icon {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 10px
}

.lim-value-card h5 {
    font-family: var(--title-font);
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--text-dark)
}

.lim-value-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0
}

.lim-review {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.05);
    transition: all .4s;
    height: 100%;
    padding: 28px 24px
}

.lim-review:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
    transform: translateY(-6px)
}

.lim-review .rv-stars {
    color: #f59e0b;
    font-size: 13px;
    margin-bottom: 10px
}

.lim-review .rv-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic
}

.lim-review .rv-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.lim-review .rv-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover
}

.lim-review .rv-author .rv-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0
}

.lim-review .rv-author .rv-title {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 0
}

.lim-review-slider {
    margin-left: 0;
    margin-right: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 6px
}

.lim-review-slider::-webkit-scrollbar {
    display: none
}

.lim-review-slider > .lim-review-col {
    scroll-snap-align: start;
    height: auto;
    display: flex
}

.lim-review-slider .lim-review {
    width: 100%
}

.lim-review-head {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 18px
}

.lim-review-head .lim-rev-prev,
.lim-review-head .lim-rev-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s
}

.lim-review-head .lim-rev-prev:hover,
.lim-review-head .lim-rev-next:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff
}

.lim-cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 16px;
    padding: 52px;
    text-align: center;
    color: #fff
}

.lim-cta h3 {
    font-family: var(--title-font);
    font-size: 34px;
    margin-bottom: 10px
}

.lim-cta p {
    font-size: 15px;
    opacity: 1;
    max-width: 550px;
    margin: 0 auto 22px
}

.lim-cta a {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: #fff !important;
    padding: 12px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all .3s;
    border: 1px solid rgba(255, 255, 255, 0.25)
}

.lim-cta a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff !important
}

.lim-footer {
    background: var(--bg-warm);
    color: var(--text-muted);
    border-top: 1px solid var(--border-light)
}

.lim-footer .widget-title {
    color: var(--text-dark);
    font-family: var(--title-font);
    font-size: 18px;
    margin-bottom: 18px
}

.lim-footer a {
    color: var(--text-muted);
    transition: all .3s;
    text-decoration: none
}

.lim-footer a:hover {
    color: var(--accent)
}

.lim-footer .links li {
    margin-bottom: 5px
}

.lim-footer .links li a {
    font-size: 13px
}

.lim-footer .contact-list .list-info {
    font-size: 13px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px
}

.lim-footer .contact-list .list-info i {
    color: var(--accent);
    margin-top: 3px
}

.lim-footer .footer-bottom {
    border-top: 1px solid var(--border-light);
    padding: 18px 0
}

.lim-footer .footer-bottom .copyright {
    font-size: 12px
}

.lim-footer .social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    transition: all .3s;
    margin-right: 5px
}

.lim-footer .social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff
}

.lim-sticky-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    display: none
}

@media(max-width:991px) {
    .lim-sticky-mobile {
        display: block
    }

    .lim-section-title h2 {
        font-size: 30px
    }

    .lim-cta {
        padding: 32px 20px
    }

    .lim-cta h3 {
        font-size: 24px
    }
}

@media(max-width:767px) {
    .lim-stat .stat-number {
        font-size: 30px
    }
}


*,*::before,*::after{box-sizing:border-box}
:root{
    --accent:#0f2352;--accent-dark:#09163a;--accent-light:#1a3a7a;
    --accent-rgb:15,35,82;
    --bg-warm:#f8f7f4;--text-dark:#111;--text-muted:#6b7280;--border-light:#e5e7eb;
    --font-sans:'Inter',system-ui,-apple-system,sans-serif;
    --font-serif:'Playfair Display',Georgia,serif;
}

.lim-header{position:fixed;top:0;left:0;right:0;z-index:1000;background:transparent;transition:all .5s cubic-bezier(.4,0,.2,1);padding:20px 0}
.lim-header.scrolled{background:rgba(255,255,255,0.92);backdrop-filter:blur(20px) saturate(180%);box-shadow:0 1px 40px rgba(0,0,0,0.06);padding:10px 0}
.lim-header .header-inner{display:flex;align-items:center;justify-content:space-between}
.lim-header .logo img{height:100px;transition:all .5s}
.lim-header.scrolled .logo img{height:60px}
.lim-header .logo-light{display:block}
.lim-header .logo-dark{display:none}
.lim-header.scrolled .logo-light{display:none}
.lim-header.scrolled .logo-dark{display:block}
.lim-header .header-nav{display:flex;align-items:center;gap:28px}
.lim-header .header-nav a{color:rgba(255,255,255,0.85);font-size:13px;font-weight:500;letter-spacing:.3px;transition:color .3s;position:relative;text-decoration:none}
.lim-header .header-nav a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:1.5px;background:var(--accent);transition:width .4s cubic-bezier(.4,0,.2,1)}
.lim-header .header-nav a:hover::after{width:100%}
.lim-header .header-nav a:hover{color:#fff}
.lim-header.scrolled .header-nav a{color:var(--text-dark)}
.lim-header.scrolled .header-nav a:hover{color:var(--accent)}
.lim-header .header-actions{display:flex;align-items:center;gap:12px}
.lim-header .contact-chip{display:flex;align-items:center;gap:5px;color:rgba(255,255,255,0.75);font-size:12px;text-decoration:none;transition:color .3s}
.lim-header .contact-chip i{color:var(--accent);font-size:11px}
.lim-header.scrolled .contact-chip{color:var(--text-muted)}
.lim-header .lang-select{background:transparent;border:1px solid rgba(255,255,255,0.25);color:rgba(255,255,255,0.85);padding:3px 8px;border-radius:4px;font-size:11px;cursor:pointer;font-family:var(--font-sans)}
.lim-header.scrolled .lang-select{border-color:var(--border-light);color:var(--text-muted)}
.lim-header .btn-contact,.lim-header .btn-reserve{background:var(--accent);color:#fff;padding:10px 24px;border-radius:8px;font-size:12px;font-weight:600;transition:all .3s;text-decoration:none;white-space:nowrap;letter-spacing:.3px;display:inline-flex;align-items:center;gap:6px}
.lim-header .btn-contact:hover,.lim-header .btn-reserve:hover{background:var(--accent-light);transform:translateY(-1px);box-shadow:0 4px 15px rgba(var(--accent-rgb),.3)}
.lim-header .mobile-toggle{display:none;color:#fff;font-size:20px;cursor:pointer;align-items:center;justify-content:center}
.lim-header.scrolled .mobile-toggle{color:var(--text-dark)}
@media(max-width:991px){
    .lim-header .header-nav{display:none;position:fixed;top:140px;left:0;right:0;background:#fff;flex-direction:column;padding:20px;gap:16px;box-shadow:0 10px 40px rgba(0,0,0,0.1);z-index:9999;transition:top .3s}
    .lim-header.scrolled .header-nav{top:80px}
    .lim-header .header-nav.d-flex{display:flex!important}
    .lim-header .header-nav a{color:var(--text-dark)!important;font-size:15px}
    .lim-header .header-nav a::after{display:none}
    .lim-header .header-actions .contact-chip,.lim-header .header-actions .lang-select{display:none}
    .lim-header .mobile-toggle{display:flex;align-items:center;justify-content:center;width:34px;height:34px}
    .lim-header .btn-contact,.lim-header .btn-reserve{padding:7px 14px;font-size:11px;display:inline-flex;align-items:center;gap:4px}
}

.hero-section{position:relative;min-height:220px;display:flex;align-items:flex-end;overflow:hidden;background:linear-gradient(160deg,#0a0a1a 0%,#0f2352 40%,#1a3a7a 100%)}
.hero-section .hero-overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(to top,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.1) 50%,transparent 100%)}
.hero-section .hero-content{position:relative;z-index:2;width:100%;padding:180px 0 28px}
.hero-section .breadcrumb{display:inline-flex;align-items:center;gap:5px;font-size:11px;color:rgba(255,255,255,0.35);margin-bottom:10px;text-decoration:none}
.hero-section .breadcrumb a{color:rgba(255,255,255,0.45);text-decoration:none;transition:color .3s}
.hero-section .breadcrumb a:hover{color:#fff}
.hero-section .breadcrumb span{color:rgba(255,255,255,0.7)}
.hero-section .hero-title{font-family:var(--font-serif);font-size:30px;color:#fff;font-weight:400;margin:0;line-height:1.2}
.hero-section .hero-badge{font-size:11px;color:rgba(255,255,255,0.5);padding:3px 12px;border-radius:20px;background:rgba(255,255,255,0.08)}

.lim-section-title { text-align: center; margin-bottom: 48px; }
.lim-section-title .sub { color: var(--accent); font-size: 12px; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; margin-bottom: 8px; display: block; }
.lim-section-title h2 { font-family: var(--title-font); font-size: 40px; color: var(--text-dark); margin-bottom: 12px; }
.lim-section-title p { color: var(--text-muted); font-size: 15px; max-width: 560px; margin: 0 auto; line-height: 1.7; }
@media (max-width: 991px) { .lim-section-title h2 { font-size: 30px; } }
.lim-blog-card { border-radius: 12px; overflow: hidden; background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,0.04); transition: all .4s; height: 100%; }
.lim-blog-card:hover { box-shadow: 0 6px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.lim-blog-card .blog-img { height: 200px; overflow: hidden; position: relative; }
.lim-blog-card .blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.lim-blog-card:hover .blog-img img { transform: scale(1.08); }
.lim-blog-card .blog-img .category-badge { position: absolute; top: 12px; left: 12px; background: var(--accent); color: #fff; padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; z-index: 2; }
.lim-blog-card .blog-body { padding: 18px 22px 22px; }
.lim-blog-card .blog-body .date { font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
.lim-blog-card .blog-body h5 { font-family: var(--title-font); font-size: 17px; margin-bottom: 8px; }
.lim-blog-card .blog-body h5 a { color: var(--text-dark); text-decoration: none; transition: color .3s; }
.lim-blog-card .blog-body h5 a:hover { color: var(--accent); }
.lim-blog-card .blog-body p { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.7; }
.lim-blog-card .blog-body .read-more { color: var(--accent); font-weight: 600; font-size: 12px; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap .3s; }
.lim-blog-card .blog-body .read-more:hover { gap: 10px; }
.lim-footer { background: var(--bg-warm); color: var(--text-muted); border-top: 1px solid var(--border-light); }
.lim-footer .widget-title { color: var(--text-dark); font-family: var(--title-font); font-size: 18px; margin-bottom: 18px; }
.lim-footer a { color: var(--text-muted); transition: all .3s; text-decoration: none; }
.lim-footer a:hover { color: var(--accent); }
.lim-footer .links li { margin-bottom: 5px; }
.lim-footer .links li a { font-size: 13px; }
.lim-footer .contact-list .list-info { font-size: 13px; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }
.lim-footer .contact-list .list-info i { color: var(--accent); margin-top: 3px; }
.lim-footer .footer-bottom { border-top: 1px solid var(--border-light); padding: 18px 0; }
.lim-footer .footer-bottom .copyright { font-size: 12px; }
.lim-footer .social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid #ddd; display: inline-flex; align-items: center; justify-content: center; color: #bbb; transition: all .3s; margin-right: 5px; }
.lim-footer .social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.lim-sticky-mobile { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: #fff; box-shadow: 0 -2px 20px rgba(0,0,0,0.08); padding: 8px 0; display: none; }
@media (max-width: 991px) { .lim-sticky-mobile { display: block; } }
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.lim-blog-content .featured-img { border-radius: 16px; overflow: hidden; margin-bottom: 30px; }
.lim-blog-content .featured-img img { width: 100%; height: 420px; object-fit: cover; }
.lim-blog-content .post-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border-light); }
.lim-blog-content .post-meta .meta-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted); }
.lim-blog-content .post-meta .meta-item i { color: var(--accent); }
.lim-blog-content .post-meta .meta-item .category-pill { background: var(--accent); color: #fff; padding: 3px 12px; border-radius: 20px; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.lim-blog-content .post-body h2 { font-family: var(--title-font); font-size: 26px; color: var(--text-dark); margin: 32px 0 14px; }
.lim-blog-content .post-body p { font-size: 15px; color: var(--text-muted); line-height: 1.9; margin-bottom: 16px; }
.lim-blog-content .share-section { margin-top: 36px; padding: 24px 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.lim-blog-content .share-section .share-label { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.lim-blog-content .share-section .share-buttons { display: flex; gap: 8px; }
.lim-blog-content .share-section .share-buttons a { width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 15px; transition: all .3s; text-decoration: none; }
.lim-blog-content .share-section .share-buttons a:hover { opacity: .85; transform: translateY(-2px); }
.lim-blog-content .share-section .share-buttons .fb { background: #3b5998; }
.lim-blog-content .share-section .share-buttons .tw { background: #1da1f2; }
.lim-blog-content .share-section .share-buttons .wa { background: #25D366; }
.lim-blog-content .share-section .share-buttons .em { background: var(--accent); }
.lim-blog-content .author-box { display: flex; align-items: center; gap: 16px; background: #fff; border-radius: 12px; padding: 20px 24px; margin-top: 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.lim-blog-content .author-box .author-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; background: var(--bg-warm); }
.lim-blog-content .author-box .author-info h6 { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.lim-blog-content .author-box .author-info span { font-size: 12px; color: var(--text-muted); }
.lim-comments { margin-top: 40px; }
.lim-comments h3 { font-family: var(--title-font); font-size: 22px; color: var(--text-dark); margin-bottom: 24px; }
.lim-comments .comment-item { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--border-light); }
.lim-comments .comment-item:last-child { border-bottom: none; }
.lim-comments .comment-item .c-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--bg-warm); flex-shrink: 0; }
.lim-comments .comment-item .c-body .c-name { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.lim-comments .comment-item .c-body .c-date { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; }
.lim-comments .comment-item .c-body .c-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
@media (max-width: 767px) { .lim-blog-content .featured-img img { height: 220px; } .lim-blog-content .post-body h2 { font-size: 22px; } }

*,*::before,*::after{box-sizing:border-box}
:root{
    --accent:#0f2352;--accent-dark:#09163a;--accent-light:#1a3a7a;
    --accent-rgb:15,35,82;
    --bg-warm:#f8f7f4;--text-dark:#111;--text-muted:#6b7280;--border-light:#e5e7eb;
    --font-sans:'Inter',system-ui,-apple-system,sans-serif;
    --font-serif:'Playfair Display',Georgia,serif;
}

.lim-header{position:fixed;top:0;left:0;right:0;z-index:1000;background:transparent;transition:all .5s cubic-bezier(.4,0,.2,1);padding:20px 0}
.lim-header.scrolled{background:rgba(255,255,255,0.92);backdrop-filter:blur(20px) saturate(180%);box-shadow:0 1px 40px rgba(0,0,0,0.06);padding:10px 0}
.lim-header .header-inner{display:flex;align-items:center;justify-content:space-between}
.lim-header .logo img{height:100px;transition:all .5s}
.lim-header.scrolled .logo img{height:60px}
.lim-header .logo-light{display:block}
.lim-header .logo-dark{display:none}
.lim-header.scrolled .logo-light{display:none}
.lim-header.scrolled .logo-dark{display:block}
.lim-header .header-nav{display:flex;align-items:center;gap:28px}
.lim-header .header-nav a{color:rgba(255,255,255,0.85);font-size:13px;font-weight:500;letter-spacing:.3px;transition:color .3s;position:relative;text-decoration:none}
.lim-header .header-nav a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:1.5px;background:var(--accent);transition:width .4s cubic-bezier(.4,0,.2,1)}
.lim-header .header-nav a:hover::after{width:100%}
.lim-header .header-nav a:hover{color:#fff}
.lim-header.scrolled .header-nav a{color:var(--text-dark)}
.lim-header.scrolled .header-nav a:hover{color:var(--accent)}
.lim-header .header-actions{display:flex;align-items:center;gap:12px}
.lim-header .contact-chip{display:flex;align-items:center;gap:5px;color:rgba(255,255,255,0.75);font-size:12px;text-decoration:none;transition:color .3s}
.lim-header .contact-chip i{color:var(--accent);font-size:11px}
.lim-header.scrolled .contact-chip{color:var(--text-muted)}
.lim-header .lang-select{background:transparent;border:1px solid rgba(255,255,255,0.25);color:rgba(255,255,255,0.85);padding:3px 8px;border-radius:4px;font-size:11px;cursor:pointer;font-family:var(--font-sans)}
.lim-header.scrolled .lang-select{border-color:var(--border-light);color:var(--text-muted)}
.lim-header .btn-contact,.lim-header .btn-reserve{background:var(--accent);color:#fff;padding:10px 24px;border-radius:8px;font-size:12px;font-weight:600;transition:all .3s;text-decoration:none;white-space:nowrap;letter-spacing:.3px;display:inline-flex;align-items:center;gap:6px}
.lim-header .btn-contact:hover,.lim-header .btn-reserve:hover{background:var(--accent-light);transform:translateY(-1px);box-shadow:0 4px 15px rgba(var(--accent-rgb),.3)}
.lim-header .mobile-toggle{display:none;color:#fff;font-size:20px;cursor:pointer;align-items:center;justify-content:center}
.lim-header.scrolled .mobile-toggle{color:var(--text-dark)}
@media(max-width:991px){
    .lim-header .header-nav{display:none;position:fixed;top:140px;left:0;right:0;background:#fff;flex-direction:column;padding:20px;gap:16px;box-shadow:0 10px 40px rgba(0,0,0,0.1);z-index:9999;transition:top .3s}
    .lim-header.scrolled .header-nav{top:80px}
    .lim-header .header-nav.d-flex{display:flex!important}
    .lim-header .header-nav a{color:var(--text-dark)!important;font-size:15px}
    .lim-header .header-nav a::after{display:none}
    .lim-header .header-actions .contact-chip,.lim-header .header-actions .lang-select{display:none}
    .lim-header .mobile-toggle{display:flex;align-items:center;justify-content:center;width:34px;height:34px}
    .lim-header .btn-contact,.lim-header .btn-reserve{padding:7px 14px;font-size:11px;display:inline-flex;align-items:center;gap:4px}
}

.hero-section{position:relative;min-height:220px;display:flex;align-items:flex-end;overflow:hidden;background:linear-gradient(160deg,#0a0a1a 0%,#0f2352 40%,#1a3a7a 100%)}
.hero-section .hero-overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(to top,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.1) 50%,transparent 100%)}
.hero-section .hero-content{position:relative;z-index:2;width:100%;padding:180px 0 28px}
.hero-section .breadcrumb{display:inline-flex;align-items:center;gap:5px;font-size:11px;color:rgba(255,255,255,0.35);margin-bottom:10px;text-decoration:none}
.hero-section .breadcrumb a{color:rgba(255,255,255,0.45);text-decoration:none;transition:color .3s}
.hero-section .breadcrumb a:hover{color:#fff}
.hero-section .breadcrumb span{color:rgba(255,255,255,0.7)}
.hero-section .hero-title{font-family:var(--font-serif);font-size:30px;color:#fff;font-weight:400;margin:0;line-height:1.2}
.hero-section .hero-badge{font-size:11px;color:rgba(255,255,255,0.5);padding:3px 12px;border-radius:20px;background:rgba(255,255,255,0.08)}

.lim-section-title { text-align: center; margin-bottom: 48px; }
.lim-section-title .sub {
    color: var(--accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}
.lim-section-title h2 {
    font-family: var(--title-font);
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.lim-section-title p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
@media (max-width: 991px) { .lim-section-title h2 { font-size: 30px; } }

.lim-blog-card {
    border-radius: 12px; overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    transition: all .4s;
    height: 100%;
}
.lim-blog-card:hover { box-shadow: 0 6px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.lim-blog-card .blog-img { height: 200px; overflow: hidden; position: relative; }
.lim-blog-card .blog-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s;
}
.lim-blog-card:hover .blog-img img { transform: scale(1.08); }
.lim-blog-card .blog-img .category-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--accent); color: #fff;
    padding: 4px 12px; border-radius: 20px;
    font-size: 11px; font-weight: 600;
    z-index: 2;
}
.lim-blog-card .blog-body { padding: 18px 22px 22px; }
.lim-blog-card .blog-body .date { font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
.lim-blog-card .blog-body h5 {
    font-family: var(--title-font);
    font-size: 17px;
    margin-bottom: 8px;
}
.lim-blog-card .blog-body h5 a { color: var(--text-dark); text-decoration: none; transition: color .3s; }
.lim-blog-card .blog-body h5 a:hover { color: var(--accent); }
.lim-blog-card .blog-body p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.7;
}
.lim-blog-card .blog-body .read-more {
    color: var(--accent); font-weight: 600; font-size: 12px;
    text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
    transition: gap .3s;
}
.lim-blog-card .blog-body .read-more:hover { gap: 10px; }

.lim-footer { background: var(--bg-warm); color: var(--text-muted); border-top: 1px solid var(--border-light); }
.lim-footer .widget-title { color: var(--text-dark); font-family: var(--title-font); font-size: 18px; margin-bottom: 18px; }
.lim-footer a { color: var(--text-muted); transition: all .3s; text-decoration: none; }
.lim-footer a:hover { color: var(--accent); }
.lim-footer .links li { margin-bottom: 5px; }
.lim-footer .links li a { font-size: 13px; }
.lim-footer .contact-list .list-info { font-size: 13px; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }
.lim-footer .contact-list .list-info i { color: var(--accent); margin-top: 3px; }
.lim-footer .footer-bottom { border-top: 1px solid var(--border-light); padding: 18px 0; }
.lim-footer .footer-bottom .copyright { font-size: 12px; }
.lim-footer .social a {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid #ddd;
    display: inline-flex; align-items: center; justify-content: center;
    color: #bbb; transition: all .3s; margin-right: 5px;
}
.lim-footer .social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.lim-sticky-mobile {
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.08);
    padding: 8px 0;
    display: none;
}
@media (max-width: 991px) { .lim-sticky-mobile { display: block; } }

.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.lim-blog-content .featured-img {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
}
.lim-blog-content .featured-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.lim-blog-content .post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}
.lim-blog-content .post-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
}
.lim-blog-content .post-meta .meta-item i { color: var(--accent); }
.lim-blog-content .post-meta .meta-item .category-pill {
    background: var(--accent);
    color: #fff;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.lim-blog-content .post-body h2 {
    font-family: var(--title-font);
    font-size: 26px;
    color: var(--text-dark);
    margin: 32px 0 14px;
}
.lim-blog-content .post-body p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 16px;
}
.lim-blog-content .share-section {
    margin-top: 36px;
    padding: 24px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}
.lim-blog-content .share-section .share-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}
.lim-blog-content .share-section .share-buttons { display: flex; gap: 8px; }
.lim-blog-content .share-section .share-buttons a {
    width: 38px; height: 38px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-size: 15px;
    transition: all .3s; text-decoration: none;
}
.lim-blog-content .share-section .share-buttons a:hover { opacity: .85; transform: translateY(-2px); }
.lim-blog-content .share-section .share-buttons .fb { background: #3b5998; }
.lim-blog-content .share-section .share-buttons .tw { background: #1da1f2; }
.lim-blog-content .share-section .share-buttons .wa { background: #25D366; }
.lim-blog-content .share-section .share-buttons .em { background: var(--accent); }

.lim-blog-content .author-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.lim-blog-content .author-box .author-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; background: var(--bg-warm); }
.lim-blog-content .author-box .author-info h6 { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.lim-blog-content .author-box .author-info span { font-size: 12px; color: var(--text-muted); }

.lim-comments { margin-top: 40px; }
.lim-comments h3 { font-family: var(--title-font); font-size: 22px; color: var(--text-dark); margin-bottom: 24px; }
.lim-comments .comment-item { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--border-light); }
.lim-comments .comment-item:last-child { border-bottom: none; }
.lim-comments .comment-item .c-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--bg-warm); flex-shrink: 0; }
.lim-comments .comment-item .c-body .c-name { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.lim-comments .comment-item .c-body .c-date { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; }
.lim-comments .comment-item .c-body .c-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
@media (max-width: 767px) {
    .lim-blog-content .featured-img img { height: 220px; }
    .lim-blog-content .post-body h2 { font-size: 22px; }
}

*,*::before,*::after{box-sizing:border-box}
:root{
    --accent:#0f2352;--accent-dark:#09163a;--accent-light:#1a3a7a;
    --accent-rgb:15,35,82;
    --bg-warm:#f8f7f4;--text-dark:#111;--text-muted:#6b7280;--border-light:#e5e7eb;
    --font-sans:'Inter',system-ui,-apple-system,sans-serif;
    --font-serif:'Playfair Display',Georgia,serif;
}

.lim-header{position:fixed;top:0;left:0;right:0;z-index:1000;background:transparent;transition:all .5s cubic-bezier(.4,0,.2,1);padding:20px 0}
.lim-header.scrolled{background:rgba(255,255,255,0.92);backdrop-filter:blur(20px) saturate(180%);box-shadow:0 1px 40px rgba(0,0,0,0.06);padding:10px 0}
.lim-header .header-inner{display:flex;align-items:center;justify-content:space-between}
.lim-header .logo img{height:100px;transition:all .5s}
.lim-header.scrolled .logo img{height:60px}
.lim-header .logo-light{display:block}
.lim-header .logo-dark{display:none}
.lim-header.scrolled .logo-light{display:none}
.lim-header.scrolled .logo-dark{display:block}
.lim-header .header-nav{display:flex;align-items:center;gap:28px}
.lim-header .header-nav a{color:rgba(255,255,255,0.85);font-size:13px;font-weight:500;letter-spacing:.3px;transition:color .3s;position:relative;text-decoration:none}
.lim-header .header-nav a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:1.5px;background:var(--accent);transition:width .4s cubic-bezier(.4,0,.2,1)}
.lim-header .header-nav a:hover::after{width:100%}
.lim-header .header-nav a:hover{color:#fff}
.lim-header.scrolled .header-nav a{color:var(--text-dark)}
.lim-header.scrolled .header-nav a:hover{color:var(--accent)}
.lim-header .header-actions{display:flex;align-items:center;gap:12px}
.lim-header .contact-chip{display:flex;align-items:center;gap:5px;color:rgba(255,255,255,0.75);font-size:12px;text-decoration:none;transition:color .3s}
.lim-header .contact-chip i{color:var(--accent);font-size:11px}
.lim-header.scrolled .contact-chip{color:var(--text-muted)}
.lim-header .lang-select{background:transparent;border:1px solid rgba(255,255,255,0.25);color:rgba(255,255,255,0.85);padding:3px 8px;border-radius:4px;font-size:11px;cursor:pointer;font-family:var(--font-sans)}
.lim-header.scrolled .lang-select{border-color:var(--border-light);color:var(--text-muted)}
.lim-header .btn-contact,.lim-header .btn-reserve{background:var(--accent);color:#fff;padding:10px 24px;border-radius:8px;font-size:12px;font-weight:600;transition:all .3s;text-decoration:none;white-space:nowrap;letter-spacing:.3px;display:inline-flex;align-items:center;gap:6px}
.lim-header .btn-contact:hover,.lim-header .btn-reserve:hover{background:var(--accent-light);transform:translateY(-1px);box-shadow:0 4px 15px rgba(var(--accent-rgb),.3)}
.lim-header .mobile-toggle{display:none;color:#fff;font-size:20px;cursor:pointer;align-items:center;justify-content:center}
.lim-header.scrolled .mobile-toggle{color:var(--text-dark)}
@media(max-width:991px){
    .lim-header .header-nav{display:none;position:fixed;top:140px;left:0;right:0;background:#fff;flex-direction:column;padding:20px;gap:16px;box-shadow:0 10px 40px rgba(0,0,0,0.1);z-index:9999;transition:top .3s}
    .lim-header.scrolled .header-nav{top:80px}
    .lim-header .header-nav.d-flex{display:flex!important}
    .lim-header .header-nav a{color:var(--text-dark)!important;font-size:15px}
    .lim-header .header-nav a::after{display:none}
    .lim-header .header-actions .contact-chip,.lim-header .header-actions .lang-select{display:none}
    .lim-header .mobile-toggle{display:flex;align-items:center;justify-content:center;width:34px;height:34px}
    .lim-header .btn-contact,.lim-header .btn-reserve{padding:7px 14px;font-size:11px;display:inline-flex;align-items:center;gap:4px}
}

.hero-section{position:relative;min-height:220px;display:flex;align-items:flex-end;overflow:hidden;background:linear-gradient(160deg,#0a0a1a 0%,#0f2352 40%,#1a3a7a 100%)}
.hero-section .hero-overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(to top,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.1) 50%,transparent 100%)}
.hero-section .hero-content{position:relative;z-index:2;width:100%;padding:180px 0 28px}
.hero-section .breadcrumb{display:inline-flex;align-items:center;gap:5px;font-size:11px;color:rgba(255,255,255,0.35);margin-bottom:10px;text-decoration:none}
.hero-section .breadcrumb a{color:rgba(255,255,255,0.45);text-decoration:none;transition:color .3s}
.hero-section .breadcrumb a:hover{color:#fff}
.hero-section .breadcrumb span{color:rgba(255,255,255,0.7)}
.hero-section .hero-title{font-family:var(--font-serif);font-size:30px;color:#fff;font-weight:400;margin:0;line-height:1.2}
.hero-section .hero-badge{font-size:11px;color:rgba(255,255,255,0.5);padding:3px 12px;border-radius:20px;background:rgba(255,255,255,0.08)}

.lim-section-title { text-align: center; margin-bottom: 48px; }
.lim-section-title .sub {
    color: var(--accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}
.lim-section-title h2 {
    font-family: var(--title-font);
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.lim-section-title p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
@media (max-width: 991px) { .lim-section-title h2 { font-size: 30px; } }

.lim-blog-card {
    border-radius: 12px; overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    transition: all .4s;
    height: 100%;
}
.lim-blog-card:hover { box-shadow: 0 6px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.lim-blog-card .blog-img { height: 200px; overflow: hidden; position: relative; }
.lim-blog-card .blog-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s;
}
.lim-blog-card:hover .blog-img img { transform: scale(1.08); }
.lim-blog-card .blog-img .category-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--accent); color: #fff;
    padding: 4px 12px; border-radius: 20px;
    font-size: 11px; font-weight: 600;
    z-index: 2;
}
.lim-blog-card .blog-body { padding: 18px 22px 22px; }
.lim-blog-card .blog-body .date { font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
.lim-blog-card .blog-body h5 {
    font-family: var(--title-font);
    font-size: 17px;
    margin-bottom: 8px;
}
.lim-blog-card .blog-body h5 a { color: var(--text-dark); text-decoration: none; transition: color .3s; }
.lim-blog-card .blog-body h5 a:hover { color: var(--accent); }
.lim-blog-card .blog-body p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.7;
}
.lim-blog-card .blog-body .read-more {
    color: var(--accent); font-weight: 600; font-size: 12px;
    text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
    transition: gap .3s;
}
.lim-blog-card .blog-body .read-more:hover { gap: 10px; }

.lim-footer { background: var(--bg-warm); color: var(--text-muted); border-top: 1px solid var(--border-light); }
.lim-footer .widget-title { color: var(--text-dark); font-family: var(--title-font); font-size: 18px; margin-bottom: 18px; }
.lim-footer a { color: var(--text-muted); transition: all .3s; text-decoration: none; }
.lim-footer a:hover { color: var(--accent); }
.lim-footer .links li { margin-bottom: 5px; }
.lim-footer .links li a { font-size: 13px; }
.lim-footer .contact-list .list-info { font-size: 13px; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }
.lim-footer .contact-list .list-info i { color: var(--accent); margin-top: 3px; }
.lim-footer .footer-bottom { border-top: 1px solid var(--border-light); padding: 18px 0; }
.lim-footer .footer-bottom .copyright { font-size: 12px; }
.lim-footer .social a {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid #ddd;
    display: inline-flex; align-items: center; justify-content: center;
    color: #bbb; transition: all .3s; margin-right: 5px;
}
.lim-footer .social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.lim-sticky-mobile {
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.08);
    padding: 8px 0;
    display: none;
}
@media (max-width: 991px) { .lim-sticky-mobile { display: block; } }

.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.lim-blog-content .featured-img {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
}
.lim-blog-content .featured-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.lim-blog-content .post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}
.lim-blog-content .post-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
}
.lim-blog-content .post-meta .meta-item i { color: var(--accent); }
.lim-blog-content .post-meta .meta-item .category-pill {
    background: var(--accent);
    color: #fff;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.lim-blog-content .post-body h2 {
    font-family: var(--title-font);
    font-size: 26px;
    color: var(--text-dark);
    margin: 32px 0 14px;
}
.lim-blog-content .post-body p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 16px;
}
.lim-blog-content .post-body ul {
    margin: 12px 0 20px;
    padding-left: 20px;
}
.lim-blog-content .post-body ul li {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 6px;
}
.lim-blog-content .post-body ul li::marker { color: var(--accent); }
.lim-blog-content .share-section {
    margin-top: 36px;
    padding: 24px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}
.lim-blog-content .share-section .share-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}
.lim-blog-content .share-section .share-buttons { display: flex; gap: 8px; }
.lim-blog-content .share-section .share-buttons a {
    width: 38px; height: 38px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-size: 15px;
    transition: all .3s; text-decoration: none;
}
.lim-blog-content .share-section .share-buttons a:hover { opacity: .85; transform: translateY(-2px); }
.lim-blog-content .share-section .share-buttons .fb { background: #3b5998; }
.lim-blog-content .share-section .share-buttons .tw { background: #1da1f2; }
.lim-blog-content .share-section .share-buttons .wa { background: #25D366; }
.lim-blog-content .share-section .share-buttons .em { background: var(--accent); }

.lim-blog-content .author-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.lim-blog-content .author-box .author-avatar {
    width: 56px; height: 56px; border-radius: 50%;
    object-fit: cover; background: var(--bg-warm);
}
.lim-blog-content .author-box .author-info h6 {
    font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px;
}
.lim-blog-content .author-box .author-info span { font-size: 12px; color: var(--text-muted); }

.lim-comments { margin-top: 40px; }
.lim-comments h3 {
    font-family: var(--title-font);
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 24px;
}
.lim-comments .comment-item {
    display: flex; gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-light);
}
.lim-comments .comment-item:last-child { border-bottom: none; }
.lim-comments .comment-item .c-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    object-fit: cover; background: var(--bg-warm);
    flex-shrink: 0;
}
.lim-comments .comment-item .c-body .c-name { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.lim-comments .comment-item .c-body .c-date { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; }
.lim-comments .comment-item .c-body .c-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
@media (max-width: 767px) {
    .lim-blog-content .featured-img img { height: 220px; }
    .lim-blog-content .post-body h2 { font-size: 22px; }
}

*,
*::before,
*::after {
    box-sizing: border-box
}

:root {
    --accent: #0f2352;
    --accent-dark: #09163a;
    --accent-light: #1a3a7a;
    --accent-rgb: 15, 35, 82;
    --bg-warm: #f8f7f4;
    --text-dark: #111;
    --text-muted: #6b7280;
    --border-light: #e5e7eb;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}


.lim-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all .5s cubic-bezier(.4, 0, .2, 1);
    padding: 20px 0
}

.lim-header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 40px rgba(0, 0, 0, 0.06);
    padding: 10px 0
}

.lim-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.lim-header .logo img {
    height: 120px;
    transition: all .5s
}

.lim-header.scrolled .logo img {
    height: 80px
}

.lim-header .logo-light {
    display: block
}

.lim-header .logo-dark {
    display: none
}

.lim-header.scrolled .logo-light {
    display: none
}

.lim-header.scrolled .logo-dark {
    display: block
}

.lim-header .header-nav {
    display: flex;
    align-items: center;
    gap: 28px
}

.lim-header .header-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .3px;
    transition: color .3s;
    position: relative;
    text-decoration: none
}

.lim-header .header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width .4s cubic-bezier(.4, 0, .2, 1)
}

.lim-header .header-nav a:hover::after {
    width: 100%
}

.lim-header .header-nav a:hover {
    color: #fff
}

.lim-header.scrolled .header-nav a {
    color: var(--text-dark)
}

.lim-header.scrolled .header-nav a:hover {
    color: var(--accent)
}

.lim-header .header-actions {
    display: flex;
    align-items: center;
    gap: 12px
}

.lim-header .contact-chip {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    text-decoration: none;
    transition: color .3s
}

.lim-header .contact-chip i {
    color: var(--accent);
    font-size: 11px
}

.lim-header.scrolled .contact-chip {
    color: var(--text-muted)
}

.lim-header .lang-select {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    font-family: var(--font-sans)
}

.lim-header.scrolled .lang-select {
    border-color: var(--border-light);
    color: var(--text-muted)
}

.lim-header .btn-contact,
.lim-header .btn-reserve {
    background: var(--accent);
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    transition: all .3s;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: .3px;
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.lim-header .btn-contact:hover,
.lim-header .btn-reserve:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(var(--accent-rgb), .3)
}

.lim-header .mobile-toggle {
    display: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    align-items: center;
    justify-content: center
}

.lim-header.scrolled .mobile-toggle {
    color: var(--text-dark)
}

@media(max-width:991px) {
    .lim-header .header-nav {
        display: none;
        position: fixed;
        top: 140px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        z-index: 9999;
        transition: top .3s
    }

    .lim-header.scrolled .header-nav {
        top: 80px
    }

    .lim-header .header-nav.d-flex {
        display: flex !important
    }

    .lim-header .header-nav a {
        color: var(--text-dark) !important;
        font-size: 15px
    }

    .lim-header .header-nav a::after {
        display: none
    }

    .lim-header .header-actions .contact-chip,
    .lim-header .header-actions .lang-select {
        display: none
    }

    .lim-header .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
    }

    .lim-header .btn-contact,
    .lim-header .btn-reserve {
        padding: 7px 14px;
        font-size: 11px;
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }
}


.hero-section {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: linear-gradient(160deg, #0a0a1a 0%, #0f2352 40%, #1a3a7a 100%)
}

.hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%)
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 180px 0 28px
}

.hero-section .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 10px;
    text-decoration: none
}

.hero-section .breadcrumb a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color .3s
}

.hero-section .breadcrumb a:hover {
    color: #fff
}

.hero-section .breadcrumb span {
    color: rgba(255, 255, 255, 0.7)
}

.hero-section .hero-title {
    font-family: var(--font-serif);
    font-size: 30px;
    color: #fff;
    font-weight: 400;
    margin: 0;
    line-height: 1.2
}

.hero-section .hero-badge {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    padding: 3px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08)
}


.lim-section-title {
    text-align: center;
    margin-bottom: 48px;
}

.lim-section-title .sub {
    color: var(--accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.lim-section-title h2 {
    font-family: var(--title-font);
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.lim-section-title p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}


.lim-room-full {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.05);
    transition: all .4s;
    height: 100%;
}

.lim-room-full:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
    transform: translateY(-6px);
}

.lim-room-full .card-img {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.lim-room-full .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
}

.lim-room-full:hover .card-img img {
    transform: scale(1.08);
}

.lim-room-full .card-img .price-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--accent);
    color: #fff;
    padding: 6px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
}

.lim-room-full .card-img .room-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

.lim-room-full .card-body {
    padding: 24px 24px 26px;
}

.lim-room-full .card-body h4 {
    font-family: var(--title-font);
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.lim-room-full .card-body .specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 14px;
    padding: 0;
    list-style: none;
}

.lim-room-full .card-body .specs li {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.lim-room-full .card-body .specs li i {
    color: var(--accent);
    width: 16px;
    font-size: 12px;
}

.lim-room-full .card-body .features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
    padding: 0;
    list-style: none;
}

.lim-room-full .card-body .features li {
    background: var(--bg-warm);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 3px 11px;
    font-size: 11px;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.lim-room-full .card-body .features li i {
    color: var(--accent);
    font-size: 10px;
}

.lim-room-full .card-body .actions {
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.lim-room-full .card-body .actions a {
    display: block;
    text-align: center;
    padding: 10px 0;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all .3s;
    text-decoration: none;
    background: var(--accent);
    color: #fff;
}

.lim-room-full .card-body .actions a:hover {
    background: var(--accent-dark);
}


.lim-service-icon {
    text-align: center;
    padding: 28px 12px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--border-light);
    transition: all .3s;
    height: 100%;
}

.lim-service-icon:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(15, 35, 82, 0.10);
}

.lim-service-icon .icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-warm);
    margin: 0 auto 10px;
    font-size: 22px;
    color: var(--accent);
}

.lim-service-icon h6 {
    font-size: 13px;
    margin-bottom: 0;
    font-weight: 500;
    color: var(--text-dark);
}


.lim-faq .accordion-item {
    border: 1px solid var(--border-light);
    border-radius: 10px;
    margin-bottom: 8px;
    overflow: hidden;
}

.lim-faq .accordion-item .accordion-button {
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    background: #fafafa;
    box-shadow: none;
}

.lim-faq .accordion-item .accordion-button:not(.collapsed) {
    background: var(--accent);
    color: #fff;
}

.lim-faq .accordion-item .accordion-body {
    padding: 16px 20px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}


.lim-room-cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    color: #fff;
}

.lim-room-cta h3 {
    font-family: var(--title-font);
    font-size: 32px;
    margin-bottom: 10px;
}

.lim-room-cta p {
    font-size: 15px;
    opacity: 1;
    max-width: 540px;
    margin: 0 auto 20px;
}

.lim-room-cta a {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: #fff !important;
    padding: 12px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all .3s;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.lim-room-cta a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff !important;
}


.lim-footer {
    background: var(--bg-warm);
    color: var(--text-muted);
    border-top: 1px solid var(--border-light);
}

.lim-footer .widget-title {
    color: var(--text-dark);
    font-family: var(--title-font);
    font-size: 18px;
    margin-bottom: 18px;
}

.lim-footer a {
    color: var(--text-muted);
    transition: all .3s;
    text-decoration: none;
}

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

.lim-footer .links li {
    margin-bottom: 5px;
}

.lim-footer .links li a {
    font-size: 13px;
}

.lim-footer .contact-list .list-info {
    font-size: 13px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.lim-footer .contact-list .list-info i {
    color: var(--accent);
    margin-top: 3px;
}

.lim-footer .footer-bottom {
    border-top: 1px solid var(--border-light);
    padding: 18px 0;
}

.lim-footer .footer-bottom .copyright {
    font-size: 12px;
}

.lim-footer .social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    transition: all .3s;
    margin-right: 5px;
}

.lim-footer .social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}


.lim-sticky-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    display: none;
}

@media (max-width: 991px) {
    .lim-sticky-mobile {
        display: block;
    }

    .lim-page-banner {
        min-height: 40vh;
    }

    .lim-page-banner .banner-content h1 {
        font-size: 34px;
    }

    .lim-section-title h2 {
        font-size: 30px;
    }

    .lim-room-cta {
        padding: 30px 20px;
    }

    .lim-room-cta h3 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .lim-page-banner .banner-content h1 {
        font-size: 26px;
    }

    .lim-page-banner .banner-content p {
        font-size: 14px;
    }
}


*,
*::before,
*::after {
    box-sizing: border-box
}

:root {
    --accent: #0f2352;
    --accent-dark: #09163a;
    --accent-light: #1a3a7a;
    --accent-rgb: 15, 35, 82;
    --bg-warm: #f8f7f4;
    --text-dark: #111;
    --text-muted: #6b7280;
    --border-light: #e5e7eb;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}


.lim-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all .5s cubic-bezier(.4, 0, .2, 1);
    padding: 20px 0
}

.lim-header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 40px rgba(0, 0, 0, 0.06);
    padding: 10px 0
}

.lim-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.lim-header .logo img {
    height: 120px;
    transition: all .5s
}

.lim-header.scrolled .logo img {
    height: 80px
}

.lim-header .logo-light {
    display: block
}

.lim-header .logo-dark {
    display: none
}

.lim-header.scrolled .logo-light {
    display: none
}

.lim-header.scrolled .logo-dark {
    display: block
}

.lim-header .header-nav {
    display: flex;
    align-items: center;
    gap: 28px
}

.lim-header .header-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .3px;
    transition: color .3s;
    position: relative;
    text-decoration: none
}

.lim-header .header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width .4s cubic-bezier(.4, 0, .2, 1)
}

.lim-header .header-nav a:hover::after {
    width: 100%
}

.lim-header .header-nav a:hover {
    color: #fff
}

.lim-header.scrolled .header-nav a {
    color: var(--text-dark)
}

.lim-header.scrolled .header-nav a:hover {
    color: var(--accent)
}

.lim-header .header-actions {
    display: flex;
    align-items: center;
    gap: 12px
}

.lim-header .contact-chip {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    text-decoration: none;
    transition: color .3s
}

.lim-header .contact-chip i {
    color: var(--accent);
    font-size: 11px
}

.lim-header.scrolled .contact-chip {
    color: var(--text-muted)
}

.lim-header .lang-select {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    font-family: var(--font-sans)
}

.lim-header.scrolled .lang-select {
    border-color: var(--border-light);
    color: var(--text-muted)
}

.lim-header .btn-contact,
.lim-header .btn-reserve {
    background: var(--accent);
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    transition: all .3s;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: .3px;
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.lim-header .btn-contact:hover,
.lim-header .btn-reserve:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(var(--accent-rgb), .3)
}

.lim-header .mobile-toggle {
    display: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    align-items: center;
    justify-content: center
}

.lim-header.scrolled .mobile-toggle {
    color: var(--text-dark)
}

@media(max-width:991px) {
    .lim-header .header-nav {
        display: none;
        position: fixed;
        top: 140px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        z-index: 9999;
        transition: top .3s
    }

    .lim-header.scrolled .header-nav {
        top: 80px
    }

    .lim-header .header-nav.d-flex {
        display: flex !important
    }

    .lim-header .header-nav a {
        color: var(--text-dark) !important;
        font-size: 15px
    }

    .lim-header .header-nav a::after {
        display: none
    }

    .lim-header .header-actions .contact-chip,
    .lim-header .header-actions .lang-select {
        display: none
    }

    .lim-header .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
    }

    .lim-header .btn-contact,
    .lim-header .btn-reserve {
        padding: 7px 14px;
        font-size: 11px;
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }
}


.lim-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.lim-hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lim-hero .hero-bg img,
.lim-hero .hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lim-hero .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.lim-hero .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 140px 0 60px;
}

.lim-hero .hero-content .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: .5px;
    margin-bottom: 20px;
}

.lim-hero .hero-content h1 {
    font-family: var(--title-font);
    font-size: 68px;
    color: #fff;
    line-height: 1.12;
    font-weight: 400;
    margin-bottom: 16px;
    max-width: 620px;
}

.lim-hero .hero-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 480px;
    margin-bottom: 28px;
    line-height: 1.7;
}

.lim-hero .hero-content .hero-guarantees {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 28px;
}

.lim-hero .hero-content .hero-guarantees span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
}

.lim-hero .hero-content .hero-guarantees span i {
    color: var(--accent);
    font-size: 16px;
}

.lim-hero .hero-content .hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lim-hero .hero-content .hero-features span {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.lim-hero .hero-content .hero-features span i {
    color: var(--accent);
    font-size: 11px;
}

.lim-hero .hero-booking {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.125);
    border-radius: 24px;
    padding: 32px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s;
}

.lim-hero .hero-booking::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.lim-hero .hero-booking:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.05);
}

.lim-hero .hero-booking h4 {
    font-family: var(--title-font);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lim-hero .hero-booking h4 i {
    color: var(--accent);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.lim-hero .hero-booking .contact-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.lim-hero .hero-booking .contact-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.lim-hero .hero-booking .contact-btn:hover::after {
    transform: translateX(100%);
}

.lim-hero .hero-booking .contact-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateX(4px);
}

.lim-hero .hero-booking .contact-btn.btn-whatsapp-hero:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.4);
}

.lim-hero .hero-booking .contact-btn.btn-whatsapp-hero i {
    color: #25D366;
    font-size: 24px;
    filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.3));
}

.lim-hero .hero-booking .contact-btn.btn-phone-hero:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.lim-hero .hero-booking .contact-btn.btn-phone-hero i {
    color: #fff;
    font-size: 20px;
}

.lim-hero .hero-booking .contact-btn.btn-email-hero:hover {
    background: rgba(15, 35, 82, 0.2);
    border-color: rgba(15, 35, 82, 0.4);
}

.lim-hero .hero-booking .contact-btn.btn-email-hero i {
    color: var(--accent);
    font-size: 20px;
}

.lim-hero .hero-booking .contact-btn .btn-text strong {
    font-size: 15px;
    font-weight: 600;
    display: block;
}

.lim-hero .hero-booking .contact-btn .btn-text span {
    font-size: 12px;
    opacity: 0.65;
}


.lim-quick-bar {
    background: var(--accent);
    padding: 16px 0;
}

.lim-quick-bar .quick-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.lim-quick-bar .quick-field {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.lim-quick-bar .quick-field label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
    opacity: .8;
    white-space: nowrap;
}

.lim-quick-bar .quick-field input,
.lim-quick-bar .quick-field select {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    padding: 7px 12px;
    color: #fff;
    font-size: 13px;
}

.lim-quick-bar .quick-field select option {
    color: #121212;
}

.lim-quick-bar .quick-btn {
    background: #fff;
    color: var(--accent);
    padding: 10px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    transition: all .3s;
    text-decoration: none;
    white-space: nowrap;
}

.lim-quick-bar .quick-btn:hover {
    background: var(--bg-warm);
}


.lim-section-title {
    text-align: center;
    margin-bottom: 48px;
}

.lim-section-title .sub {
    color: var(--accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.lim-section-title h2 {
    font-family: var(--title-font);
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.lim-section-title p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}


.lim-room-slider .slick-track {
    display: flex;
    gap: 0;
}

.lim-room-slider .slick-slide {
    height: auto;
}

.lim-room-slider .slick-slide>div {
    height: 100%;
}

.lim-room-slider .slick-list {
    padding: 10px 0;
}

.lim-room-slider .slick-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 28px;
    padding: 0;
    list-style: none;
}

.lim-room-slider .slick-dots li button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    font-size: 0;
    cursor: pointer;
    transition: all .3s;
    padding: 0;
}

.lim-room-slider .slick-dots li.slick-active button {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

.lim-room-slider .slick-prev,
.lim-room-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    font-size: 0;
    cursor: pointer;
    transition: all .3s;
    opacity: 0;
}

.lim-room-slider:hover .slick-prev,
.lim-room-slider:hover .slick-next {
    opacity: 1;
}

.lim-room-slider .slick-prev:hover,
.lim-room-slider .slick-next:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.lim-room-slider .slick-prev {
    left: -18px;
}

.lim-room-slider .slick-next {
    right: -18px;
}

.lim-room-slider .slick-prev::before,
.lim-room-slider .slick-next::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;
    color: var(--text-dark);
}

.lim-room-slider .slick-prev::before {
    content: '\f053';
}

.lim-room-slider .slick-prev:hover::before,
.lim-room-slider .slick-next:hover::before {
    color: #fff;
}

@media (max-width: 767px) {

    .lim-room-slider .slick-prev,
    .lim-room-slider .slick-next {
        display: none !important;
    }
}


.lim-room-card {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.05);
    transition: all .4s;
    height: 100%;
}

.lim-room-card:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
    transform: translateY(-6px);
}

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

.lim-room-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
}

.lim-room-card:hover .card-img img {
    transform: scale(1.08);
}

.lim-room-card .card-img .price-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--accent);
    color: #fff;
    padding: 5px 14px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

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

.lim-room-card .card-body h4 {
    font-family: var(--title-font);
    font-size: 20px;
    margin-bottom: 10px;
}

.lim-room-card .card-body .specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin-bottom: 14px;
}

.lim-room-card .card-body .specs li {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.lim-room-card .card-body .specs li i {
    color: var(--accent);
    width: 14px;
    font-size: 11px;
}

.lim-room-card .card-body .actions {
    display: flex;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
}

.lim-room-card .card-body .actions a {
    flex: 1;
    text-align: center;
    padding: 7px 0;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    transition: all .3s;
    text-decoration: none;
}

.lim-room-card .card-body .actions .btn-detail {
    border: 1px solid #ddd;
    color: var(--text-dark);
}

.lim-room-card .card-body .actions .btn-detail:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}

.lim-room-card .card-body .actions .btn-book {
    background: var(--accent);
    color: #fff;
}

.lim-room-card .card-body .actions .btn-book:hover {
    background: var(--accent-dark);
}


.lim-restaurant {
    position: relative;
    overflow: hidden;
}

.lim-restaurant .resto-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lim-restaurant .resto-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lim-restaurant .resto-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.15) 100%);
}

.lim-restaurant .resto-content {
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.lim-restaurant .resto-content .sub-title {
    color: white!important;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.lim-restaurant .resto-content h2 {
    font-family: var(--title-font);
    font-size: 46px;
    color: #fff;
    margin: 10px 0 18px;
    max-width: 540px;
}

.lim-restaurant .resto-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.8;
    max-width: 500px;
}

.lim-restaurant .resto-content .resto-btns {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.lim-restaurant .resto-content .resto-btns a {
    padding: 11px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    transition: all .3s;
    text-decoration: none;
}

.lim-restaurant .resto-content .resto-btns .btn-menu {
    border: 2px solid #fff;
    color: #fff;
}

.lim-restaurant .resto-content .resto-btns .btn-menu:hover {
    background: #fff;
    color: #121212;
}

.lim-restaurant .resto-content .resto-btns .btn-reserve {
    background: var(--accent);
    color: #fff;
}

.lim-restaurant .resto-content .resto-btns .btn-reserve:hover {
    background: var(--accent-dark);
}

.lim-resto-cards {
    position: relative;
    z-index: 3;
    margin-top: -50px;
}

.lim-resto-cards .menu-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    transition: all .4s;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.lim-resto-cards .menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.lim-resto-cards .menu-card .mc-img {
    height: 120px;
    overflow: hidden;
}

.lim-resto-cards .menu-card .mc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.lim-resto-cards .menu-card:hover .mc-img img {
    transform: scale(1.1);
}

.lim-resto-cards .menu-card .mc-body {
    padding: 14px 16px 16px;
    text-align: center;
}

.lim-resto-cards .menu-card .mc-body h6 {
    font-family: var(--title-font);
    font-size: 16px;
    margin-bottom: 1px;
    color: var(--text-dark);
}

.lim-resto-cards .menu-card .mc-body span {
    font-size: 11px;
    color: var(--text-muted);
}


.lim-service-icon {
    text-align: center;
    padding: 28px 12px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--border-light);
    transition: all .3s;
    height: 100%;
}

.lim-service-icon:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(15, 35, 82, 0.10);
}

.lim-service-icon .icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-warm);
    margin: 0 auto 10px;
    font-size: 22px;
    color: var(--accent);
}

.lim-service-icon h6 {
    font-size: 13px;
    margin-bottom: 0;
    font-weight: 500;
    color: var(--text-dark);
}


.lim-campaign {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all .4s;
    height: 100%;
}

.lim-campaign:hover {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.10);
    transform: translateY(-4px);
}

.lim-campaign .camp-img {
    height: 180px;
    overflow: hidden;
}

.lim-campaign .camp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.lim-campaign:hover .camp-img img {
    transform: scale(1.08);
}

.lim-campaign .camp-body {
    padding: 20px 22px 22px;
}

.lim-campaign .camp-body .badge-camp {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 8px;
}

.lim-campaign .camp-body h5 {
    font-family: var(--title-font);
    font-size: 19px;
    margin-bottom: 6px;
}

.lim-campaign .camp-body p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.lim-campaign .camp-body a {
    color: var(--accent);
    font-weight: 600;
    font-size: 12px;
    text-decoration: underline;
}


.lim-review {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 28px;
    transition: all .3s;
    height: 100%;
}

.lim-review:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 24px rgba(15, 35, 82, 0.08);
}

.lim-review .stars {
    color: #ffc737;
    font-size: 13px;
    margin-bottom: 10px;
}

.lim-review .text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 14px;
}

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

.lim-review .author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: #eee;
}

.lim-review .author .info h6 {
    font-size: 13px;
    margin-bottom: 0;
}

.lim-review .author .info span {
    font-size: 11px;
    color: var(--text-muted);
 }

.lim-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

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

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

.lim-gallery-item .g-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.lim-gallery-item .g-overlay a {
    color: #fff;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}

.lim-gallery-item .g-overlay a:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.lim-gallery-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 28px;
}

.lim-gallery-filter button {
    background: transparent;
    border: 1px solid #ddd;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 12px;
    color: var(--text-muted);
    transition: all .3s;
    cursor: pointer;
}

.lim-gallery-filter button:hover,
.lim-gallery-filter button.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}


.lim-explore {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    height: 280px;
    display: block;
    text-decoration: none;
}

.lim-explore img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
}

.lim-explore:hover img {
    transform: scale(1.1);
}

.lim-explore .exp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.05) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.lim-explore .exp-overlay h5 {
    color: #fff;
    font-family: var(--title-font);
    font-size: 19px;
    margin-bottom: 3px;
}

.lim-explore .exp-overlay span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}


.lim-faq .accordion-item {
    border: 1px solid var(--border-light);
    border-radius: 10px;
    margin-bottom: 8px;
    overflow: hidden;
}

.lim-faq .accordion-item .accordion-button {
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    background: #fafafa;
    box-shadow: none;
}

.lim-faq .accordion-item .accordion-button:not(.collapsed) {
    background: var(--accent);
    color: #fff;
}

.lim-faq .accordion-item .accordion-body {
    padding: 16px 20px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}


.lim-blog {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    transition: all .4s;
    height: 100%;
}

.lim-blog:hover {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.lim-blog .blog-img {
    height: 190px;
    overflow: hidden;
}

.lim-blog .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.lim-blog:hover .blog-img img {
    transform: scale(1.08);
}

.lim-blog .blog-body {
    padding: 18px 22px 22px;
}

.lim-blog .blog-body .date {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.lim-blog .blog-body h5 {
    font-family: var(--title-font);
    font-size: 17px;
    margin-bottom: 6px;
}

.lim-blog .blog-body h5 a {
    color: var(--text-dark);
    text-decoration: none;
}

.lim-blog .blog-body h5 a:hover {
    color: var(--accent);
}

.lim-blog .blog-body p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.lim-blog .blog-body .read-more {
    color: var(--accent);
    font-weight: 600;
    font-size: 12px;
    text-decoration: underline;
}


.lim-contact-form .form-control {
    border: 1px solid #e0ddd8;
    border-radius: 8px;
    padding: 11px 16px;
    font-size: 13px;
    transition: all .3s;
}

.lim-contact-form .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(15, 35, 82, 0.10);
}


.lim-footer {
    background: var(--bg-warm);
    color: var(--text-muted);
    border-top: 1px solid var(--border-light);
}

.lim-footer .widget-title {
    color: var(--text-dark);
    font-family: var(--title-font);
    font-size: 18px;
    margin-bottom: 18px;
}

.lim-footer a {
    color: var(--text-muted);
    transition: all .3s;
    text-decoration: none;
}

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

.lim-footer .links li {
    margin-bottom: 5px;
}

.lim-footer .links li a {
    font-size: 13px;
}

.lim-footer .contact-list .list-info {
    font-size: 13px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.lim-footer .contact-list .list-info i {
    color: var(--accent);
    margin-top: 3px;
}

.lim-footer .footer-bottom {
    border-top: 1px solid var(--border-light);
    padding: 18px 0;
}

.lim-footer .footer-bottom .copyright {
    font-size: 12px;
}

.lim-footer .social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    transition: all .3s;
    margin-right: 5px;
}

.lim-footer .social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}


.lim-sticky-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    display: none;
}

@media (max-width: 991px) {
    .lim-sticky-mobile {
        display: block;
    }
}

@media (max-width: 991px) {
    .lim-hero {
        min-height: auto;
    }

    .lim-hero .hero-content h1 {
        font-size: 36px;
    }

    .lim-restaurant .resto-content h2 {
        font-size: 30px;
    }

    .lim-restaurant .resto-content {
        padding: 60px 0;
    }

    .lim-resto-cards {
        margin-top: 20px;
    }

    .lim-section-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .lim-hero .hero-content h1 {
        font-size: 28px;
    }

    .lim-hero .hero-content p {
        font-size: 14px;
    }

    .lim-restaurant .resto-content h2 {
        font-size: 24px;
    }
}


*,*::before,*::after{box-sizing:border-box}
:root{
    --accent:#0f2352;--accent-dark:#09163a;--accent-light:#1a3a7a;
    --accent-rgb:15,35,82;
    --bg-warm:#f8f7f4;--text-dark:#111;--text-muted:#6b7280;--border-light:#e5e7eb;
    --font-sans:'Inter',system-ui,-apple-system,sans-serif;
    --font-serif:'Playfair Display',Georgia,serif;
}

.lim-header{position:fixed;top:0;left:0;right:0;z-index:1000;background:transparent;transition:all .5s cubic-bezier(.4,0,.2,1);padding:20px 0}
.lim-header.scrolled{background:rgba(255,255,255,0.92);backdrop-filter:blur(20px) saturate(180%);box-shadow:0 1px 40px rgba(0,0,0,0.06);padding:10px 0}
.lim-header .header-inner{display:flex;align-items:center;justify-content:space-between}
.lim-header .logo img{height:100px;transition:all .5s}
.lim-header.scrolled .logo img{height:60px}
.lim-header .logo-light{display:block}
.lim-header .logo-dark{display:none}
.lim-header.scrolled .logo-light{display:none}
.lim-header.scrolled .logo-dark{display:block}
.lim-header .header-nav{display:flex;align-items:center;gap:28px}
.lim-header .header-nav a{color:rgba(255,255,255,0.85);font-size:13px;font-weight:500;letter-spacing:.3px;transition:color .3s;position:relative;text-decoration:none}
.lim-header .header-nav a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:1.5px;background:var(--accent);transition:width .4s cubic-bezier(.4,0,.2,1)}
.lim-header .header-nav a:hover::after{width:100%}
.lim-header .header-nav a:hover{color:#fff}
.lim-header.scrolled .header-nav a{color:var(--text-dark)}
.lim-header.scrolled .header-nav a:hover{color:var(--accent)}
.lim-header .header-actions{display:flex;align-items:center;gap:12px}
.lim-header .contact-chip{display:flex;align-items:center;gap:5px;color:rgba(255,255,255,0.75);font-size:12px;text-decoration:none;transition:color .3s}
.lim-header .contact-chip i{color:var(--accent);font-size:11px}
.lim-header.scrolled .contact-chip{color:var(--text-muted)}
.lim-header .lang-select{background:transparent;border:1px solid rgba(255,255,255,0.25);color:rgba(255,255,255,0.85);padding:3px 8px;border-radius:4px;font-size:11px;cursor:pointer;font-family:var(--font-sans)}
.lim-header.scrolled .lang-select{border-color:var(--border-light);color:var(--text-muted)}
.lim-header .btn-contact,.lim-header .btn-reserve{background:var(--accent);color:#fff;padding:10px 24px;border-radius:8px;font-size:12px;font-weight:600;transition:all .3s;text-decoration:none;white-space:nowrap;letter-spacing:.3px;display:inline-flex;align-items:center;gap:6px}
.lim-header .btn-contact:hover,.lim-header .btn-reserve:hover{background:var(--accent-light);transform:translateY(-1px);box-shadow:0 4px 15px rgba(var(--accent-rgb),.3)}
.lim-header .mobile-toggle{display:none;color:#fff;font-size:20px;cursor:pointer;align-items:center;justify-content:center}
.lim-header.scrolled .mobile-toggle{color:var(--text-dark)}
@media(max-width:991px){
    .lim-header .header-nav{display:none;position:fixed;top:140px;left:0;right:0;background:#fff;flex-direction:column;padding:20px;gap:16px;box-shadow:0 10px 40px rgba(0,0,0,0.1);z-index:9999;transition:top .3s}
    .lim-header.scrolled .header-nav{top:80px}
    .lim-header .header-nav.d-flex{display:flex!important}
    .lim-header .header-nav a{color:var(--text-dark)!important;font-size:15px}
    .lim-header .header-nav a::after{display:none}
    .lim-header .header-actions .contact-chip,.lim-header .header-actions .lang-select{display:none}
    .lim-header .mobile-toggle{display:flex;align-items:center;justify-content:center;width:34px;height:34px}
    .lim-header .btn-contact,.lim-header .btn-reserve{padding:7px 14px;font-size:11px;display:inline-flex;align-items:center;gap:4px}
}

.hero-section{position:relative;min-height:220px;display:flex;align-items:flex-end;overflow:hidden;background:linear-gradient(160deg,#0a0a1a 0%,#0f2352 40%,#1a3a7a 100%)}
.hero-section .hero-overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(to top,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.1) 50%,transparent 100%)}
.hero-section .hero-content{position:relative;z-index:2;width:100%;padding:180px 0 28px}
.hero-section .breadcrumb{display:inline-flex;align-items:center;gap:5px;font-size:11px;color:rgba(255,255,255,0.35);margin-bottom:10px;text-decoration:none}
.hero-section .breadcrumb a{color:rgba(255,255,255,0.45);text-decoration:none;transition:color .3s}
.hero-section .breadcrumb a:hover{color:#fff}
.hero-section .breadcrumb span{color:rgba(255,255,255,0.7)}
.hero-section .hero-title{font-family:var(--font-serif);font-size:30px;color:#fff;font-weight:400;margin:0;line-height:1.2}
.hero-section .hero-badge{font-size:11px;color:rgba(255,255,255,0.5);padding:3px 12px;border-radius:20px;background:rgba(255,255,255,0.08)}

.lim-section-title {
    text-align: center;
    margin-bottom: 48px;
}
.lim-section-title .sub {
    color: var(--accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}
.lim-section-title h2 {
    font-family: var(--title-font);
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.lim-section-title p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.lim-attraction {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 24px rgba(0,0,0,0.05);
    transition: all .4s;
    height: 100%;
    display: block;
    text-decoration: none;
    color: inherit;
}
.lim-attraction:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.10); transform: translateY(-6px); }
.lim-attraction .att-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.lim-attraction .att-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
}
.lim-attraction:hover .att-img img { transform: scale(1.08); }
.lim-attraction .att-body { padding: 20px 22px 24px; }
.lim-attraction .att-body h4 {
    font-family: var(--title-font);
    font-size: 19px;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.lim-attraction .att-body p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}
.lim-attraction .att-body .att-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    margin-top: 10px;
    display: inline-block;
}

.lim-activity {
    text-align: center;
    padding: 32px 16px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--border-light);
    transition: all .3s;
    height: 100%;
}
.lim-activity:hover {
    border-color: var(--accent);
    box-shadow: 0 6px 28px rgba(15,35,82,0.10);
    transform: translateY(-4px);
}
.lim-activity .act-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-warm);
    margin: 0 auto 14px;
    font-size: 26px;
    color: var(--accent);
}
.lim-activity h5 {
    font-family: var(--title-font);
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--text-dark);
}
.lim-activity p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

.lim-cuisine {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    transition: all .4s;
    height: 100%;
}
.lim-cuisine:hover { box-shadow: 0 6px 30px rgba(0,0,0,0.10); transform: translateY(-4px); }
.lim-cuisine .cui-img {
    height: 180px;
    overflow: hidden;
}
.lim-cuisine .cui-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.lim-cuisine:hover .cui-img img { transform: scale(1.08); }
.lim-cuisine .cui-body { padding: 18px 20px 20px; }
.lim-cuisine .cui-body h5 {
    font-family: var(--title-font);
    font-size: 17px;
    margin-bottom: 4px;
    color: var(--text-dark);
}
.lim-cuisine .cui-body p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

.lim-transport {
    padding: 28px 24px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--border-light);
    transition: all .3s;
    height: 100%;
}
.lim-transport:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(15,35,82,0.08); }
.lim-transport .tr-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-warm);
    margin-bottom: 12px;
    font-size: 20px;
    color: var(--accent);
}
.lim-transport h5 {
    font-family: var(--title-font);
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.lim-transport p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.7;
}

.lim-info-box {
    background: var(--bg-warm);
    border-radius: 14px;
    padding: 28px;
    height: 100%;
    border: 1px solid var(--border-light);
}
.lim-info-box .ib-icon {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 10px;
}
.lim-info-box h5 {
    font-family: var(--title-font);
    font-size: 17px;
    margin-bottom: 6px;
    color: var(--text-dark);
}
.lim-info-box p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.lim-stat {
    text-align: center;
    padding: 28px 12px;
}
.lim-stat .stat-number {
    font-family: var(--title-font);
    font-size: 42px;
    font-weight: 600;
    color: var(--accent);
    line-height: 1.2;
    margin-bottom: 4px;
}
.lim-stat .stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

.lim-iznik-cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 16px;
    padding: 52px;
    text-align: center;
    color: #fff;
}
.lim-iznik-cta h3 {
    font-family: var(--title-font);
    font-size: 34px;
    margin-bottom: 10px;
}
.lim-iznik-cta p {
    font-size: 15px;
    opacity: 1;
    max-width: 550px;
    margin: 0 auto 22px;
}
.lim-iznik-cta a {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    color: #fff !important;
    padding: 12px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all .3s;
    border: 1px solid rgba(255,255,255,0.25);
}
.lim-iznik-cta a:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); color: #fff !important; }

.lim-footer {
    background: var(--bg-warm);
    color: var(--text-muted);
    border-top: 1px solid var(--border-light);
}
.lim-footer .widget-title {
    color: var(--text-dark);
    font-family: var(--title-font);
    font-size: 18px;
    margin-bottom: 18px;
}
.lim-footer a { color: var(--text-muted); transition: all .3s; text-decoration: none; }
.lim-footer a:hover { color: var(--accent); }
.lim-footer .links li { margin-bottom: 5px; }
.lim-footer .links li a { font-size: 13px; }
.lim-footer .contact-list .list-info {
    font-size: 13px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.lim-footer .contact-list .list-info i { color: var(--accent); margin-top: 3px; }
.lim-footer .footer-bottom {
    border-top: 1px solid var(--border-light);
    padding: 18px 0;
}
.lim-footer .footer-bottom .copyright { font-size: 12px; }
.lim-footer .social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    transition: all .3s;
    margin-right: 5px;
}
.lim-footer .social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.lim-sticky-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.08);
    padding: 8px 0;
    display: none;
}
@media (max-width: 991px) {
    .lim-sticky-mobile { display: block; }
    .lim-page-banner { min-height: 42vh; }
    .lim-page-banner .banner-content h1 { font-size: 34px; }
    .lim-section-title h2 { font-size: 30px; }
    .lim-iznik-cta { padding: 32px 20px; }
    .lim-iznik-cta h3 { font-size: 24px; }
}
@media (max-width: 767px) {
    .lim-page-banner .banner-content h1 { font-size: 26px; }
    .lim-page-banner .banner-content p { font-size: 14px; }
    .lim-stat .stat-number { font-size: 30px; }
}

*,*::before,*::after{box-sizing:border-box}
:root{
    --accent:#0f2352;--accent-dark:#09163a;--accent-light:#1a3a7a;
    --accent-rgb:15,35,82;
    --bg-warm:#f8f7f4;--text-dark:#111;--text-muted:#6b7280;--border-light:#e5e7eb;
    --font-sans:'Inter',system-ui,-apple-system,sans-serif;
    --font-serif:'Playfair Display',Georgia,serif;
}

.lim-header{position:fixed;top:0;left:0;right:0;z-index:1000;background:transparent;transition:all .5s cubic-bezier(.4,0,.2,1);padding:20px 0}
.lim-header.scrolled{background:rgba(255,255,255,0.92);backdrop-filter:blur(20px) saturate(180%);box-shadow:0 1px 40px rgba(0,0,0,0.06);padding:10px 0}
.lim-header .header-inner{display:flex;align-items:center;justify-content:space-between}
.lim-header .logo img{height:100px;transition:all .5s}
.lim-header.scrolled .logo img{height:60px}
.lim-header .logo-light{display:block}
.lim-header .logo-dark{display:none}
.lim-header.scrolled .logo-light{display:none}
.lim-header.scrolled .logo-dark{display:block}
.lim-header .header-nav{display:flex;align-items:center;gap:28px}
.lim-header .header-nav a{color:rgba(255,255,255,0.85);font-size:13px;font-weight:500;letter-spacing:.3px;transition:color .3s;position:relative;text-decoration:none}
.lim-header .header-nav a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:1.5px;background:var(--accent);transition:width .4s cubic-bezier(.4,0,.2,1)}
.lim-header .header-nav a:hover::after{width:100%}
.lim-header .header-nav a:hover{color:#fff}
.lim-header.scrolled .header-nav a{color:var(--text-dark)}
.lim-header.scrolled .header-nav a:hover{color:var(--accent)}
.lim-header .header-actions{display:flex;align-items:center;gap:12px}
.lim-header .contact-chip{display:flex;align-items:center;gap:5px;color:rgba(255,255,255,0.75);font-size:12px;text-decoration:none;transition:color .3s}
.lim-header .contact-chip i{color:var(--accent);font-size:11px}
.lim-header.scrolled .contact-chip{color:var(--text-muted)}
.lim-header .lang-select{background:transparent;border:1px solid rgba(255,255,255,0.25);color:rgba(255,255,255,0.85);padding:3px 8px;border-radius:4px;font-size:11px;cursor:pointer;font-family:var(--font-sans)}
.lim-header.scrolled .lang-select{border-color:var(--border-light);color:var(--text-muted)}
.lim-header .btn-contact,.lim-header .btn-reserve{background:var(--accent);color:#fff;padding:10px 24px;border-radius:8px;font-size:12px;font-weight:600;transition:all .3s;text-decoration:none;white-space:nowrap;letter-spacing:.3px;display:inline-flex;align-items:center;gap:6px}
.lim-header .btn-contact:hover,.lim-header .btn-reserve:hover{background:var(--accent-light);transform:translateY(-1px);box-shadow:0 4px 15px rgba(var(--accent-rgb),.3)}
.lim-header .mobile-toggle{display:none;color:#fff;font-size:20px;cursor:pointer;align-items:center;justify-content:center}
.lim-header.scrolled .mobile-toggle{color:var(--text-dark)}
@media(max-width:991px){
    .lim-header .header-nav{display:none;position:fixed;top:140px;left:0;right:0;background:#fff;flex-direction:column;padding:20px;gap:16px;box-shadow:0 10px 40px rgba(0,0,0,0.1);z-index:9999;transition:top .3s}
    .lim-header.scrolled .header-nav{top:80px}
    .lim-header .header-nav.d-flex{display:flex!important}
    .lim-header .header-nav a{color:var(--text-dark)!important;font-size:15px}
    .lim-header .header-nav a::after{display:none}
    .lim-header .header-actions .contact-chip,.lim-header .header-actions .lang-select{display:none}
    .lim-header .mobile-toggle{display:flex;align-items:center;justify-content:center;width:34px;height:34px}
    .lim-header .btn-contact,.lim-header .btn-reserve{padding:7px 14px;font-size:11px;display:inline-flex;align-items:center;gap:4px}
}

.hero-section{position:relative;min-height:220px;display:flex;align-items:flex-end;overflow:hidden;background:linear-gradient(160deg,#0a0a1a 0%,#0f2352 40%,#1a3a7a 100%)}
.hero-section .hero-overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(to top,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.1) 50%,transparent 100%)}
.hero-section .hero-content{position:relative;z-index:2;width:100%;padding:180px 0 28px}
.hero-section .breadcrumb{display:inline-flex;align-items:center;gap:5px;font-size:11px;color:rgba(255,255,255,0.35);margin-bottom:10px;text-decoration:none}
.hero-section .breadcrumb a{color:rgba(255,255,255,0.45);text-decoration:none;transition:color .3s}
.hero-section .breadcrumb a:hover{color:#fff}
.hero-section .breadcrumb span{color:rgba(255,255,255,0.7)}
.hero-section .hero-title{font-family:var(--font-serif);font-size:30px;color:#fff;font-weight:400;margin:0;line-height:1.2}
.hero-section .hero-badge{font-size:11px;color:rgba(255,255,255,0.5);padding:3px 12px;border-radius:20px;background:rgba(255,255,255,0.08)}

.gallery-slider{border-radius:16px;overflow:hidden}
.gallery-slider .carousel-inner{border-radius:16px}
.gallery-slider .carousel-item img{width:100%;height:500px;object-fit:cover}
.gallery-slider .carousel-control-prev,.gallery-slider .carousel-control-next{width:48px;height:48px;top:50%;transform:translateY(-50%);background:rgba(255,255,255,0.15);backdrop-filter:blur(8px);border-radius:50%;border:1px solid rgba(255,255,255,0.2);opacity:0;transition:all .4s}
.gallery-slider:hover .carousel-control-prev,.gallery-slider:hover .carousel-control-next{opacity:1}
.gallery-slider .carousel-control-prev{left:16px}
.gallery-slider .carousel-control-next{right:16px}
.gallery-slider .carousel-indicators{bottom:12px;gap:6px}
.gallery-slider .carousel-indicators button{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,0.5);border:none;opacity:.6}
.gallery-slider .carousel-indicators button.active{background:#fff;opacity:1;width:24px;border-radius:4px}

.room-desc-box{background:#fff;border-radius:16px;padding:28px;margin-top:16px;border:1px solid var(--border-light)}
.room-desc-box p{font-size:14px;color:var(--text-muted);line-height:1.8;margin:0}

.info-card{background:#fff;border-radius:16px;padding:36px;box-shadow:0 1px 3px rgba(0,0,0,0.04),0 20px 60px rgba(0,0,0,0.06);position:sticky;top:100px}
.info-card .badge{display:inline-block;padding:4px 12px;border-radius:20px;background:var(--bg-warm);color:var(--accent);font-size:11px;font-weight:600;margin-bottom:12px}
.info-card h2{font-family:var(--font-serif);font-size:26px;margin-bottom:4px;font-weight:400}
.info-card .divider{width:32px;height:2px;background:var(--accent);margin:16px 0;border-radius:2px}
.info-card .specs{display:grid;grid-template-columns:1fr 1fr;gap:10px;padding:0;list-style:none;margin-bottom:20px}
.info-card .specs li{font-size:13px;color:var(--text-muted);display:flex;align-items:center;gap:8px}
.info-card .specs li i{color:var(--accent);width:16px;font-size:12px}
.info-card .price{font-family:var(--font-serif);font-size:28px;color:var(--accent);font-weight:600;margin-bottom:4px}
.info-card .price-sub{font-size:12px;color:var(--text-muted);margin-bottom:20px}
.info-card .features{display:flex;flex-wrap:wrap;gap:6px;padding:0;list-style:none;margin-bottom:20px}
.info-card .features li{background:var(--bg-warm);border-radius:16px;padding:4px 12px;font-size:11px;color:var(--text-muted);display:inline-flex;align-items:center;gap:4px}

.btn-primary{display:inline-flex;align-items:center;justify-content:center;gap:8px;background:var(--accent);color:#fff;padding:14px 32px;border-radius:10px;font-size:13px;font-weight:600;text-decoration:none;transition:all .3s;border:none;cursor:pointer;font-family:var(--font-sans)}
.btn-primary:hover{background:var(--accent-light);transform:translateY(-2px);box-shadow:0 8px 25px rgba(var(--accent-rgb),.3);color:#fff}
.btn-primary.w-full{width:100%}

.feature-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.feature-item{display:flex;align-items:flex-start;gap:14px;padding:20px;background:#fff;border-radius:12px;border:1px solid var(--border-light);transition:all .3s}
.feature-item:hover{border-color:var(--accent);box-shadow:0 4px 20px rgba(var(--accent-rgb),.06);transform:translateY(-2px)}
.feature-item .icon{width:40px;height:40px;border-radius:10px;background:var(--bg-warm);display:flex;align-items:center;justify-content:center;color:var(--accent);font-size:16px;flex-shrink:0}
.feature-item h5{font-size:13px;font-weight:600;margin-bottom:3px}
.feature-item p{font-size:12px;color:var(--text-muted);margin:0;line-height:1.5}

.faq-item{border:none;border-radius:12px;margin-bottom:8px;overflow:hidden;background:#fff;border:1px solid var(--border-light)}
.faq-item .accordion-button{padding:16px 20px;font-size:13px;font-weight:500;color:var(--text-dark);background:#fff;box-shadow:none;border-radius:12px!important}
.faq-item .accordion-button:not(.collapsed){background:var(--accent);color:#fff;border-radius:12px 12px 0 0!important}
.faq-item .accordion-button:focus{box-shadow:none}
.faq-item .accordion-body{padding:16px 20px;font-size:13px;color:var(--text-muted);line-height:1.8}

.cta-section{background:linear-gradient(160deg,var(--accent) 0%,var(--accent-dark) 100%);border-radius:20px;padding:64px;text-align:center;color:#fff;position:relative;overflow:hidden}
.cta-section::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 70% 50%,rgba(255,255,255,0.06) 0%,transparent 60%)}
.cta-section>*{position:relative;z-index:1}
.cta-section h3{font-family:var(--font-serif);font-size:clamp(24px,3vw,34px);margin-bottom:12px;font-weight:400}
.cta-section p{font-size:14px;opacity:1;max-width:500px;margin:0 auto 24px;line-height:1.7}
.cta-section .btn-cta{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,0.12);color:#fff!important;padding:14px 36px;border-radius:10px;font-weight:600;font-size:13px;text-decoration:none;transition:all .3s;border:1px solid rgba(255,255,255,0.25)}
.cta-section .btn-cta:hover{transform:translateY(-2px);box-shadow:0 8px 25px rgba(0,0,0,0.2);background:rgba(255,255,255,0.2);color:#fff!important}

.lim-footer{background:#fff;color:var(--text-muted);border-top:1px solid var(--border-light)}
.lim-footer .widget-title{color:var(--text-dark);font-family:var(--font-serif);font-size:16px;margin-bottom:20px;font-weight:400}
.lim-footer a{color:var(--text-muted);transition:all .3s;text-decoration:none;font-size:13px}
.lim-footer a:hover{color:var(--accent)}
.lim-footer .links li{margin-bottom:6px}
.lim-footer .contact-list .list-info{font-size:13px;margin-bottom:8px;display:flex;align-items:flex-start;gap:8px}
.lim-footer .contact-list .list-info i{color:var(--accent);margin-top:4px;width:14px}
.lim-footer .footer-bottom{border-top:1px solid var(--border-light);padding:20px 0}
.lim-footer .footer-bottom .copyright{font-size:12px}
.lim-footer .social a{width:36px;height:36px;border-radius:50%;border:1px solid var(--border-light);display:inline-flex;align-items:center;justify-content:center;color:#bbb;transition:all .3s;margin-right:4px;font-size:13px}
.lim-footer .social a:hover{background:var(--accent);border-color:var(--accent);color:#fff;transform:translateY(-2px)}

.lim-sticky-mobile{position:fixed;bottom:0;left:0;right:0;z-index:999;background:#fff;box-shadow:0 -2px 20px rgba(0,0,0,0.06);padding:8px 0;display:none}
@media(max-width:991px){.lim-sticky-mobile{display:block}}
@media(max-width:991px){
    .hero-section{min-height:200px}
    .hero-section .hero-content{padding:140px 0 20px}
    .section{padding:60px 0}
    .feature-grid{grid-template-columns:1fr}
    .cta-section{padding:40px 24px}
    .info-card{position:static}
    .gallery-slider .carousel-item img{height:350px}
}
@media(max-width:767px){
    .hero-section .hero-title{font-size:24px}
    .gallery-slider .carousel-item img{height:260px}
}

.reveal{opacity:0;transform:translateY(40px);transition:opacity .8s ease,transform .8s cubic-bezier(.4,0,.2,1)}
.reveal.visible{opacity:1;transform:translateY(0)}
.reveal-delay-1{transition-delay:.1s}
.reveal-delay-2{transition-delay:.2s}
.reveal-delay-3{transition-delay:.3s}

*,*::before,*::after{box-sizing:border-box}
:root{
    --accent:#0f2352;--accent-dark:#09163a;--accent-light:#1a3a7a;
    --accent-rgb:15,35,82;
    --bg-warm:#f8f7f4;--text-dark:#111;--text-muted:#6b7280;--border-light:#e5e7eb;
    --font-sans:'Inter',system-ui,-apple-system,sans-serif;
    --font-serif:'Playfair Display',Georgia,serif;
}

.lim-header{position:fixed;top:0;left:0;right:0;z-index:1000;background:transparent;transition:all .5s cubic-bezier(.4,0,.2,1);padding:20px 0}
.lim-header.scrolled{background:rgba(255,255,255,0.92);backdrop-filter:blur(20px) saturate(180%);box-shadow:0 1px 40px rgba(0,0,0,0.06);padding:10px 0}
.lim-header .header-inner{display:flex;align-items:center;justify-content:space-between}
.lim-header .logo img{height:100px;transition:all .5s}
.lim-header.scrolled .logo img{height:60px}
.lim-header .logo-light{display:block}
.lim-header .logo-dark{display:none}
.lim-header.scrolled .logo-light{display:none}
.lim-header.scrolled .logo-dark{display:block}
.lim-header .header-nav{display:flex;align-items:center;gap:28px}
.lim-header .header-nav a{color:rgba(255,255,255,0.85);font-size:13px;font-weight:500;letter-spacing:.3px;transition:color .3s;position:relative;text-decoration:none}
.lim-header .header-nav a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:1.5px;background:var(--accent);transition:width .4s cubic-bezier(.4,0,.2,1)}
.lim-header .header-nav a:hover::after{width:100%}
.lim-header .header-nav a:hover{color:#fff}
.lim-header.scrolled .header-nav a{color:var(--text-dark)}
.lim-header.scrolled .header-nav a:hover{color:var(--accent)}
.lim-header .header-actions{display:flex;align-items:center;gap:12px}
.lim-header .contact-chip{display:flex;align-items:center;gap:5px;color:rgba(255,255,255,0.75);font-size:12px;text-decoration:none;transition:color .3s}
.lim-header .contact-chip i{color:var(--accent);font-size:11px}
.lim-header.scrolled .contact-chip{color:var(--text-muted)}
.lim-header .lang-select{background:transparent;border:1px solid rgba(255,255,255,0.25);color:rgba(255,255,255,0.85);padding:3px 8px;border-radius:4px;font-size:11px;cursor:pointer;font-family:var(--font-sans)}
.lim-header.scrolled .lang-select{border-color:var(--border-light);color:var(--text-muted)}
.lim-header .btn-contact,.lim-header .btn-reserve{background:var(--accent);color:#fff;padding:10px 24px;border-radius:8px;font-size:12px;font-weight:600;transition:all .3s;text-decoration:none;white-space:nowrap;letter-spacing:.3px;display:inline-flex;align-items:center;gap:6px}
.lim-header .btn-contact:hover,.lim-header .btn-reserve:hover{background:var(--accent-light);transform:translateY(-1px);box-shadow:0 4px 15px rgba(var(--accent-rgb),.3)}
.lim-header .mobile-toggle{display:none;color:#fff;font-size:20px;cursor:pointer;align-items:center;justify-content:center}
.lim-header.scrolled .mobile-toggle{color:var(--text-dark)}
@media(max-width:991px){
    .lim-header .header-nav{display:none;position:fixed;top:140px;left:0;right:0;background:#fff;flex-direction:column;padding:20px;gap:16px;box-shadow:0 10px 40px rgba(0,0,0,0.1);z-index:9999;transition:top .3s}
    .lim-header.scrolled .header-nav{top:80px}
    .lim-header .header-nav.d-flex{display:flex!important}
    .lim-header .header-nav a{color:var(--text-dark)!important;font-size:15px}
    .lim-header .header-nav a::after{display:none}
    .lim-header .header-actions .contact-chip,.lim-header .header-actions .lang-select{display:none}
    .lim-header .mobile-toggle{display:flex;align-items:center;justify-content:center;width:34px;height:34px}
    .lim-header .btn-contact,.lim-header .btn-reserve{padding:7px 14px;font-size:11px;display:inline-flex;align-items:center;gap:4px}
}

.hero-section{position:relative;min-height:220px;display:flex;align-items:flex-end;overflow:hidden;background:linear-gradient(160deg,#0a0a1a 0%,#0f2352 40%,#1a3a7a 100%)}
.hero-section .hero-overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(to top,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.1) 50%,transparent 100%)}
.hero-section .hero-content{position:relative;z-index:2;width:100%;padding:180px 0 28px}
.hero-section .breadcrumb{display:inline-flex;align-items:center;gap:5px;font-size:11px;color:rgba(255,255,255,0.35);margin-bottom:10px;text-decoration:none}
.hero-section .breadcrumb a{color:rgba(255,255,255,0.45);text-decoration:none;transition:color .3s}
.hero-section .breadcrumb a:hover{color:#fff}
.hero-section .breadcrumb span{color:rgba(255,255,255,0.7)}
.hero-section .hero-title{font-family:var(--font-serif);font-size:30px;color:#fff;font-weight:400;margin:0;line-height:1.2}
.hero-section .hero-badge{font-size:11px;color:rgba(255,255,255,0.5);padding:3px 12px;border-radius:20px;background:rgba(255,255,255,0.08)}

.lim-section-title { text-align:center;margin-bottom:48px; }
.lim-section-title .sub { color:var(--accent);font-size:12px;text-transform:uppercase;letter-spacing:2px;font-weight:600;margin-bottom:8px;display:block; }
.lim-section-title h2 { font-family:var(--title-font,"Playfair Display",serif);font-size:40px;color:var(--text-dark);margin-bottom:12px; }
.lim-section-title p { color:var(--text-muted);font-size:15px;max-width:560px;margin:0 auto;line-height:1.7; }
.lim-specs-grid { display:grid;grid-template-columns:1fr 1fr;gap:12px;padding:0;list-style:none; }
.lim-specs-grid li { font-size:14px;color:var(--text-muted);display:flex;align-items:center;gap:8px; }
.lim-specs-grid li i { color:var(--accent);width:18px;font-size:13px; }
.lim-features-list { display:flex;flex-wrap:wrap;gap:8px;padding:0;list-style:none; }
.lim-features-list li { background:var(--bg-warm);border:1px solid var(--border-light);border-radius:20px;padding:5px 14px;font-size:12px;color:var(--text-muted);display:inline-flex;align-items:center;gap:5px; }
.lim-features-list li i { color:var(--accent);font-size:11px; }
.lim-amenity-icon { text-align:center;padding:24px 12px;border-radius:12px;background:#fff;border:1px solid var(--border-light);transition:all .3s;height:100%; }
.lim-amenity-icon:hover { border-color:var(--accent);box-shadow:0 4px 20px rgba(15,35,82,0.10); }
.lim-amenity-icon .icon-wrap { width:50px;height:50px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:var(--bg-warm);margin:0 auto 8px;font-size:20px;color:var(--accent); }
.lim-amenity-icon h6 { font-size:12px;margin-bottom:0;font-weight:500;color:var(--text-dark); }
.lim-faq .accordion-item { border:1px solid var(--border-light);border-radius:10px;margin-bottom:8px;overflow:hidden; }
.lim-faq .accordion-item .accordion-button { padding:14px 20px;font-size:14px;font-weight:500;color:var(--text-dark);background:#fafafa;box-shadow:none; }
.lim-faq .accordion-item .accordion-button:not(.collapsed) { background:var(--accent);color:#fff; }
.lim-faq .accordion-item .accordion-body { padding:16px 20px;font-size:13px;color:var(--text-muted);line-height:1.7; }
.lim-room-cta { background:linear-gradient(135deg,var(--accent) 0%,var(--accent-dark) 100%);border-radius:16px;padding:48px;text-align:center;color:#fff; }
.lim-room-cta h3 { font-family:var(--title-font,"Playfair Display",serif);font-size:32px;margin-bottom:10px; }
.lim-room-cta p { font-size:15px;opacity:1;max-width:540px;margin:0 auto 20px; }
.lim-room-cta a { display:inline-block;background:rgba(255,255,255,0.12);color:#fff!important;padding:12px 36px;border-radius:8px;font-weight:700;font-size:14px;text-decoration:none;transition:all .3s;border:1px solid rgba(255,255,255,0.25); }
.lim-room-cta a:hover { background:rgba(255,255,255,0.2);border-color:rgba(255,255,255,0.4);color:#fff!important; }
.lim-footer { background:var(--bg-warm);color:var(--text-muted);border-top:1px solid var(--border-light); }
.lim-footer .widget-title { color:var(--text-dark);font-family:var(--title-font,"Playfair Display",serif);font-size:18px;margin-bottom:18px; }
.lim-footer a { color:var(--text-muted);transition:all .3s;text-decoration:none; }
.lim-footer a:hover { color:var(--accent); }
.lim-footer .links li { margin-bottom:5px; }
.lim-footer .links li a { font-size:13px; }
.lim-footer .contact-list .list-info { font-size:13px;margin-bottom:8px;display:flex;align-items:flex-start;gap:8px; }
.lim-footer .contact-list .list-info i { color:var(--accent);margin-top:3px; }
.lim-footer .footer-bottom { border-top:1px solid var(--border-light);padding:18px 0; }
.lim-footer .footer-bottom .copyright { font-size:12px; }
.lim-footer .social a { width:36px;height:36px;border-radius:50%;border:1px solid #ddd;display:inline-flex;align-items:center;justify-content:center;color:#bbb;transition:all .3s;margin-right:5px; }
.lim-footer .social a:hover { background:var(--accent);border-color:var(--accent);color:#fff; }
.lim-sticky-mobile { position:fixed;bottom:0;left:0;right:0;z-index:999;background:#fff;box-shadow:0 -2px 20px rgba(0,0,0,0.08);padding:8px 0;display:none; }
@media (max-width:991px) { .lim-sticky-mobile { display:block; }.lim-page-hero { min-height:40vh; }.lim-page-hero .hero-content h1 { font-size:34px; }.lim-section-title h2 { font-size:30px; }.lim-room-cta { padding:30px 20px; }.lim-room-cta h3 { font-size:24px; } }
@media (max-width:767px) { .lim-page-hero .hero-content h1 { font-size:26px; }.lim-page-hero .hero-content p { font-size:14px; } }
.fade-in { opacity:0;transform:translateY(30px);transition:opacity .7s ease,transform .7s ease; }
.fade-in.visible { opacity:1;transform:translateY(0); }
.price-badge { display:inline-block;background:var(--accent);color:#fff;padding:8px 20px;border-radius:8px;font-size:18px;font-weight:700; }
.room-badge { display:inline-block;background:rgba(255,255,255,0.92);color:var(--text-dark);padding:4px 14px;border-radius:20px;font-size:12px;font-weight:600;backdrop-filter:blur(6px); }
.room-gallery-img { height:500px;object-fit:cover;border-radius:12px; }
@media (max-width:767px) { .room-gallery-img { height:300px; } }
.detail-divider { width:40px;height:3px;background:var(--accent);margin:16px 0;border-radius:2px; }

*,*::before,*::after{box-sizing:border-box}
:root{
    --accent:#0f2352;--accent-dark:#09163a;--accent-light:#1a3a7a;
    --accent-rgb:15,35,82;
    --bg-warm:#f8f7f4;--text-dark:#111;--text-muted:#6b7280;--border-light:#e5e7eb;
    --font-sans:'Inter',system-ui,-apple-system,sans-serif;
    --font-serif:'Playfair Display',Georgia,serif;
}

.lim-header{position:fixed;top:0;left:0;right:0;z-index:1000;background:transparent;transition:all .5s cubic-bezier(.4,0,.2,1);padding:20px 0}
.lim-header.scrolled{background:rgba(255,255,255,0.92);backdrop-filter:blur(20px) saturate(180%);box-shadow:0 1px 40px rgba(0,0,0,0.06);padding:10px 0}
.lim-header .header-inner{display:flex;align-items:center;justify-content:space-between}
.lim-header .logo img{height:100px;transition:all .5s}
.lim-header.scrolled .logo img{height:60px}
.lim-header .logo-light{display:block}
.lim-header .logo-dark{display:none}
.lim-header.scrolled .logo-light{display:none}
.lim-header.scrolled .logo-dark{display:block}
.lim-header .header-nav{display:flex;align-items:center;gap:28px}
.lim-header .header-nav a{color:rgba(255,255,255,0.85);font-size:13px;font-weight:500;letter-spacing:.3px;transition:color .3s;position:relative;text-decoration:none}
.lim-header .header-nav a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:1.5px;background:var(--accent);transition:width .4s cubic-bezier(.4,0,.2,1)}
.lim-header .header-nav a:hover::after{width:100%}
.lim-header .header-nav a:hover{color:#fff}
.lim-header.scrolled .header-nav a{color:var(--text-dark)}
.lim-header.scrolled .header-nav a:hover{color:var(--accent)}
.lim-header .header-actions{display:flex;align-items:center;gap:12px}
.lim-header .contact-chip{display:flex;align-items:center;gap:5px;color:rgba(255,255,255,0.75);font-size:12px;text-decoration:none;transition:color .3s}
.lim-header .contact-chip i{color:var(--accent);font-size:11px}
.lim-header.scrolled .contact-chip{color:var(--text-muted)}
.lim-header .lang-select{background:transparent;border:1px solid rgba(255,255,255,0.25);color:rgba(255,255,255,0.85);padding:3px 8px;border-radius:4px;font-size:11px;cursor:pointer;font-family:var(--font-sans)}
.lim-header.scrolled .lang-select{border-color:var(--border-light);color:var(--text-muted)}
.lim-header .btn-contact,.lim-header .btn-reserve{background:var(--accent);color:#fff;padding:10px 24px;border-radius:8px;font-size:12px;font-weight:600;transition:all .3s;text-decoration:none;white-space:nowrap;letter-spacing:.3px;display:inline-flex;align-items:center;gap:6px}
.lim-header .btn-contact:hover,.lim-header .btn-reserve:hover{background:var(--accent-light);transform:translateY(-1px);box-shadow:0 4px 15px rgba(var(--accent-rgb),.3)}
.lim-header .mobile-toggle{display:none;color:#fff;font-size:20px;cursor:pointer;align-items:center;justify-content:center}
.lim-header.scrolled .mobile-toggle{color:var(--text-dark)}
@media(max-width:991px){
    .lim-header .header-nav{display:none;position:fixed;top:140px;left:0;right:0;background:#fff;flex-direction:column;padding:20px;gap:16px;box-shadow:0 10px 40px rgba(0,0,0,0.1);z-index:9999;transition:top .3s}
    .lim-header.scrolled .header-nav{top:80px}
    .lim-header .header-nav.d-flex{display:flex!important}
    .lim-header .header-nav a{color:var(--text-dark)!important;font-size:15px}
    .lim-header .header-nav a::after{display:none}
    .lim-header .header-actions .contact-chip,.lim-header .header-actions .lang-select{display:none}
    .lim-header .mobile-toggle{display:flex;align-items:center;justify-content:center;width:34px;height:34px}
    .lim-header .btn-contact,.lim-header .btn-reserve{padding:7px 14px;font-size:11px;display:inline-flex;align-items:center;gap:4px}
}

.hero-section{position:relative;min-height:220px;display:flex;align-items:flex-end;overflow:hidden;background:linear-gradient(160deg,#0a0a1a 0%,#0f2352 40%,#1a3a7a 100%)}
.hero-section .hero-overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(to top,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.1) 50%,transparent 100%)}
.hero-section .hero-content{position:relative;z-index:2;width:100%;padding:180px 0 28px}
.hero-section .breadcrumb{display:inline-flex;align-items:center;gap:5px;font-size:11px;color:rgba(255,255,255,0.35);margin-bottom:10px;text-decoration:none}
.hero-section .breadcrumb a{color:rgba(255,255,255,0.45);text-decoration:none;transition:color .3s}
.hero-section .breadcrumb a:hover{color:#fff}
.hero-section .breadcrumb span{color:rgba(255,255,255,0.7)}
.hero-section .hero-title{font-family:var(--font-serif);font-size:30px;color:#fff;font-weight:400;margin:0;line-height:1.2}
.hero-section .hero-badge{font-size:11px;color:rgba(255,255,255,0.5);padding:3px 12px;border-radius:20px;background:rgba(255,255,255,0.08)}

.lim-section-title { text-align:center;margin-bottom:48px; }
.lim-section-title .sub { color:var(--accent);font-size:12px;text-transform:uppercase;letter-spacing:2px;font-weight:600;margin-bottom:8px;display:block; }
.lim-section-title h2 { font-family:var(--title-font,"Playfair Display",serif);font-size:40px;color:var(--text-dark);margin-bottom:12px; }
.lim-section-title p { color:var(--text-muted);font-size:15px;max-width:560px;margin:0 auto;line-height:1.7; }
.lim-specs-grid { display:grid;grid-template-columns:1fr 1fr;gap:12px;padding:0;list-style:none; }
.lim-specs-grid li { font-size:14px;color:var(--text-muted);display:flex;align-items:center;gap:8px; }
.lim-specs-grid li i { color:var(--accent);width:18px;font-size:13px; }
.lim-features-list { display:flex;flex-wrap:wrap;gap:8px;padding:0;list-style:none; }
.lim-features-list li { background:var(--bg-warm);border:1px solid var(--border-light);border-radius:20px;padding:5px 14px;font-size:12px;color:var(--text-muted);display:inline-flex;align-items:center;gap:5px; }
.lim-features-list li i { color:var(--accent);font-size:11px; }
.lim-amenity-icon { text-align:center;padding:24px 12px;border-radius:12px;background:#fff;border:1px solid var(--border-light);transition:all .3s;height:100%; }
.lim-amenity-icon:hover { border-color:var(--accent);box-shadow:0 4px 20px rgba(15,35,82,0.10); }
.lim-amenity-icon .icon-wrap { width:50px;height:50px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:var(--bg-warm);margin:0 auto 8px;font-size:20px;color:var(--accent); }
.lim-amenity-icon h6 { font-size:12px;margin-bottom:0;font-weight:500;color:var(--text-dark); }
.lim-faq .accordion-item { border:1px solid var(--border-light);border-radius:10px;margin-bottom:8px;overflow:hidden; }
.lim-faq .accordion-item .accordion-button { padding:14px 20px;font-size:14px;font-weight:500;color:var(--text-dark);background:#fafafa;box-shadow:none; }
.lim-faq .accordion-item .accordion-button:not(.collapsed) { background:var(--accent);color:#fff; }
.lim-faq .accordion-item .accordion-body { padding:16px 20px;font-size:13px;color:var(--text-muted);line-height:1.7; }
.lim-room-cta { background:linear-gradient(135deg,var(--accent) 0%,var(--accent-dark) 100%);border-radius:16px;padding:48px;text-align:center;color:#fff; }
.lim-room-cta h3 { font-family:var(--title-font,"Playfair Display",serif);font-size:32px;margin-bottom:10px; }
.lim-room-cta p { font-size:15px;opacity:1;max-width:540px;margin:0 auto 20px; }
.lim-room-cta a { display:inline-block;background:rgba(255,255,255,0.12);color:#fff!important;padding:12px 36px;border-radius:8px;font-weight:700;font-size:14px;text-decoration:none;transition:all .3s;border:1px solid rgba(255,255,255,0.25); }
.lim-room-cta a:hover { background:rgba(255,255,255,0.2);border-color:rgba(255,255,255,0.4);color:#fff!important; }
.lim-footer { background:var(--bg-warm);color:var(--text-muted);border-top:1px solid var(--border-light); }
.lim-footer .widget-title { color:var(--text-dark);font-family:var(--title-font,"Playfair Display",serif);font-size:18px;margin-bottom:18px; }
.lim-footer a { color:var(--text-muted);transition:all .3s;text-decoration:none; }
.lim-footer a:hover { color:var(--accent); }
.lim-footer .links li { margin-bottom:5px; }
.lim-footer .links li a { font-size:13px; }
.lim-footer .contact-list .list-info { font-size:13px;margin-bottom:8px;display:flex;align-items:flex-start;gap:8px; }
.lim-footer .contact-list .list-info i { color:var(--accent);margin-top:3px; }
.lim-footer .footer-bottom { border-top:1px solid var(--border-light);padding:18px 0; }
.lim-footer .footer-bottom .copyright { font-size:12px; }
.lim-footer .social a { width:36px;height:36px;border-radius:50%;border:1px solid #ddd;display:inline-flex;align-items:center;justify-content:center;color:#bbb;transition:all .3s;margin-right:5px; }
.lim-footer .social a:hover { background:var(--accent);border-color:var(--accent);color:#fff; }
.lim-sticky-mobile { position:fixed;bottom:0;left:0;right:0;z-index:999;background:#fff;box-shadow:0 -2px 20px rgba(0,0,0,0.08);padding:8px 0;display:none; }
@media (max-width:991px) { .lim-sticky-mobile { display:block; }.lim-page-hero { min-height:40vh; }.lim-page-hero .hero-content h1 { font-size:34px; }.lim-section-title h2 { font-size:30px; }.lim-room-cta { padding:30px 20px; }.lim-room-cta h3 { font-size:24px; } }
@media (max-width:767px) { .lim-page-hero .hero-content h1 { font-size:26px; }.lim-page-hero .hero-content p { font-size:14px; } }
.fade-in { opacity:0;transform:translateY(30px);transition:opacity .7s ease,transform .7s ease; }
.fade-in.visible { opacity:1;transform:translateY(0); }
.price-badge { display:inline-block;background:var(--accent);color:#fff;padding:8px 20px;border-radius:8px;font-size:18px;font-weight:700; }
.room-badge { display:inline-block;background:rgba(255,255,255,0.92);color:var(--text-dark);padding:4px 14px;border-radius:20px;font-size:12px;font-weight:600;backdrop-filter:blur(6px); }
.room-gallery-img { height:500px;object-fit:cover;border-radius:12px; }
@media (max-width:767px) { .room-gallery-img { height:300px; } }
.detail-divider { width:40px;height:3px;background:var(--accent);margin:16px 0;border-radius:2px; }

*,
*::before,
*::after {
    box-sizing: border-box
}

:root {
    --accent: #0f2352;
    --accent-dark: #09163a;
    --accent-light: #1a3a7a;
    --accent-rgb: 15, 35, 82;
    --bg-warm: #f8f7f4;
    --text-dark: #111;
    --text-muted: #6b7280;
    --border-light: #e5e7eb;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}


.lim-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all .5s cubic-bezier(.4, 0, .2, 1);
    padding: 20px 0
}

.lim-header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 40px rgba(0, 0, 0, 0.06);
    padding: 10px 0
}

.lim-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.lim-header .logo img {
    height: 120px;
    transition: all .5s
}

.lim-header.scrolled .logo img {
    height: 80px
}

.lim-header .logo-light {
    display: block
}

.lim-header .logo-dark {
    display: none
}

.lim-header.scrolled .logo-light {
    display: none
}

.lim-header.scrolled .logo-dark {
    display: block
}

.lim-header .header-nav {
    display: flex;
    align-items: center;
    gap: 28px
}

.lim-header .header-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .3px;
    transition: color .3s;
    position: relative;
    text-decoration: none
}

.lim-header .header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width .4s cubic-bezier(.4, 0, .2, 1)
}

.lim-header .header-nav a:hover::after {
    width: 100%
}

.lim-header .header-nav a:hover {
    color: #fff
}

.lim-header.scrolled .header-nav a {
    color: var(--text-dark)
}

.lim-header.scrolled .header-nav a:hover {
    color: var(--accent)
}

.lim-header .header-actions {
    display: flex;
    align-items: center;
    gap: 12px
}

.lim-header .contact-chip {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    text-decoration: none;
    transition: color .3s
}

.lim-header .contact-chip i {
    color: var(--accent);
    font-size: 11px
}

.lim-header.scrolled .contact-chip {
    color: var(--text-muted)
}

.lim-header .lang-select {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    font-family: var(--font-sans)
}

.lim-header.scrolled .lang-select {
    border-color: var(--border-light);
    color: var(--text-muted)
}

.lim-header .btn-contact,
.lim-header .btn-reserve {
    background: var(--accent);
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    transition: all .3s;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: .3px;
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.lim-header .btn-contact:hover,
.lim-header .btn-reserve:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(var(--accent-rgb), .3)
}

.lim-header .mobile-toggle {
    display: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    align-items: center;
    justify-content: center
}

.lim-header.scrolled .mobile-toggle {
    color: var(--text-dark)
}

@media(max-width:991px) {
    .lim-header .header-nav {
        display: none;
        position: fixed;
        top: 140px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        z-index: 9999;
        transition: top .3s
    }

    .lim-header.scrolled .header-nav {
        top: 80px
    }

    .lim-header .header-nav.d-flex {
        display: flex !important
    }

    .lim-header .header-nav a {
        color: var(--text-dark) !important;
        font-size: 15px
    }

    .lim-header .header-nav a::after {
        display: none
    }

    .lim-header .header-actions .contact-chip,
    .lim-header .header-actions .lang-select {
        display: none
    }

    .lim-header .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
    }

    .lim-header .btn-contact,
    .lim-header .btn-reserve {
        padding: 7px 14px;
        font-size: 11px;
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }
}


.hero-section {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: linear-gradient(160deg, #0a0a1a 0%, #0f2352 40%, #1a3a7a 100%)
}

.hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%)
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 180px 0 28px
}

.hero-section .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 10px;
    text-decoration: none
}

.hero-section .breadcrumb a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color .3s
}

.hero-section .breadcrumb a:hover {
    color: #fff
}

.hero-section .breadcrumb span {
    color: rgba(255, 255, 255, 0.7)
}

.hero-section .hero-title {
    font-family: var(--font-serif);
    font-size: 30px;
    color: #fff;
    font-weight: 400;
    margin: 0;
    line-height: 1.2
}

.hero-section .hero-badge {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    padding: 3px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08)
}

.lim-section-title {
    text-align: center;
    margin-bottom: 48px;
}

.lim-section-title .sub {
    color: var(--accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.lim-section-title h2 {
    font-family: var(--title-font);
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.lim-section-title p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .lim-section-title h2 {
        font-size: 30px;
    }
}

.lim-contact-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    transition: all .3s;
    height: 100%;
}

.lim-contact-card:hover {
    border-color: var(--accent);
    box-shadow: 0 6px 30px rgba(15, 35, 82, 0.10);
    transform: translateY(-4px);
}

.lim-contact-card .cc-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-warm);
    margin: 0 auto 14px;
    font-size: 24px;
    color: var(--accent);
    transition: all .3s;
}

.lim-contact-card:hover .cc-icon {
    background: var(--accent);
    color: #fff;
}

.lim-contact-card h5 {
    font-family: var(--title-font);
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.lim-contact-card p,
.lim-contact-card a {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    text-decoration: none;
    display: block;
}

.lim-contact-card a:hover {
    color: var(--accent);
}

.lim-hours-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 32px 28px;
    transition: all .3s;
    height: 100%;
}

.lim-hours-card:hover {
    border-color: var(--accent);
    box-shadow: 0 6px 30px rgba(15, 35, 82, 0.10);
    transform: translateY(-4px);
}

.lim-hours-card .hc-title {
    font-family: var(--title-font);
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 18px;
    text-align: center;
}

.lim-hours-table {
    width: 100%;
    font-size: 14px;
}

.lim-hours-table tr {
    border-bottom: 1px solid var(--border-light);
}

.lim-hours-table td {
    padding: 10px 0;
    color: var(--text-muted);
}

.lim-hours-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--text-dark);
}

.lim-hours-table tr:last-child {
    border-bottom: none;
}

.lim-form-wrap {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 36px;
}

.lim-form-wrap .form-control {
    border: 1px solid #e0ddd8;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all .3s;
}

.lim-form-wrap .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(15, 35, 82, 0.10);
}

.lim-form-wrap textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.lim-form-wrap .btn-submit {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 13px 36px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all .3s;
    cursor: pointer;
}

.lim-form-wrap .btn-submit:hover {
    background: var(--accent-dark);
}

.lim-map-wrap {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.lim-map-wrap iframe {
    width: 100%;
    height: 420px;
    display: block;
}

.lim-social-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    transition: all .3s;
    height: 100%;
    text-decoration: none;
    display: block;
}

.lim-social-card:hover {
    border-color: var(--accent);
    box-shadow: 0 6px 30px rgba(15, 35, 82, 0.10);
    transform: translateY(-4px);
}

.lim-social-card .sc-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.lim-social-card h6 {
    font-family: var(--title-font);
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.lim-social-card span {
    font-size: 12px;
    color: var(--text-muted);
}

.lim-footer {
    background: var(--bg-warm);
    color: var(--text-muted);
    border-top: 1px solid var(--border-light);
}

.lim-footer .widget-title {
    color: var(--text-dark);
    font-family: var(--title-font);
    font-size: 18px;
    margin-bottom: 18px;
}

.lim-footer a {
    color: var(--text-muted);
    transition: all .3s;
    text-decoration: none;
}

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

.lim-footer .links li {
    margin-bottom: 5px;
}

.lim-footer .links li a {
    font-size: 13px;
}

.lim-footer .contact-list .list-info {
    font-size: 13px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.lim-footer .contact-list .list-info i {
    color: var(--accent);
    margin-top: 3px;
}

.lim-footer .footer-bottom {
    border-top: 1px solid var(--border-light);
    padding: 18px 0;
}

.lim-footer .footer-bottom .copyright {
    font-size: 12px;
}

.lim-footer .social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    transition: all .3s;
    margin-right: 5px;
}

.lim-footer .social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.lim-sticky-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    display: none;
}

@media (max-width: 991px) {
    .lim-sticky-mobile {
        display: block;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


*,*::before,*::after{box-sizing:border-box}
:root{
    --accent:#0f2352;--accent-dark:#09163a;--accent-light:#1a3a7a;
    --accent-rgb:15,35,82;
    --bg-warm:#f8f7f4;--text-dark:#111;--text-muted:#6b7280;--border-light:#e5e7eb;
    --font-sans:'Inter',system-ui,-apple-system,sans-serif;
    --font-serif:'Playfair Display',Georgia,serif;
}

.lim-header{position:fixed;top:0;left:0;right:0;z-index:1000;background:transparent;transition:all .5s cubic-bezier(.4,0,.2,1);padding:20px 0}
.lim-header.scrolled{background:rgba(255,255,255,0.92);backdrop-filter:blur(20px) saturate(180%);box-shadow:0 1px 40px rgba(0,0,0,0.06);padding:10px 0}
.lim-header .header-inner{display:flex;align-items:center;justify-content:space-between}
.lim-header .logo img{height:100px;transition:all .5s}
.lim-header.scrolled .logo img{height:60px}
.lim-header .logo-light{display:block}
.lim-header .logo-dark{display:none}
.lim-header.scrolled .logo-light{display:none}
.lim-header.scrolled .logo-dark{display:block}
.lim-header .header-nav{display:flex;align-items:center;gap:28px}
.lim-header .header-nav a{color:rgba(255,255,255,0.85);font-size:13px;font-weight:500;letter-spacing:.3px;transition:color .3s;position:relative;text-decoration:none}
.lim-header .header-nav a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:1.5px;background:var(--accent);transition:width .4s cubic-bezier(.4,0,.2,1)}
.lim-header .header-nav a:hover::after{width:100%}
.lim-header .header-nav a:hover{color:#fff}
.lim-header.scrolled .header-nav a{color:var(--text-dark)}
.lim-header.scrolled .header-nav a:hover{color:var(--accent)}
.lim-header .header-actions{display:flex;align-items:center;gap:12px}
.lim-header .contact-chip{display:flex;align-items:center;gap:5px;color:rgba(255,255,255,0.75);font-size:12px;text-decoration:none;transition:color .3s}
.lim-header .contact-chip i{color:var(--accent);font-size:11px}
.lim-header.scrolled .contact-chip{color:var(--text-muted)}
.lim-header .lang-select{background:transparent;border:1px solid rgba(255,255,255,0.25);color:rgba(255,255,255,0.85);padding:3px 8px;border-radius:4px;font-size:11px;cursor:pointer;font-family:var(--font-sans)}
.lim-header.scrolled .lang-select{border-color:var(--border-light);color:var(--text-muted)}
.lim-header .btn-contact,.lim-header .btn-reserve{background:var(--accent);color:#fff;padding:10px 24px;border-radius:8px;font-size:12px;font-weight:600;transition:all .3s;text-decoration:none;white-space:nowrap;letter-spacing:.3px;display:inline-flex;align-items:center;gap:6px}
.lim-header .btn-contact:hover,.lim-header .btn-reserve:hover{background:var(--accent-light);transform:translateY(-1px);box-shadow:0 4px 15px rgba(var(--accent-rgb),.3)}
.lim-header .mobile-toggle{display:none;color:#fff;font-size:20px;cursor:pointer;align-items:center;justify-content:center}
.lim-header.scrolled .mobile-toggle{color:var(--text-dark)}
@media(max-width:991px){
    .lim-header .header-nav{display:none;position:fixed;top:140px;left:0;right:0;background:#fff;flex-direction:column;padding:20px;gap:16px;box-shadow:0 10px 40px rgba(0,0,0,0.1);z-index:9999;transition:top .3s}
    .lim-header.scrolled .header-nav{top:80px}
    .lim-header .header-nav.d-flex{display:flex!important}
    .lim-header .header-nav a{color:var(--text-dark)!important;font-size:15px}
    .lim-header .header-nav a::after{display:none}
    .lim-header .header-actions .contact-chip,.lim-header .header-actions .lang-select{display:none}
    .lim-header .mobile-toggle{display:flex;align-items:center;justify-content:center;width:34px;height:34px}
    .lim-header .btn-contact,.lim-header .btn-reserve{padding:7px 14px;font-size:11px;display:inline-flex;align-items:center;gap:4px}
}

.hero-section{position:relative;min-height:220px;display:flex;align-items:flex-end;overflow:hidden;background:linear-gradient(160deg,#0a0a1a 0%,#0f2352 40%,#1a3a7a 100%)}
.hero-section .hero-overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(to top,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.1) 50%,transparent 100%)}
.hero-section .hero-content{position:relative;z-index:2;width:100%;padding:180px 0 28px}
.hero-section .breadcrumb{display:inline-flex;align-items:center;gap:5px;font-size:11px;color:rgba(255,255,255,0.35);margin-bottom:10px;text-decoration:none}
.hero-section .breadcrumb a{color:rgba(255,255,255,0.45);text-decoration:none;transition:color .3s}
.hero-section .breadcrumb a:hover{color:#fff}
.hero-section .breadcrumb span{color:rgba(255,255,255,0.7)}
.hero-section .hero-title{font-family:var(--font-serif);font-size:30px;color:#fff;font-weight:400;margin:0;line-height:1.2}
.hero-section .hero-badge{font-size:11px;color:rgba(255,255,255,0.5);padding:3px 12px;border-radius:20px;background:rgba(255,255,255,0.08)}

.lim-section-title { text-align: center; margin-bottom: 48px; }
.lim-section-title .sub {
    color: var(--accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}
.lim-section-title h2 {
    font-family: var(--title-font);
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.lim-section-title p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
@media (max-width: 991px) { .lim-section-title h2 { font-size: 30px; } }

.lim-blog-card {
    border-radius: 12px; overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    transition: all .4s;
    height: 100%;
}
.lim-blog-card:hover { box-shadow: 0 6px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.lim-blog-card .blog-img { height: 200px; overflow: hidden; position: relative; }
.lim-blog-card .blog-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s;
}
.lim-blog-card:hover .blog-img img { transform: scale(1.08); }
.lim-blog-card .blog-img .category-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--accent); color: #fff;
    padding: 4px 12px; border-radius: 20px;
    font-size: 11px; font-weight: 600;
    z-index: 2;
}
.lim-blog-card .blog-body { padding: 18px 22px 22px; }
.lim-blog-card .blog-body .date { font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
.lim-blog-card .blog-body h5 {
    font-family: var(--title-font);
    font-size: 17px;
    margin-bottom: 8px;
}
.lim-blog-card .blog-body h5 a { color: var(--text-dark); text-decoration: none; transition: color .3s; }
.lim-blog-card .blog-body h5 a:hover { color: var(--accent); }
.lim-blog-card .blog-body p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.7;
}
.lim-blog-card .blog-body .read-more {
    color: var(--accent); font-weight: 600; font-size: 12px;
    text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
    transition: gap .3s;
}
.lim-blog-card .blog-body .read-more:hover { gap: 10px; }

.lim-footer { background: var(--bg-warm); color: var(--text-muted); border-top: 1px solid var(--border-light); }
.lim-footer .widget-title { color: var(--text-dark); font-family: var(--title-font); font-size: 18px; margin-bottom: 18px; }
.lim-footer a { color: var(--text-muted); transition: all .3s; text-decoration: none; }
.lim-footer a:hover { color: var(--accent); }
.lim-footer .links li { margin-bottom: 5px; }
.lim-footer .links li a { font-size: 13px; }
.lim-footer .contact-list .list-info { font-size: 13px; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }
.lim-footer .contact-list .list-info i { color: var(--accent); margin-top: 3px; }
.lim-footer .footer-bottom { border-top: 1px solid var(--border-light); padding: 18px 0; }
.lim-footer .footer-bottom .copyright { font-size: 12px; }
.lim-footer .social a {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid #ddd;
    display: inline-flex; align-items: center; justify-content: center;
    color: #bbb; transition: all .3s; margin-right: 5px;
}
.lim-footer .social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.lim-sticky-mobile {
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.08);
    padding: 8px 0;
    display: none;
}
@media (max-width: 991px) { .lim-sticky-mobile { display: block; } }

.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.lim-blog-content .featured-img {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
}
.lim-blog-content .featured-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.lim-blog-content .post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}
.lim-blog-content .post-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
}
.lim-blog-content .post-meta .meta-item i { color: var(--accent); }
.lim-blog-content .post-meta .meta-item .category-pill {
    background: var(--accent);
    color: #fff;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.lim-blog-content .post-body h2 {
    font-family: var(--title-font);
    font-size: 26px;
    color: var(--text-dark);
    margin: 32px 0 14px;
}
.lim-blog-content .post-body p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 16px;
}
.lim-blog-content .post-body ul {
    margin: 12px 0 20px;
    padding-left: 20px;
}
.lim-blog-content .post-body ul li {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 6px;
}
.lim-blog-content .post-body ul li::marker { color: var(--accent); }
.lim-blog-content .share-section {
    margin-top: 36px;
    padding: 24px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}
.lim-blog-content .share-section .share-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}
.lim-blog-content .share-section .share-buttons {
    display: flex;
    gap: 8px;
}
.lim-blog-content .share-section .share-buttons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    transition: all .3s;
    text-decoration: none;
}
.lim-blog-content .share-section .share-buttons a:hover { opacity: .85; transform: translateY(-2px); }
.lim-blog-content .share-section .share-buttons .fb { background: #3b5998; }
.lim-blog-content .share-section .share-buttons .tw { background: #1da1f2; }
.lim-blog-content .share-section .share-buttons .wa { background: #25D366; }
.lim-blog-content .share-section .share-buttons .em { background: var(--accent); }

.lim-blog-content .author-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.lim-blog-content .author-box .author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg-warm);
}
.lim-blog-content .author-box .author-info h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}
.lim-blog-content .author-box .author-info span {
    font-size: 12px;
    color: var(--text-muted);
}

.lim-comments { margin-top: 40px; }
.lim-comments h3 {
    font-family: var(--title-font);
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 24px;
}
.lim-comments .comment-item {
    display: flex;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-light);
}
.lim-comments .comment-item:last-child { border-bottom: none; }
.lim-comments .comment-item .c-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg-warm);
    flex-shrink: 0;
}
.lim-comments .comment-item .c-body .c-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}
.lim-comments .comment-item .c-body .c-date {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.lim-comments .comment-item .c-body .c-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}
@media (max-width: 767px) {
    .lim-blog-content .featured-img img { height: 220px; }
    .lim-blog-content .post-body h2 { font-size: 22px; }
}

*,*::before,*::after{box-sizing:border-box}
:root{
    --accent:#0f2352;--accent-dark:#09163a;--accent-light:#1a3a7a;
    --accent-rgb:15,35,82;
    --bg-warm:#f8f7f4;--text-dark:#111;--text-muted:#6b7280;--border-light:#e5e7eb;
    --font-sans:'Inter',system-ui,-apple-system,sans-serif;
    --font-serif:'Playfair Display',Georgia,serif;
}

.lim-header{position:fixed;top:0;left:0;right:0;z-index:1000;background:transparent;transition:all .5s cubic-bezier(.4,0,.2,1);padding:20px 0}
.lim-header.scrolled{background:rgba(255,255,255,0.92);backdrop-filter:blur(20px) saturate(180%);box-shadow:0 1px 40px rgba(0,0,0,0.06);padding:10px 0}
.lim-header .header-inner{display:flex;align-items:center;justify-content:space-between}
.lim-header .logo img{height:100px;transition:all .5s}
.lim-header.scrolled .logo img{height:60px}
.lim-header .logo-light{display:block}
.lim-header .logo-dark{display:none}
.lim-header.scrolled .logo-light{display:none}
.lim-header.scrolled .logo-dark{display:block}
.lim-header .header-nav{display:flex;align-items:center;gap:28px}
.lim-header .header-nav a{color:rgba(255,255,255,0.85);font-size:13px;font-weight:500;letter-spacing:.3px;transition:color .3s;position:relative;text-decoration:none}
.lim-header .header-nav a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:1.5px;background:var(--accent);transition:width .4s cubic-bezier(.4,0,.2,1)}
.lim-header .header-nav a:hover::after{width:100%}
.lim-header .header-nav a:hover{color:#fff}
.lim-header.scrolled .header-nav a{color:var(--text-dark)}
.lim-header.scrolled .header-nav a:hover{color:var(--accent)}
.lim-header .header-actions{display:flex;align-items:center;gap:12px}
.lim-header .contact-chip{display:flex;align-items:center;gap:5px;color:rgba(255,255,255,0.75);font-size:12px;text-decoration:none;transition:color .3s}
.lim-header .contact-chip i{color:var(--accent);font-size:11px}
.lim-header.scrolled .contact-chip{color:var(--text-muted)}
.lim-header .lang-select{background:transparent;border:1px solid rgba(255,255,255,0.25);color:rgba(255,255,255,0.85);padding:3px 8px;border-radius:4px;font-size:11px;cursor:pointer;font-family:var(--font-sans)}
.lim-header.scrolled .lang-select{border-color:var(--border-light);color:var(--text-muted)}
.lim-header .btn-contact,.lim-header .btn-reserve{background:var(--accent);color:#fff;padding:10px 24px;border-radius:8px;font-size:12px;font-weight:600;transition:all .3s;text-decoration:none;white-space:nowrap;letter-spacing:.3px;display:inline-flex;align-items:center;gap:6px}
.lim-header .btn-contact:hover,.lim-header .btn-reserve:hover{background:var(--accent-light);transform:translateY(-1px);box-shadow:0 4px 15px rgba(var(--accent-rgb),.3)}
.lim-header .mobile-toggle{display:none;color:#fff;font-size:20px;cursor:pointer;align-items:center;justify-content:center}
.lim-header.scrolled .mobile-toggle{color:var(--text-dark)}
@media(max-width:991px){
    .lim-header .header-nav{display:none;position:fixed;top:140px;left:0;right:0;background:#fff;flex-direction:column;padding:20px;gap:16px;box-shadow:0 10px 40px rgba(0,0,0,0.1);z-index:9999;transition:top .3s}
    .lim-header.scrolled .header-nav{top:80px}
    .lim-header .header-nav.d-flex{display:flex!important}
    .lim-header .header-nav a{color:var(--text-dark)!important;font-size:15px}
    .lim-header .header-nav a::after{display:none}
    .lim-header .header-actions .contact-chip,.lim-header .header-actions .lang-select{display:none}
    .lim-header .mobile-toggle{display:flex;align-items:center;justify-content:center;width:34px;height:34px}
    .lim-header .btn-contact,.lim-header .btn-reserve{padding:7px 14px;font-size:11px;display:inline-flex;align-items:center;gap:4px}
}

.hero-section{position:relative;min-height:220px;display:flex;align-items:flex-end;overflow:hidden;background:linear-gradient(160deg,#0a0a1a 0%,#0f2352 40%,#1a3a7a 100%)}
.hero-section .hero-overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(to top,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.1) 50%,transparent 100%)}
.hero-section .hero-content{position:relative;z-index:2;width:100%;padding:180px 0 28px}
.hero-section .breadcrumb{display:inline-flex;align-items:center;gap:5px;font-size:11px;color:rgba(255,255,255,0.35);margin-bottom:10px;text-decoration:none}
.hero-section .breadcrumb a{color:rgba(255,255,255,0.45);text-decoration:none;transition:color .3s}
.hero-section .breadcrumb a:hover{color:#fff}
.hero-section .breadcrumb span{color:rgba(255,255,255,0.7)}
.hero-section .hero-title{font-family:var(--font-serif);font-size:30px;color:#fff;font-weight:400;margin:0;line-height:1.2}
.hero-section .hero-badge{font-size:11px;color:rgba(255,255,255,0.5);padding:3px 12px;border-radius:20px;background:rgba(255,255,255,0.08)}

.lim-section-title { text-align: center; margin-bottom: 48px; }
.lim-section-title .sub { color: var(--accent); font-size: 12px; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; margin-bottom: 8px; display: block; }
.lim-section-title h2 { font-family: var(--title-font); font-size: 40px; color: var(--text-dark); margin-bottom: 12px; }
.lim-section-title p { color: var(--text-muted); font-size: 15px; max-width: 560px; margin: 0 auto; line-height: 1.7; }
@media (max-width: 991px) { .lim-section-title h2 { font-size: 30px; } }
.lim-blog-card { border-radius: 12px; overflow: hidden; background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,0.04); transition: all .4s; height: 100%; }
.lim-blog-card:hover { box-shadow: 0 6px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.lim-blog-card .blog-img { height: 200px; overflow: hidden; position: relative; }
.lim-blog-card .blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.lim-blog-card:hover .blog-img img { transform: scale(1.08); }
.lim-blog-card .blog-img .category-badge { position: absolute; top: 12px; left: 12px; background: var(--accent); color: #fff; padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; z-index: 2; }
.lim-blog-card .blog-body { padding: 18px 22px 22px; }
.lim-blog-card .blog-body .date { font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
.lim-blog-card .blog-body h5 { font-family: var(--title-font); font-size: 17px; margin-bottom: 8px; }
.lim-blog-card .blog-body h5 a { color: var(--text-dark); text-decoration: none; transition: color .3s; }
.lim-blog-card .blog-body h5 a:hover { color: var(--accent); }
.lim-blog-card .blog-body p { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.7; }
.lim-blog-card .blog-body .read-more { color: var(--accent); font-weight: 600; font-size: 12px; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap .3s; }
.lim-blog-card .blog-body .read-more:hover { gap: 10px; }
.lim-footer { background: var(--bg-warm); color: var(--text-muted); border-top: 1px solid var(--border-light); }
.lim-footer .widget-title { color: var(--text-dark); font-family: var(--title-font); font-size: 18px; margin-bottom: 18px; }
.lim-footer a { color: var(--text-muted); transition: all .3s; text-decoration: none; }
.lim-footer a:hover { color: var(--accent); }
.lim-footer .links li { margin-bottom: 5px; }
.lim-footer .links li a { font-size: 13px; }
.lim-footer .contact-list .list-info { font-size: 13px; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }
.lim-footer .contact-list .list-info i { color: var(--accent); margin-top: 3px; }
.lim-footer .footer-bottom { border-top: 1px solid var(--border-light); padding: 18px 0; }
.lim-footer .footer-bottom .copyright { font-size: 12px; }
.lim-footer .social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid #ddd; display: inline-flex; align-items: center; justify-content: center; color: #bbb; transition: all .3s; margin-right: 5px; }
.lim-footer .social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.lim-sticky-mobile { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: #fff; box-shadow: 0 -2px 20px rgba(0,0,0,0.08); padding: 8px 0; display: none; }
@media (max-width: 991px) { .lim-sticky-mobile { display: block; } }
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.lim-blog-content .featured-img { border-radius: 16px; overflow: hidden; margin-bottom: 30px; }
.lim-blog-content .featured-img img { width: 100%; height: 420px; object-fit: cover; }
.lim-blog-content .post-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border-light); }
.lim-blog-content .post-meta .meta-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted); }
.lim-blog-content .post-meta .meta-item i { color: var(--accent); }
.lim-blog-content .post-meta .meta-item .category-pill { background: var(--accent); color: #fff; padding: 3px 12px; border-radius: 20px; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.lim-blog-content .post-body h2 { font-family: var(--title-font); font-size: 26px; color: var(--text-dark); margin: 32px 0 14px; }
.lim-blog-content .post-body p { font-size: 15px; color: var(--text-muted); line-height: 1.9; margin-bottom: 16px; }
.lim-blog-content .share-section { margin-top: 36px; padding: 24px 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.lim-blog-content .share-section .share-label { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.lim-blog-content .share-section .share-buttons { display: flex; gap: 8px; }
.lim-blog-content .share-section .share-buttons a { width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 15px; transition: all .3s; text-decoration: none; }
.lim-blog-content .share-section .share-buttons a:hover { opacity: .85; transform: translateY(-2px); }
.lim-blog-content .share-section .share-buttons .fb { background: #3b5998; }
.lim-blog-content .share-section .share-buttons .tw { background: #1da1f2; }
.lim-blog-content .share-section .share-buttons .wa { background: #25D366; }
.lim-blog-content .share-section .share-buttons .em { background: var(--accent); }
.lim-blog-content .author-box { display: flex; align-items: center; gap: 16px; background: #fff; border-radius: 12px; padding: 20px 24px; margin-top: 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.lim-blog-content .author-box .author-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; background: var(--bg-warm); }
.lim-blog-content .author-box .author-info h6 { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.lim-blog-content .author-box .author-info span { font-size: 12px; color: var(--text-muted); }
.lim-comments { margin-top: 40px; }
.lim-comments h3 { font-family: var(--title-font); font-size: 22px; color: var(--text-dark); margin-bottom: 24px; }
.lim-comments .comment-item { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--border-light); }
.lim-comments .comment-item:last-child { border-bottom: none; }
.lim-comments .comment-item .c-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--bg-warm); flex-shrink: 0; }
.lim-comments .comment-item .c-body .c-name { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.lim-comments .comment-item .c-body .c-date { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; }
.lim-comments .comment-item .c-body .c-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
@media (max-width: 767px) { .lim-blog-content .featured-img img { height: 220px; } .lim-blog-content .post-body h2 { font-size: 22px; } }

*,*::before,*::after{box-sizing:border-box}
:root{
    --accent:#0f2352;--accent-dark:#09163a;--accent-light:#1a3a7a;
    --accent-rgb:15,35,82;
    --bg-warm:#f8f7f4;--text-dark:#111;--text-muted:#6b7280;--border-light:#e5e7eb;
    --font-sans:'Inter',system-ui,-apple-system,sans-serif;
    --font-serif:'Playfair Display',Georgia,serif;
}

.lim-header{position:fixed;top:0;left:0;right:0;z-index:1000;background:transparent;transition:all .5s cubic-bezier(.4,0,.2,1);padding:20px 0}
.lim-header.scrolled{background:rgba(255,255,255,0.92);backdrop-filter:blur(20px) saturate(180%);box-shadow:0 1px 40px rgba(0,0,0,0.06);padding:10px 0}
.lim-header .header-inner{display:flex;align-items:center;justify-content:space-between}
.lim-header .logo img{height:100px;transition:all .5s}
.lim-header.scrolled .logo img{height:60px}
.lim-header .logo-light{display:block}
.lim-header .logo-dark{display:none}
.lim-header.scrolled .logo-light{display:none}
.lim-header.scrolled .logo-dark{display:block}
.lim-header .header-nav{display:flex;align-items:center;gap:28px}
.lim-header .header-nav a{color:rgba(255,255,255,0.85);font-size:13px;font-weight:500;letter-spacing:.3px;transition:color .3s;position:relative;text-decoration:none}
.lim-header .header-nav a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:1.5px;background:var(--accent);transition:width .4s cubic-bezier(.4,0,.2,1)}
.lim-header .header-nav a:hover::after{width:100%}
.lim-header .header-nav a:hover{color:#fff}
.lim-header.scrolled .header-nav a{color:var(--text-dark)}
.lim-header.scrolled .header-nav a:hover{color:var(--accent)}
.lim-header .header-actions{display:flex;align-items:center;gap:12px}
.lim-header .contact-chip{display:flex;align-items:center;gap:5px;color:rgba(255,255,255,0.75);font-size:12px;text-decoration:none;transition:color .3s}
.lim-header .contact-chip i{color:var(--accent);font-size:11px}
.lim-header.scrolled .contact-chip{color:var(--text-muted)}
.lim-header .lang-select{background:transparent;border:1px solid rgba(255,255,255,0.25);color:rgba(255,255,255,0.85);padding:3px 8px;border-radius:4px;font-size:11px;cursor:pointer;font-family:var(--font-sans)}
.lim-header.scrolled .lang-select{border-color:var(--border-light);color:var(--text-muted)}
.lim-header .btn-contact,.lim-header .btn-reserve{background:var(--accent);color:#fff;padding:10px 24px;border-radius:8px;font-size:12px;font-weight:600;transition:all .3s;text-decoration:none;white-space:nowrap;letter-spacing:.3px;display:inline-flex;align-items:center;gap:6px}
.lim-header .btn-contact:hover,.lim-header .btn-reserve:hover{background:var(--accent-light);transform:translateY(-1px);box-shadow:0 4px 15px rgba(var(--accent-rgb),.3)}
.lim-header .mobile-toggle{display:none;color:#fff;font-size:20px;cursor:pointer;align-items:center;justify-content:center}
.lim-header.scrolled .mobile-toggle{color:var(--text-dark)}
@media(max-width:991px){
    .lim-header .header-nav{display:none;position:fixed;top:140px;left:0;right:0;background:#fff;flex-direction:column;padding:20px;gap:16px;box-shadow:0 10px 40px rgba(0,0,0,0.1);z-index:9999;transition:top .3s}
    .lim-header.scrolled .header-nav{top:80px}
    .lim-header .header-nav.d-flex{display:flex!important}
    .lim-header .header-nav a{color:var(--text-dark)!important;font-size:15px}
    .lim-header .header-nav a::after{display:none}
    .lim-header .header-actions .contact-chip,.lim-header .header-actions .lang-select{display:none}
    .lim-header .mobile-toggle{display:flex;align-items:center;justify-content:center;width:34px;height:34px}
    .lim-header .btn-contact,.lim-header .btn-reserve{padding:7px 14px;font-size:11px;display:inline-flex;align-items:center;gap:4px}
}

.hero-section{position:relative;min-height:220px;display:flex;align-items:flex-end;overflow:hidden;background:linear-gradient(160deg,#0a0a1a 0%,#0f2352 40%,#1a3a7a 100%)}
.hero-section .hero-overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(to top,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.1) 50%,transparent 100%)}
.hero-section .hero-content{position:relative;z-index:2;width:100%;padding:180px 0 28px}
.hero-section .breadcrumb{display:inline-flex;align-items:center;gap:5px;font-size:11px;color:rgba(255,255,255,0.35);margin-bottom:10px;text-decoration:none}
.hero-section .breadcrumb a{color:rgba(255,255,255,0.45);text-decoration:none;transition:color .3s}
.hero-section .breadcrumb a:hover{color:#fff}
.hero-section .breadcrumb span{color:rgba(255,255,255,0.7)}
.hero-section .hero-title{font-family:var(--font-serif);font-size:30px;color:#fff;font-weight:400;margin:0;line-height:1.2}
.hero-section .hero-badge{font-size:11px;color:rgba(255,255,255,0.5);padding:3px 12px;border-radius:20px;background:rgba(255,255,255,0.08)}

.lim-section-title { text-align: center; margin-bottom: 48px; }
.lim-section-title .sub { color: var(--accent); font-size: 12px; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; margin-bottom: 8px; display: block; }
.lim-section-title h2 { font-family: var(--title-font); font-size: 40px; color: var(--text-dark); margin-bottom: 12px; }
.lim-section-title p { color: var(--text-muted); font-size: 15px; max-width: 560px; margin: 0 auto; line-height: 1.7; }
@media (max-width: 991px) { .lim-section-title h2 { font-size: 30px; } }
.lim-blog-card { border-radius: 12px; overflow: hidden; background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,0.04); transition: all .4s; height: 100%; }
.lim-blog-card:hover { box-shadow: 0 6px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.lim-blog-card .blog-img { height: 200px; overflow: hidden; position: relative; }
.lim-blog-card .blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.lim-blog-card:hover .blog-img img { transform: scale(1.08); }
.lim-blog-card .blog-img .category-badge { position: absolute; top: 12px; left: 12px; background: var(--accent); color: #fff; padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; z-index: 2; }
.lim-blog-card .blog-body { padding: 18px 22px 22px; }
.lim-blog-card .blog-body .date { font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
.lim-blog-card .blog-body h5 { font-family: var(--title-font); font-size: 17px; margin-bottom: 8px; }
.lim-blog-card .blog-body h5 a { color: var(--text-dark); text-decoration: none; transition: color .3s; }
.lim-blog-card .blog-body h5 a:hover { color: var(--accent); }
.lim-blog-card .blog-body p { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.7; }
.lim-blog-card .blog-body .read-more { color: var(--accent); font-weight: 600; font-size: 12px; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap .3s; }
.lim-blog-card .blog-body .read-more:hover { gap: 10px; }
.lim-footer { background: var(--bg-warm); color: var(--text-muted); border-top: 1px solid var(--border-light); }
.lim-footer .widget-title { color: var(--text-dark); font-family: var(--title-font); font-size: 18px; margin-bottom: 18px; }
.lim-footer a { color: var(--text-muted); transition: all .3s; text-decoration: none; }
.lim-footer a:hover { color: var(--accent); }
.lim-footer .links li { margin-bottom: 5px; }
.lim-footer .links li a { font-size: 13px; }
.lim-footer .contact-list .list-info { font-size: 13px; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }
.lim-footer .contact-list .list-info i { color: var(--accent); margin-top: 3px; }
.lim-footer .footer-bottom { border-top: 1px solid var(--border-light); padding: 18px 0; }
.lim-footer .footer-bottom .copyright { font-size: 12px; }
.lim-footer .social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid #ddd; display: inline-flex; align-items: center; justify-content: center; color: #bbb; transition: all .3s; margin-right: 5px; }
.lim-footer .social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.lim-sticky-mobile { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: #fff; box-shadow: 0 -2px 20px rgba(0,0,0,0.08); padding: 8px 0; display: none; }
@media (max-width: 991px) { .lim-sticky-mobile { display: block; } }
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.lim-blog-content .featured-img { border-radius: 16px; overflow: hidden; margin-bottom: 30px; }
.lim-blog-content .featured-img img { width: 100%; height: 420px; object-fit: cover; }
.lim-blog-content .post-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border-light); }
.lim-blog-content .post-meta .meta-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted); }
.lim-blog-content .post-meta .meta-item i { color: var(--accent); }
.lim-blog-content .post-meta .meta-item .category-pill { background: var(--accent); color: #fff; padding: 3px 12px; border-radius: 20px; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.lim-blog-content .post-body h2 { font-family: var(--title-font); font-size: 26px; color: var(--text-dark); margin: 32px 0 14px; }
.lim-blog-content .post-body p { font-size: 15px; color: var(--text-muted); line-height: 1.9; margin-bottom: 16px; }
.lim-blog-content .share-section { margin-top: 36px; padding: 24px 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.lim-blog-content .share-section .share-label { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.lim-blog-content .share-section .share-buttons { display: flex; gap: 8px; }
.lim-blog-content .share-section .share-buttons a { width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 15px; transition: all .3s; text-decoration: none; }
.lim-blog-content .share-section .share-buttons a:hover { opacity: .85; transform: translateY(-2px); }
.lim-blog-content .share-section .share-buttons .fb { background: #3b5998; }
.lim-blog-content .share-section .share-buttons .tw { background: #1da1f2; }
.lim-blog-content .share-section .share-buttons .wa { background: #25D366; }
.lim-blog-content .share-section .share-buttons .em { background: var(--accent); }
.lim-blog-content .author-box { display: flex; align-items: center; gap: 16px; background: #fff; border-radius: 12px; padding: 20px 24px; margin-top: 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.lim-blog-content .author-box .author-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; background: var(--bg-warm); }
.lim-blog-content .author-box .author-info h6 { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.lim-blog-content .author-box .author-info span { font-size: 12px; color: var(--text-muted); }
.lim-comments { margin-top: 40px; }
.lim-comments h3 { font-family: var(--title-font); font-size: 22px; color: var(--text-dark); margin-bottom: 24px; }
.lim-comments .comment-item { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--border-light); }
.lim-comments .comment-item:last-child { border-bottom: none; }
.lim-comments .comment-item .c-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--bg-warm); flex-shrink: 0; }
.lim-comments .comment-item .c-body .c-name { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.lim-comments .comment-item .c-body .c-date { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; }
.lim-comments .comment-item .c-body .c-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
@media (max-width: 767px) { .lim-blog-content .featured-img img { height: 220px; } .lim-blog-content .post-body h2 { font-size: 22px; } }

*,*::before,*::after{box-sizing:border-box}
:root{
    --accent:#0f2352;--accent-dark:#09163a;--accent-light:#1a3a7a;
    --accent-rgb:15,35,82;
    --bg-warm:#f8f7f4;--text-dark:#111;--text-muted:#6b7280;--border-light:#e5e7eb;
    --font-sans:'Inter',system-ui,-apple-system,sans-serif;
    --font-serif:'Playfair Display',Georgia,serif;
}

.lim-header{position:fixed;top:0;left:0;right:0;z-index:1000;background:transparent;transition:all .5s cubic-bezier(.4,0,.2,1);padding:20px 0}
.lim-header.scrolled{background:rgba(255,255,255,0.92);backdrop-filter:blur(20px) saturate(180%);box-shadow:0 1px 40px rgba(0,0,0,0.06);padding:10px 0}
.lim-header .header-inner{display:flex;align-items:center;justify-content:space-between}
.lim-header .logo img{height:100px;transition:all .5s}
.lim-header.scrolled .logo img{height:60px}
.lim-header .logo-light{display:block}
.lim-header .logo-dark{display:none}
.lim-header.scrolled .logo-light{display:none}
.lim-header.scrolled .logo-dark{display:block}
.lim-header .header-nav{display:flex;align-items:center;gap:28px}
.lim-header .header-nav a{color:rgba(255,255,255,0.85);font-size:13px;font-weight:500;letter-spacing:.3px;transition:color .3s;position:relative;text-decoration:none}
.lim-header .header-nav a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:1.5px;background:var(--accent);transition:width .4s cubic-bezier(.4,0,.2,1)}
.lim-header .header-nav a:hover::after{width:100%}
.lim-header .header-nav a:hover{color:#fff}
.lim-header.scrolled .header-nav a{color:var(--text-dark)}
.lim-header.scrolled .header-nav a:hover{color:var(--accent)}
.lim-header .header-actions{display:flex;align-items:center;gap:12px}
.lim-header .contact-chip{display:flex;align-items:center;gap:5px;color:rgba(255,255,255,0.75);font-size:12px;text-decoration:none;transition:color .3s}
.lim-header .contact-chip i{color:var(--accent);font-size:11px}
.lim-header.scrolled .contact-chip{color:var(--text-muted)}
.lim-header .lang-select{background:transparent;border:1px solid rgba(255,255,255,0.25);color:rgba(255,255,255,0.85);padding:3px 8px;border-radius:4px;font-size:11px;cursor:pointer;font-family:var(--font-sans)}
.lim-header.scrolled .lang-select{border-color:var(--border-light);color:var(--text-muted)}
.lim-header .btn-contact,.lim-header .btn-reserve{background:var(--accent);color:#fff;padding:10px 24px;border-radius:8px;font-size:12px;font-weight:600;transition:all .3s;text-decoration:none;white-space:nowrap;letter-spacing:.3px;display:inline-flex;align-items:center;gap:6px}
.lim-header .btn-contact:hover,.lim-header .btn-reserve:hover{background:var(--accent-light);transform:translateY(-1px);box-shadow:0 4px 15px rgba(var(--accent-rgb),.3)}
.lim-header .mobile-toggle{display:none;color:#fff;font-size:20px;cursor:pointer;align-items:center;justify-content:center}
.lim-header.scrolled .mobile-toggle{color:var(--text-dark)}
@media(max-width:991px){
    .lim-header .header-nav{display:none;position:fixed;top:140px;left:0;right:0;background:#fff;flex-direction:column;padding:20px;gap:16px;box-shadow:0 10px 40px rgba(0,0,0,0.1);z-index:9999;transition:top .3s}
    .lim-header.scrolled .header-nav{top:80px}
    .lim-header .header-nav.d-flex{display:flex!important}
    .lim-header .header-nav a{color:var(--text-dark)!important;font-size:15px}
    .lim-header .header-nav a::after{display:none}
    .lim-header .header-actions .contact-chip,.lim-header .header-actions .lang-select{display:none}
    .lim-header .mobile-toggle{display:flex;align-items:center;justify-content:center;width:34px;height:34px}
    .lim-header .btn-contact,.lim-header .btn-reserve{padding:7px 14px;font-size:11px;display:inline-flex;align-items:center;gap:4px}
}

.hero-section{position:relative;min-height:220px;display:flex;align-items:flex-end;overflow:hidden;background:linear-gradient(160deg,#0a0a1a 0%,#0f2352 40%,#1a3a7a 100%)}
.hero-section .hero-overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(to top,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.1) 50%,transparent 100%)}
.hero-section .hero-content{position:relative;z-index:2;width:100%;padding:180px 0 28px}
.hero-section .breadcrumb{display:inline-flex;align-items:center;gap:5px;font-size:11px;color:rgba(255,255,255,0.35);margin-bottom:10px;text-decoration:none}
.hero-section .breadcrumb a{color:rgba(255,255,255,0.45);text-decoration:none;transition:color .3s}
.hero-section .breadcrumb a:hover{color:#fff}
.hero-section .breadcrumb span{color:rgba(255,255,255,0.7)}
.hero-section .hero-title{font-family:var(--font-serif);font-size:30px;color:#fff;font-weight:400;margin:0;line-height:1.2}
.hero-section .hero-badge{font-size:11px;color:rgba(255,255,255,0.5);padding:3px 12px;border-radius:20px;background:rgba(255,255,255,0.08)}

.lim-price-bar{
    position:sticky;top:0;z-index:50;background:#fff;border-bottom:1px solid var(--border-light);
    padding:12px 0;display:none;transition:all .3s
}
.lim-price-bar.visible{display:block}
.lim-price-bar .inner{display:flex;align-items:center;justify-content:space-between}
.lim-price-bar .price-info{display:flex;align-items:center;gap:12px}
.lim-price-bar .price-info .amount{font-size:22px;font-weight:700;color:var(--accent)}
.lim-price-bar .price-info .per{font-size:13px;color:var(--text-muted)}
.lim-price-bar .price-info .badge{background:rgba(var(--accent-rgb),.08);color:var(--accent);font-size:11px;padding:4px 10px;border-radius:20px;font-weight:500}
.lim-price-bar .btn-book{
    background:var(--gold);color:#fff;padding:10px 28px;border-radius:8px;
    font-size:13px;font-weight:600;text-decoration:none;transition:all .3s;white-space:nowrap
}
.lim-price-bar .btn-book:hover{background:#b8964e;transform:translateY(-1px)}

.lim-gallery{position:relative}
.lim-gallery .g-main{position:relative;overflow:hidden;border-radius:16px;cursor:pointer}
.lim-gallery .g-main img{width:100%;height:520px;object-fit:cover;transition:transform .6s cubic-bezier(.4,0,.2,1)}
.lim-gallery .g-main:hover img{transform:scale(1.04)}
.lim-gallery .g-main .g-overlay{
    position:absolute;inset:0;background:rgba(0,0,0,0.2);opacity:0;transition:opacity .4s;display:flex;align-items:center;justify-content:center
}
.lim-gallery .g-main:hover .g-overlay{opacity:1}
.lim-gallery .g-main .g-overlay i{color:#fff;font-size:32px;text-shadow:0 2px 20px rgba(0,0,0,0.3)}
.lim-gallery .g-thumbs{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.lim-gallery .g-thumbs .thumb{position:relative;overflow:hidden;border-radius:12px;cursor:pointer;height:180px}
.lim-gallery .g-thumbs .thumb img{width:100%;height:100%;object-fit:cover;transition:transform .6s cubic-bezier(.4,0,.2,1)}
.lim-gallery .g-thumbs .thumb:hover img{transform:scale(1.06)}
.lim-gallery .g-thumbs .thumb .more-overlay{
    position:absolute;inset:0;background:rgba(0,0,0,0.5);display:flex;align-items:center;justify-content:center
}
.lim-gallery .g-thumbs .thumb .more-overlay span{color:#fff;font-size:18px;font-weight:600;font-family:var(--font-serif)}
@media(max-width:991px){
    .lim-gallery .g-main img{height:360px}
    .lim-gallery .g-thumbs .thumb{height:130px}
}
@media(max-width:767px){
    .lim-gallery .g-main img{height:280px}
    .lim-gallery .g-thumbs{grid-template-columns:1fr 1fr;gap:8px}
    .lim-gallery .g-thumbs .thumb{height:100px}
}

.lim-info-card{
    background:#fff;border-radius:20px;padding:36px 32px;
    box-shadow:0 4px 40px rgba(0,0,0,0.06);border:1px solid var(--border-light);position:sticky;top:100px
}
.lim-info-card .price-display{text-align:center;padding-bottom:24px;border-bottom:1px solid var(--border-light);margin-bottom:24px}
.lim-info-card .price-display .curr{font-size:14px;color:var(--text-muted)}
.lim-info-card .price-display .amount{font-size:44px;font-weight:700;color:var(--accent);line-height:1}
.lim-info-card .price-display .per{font-size:14px;color:var(--text-muted)}
.lim-info-card .price-display .note{font-size:12px;color:var(--text-muted);margin-top:6px}
.lim-info-card .specs{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:24px}
.lim-info-card .specs .item{display:flex;align-items:center;gap:10px}
.lim-info-card .specs .item .icon{width:36px;height:36px;border-radius:10px;background:rgba(var(--accent-rgb),.06);display:flex;align-items:center;justify-content:center;color:var(--accent);font-size:14px;flex-shrink:0}
.lim-info-card .specs .item .text{font-size:13px;line-height:1.3}
.lim-info-card .specs .item .text small{display:block;color:var(--text-muted);font-size:11px}
.lim-info-card .features{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:20px}
.lim-info-card .features span{
    background:var(--bg-light);border:1px solid var(--border-light);border-radius:20px;
    padding:4px 12px;font-size:11px;color:var(--text-muted);display:inline-flex;align-items:center;gap:4px
}
.lim-info-card .features span i{color:var(--gold);font-size:9px}
.lim-info-card .btn-book{
    display:block;text-align:center;padding:14px;border-radius:12px;
    background:linear-gradient(135deg,var(--gold),#b8964e);color:#fff;
    font-size:14px;font-weight:600;text-decoration:none;transition:all .3s
}
.lim-info-card .btn-book:hover{transform:translateY(-2px);box-shadow:0 8px 30px rgba(var(--gold-rgb),.3)}
.lim-info-card .btn-book i{margin-right:8px}
.lim-info-card .contact-links{display:flex;gap:8px;margin-top:12px}
.lim-info-card .contact-links a{
    flex:1;padding:10px;border-radius:10px;border:1px solid var(--border-light);
    text-align:center;font-size:12px;color:var(--text-muted);text-decoration:none;transition:all .3s
}
.lim-info-card .contact-links a:hover{border-color:var(--accent);color:var(--accent);background:rgba(var(--accent-rgb),.03)}
@media(max-width:991px){.lim-info-card{position:static;margin-top:24px;padding:28px 24px}}

.lim-section-title{text-align:center;margin-bottom:48px}
.lim-section-title .sub{
    display:inline-flex;align-items:center;gap:8px;
    color:var(--gold);font-size:11px;text-transform:uppercase;letter-spacing:2.5px;font-weight:600;margin-bottom:10px
}
.lim-section-title .sub::before,.lim-section-title .sub::after{content:'';width:24px;height:1px;background:var(--gold)}
.lim-section-title h2{
    font-family:var(--font-serif);font-size:clamp(30px,3.2vw,42px);
    color:var(--text-dark);margin-bottom:12px;font-weight:400
}
.lim-section-title p{color:var(--text-muted);font-size:15px;max-width:560px;margin:0 auto;line-height:1.7}

.lim-detail-cards{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.lim-detail-cards .card{
    background:var(--bg-light);border:none;border-radius:16px;padding:28px 24px;transition:all .3s
}
.lim-detail-cards .card:hover{background:#fff;box-shadow:0 4px 30px rgba(0,0,0,0.04);transform:translateY(-2px)}
.lim-detail-cards .card .icon{width:44px;height:44px;border-radius:12px;background:rgba(var(--accent-rgb),.06);display:flex;align-items:center;justify-content:center;color:var(--accent);font-size:18px;margin-bottom:12px}
.lim-detail-cards .card h5{font-size:15px;font-weight:600;margin-bottom:6px;color:var(--text-dark)}
.lim-detail-cards .card p{font-size:13px;color:var(--text-muted);line-height:1.6;margin:0}
@media(max-width:767px){.lim-detail-cards{grid-template-columns:1fr}}

.lim-feature-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.lim-feature-grid .item{display:flex;align-items:center;gap:12px;padding:14px 18px;border-radius:12px;background:var(--bg-light);transition:all .3s;font-size:14px;color:var(--text-dark)}
.lim-feature-grid .item:hover{background:#fff;box-shadow:0 2px 20px rgba(0,0,0,0.04);transform:translateX(4px)}
.lim-feature-grid .item i{color:var(--gold);font-size:14px;width:20px}

.lim-amenity-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(110px,1fr));gap:12px}
.lim-amenity-grid .item{
    text-align:center;padding:28px 12px;border-radius:16px;background:#fff;
    border:1px solid var(--border-light);transition:all .4s cubic-bezier(.4,0,.2,1);cursor:default
}
.lim-amenity-grid .item:hover{
    border-color:var(--gold);transform:translateY(-4px);
    box-shadow:0 12px 40px rgba(0,0,0,0.06)
}
.lim-amenity-grid .item .icon{
    width:52px;height:52px;border-radius:14px;display:flex;align-items:center;justify-content:center;
    margin:0 auto 12px;font-size:20px;color:var(--accent);background:rgba(var(--accent-rgb),.06);transition:all .4s
}
.lim-amenity-grid .item:hover .icon{background:var(--accent);color:#fff}
.lim-amenity-grid .item h6{font-size:11px;font-weight:500;color:var(--text-dark);margin:0;line-height:1.3}

.lim-policy-cards{display:grid;grid-template-columns:1fr 1fr 1fr;gap:16px}
.lim-policy-cards .card{
    background:var(--bg-light);border:none;border-radius:16px;padding:24px;text-align:center;transition:all .3s
}
.lim-policy-cards .card:hover{background:#fff;box-shadow:0 4px 30px rgba(0,0,0,0.04);transform:translateY(-2px)}
.lim-policy-cards .card .icon{width:48px;height:48px;border-radius:50%;background:rgba(var(--accent-rgb),.06);display:flex;align-items:center;justify-content:center;margin:0 auto 12px;color:var(--accent);font-size:18px}
.lim-policy-cards .card h6{font-size:13px;font-weight:600;margin-bottom:4px}
.lim-policy-cards .card p{font-size:12px;color:var(--text-muted);margin:0;line-height:1.5}
@media(max-width:767px){.lim-policy-cards{grid-template-columns:1fr}}

.lim-faq .accordion-item{
    border:none;border-radius:14px;margin-bottom:10px;overflow:hidden;
    background:var(--bg-light);transition:all .3s
}
.lim-faq .accordion-item:hover{background:#fff;box-shadow:0 2px 20px rgba(0,0,0,0.04)}
.lim-faq .accordion-button{
    padding:18px 22px;font-size:14px;font-weight:500;color:var(--text-dark);
    background:transparent;box-shadow:none;gap:10px
}
.lim-faq .accordion-button:not(.collapsed){background:transparent;color:var(--accent)}
.lim-faq .accordion-button .num{color:var(--gold);font-size:12px;font-weight:700;font-family:var(--font-serif)}
.lim-faq .accordion-button::after{background-size:14px;opacity:.4}
.lim-faq .accordion-body{padding:0 22px 18px;font-size:13px;color:var(--text-muted);line-height:1.7}

.lim-cta{
    position:relative;border-radius:24px;overflow:hidden;padding:80px 48px;text-align:center
}
.lim-cta .cta-bg{
    position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0
}
.lim-cta .cta-overlay{
    position:absolute;inset:0;z-index:1;
    background:linear-gradient(135deg,rgba(15,35,82,.9),rgba(9,22,58,.85))
}
.lim-cta .cta-content{position:relative;z-index:2;color:#fff}
.lim-cta h3{font-family:var(--font-serif);font-size:clamp(26px,3vw,38px);margin-bottom:12px}
.lim-cta p{font-size:15px;opacity:1;max-width:540px;margin:0 auto 28px;line-height:1.7}
.lim-cta .btn-group{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.lim-cta .btn-group a{
    display:inline-flex;align-items:center;gap:8px;padding:14px 32px;border-radius:12px;
    font-size:14px;font-weight:600;text-decoration:none;transition:all .3s
}
.lim-cta .btn-group .btn-primary{background:var(--gold);color:#fff}
.lim-cta .btn-group .btn-primary:hover{background:#b8964e;transform:translateY(-2px);box-shadow:0 8px 30px rgba(var(--gold-rgb),.3)}
.lim-cta .btn-group .btn-outline{border:1.5px solid rgba(255,255,255,.3);color:#fff}
.lim-cta .btn-group .btn-outline:hover{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.5)}
@media(max-width:767px){.lim-cta{padding:48px 24px;border-radius:16px}}

.lim-footer{background:var(--accent-dark);color:rgba(255,255,255,.65);border-top:none}
.lim-footer .widget-title{color:#fff;font-family:var(--font-serif);font-size:17px;margin-bottom:20px;font-weight:400}
.lim-footer a{color:rgba(255,255,255,.55);transition:all .3s;text-decoration:none}
.lim-footer a:hover{color:var(--gold)}
.lim-footer .links li{margin-bottom:6px}
.lim-footer .links li a{font-size:13px}
.lim-footer .contact-list .list-info{font-size:13px;margin-bottom:10px;display:flex;align-items:flex-start;gap:8px}
.lim-footer .contact-list .list-info i{color:var(--gold);margin-top:4px}
.lim-footer .footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding:20px 0}
.lim-footer .footer-bottom .copyright{font-size:12px}
.lim-footer .social a{
    width:38px;height:38px;border-radius:12px;border:1px solid rgba(255,255,255,.12);
    display:inline-flex;align-items:center;justify-content:center;color:rgba(255,255,255,.45);
    transition:all .3s;margin-right:6px;font-size:14px
}
.lim-footer .social a:hover{background:var(--gold);border-color:var(--gold);color:#fff;transform:translateY(-2px)}

.lim-sticky-mobile{position:fixed;bottom:0;left:0;right:0;z-index:999;background:#fff;box-shadow:0 -2px 20px rgba(0,0,0,0.06);padding:8px 0;display:none}
@media(max-width:991px){.lim-sticky-mobile{display:block}}

.fade-up{opacity:0;transform:translateY(40px);transition:opacity .8s cubic-bezier(.4,0,.2,1),transform .8s cubic-bezier(.4,0,.2,1)}
.fade-up.visible{opacity:1;transform:translateY(0)}
.fade-in{opacity:0;transition:opacity .8s ease}
.fade-in.visible{opacity:1}
.scale-in{opacity:0;transform:scale(.92);transition:opacity .8s cubic-bezier(.4,0,.2,1),transform .8s cubic-bezier(.4,0,.2,1)}
.scale-in.visible{opacity:1;transform:scale(1)}
.stagger-1{transition-delay:.1s!important}
.stagger-2{transition-delay:.2s!important}
.stagger-3{transition-delay:.3s!important}
.stagger-4{transition-delay:.4s!important}
.stagger-5{transition-delay:.5s!important}
.stagger-6{transition-delay:.6s!important}
.stagger-7{transition-delay:.7s!important}
.stagger-8{transition-delay:.8s!important}
.stagger-9{transition-delay:.9s!important}

*,*::before,*::after{box-sizing:border-box}
:root{
    --accent:#0f2352;--accent-dark:#09163a;--accent-light:#1a3a7a;
    --accent-rgb:15,35,82;
    --bg-warm:#f8f7f4;--text-dark:#111;--text-muted:#6b7280;--border-light:#e5e7eb;
    --font-sans:'Inter',system-ui,-apple-system,sans-serif;
    --font-serif:'Playfair Display',Georgia,serif;
}

.lim-header{position:fixed;top:0;left:0;right:0;z-index:1000;background:transparent;transition:all .5s cubic-bezier(.4,0,.2,1);padding:20px 0}
.lim-header.scrolled{background:rgba(255,255,255,0.92);backdrop-filter:blur(20px) saturate(180%);box-shadow:0 1px 40px rgba(0,0,0,0.06);padding:10px 0}
.lim-header .header-inner{display:flex;align-items:center;justify-content:space-between}
.lim-header .logo img{height:100px;transition:all .5s}
.lim-header.scrolled .logo img{height:60px}
.lim-header .logo-light{display:block}
.lim-header .logo-dark{display:none}
.lim-header.scrolled .logo-light{display:none}
.lim-header.scrolled .logo-dark{display:block}
.lim-header .header-nav{display:flex;align-items:center;gap:28px}
.lim-header .header-nav a{color:rgba(255,255,255,0.85);font-size:13px;font-weight:500;letter-spacing:.3px;transition:color .3s;position:relative;text-decoration:none}
.lim-header .header-nav a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:1.5px;background:var(--accent);transition:width .4s cubic-bezier(.4,0,.2,1)}
.lim-header .header-nav a:hover::after{width:100%}
.lim-header .header-nav a:hover{color:#fff}
.lim-header.scrolled .header-nav a{color:var(--text-dark)}
.lim-header.scrolled .header-nav a:hover{color:var(--accent)}
.lim-header .header-actions{display:flex;align-items:center;gap:12px}
.lim-header .contact-chip{display:flex;align-items:center;gap:5px;color:rgba(255,255,255,0.75);font-size:12px;text-decoration:none;transition:color .3s}
.lim-header .contact-chip i{color:var(--accent);font-size:11px}
.lim-header.scrolled .contact-chip{color:var(--text-muted)}
.lim-header .lang-select{background:transparent;border:1px solid rgba(255,255,255,0.25);color:rgba(255,255,255,0.85);padding:3px 8px;border-radius:4px;font-size:11px;cursor:pointer;font-family:var(--font-sans)}
.lim-header.scrolled .lang-select{border-color:var(--border-light);color:var(--text-muted)}
.lim-header .btn-contact,.lim-header .btn-reserve{background:var(--accent);color:#fff;padding:10px 24px;border-radius:8px;font-size:12px;font-weight:600;transition:all .3s;text-decoration:none;white-space:nowrap;letter-spacing:.3px;display:inline-flex;align-items:center;gap:6px}
.lim-header .btn-contact:hover,.lim-header .btn-reserve:hover{background:var(--accent-light);transform:translateY(-1px);box-shadow:0 4px 15px rgba(var(--accent-rgb),.3)}
.lim-header .mobile-toggle{display:none;color:#fff;font-size:20px;cursor:pointer;align-items:center;justify-content:center}
.lim-header.scrolled .mobile-toggle{color:var(--text-dark)}
@media(max-width:991px){
    .lim-header .header-nav{display:none;position:fixed;top:140px;left:0;right:0;background:#fff;flex-direction:column;padding:20px;gap:16px;box-shadow:0 10px 40px rgba(0,0,0,0.1);z-index:9999;transition:top .3s}
    .lim-header.scrolled .header-nav{top:80px}
    .lim-header .header-nav.d-flex{display:flex!important}
    .lim-header .header-nav a{color:var(--text-dark)!important;font-size:15px}
    .lim-header .header-nav a::after{display:none}
    .lim-header .header-actions .contact-chip,.lim-header .header-actions .lang-select{display:none}
    .lim-header .mobile-toggle{display:flex;align-items:center;justify-content:center;width:34px;height:34px}
    .lim-header .btn-contact,.lim-header .btn-reserve{padding:7px 14px;font-size:11px;display:inline-flex;align-items:center;gap:4px}
}

.hero-section{position:relative;min-height:220px;display:flex;align-items:flex-end;overflow:hidden;background:linear-gradient(160deg,#0a0a1a 0%,#0f2352 40%,#1a3a7a 100%)}
.hero-section .hero-overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(to top,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.1) 50%,transparent 100%)}
.hero-section .hero-content{position:relative;z-index:2;width:100%;padding:180px 0 28px}
.hero-section .breadcrumb{display:inline-flex;align-items:center;gap:5px;font-size:11px;color:rgba(255,255,255,0.35);margin-bottom:10px;text-decoration:none}
.hero-section .breadcrumb a{color:rgba(255,255,255,0.45);text-decoration:none;transition:color .3s}
.hero-section .breadcrumb a:hover{color:#fff}
.hero-section .breadcrumb span{color:rgba(255,255,255,0.7)}
.hero-section .hero-title{font-family:var(--font-serif);font-size:30px;color:#fff;font-weight:400;margin:0;line-height:1.2}
.hero-section .hero-badge{font-size:11px;color:rgba(255,255,255,0.5);padding:3px 12px;border-radius:20px;background:rgba(255,255,255,0.08)}

.lim-section-title { text-align:center;margin-bottom:48px; }
.lim-section-title .sub { color:var(--accent);font-size:12px;text-transform:uppercase;letter-spacing:2px;font-weight:600;margin-bottom:8px;display:block; }
.lim-section-title h2 { font-family:var(--title-font,"Playfair Display",serif);font-size:40px;color:var(--text-dark);margin-bottom:12px; }
.lim-section-title p { color:var(--text-muted);font-size:15px;max-width:560px;margin:0 auto;line-height:1.7; }
.lim-specs-grid { display:grid;grid-template-columns:1fr 1fr;gap:12px;padding:0;list-style:none; }
.lim-specs-grid li { font-size:14px;color:var(--text-muted);display:flex;align-items:center;gap:8px; }
.lim-specs-grid li i { color:var(--accent);width:18px;font-size:13px; }
.lim-features-list { display:flex;flex-wrap:wrap;gap:8px;padding:0;list-style:none; }
.lim-features-list li { background:var(--bg-warm);border:1px solid var(--border-light);border-radius:20px;padding:5px 14px;font-size:12px;color:var(--text-muted);display:inline-flex;align-items:center;gap:5px; }
.lim-features-list li i { color:var(--accent);font-size:11px; }
.lim-amenity-icon { text-align:center;padding:24px 12px;border-radius:12px;background:#fff;border:1px solid var(--border-light);transition:all .3s;height:100%; }
.lim-amenity-icon:hover { border-color:var(--accent);box-shadow:0 4px 20px rgba(15,35,82,0.10); }
.lim-amenity-icon .icon-wrap { width:50px;height:50px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:var(--bg-warm);margin:0 auto 8px;font-size:20px;color:var(--accent); }
.lim-amenity-icon h6 { font-size:12px;margin-bottom:0;font-weight:500;color:var(--text-dark); }
.lim-faq .accordion-item { border:1px solid var(--border-light);border-radius:10px;margin-bottom:8px;overflow:hidden; }
.lim-faq .accordion-item .accordion-button { padding:14px 20px;font-size:14px;font-weight:500;color:var(--text-dark);background:#fafafa;box-shadow:none; }
.lim-faq .accordion-item .accordion-button:not(.collapsed) { background:var(--accent);color:#fff; }
.lim-faq .accordion-item .accordion-body { padding:16px 20px;font-size:13px;color:var(--text-muted);line-height:1.7; }
.lim-room-cta { background:linear-gradient(135deg,var(--accent) 0%,var(--accent-dark) 100%);border-radius:16px;padding:48px;text-align:center;color:#fff; }
.lim-room-cta h3 { font-family:var(--title-font,"Playfair Display",serif);font-size:32px;margin-bottom:10px; }
.lim-room-cta p { font-size:15px;opacity:1;max-width:540px;margin:0 auto 20px; }
.lim-room-cta a { display:inline-block;background:rgba(255,255,255,0.12);color:#fff!important;padding:12px 36px;border-radius:8px;font-weight:700;font-size:14px;text-decoration:none;transition:all .3s;border:1px solid rgba(255,255,255,0.25); }
.lim-room-cta a:hover { background:rgba(255,255,255,0.2);border-color:rgba(255,255,255,0.4);color:#fff!important; }
.lim-footer { background:var(--bg-warm);color:var(--text-muted);border-top:1px solid var(--border-light); }
.lim-footer .widget-title { color:var(--text-dark);font-family:var(--title-font,"Playfair Display",serif);font-size:18px;margin-bottom:18px; }
.lim-footer a { color:var(--text-muted);transition:all .3s;text-decoration:none; }
.lim-footer a:hover { color:var(--accent); }
.lim-footer .links li { margin-bottom:5px; }
.lim-footer .links li a { font-size:13px; }
.lim-footer .contact-list .list-info { font-size:13px;margin-bottom:8px;display:flex;align-items:flex-start;gap:8px; }
.lim-footer .contact-list .list-info i { color:var(--accent);margin-top:3px; }
.lim-footer .footer-bottom { border-top:1px solid var(--border-light);padding:18px 0; }
.lim-footer .footer-bottom .copyright { font-size:12px; }
.lim-footer .social a { width:36px;height:36px;border-radius:50%;border:1px solid #ddd;display:inline-flex;align-items:center;justify-content:center;color:#bbb;transition:all .3s;margin-right:5px; }
.lim-footer .social a:hover { background:var(--accent);border-color:var(--accent);color:#fff; }
.lim-sticky-mobile { position:fixed;bottom:0;left:0;right:0;z-index:999;background:#fff;box-shadow:0 -2px 20px rgba(0,0,0,0.08);padding:8px 0;display:none; }
@media (max-width:991px) { .lim-sticky-mobile { display:block; }.lim-page-hero { min-height:40vh; }.lim-page-hero .hero-content h1 { font-size:34px; }.lim-section-title h2 { font-size:30px; }.lim-room-cta { padding:30px 20px; }.lim-room-cta h3 { font-size:24px; } }
@media (max-width:767px) { .lim-page-hero .hero-content h1 { font-size:26px; }.lim-page-hero .hero-content p { font-size:14px; } }
.fade-in { opacity:0;transform:translateY(30px);transition:opacity .7s ease,transform .7s ease; }
.fade-in.visible { opacity:1;transform:translateY(0); }
.price-badge { display:inline-block;background:var(--accent);color:#fff;padding:8px 20px;border-radius:8px;font-size:18px;font-weight:700; }
.room-badge { display:inline-block;background:rgba(255,255,255,0.92);color:var(--text-dark);padding:4px 14px;border-radius:20px;font-size:12px;font-weight:600;backdrop-filter:blur(6px); }
.room-gallery-img { height:500px;object-fit:cover;border-radius:12px; }
@media (max-width:767px) { .room-gallery-img { height:300px; } }
.detail-divider { width:40px;height:3px;background:var(--accent);margin:16px 0;border-radius:2px; }

*,*::before,*::after{box-sizing:border-box}
:root{
    --accent:#0f2352;--accent-dark:#09163a;--accent-light:#1a3a7a;
    --accent-rgb:15,35,82;
    --bg-warm:#f8f7f4;--text-dark:#111;--text-muted:#6b7280;--border-light:#e5e7eb;
    --font-sans:'Inter',system-ui,-apple-system,sans-serif;
    --font-serif:'Playfair Display',Georgia,serif;
}

.lim-header{position:fixed;top:0;left:0;right:0;z-index:1000;background:transparent;transition:all .5s cubic-bezier(.4,0,.2,1);padding:20px 0}
.lim-header.scrolled{background:rgba(255,255,255,0.92);backdrop-filter:blur(20px) saturate(180%);box-shadow:0 1px 40px rgba(0,0,0,0.06);padding:10px 0}
.lim-header .header-inner{display:flex;align-items:center;justify-content:space-between}
.lim-header .logo img{height:100px;transition:all .5s}
.lim-header.scrolled .logo img{height:60px}
.lim-header .logo-light{display:block}
.lim-header .logo-dark{display:none}
.lim-header.scrolled .logo-light{display:none}
.lim-header.scrolled .logo-dark{display:block}
.lim-header .header-nav{display:flex;align-items:center;gap:28px}
.lim-header .header-nav a{color:rgba(255,255,255,0.85);font-size:13px;font-weight:500;letter-spacing:.3px;transition:color .3s;position:relative;text-decoration:none}
.lim-header .header-nav a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:1.5px;background:var(--accent);transition:width .4s cubic-bezier(.4,0,.2,1)}
.lim-header .header-nav a:hover::after{width:100%}
.lim-header .header-nav a:hover{color:#fff}
.lim-header.scrolled .header-nav a{color:var(--text-dark)}
.lim-header.scrolled .header-nav a:hover{color:var(--accent)}
.lim-header .header-actions{display:flex;align-items:center;gap:12px}
.lim-header .contact-chip{display:flex;align-items:center;gap:5px;color:rgba(255,255,255,0.75);font-size:12px;text-decoration:none;transition:color .3s}
.lim-header .contact-chip i{color:var(--accent);font-size:11px}
.lim-header.scrolled .contact-chip{color:var(--text-muted)}
.lim-header .lang-select{background:transparent;border:1px solid rgba(255,255,255,0.25);color:rgba(255,255,255,0.85);padding:3px 8px;border-radius:4px;font-size:11px;cursor:pointer;font-family:var(--font-sans)}
.lim-header.scrolled .lang-select{border-color:var(--border-light);color:var(--text-muted)}
.lim-header .btn-contact,.lim-header .btn-reserve{background:var(--accent);color:#fff;padding:10px 24px;border-radius:8px;font-size:12px;font-weight:600;transition:all .3s;text-decoration:none;white-space:nowrap;letter-spacing:.3px;display:inline-flex;align-items:center;gap:6px}
.lim-header .btn-contact:hover,.lim-header .btn-reserve:hover{background:var(--accent-light);transform:translateY(-1px);box-shadow:0 4px 15px rgba(var(--accent-rgb),.3)}
.lim-header .mobile-toggle{display:none;color:#fff;font-size:20px;cursor:pointer;align-items:center;justify-content:center}
.lim-header.scrolled .mobile-toggle{color:var(--text-dark)}
@media(max-width:991px){
    .lim-header .header-nav{display:none;position:fixed;top:140px;left:0;right:0;background:#fff;flex-direction:column;padding:20px;gap:16px;box-shadow:0 10px 40px rgba(0,0,0,0.1);z-index:9999;transition:top .3s}
    .lim-header.scrolled .header-nav{top:80px}
    .lim-header .header-nav.d-flex{display:flex!important}
    .lim-header .header-nav a{color:var(--text-dark)!important;font-size:15px}
    .lim-header .header-nav a::after{display:none}
    .lim-header .header-actions .contact-chip,.lim-header .header-actions .lang-select{display:none}
    .lim-header .mobile-toggle{display:flex;align-items:center;justify-content:center;width:34px;height:34px}
    .lim-header .btn-contact,.lim-header .btn-reserve{padding:7px 14px;font-size:11px;display:inline-flex;align-items:center;gap:4px}
}

.hero-section{position:relative;min-height:220px;display:flex;align-items:flex-end;overflow:hidden;background:linear-gradient(160deg,#0a0a1a 0%,#0f2352 40%,#1a3a7a 100%)}
.hero-section .hero-overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(to top,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.1) 50%,transparent 100%)}
.hero-section .hero-content{position:relative;z-index:2;width:100%;padding:180px 0 28px}
.hero-section .breadcrumb{display:inline-flex;align-items:center;gap:5px;font-size:11px;color:rgba(255,255,255,0.35);margin-bottom:10px;text-decoration:none}
.hero-section .breadcrumb a{color:rgba(255,255,255,0.45);text-decoration:none;transition:color .3s}
.hero-section .breadcrumb a:hover{color:#fff}
.hero-section .breadcrumb span{color:rgba(255,255,255,0.7)}
.hero-section .hero-title{font-family:var(--font-serif);font-size:30px;color:#fff;font-weight:400;margin:0;line-height:1.2}
.hero-section .hero-badge{font-size:11px;color:rgba(255,255,255,0.5);padding:3px 12px;border-radius:20px;background:rgba(255,255,255,0.08)}

.lim-section-title {
    text-align: center; margin-bottom: 40px;
}
.lim-section-title .sub {
    color: var(--accent); font-size: 12px; text-transform: uppercase;
    letter-spacing: 2px; font-weight: 600; margin-bottom: 8px; display: block;
}
.lim-section-title h2 {
    font-family: var(--title-font); font-size: 38px; color: var(--text-dark); margin-bottom: 10px;
}
.lim-section-title p { color: var(--text-muted); font-size: 15px; max-width: 560px; margin: 0 auto; line-height: 1.7; }

.lim-gallery-filter {
    display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 32px;
}
.lim-gallery-filter button {
    background: transparent; border: 1px solid #ddd; padding: 7px 20px; border-radius: 30px;
    font-size: 13px; color: var(--text-muted); transition: all .3s; cursor: pointer;
}
.lim-gallery-filter button:hover,
.lim-gallery-filter button.active {
    background: var(--accent); border-color: var(--accent); color: #fff;
}

.lim-gallery-grid { position: relative; }
.lim-gallery-item {
    border-radius: 10px; overflow: hidden; position: relative; margin-bottom: 20px;
    transition: all .4s; cursor: pointer;
}
.lim-gallery-item .g-img {
    width: 100%; display: block; transition: transform .6s;
}
.lim-gallery-item:hover .g-img { transform: scale(1.06); }
.lim-gallery-item .g-overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,0.35);
    opacity: 0; transition: all .3s; display: flex; align-items: center; justify-content: center;
}
.lim-gallery-item:hover .g-overlay { opacity: 1; }
.lim-gallery-item .g-overlay a {
    color: #fff; font-size: 22px; width: 48px; height: 48px; border-radius: 50%;
    border: 2px solid #fff; display: flex; align-items: center; justify-content: center;
    transition: all .3s; text-decoration: none;
}
.lim-gallery-item .g-overlay a:hover { background: var(--accent); border-color: var(--accent); }
.lim-gallery-item .g-label {
    position: absolute; bottom: 12px; left: 12px;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(6px);
    color: #fff; font-size: 11px; padding: 4px 14px; border-radius: 20px;
    letter-spacing: .5px;
}

.lim-virtual-tour {
    background: linear-gradient(135deg, var(--bg-warm) 0%, #f0ece6 100%);
    padding: 70px 0;
}
.lim-virtual-tour .tour-placeholder {
    position: relative; border-radius: 14px; overflow: hidden; cursor: pointer;
}
.lim-virtual-tour .tour-placeholder img { width: 100%; display: block; }
.lim-virtual-tour .tour-play {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.25); transition: all .3s;
}
.lim-virtual-tour .tour-play:hover { background: rgba(0,0,0,0.35); }
.lim-virtual-tour .tour-play .play-btn {
    width: 72px; height: 72px; border-radius: 50%; background: var(--accent);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 28px; transition: all .4s;
    box-shadow: 0 4px 24px rgba(174,125,84,0.3);
}
.lim-virtual-tour .tour-play:hover .play-btn { transform: scale(1.1); }

.lim-cta {
    background: var(--accent); padding: 50px 0; text-align: center;
}
.lim-cta h3 { font-family: var(--title-font); color: #fff; font-size: 34px; margin-bottom: 10px; }
.lim-cta p { color: rgba(255,255,255,0.85); font-size: 15px; margin-bottom: 20px; }
.lim-cta .btn-cta {
    background: rgba(255,255,255,0.12); color: #fff !important; padding: 13px 36px; border-radius: 6px;
    font-weight: 700; font-size: 14px; transition: all .3s; text-decoration: none; display: inline-block;
    border: 1px solid rgba(255,255,255,0.25);
}
.lim-cta .btn-cta:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); color: #fff !important; }

.lim-footer {
    background: var(--bg-warm); color: var(--text-muted); border-top: 1px solid var(--border-light);
}
.lim-footer .widget-title {
    color: var(--text-dark); font-family: var(--title-font); font-size: 18px; margin-bottom: 18px;
}
.lim-footer a { color: var(--text-muted); transition: all .3s; text-decoration: none; }
.lim-footer a:hover { color: var(--accent); }
.lim-footer .links li { margin-bottom: 5px; }
.lim-footer .links li a { font-size: 13px; }
.lim-footer .contact-list .list-info {
    font-size: 13px; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px;
}
.lim-footer .contact-list .list-info i { color: var(--accent); margin-top: 3px; }
.lim-footer .footer-bottom { border-top: 1px solid var(--border-light); padding: 18px 0; }
.lim-footer .footer-bottom .copyright { font-size: 12px; }
.lim-footer .social a {
    width: 36px; height: 36px; border-radius: 50%; border: 1px solid #ddd;
    display: inline-flex; align-items: center; justify-content: center;
    color: #bbb; transition: all .3s; margin-right: 5px;
}
.lim-footer .social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.lim-sticky-mobile {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
    background: #fff; box-shadow: 0 -2px 20px rgba(0,0,0,0.08); padding: 8px 0; display: none;
}
@media (max-width: 991px) { .lim-sticky-mobile { display: block; } }

.wow { visibility: hidden; }
.fadeInUp { animation-name: fadeInUp; }
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.wow.animated { visibility: visible; }

*,
*::before,
*::after {
    box-sizing: border-box
}

:root {
    --accent: #0f2352;
    --accent-dark: #09163a;
    --accent-light: #1a3a7a;
    --accent-rgb: 15, 35, 82;
    --bg-warm: #f8f7f4;
    --text-dark: #111;
    --text-muted: #6b7280;
    --border-light: #e5e7eb;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}


.lim-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all .5s cubic-bezier(.4, 0, .2, 1);
    padding: 20px 0
}

.lim-header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 40px rgba(0, 0, 0, 0.06);
    padding: 10px 0
}

.lim-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.lim-header .logo img {
    height: 120px;
    transition: all .5s
}

.lim-header.scrolled .logo img {
    height: 80px
}

.lim-header .logo-light {
    display: block
}

.lim-header .logo-dark {
    display: none
}

.lim-header.scrolled .logo-light {
    display: none
}

.lim-header.scrolled .logo-dark {
    display: block
}

.lim-header .header-nav {
    display: flex;
    align-items: center;
    gap: 28px
}

.lim-header .header-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .3px;
    transition: color .3s;
    position: relative;
    text-decoration: none
}

.lim-header .header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width .4s cubic-bezier(.4, 0, .2, 1)
}

.lim-header .header-nav a:hover::after {
    width: 100%
}

.lim-header .header-nav a:hover {
    color: #fff
}

.lim-header.scrolled .header-nav a {
    color: var(--text-dark)
}

.lim-header.scrolled .header-nav a:hover {
    color: var(--accent)
}

.lim-header .header-actions {
    display: flex;
    align-items: center;
    gap: 12px
}

.lim-header .contact-chip {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    text-decoration: none;
    transition: color .3s
}

.lim-header .contact-chip i {
    color: var(--accent);
    font-size: 11px
}

.lim-header.scrolled .contact-chip {
    color: var(--text-muted)
}

.lim-header .lang-select {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    font-family: var(--font-sans)
}

.lim-header.scrolled .lang-select {
    border-color: var(--border-light);
    color: var(--text-muted)
}

.lim-header .btn-contact,
.lim-header .btn-reserve {
    background: var(--accent);
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    transition: all .3s;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: .3px;
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.lim-header .btn-contact:hover,
.lim-header .btn-reserve:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(var(--accent-rgb), .3)
}

.lim-header .mobile-toggle {
    display: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    align-items: center;
    justify-content: center
}

.lim-header.scrolled .mobile-toggle {
    color: var(--text-dark)
}

@media(max-width:991px) {
    .lim-header .header-nav {
        display: none;
        position: fixed;
        top: 140px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        z-index: 9999;
        transition: top .3s
    }

    .lim-header.scrolled .header-nav {
        top: 80px
    }

    .lim-header .header-nav.d-flex {
        display: flex !important
    }

    .lim-header .header-nav a {
        color: var(--text-dark) !important;
        font-size: 15px
    }

    .lim-header .header-nav a::after {
        display: none
    }

    .lim-header .header-actions .contact-chip,
    .lim-header .header-actions .lang-select {
        display: none
    }

    .lim-header .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
    }

    .lim-header .btn-contact,
    .lim-header .btn-reserve {
        padding: 7px 14px;
        font-size: 11px;
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }
}


.hero-section {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: linear-gradient(160deg, #0a0a1a 0%, #0f2352 40%, #1a3a7a 100%)
}

.hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%)
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 180px 0 28px
}

.hero-section .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 10px;
    text-decoration: none
}

.hero-section .breadcrumb a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color .3s
}

.hero-section .breadcrumb a:hover {
    color: #fff
}

.hero-section .breadcrumb span {
    color: rgba(255, 255, 255, 0.7)
}

.hero-section .hero-title {
    font-family: var(--font-serif);
    font-size: 30px;
    color: #fff;
    font-weight: 400;
    margin: 0;
    line-height: 1.2
}

.hero-section .hero-badge {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    padding: 3px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08)
}


.lim-qr-wrap {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 20px;
    padding: 60px 56px;
    position: relative;
    overflow: hidden;
}

.lim-qr-wrap::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.qr-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 220px;
    margin: 0 auto;
}

.qr-frame {
    width: 180px;
    height: 180px;
    border-radius: 20px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.qr-frame i {
    font-size: 100px;
    color: var(--accent);
}

.qr-phone {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.qr-phone i {
    font-size: 20px;
    color: #fff;
}

.qr-features {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.qr-features .qf-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.qr-btns {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.qr-btns a {
    padding: 13px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
}

.qr-btns .btn-qr-primary {
    background: #fff;
    color: var(--accent);
}

.qr-btns .btn-qr-primary:hover {
    background: var(--bg-warm);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.qr-btns .btn-qr-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.qr-btns .btn-qr-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 991px) {
    .lim-qr-wrap {
        padding: 40px 24px;
    }

    .qr-visual {
        width: 160px;
        height: 160px;
    }

    .qr-frame {
        width: 130px;
        height: 130px;
    }

    .qr-frame i {
        font-size: 70px;
    }
}

@media (max-width: 767px) {
    .qr-visual {
        margin-bottom: 16px;
    }
}

.lim-section-title {
    text-align: center;
    margin-bottom: 48px;
}

.lim-section-title .sub {
    color: var(--accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.lim-section-title h2 {
    font-family: var(--title-font);
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.lim-section-title p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .lim-section-title h2 {
        font-size: 30px;
    }
}

.lim-dish-card {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.05);
    transition: all .4s;
    height: 100%;
}

.lim-dish-card:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
    transform: translateY(-6px);
}

.lim-dish-card .dish-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.lim-dish-card .dish-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
}

.lim-dish-card:hover .dish-img img {
    transform: scale(1.08);
}

.lim-dish-card .dish-img .dish-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

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

.lim-dish-card .dish-body h5 {
    font-family: var(--title-font);
    font-size: 18px;
    margin-bottom: 6px;
}

.lim-dish-card .dish-body .dish-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.6;
}

.lim-dish-card .dish-body .dish-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

.lim-dish-card .dish-body .dish-meta .price {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
}

.lim-dish-card .dish-body .dish-meta .cat {
    font-size: 11px;
    color: var(--text-muted);
    background: var(--bg-warm);
    padding: 3px 10px;
    border-radius: 20px;
}

.lim-menu-cat-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    transition: all .4s;
    height: 100%;
    text-decoration: none;
    display: block;
    border: 1px solid var(--border-light);
}

.lim-menu-cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    border-color: var(--accent);
}

.lim-menu-cat-card .mcc-icon {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-warm);
    font-size: 42px;
    color: var(--accent);
}

.lim-menu-cat-card .mcc-body {
    padding: 14px 18px 20px;
    text-align: center;
}

.lim-menu-cat-card .mcc-body h6 {
    font-family: var(--title-font);
    font-size: 17px;
    margin-bottom: 2px;
    color: var(--text-dark);
}

.lim-menu-cat-card .mcc-body span {
    font-size: 12px;
    color: var(--text-muted);
}

.lim-menu-cat-card .mcc-body .mcc-items {
    font-size: 11px;
    color: var(--accent);
    margin-top: 6px;
}

.lim-ambiance {
    position: relative;
    overflow: hidden;
}

.lim-ambiance .amb-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 260px;
}

.lim-ambiance .amb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.lim-ambiance .amb-item:hover img {
    transform: scale(1.08);
}

.lim-ambiance .amb-item .amb-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    padding: 20px;
    color: #fff;
}

.lim-ambiance .amb-item .amb-caption h6 {
    font-family: var(--title-font);
    font-size: 16px;
    margin-bottom: 2px;
}

.lim-ambiance .amb-item .amb-caption span {
    font-size: 12px;
    opacity: .8;
}

.lim-ambiance .amb-item.tall {
    height: 360px;
}

.lim-service-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all .3s;
    height: 100%;
}

.lim-service-card:hover {
    border-color: var(--accent);
    box-shadow: 0 6px 30px rgba(15, 35, 82, 0.10);
    transform: translateY(-4px);
}

.lim-service-card .srv-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-warm);
    margin: 0 auto 14px;
    font-size: 26px;
    color: var(--accent);
    transition: all .3s;
}

.lim-service-card:hover .srv-icon {
    background: var(--accent);
    color: #fff;
}

.lim-service-card h5 {
    font-family: var(--title-font);
    font-size: 18px;
    margin-bottom: 8px;
}

.lim-service-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.lim-contact-info {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 32px;
    height: 100%;
    transition: all .3s;
}

.lim-contact-info:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 24px rgba(15, 35, 82, 0.08);
}

.lim-contact-info .ci-icon {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 12px;
}

.lim-contact-info h5 {
    font-family: var(--title-font);
    font-size: 17px;
    margin-bottom: 8px;
}

.lim-contact-info p,
.lim-contact-info a {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    text-decoration: none;
    display: block;
}

.lim-contact-info a:hover {
    color: var(--accent);
}

.lim-hours-table {
    width: 100%;
    font-size: 13px;
}

.lim-hours-table td {
    padding: 6px 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-light);
}

.lim-hours-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--text-dark);
}

.lim-faq .accordion-item {
    border: 1px solid var(--border-light);
    border-radius: 10px;
    margin-bottom: 8px;
    overflow: hidden;
}

.lim-faq .accordion-item .accordion-button {
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    background: #fafafa;
    box-shadow: none;
}

.lim-faq .accordion-item .accordion-button:not(.collapsed) {
    background: var(--accent);
    color: #fff;
}

.lim-faq .accordion-item .accordion-body {
    padding: 16px 20px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

.lim-footer {
    background: var(--bg-warm);
    color: var(--text-muted);
    border-top: 1px solid var(--border-light);
}

.lim-footer .widget-title {
    color: var(--text-dark);
    font-family: var(--title-font);
    font-size: 18px;
    margin-bottom: 18px;
}

.lim-footer a {
    color: var(--text-muted);
    transition: all .3s;
    text-decoration: none;
}

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

.lim-footer .links li {
    margin-bottom: 5px;
}

.lim-footer .links li a {
    font-size: 13px;
}

.lim-footer .contact-list .list-info {
    font-size: 13px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.lim-footer .contact-list .list-info i {
    color: var(--accent);
    margin-top: 3px;
}

.lim-footer .footer-bottom {
    border-top: 1px solid var(--border-light);
    padding: 18px 0;
}

.lim-footer .footer-bottom .copyright {
    font-size: 12px;
}

.lim-footer .social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    transition: all .3s;
    margin-right: 5px;
}

.lim-footer .social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.lim-sticky-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    display: none;
}

@media (max-width: 991px) {
    .lim-sticky-mobile {
        display: block;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


.lim-section-title h2 .highlight {
    color: var(--accent);
}

.section-divider {
    width: 50px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto 12px;
    border-radius: 2px;
}

.lim-dish-card .dish-body .dish-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.6;
}

.lim-menu-cat-card {
    transition: all .4s cubic-bezier(.25, .46, .45, .94);
}

.lim-menu-cat-card:hover .mcc-icon {
    background: var(--accent);
    color: #fff;
}

.lim-menu-cat-card .mcc-icon {
    transition: all .4s cubic-bezier(.25, .46, .45, .94);
}

.lim-ambiance .amb-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.lim-service-card {
    border-radius: 16px;
    padding: 36px 24px;
}

.lim-service-card .srv-icon {
    width: 64px;
    height: 64px;
    font-size: 28px;
}

.lim-service-card:hover .srv-icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.05);
}

.lim-service-card .srv-icon {
    transition: all .3s cubic-bezier(.25, .46, .45, .94);
}

.lim-contact-info {
    border-radius: 16px;
    padding: 36px;
}

.bg-gradient-warm {
    background: linear-gradient(180deg, var(--bg-warm) 0%, #fff 100%);
}


*,*::before,*::after{box-sizing:border-box}
:root{
    --accent:#0f2352;--accent-dark:#09163a;--accent-light:#1a3a7a;
    --accent-rgb:15,35,82;
    --bg-warm:#f8f7f4;--text-dark:#111;--text-muted:#6b7280;--border-light:#e5e7eb;
    --font-sans:'Inter',system-ui,-apple-system,sans-serif;
    --font-serif:'Playfair Display',Georgia,serif;
}

.lim-header{position:fixed;top:0;left:0;right:0;z-index:1000;background:transparent;transition:all .5s cubic-bezier(.4,0,.2,1);padding:20px 0}
.lim-header.scrolled{background:rgba(255,255,255,0.92);backdrop-filter:blur(20px) saturate(180%);box-shadow:0 1px 40px rgba(0,0,0,0.06);padding:10px 0}
.lim-header .header-inner{display:flex;align-items:center;justify-content:space-between}
.lim-header .logo img{height:100px;transition:all .5s}
.lim-header.scrolled .logo img{height:60px}
.lim-header .logo-light{display:block}
.lim-header .logo-dark{display:none}
.lim-header.scrolled .logo-light{display:none}
.lim-header.scrolled .logo-dark{display:block}
.lim-header .header-nav{display:flex;align-items:center;gap:28px}
.lim-header .header-nav a{color:rgba(255,255,255,0.85);font-size:13px;font-weight:500;letter-spacing:.3px;transition:color .3s;position:relative;text-decoration:none}
.lim-header .header-nav a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:1.5px;background:var(--accent);transition:width .4s cubic-bezier(.4,0,.2,1)}
.lim-header .header-nav a:hover::after{width:100%}
.lim-header .header-nav a:hover{color:#fff}
.lim-header.scrolled .header-nav a{color:var(--text-dark)}
.lim-header.scrolled .header-nav a:hover{color:var(--accent)}
.lim-header .header-actions{display:flex;align-items:center;gap:12px}
.lim-header .contact-chip{display:flex;align-items:center;gap:5px;color:rgba(255,255,255,0.75);font-size:12px;text-decoration:none;transition:color .3s}
.lim-header .contact-chip i{color:var(--accent);font-size:11px}
.lim-header.scrolled .contact-chip{color:var(--text-muted)}
.lim-header .lang-select{background:transparent;border:1px solid rgba(255,255,255,0.25);color:rgba(255,255,255,0.85);padding:3px 8px;border-radius:4px;font-size:11px;cursor:pointer;font-family:var(--font-sans)}
.lim-header.scrolled .lang-select{border-color:var(--border-light);color:var(--text-muted)}
.lim-header .btn-contact,.lim-header .btn-reserve{background:var(--accent);color:#fff;padding:10px 24px;border-radius:8px;font-size:12px;font-weight:600;transition:all .3s;text-decoration:none;white-space:nowrap;letter-spacing:.3px;display:inline-flex;align-items:center;gap:6px}
.lim-header .btn-contact:hover,.lim-header .btn-reserve:hover{background:var(--accent-light);transform:translateY(-1px);box-shadow:0 4px 15px rgba(var(--accent-rgb),.3)}
.lim-header .mobile-toggle{display:none;color:#fff;font-size:20px;cursor:pointer;align-items:center;justify-content:center}
.lim-header.scrolled .mobile-toggle{color:var(--text-dark)}
@media(max-width:991px){
    .lim-header .header-nav{display:none;position:fixed;top:140px;left:0;right:0;background:#fff;flex-direction:column;padding:20px;gap:16px;box-shadow:0 10px 40px rgba(0,0,0,0.1);z-index:9999;transition:top .3s}
    .lim-header.scrolled .header-nav{top:80px}
    .lim-header .header-nav.d-flex{display:flex!important}
    .lim-header .header-nav a{color:var(--text-dark)!important;font-size:15px}
    .lim-header .header-nav a::after{display:none}
    .lim-header .header-actions .contact-chip,.lim-header .header-actions .lang-select{display:none}
    .lim-header .mobile-toggle{display:flex;align-items:center;justify-content:center;width:34px;height:34px}
    .lim-header .btn-contact,.lim-header .btn-reserve{padding:7px 14px;font-size:11px;display:inline-flex;align-items:center;gap:4px}
}

.hero-section{position:relative;min-height:220px;display:flex;align-items:flex-end;overflow:hidden;background:linear-gradient(160deg,#0a0a1a 0%,#0f2352 40%,#1a3a7a 100%)}
.hero-section .hero-overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(to top,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.1) 50%,transparent 100%)}
.hero-section .hero-content{position:relative;z-index:2;width:100%;padding:180px 0 28px}
.hero-section .breadcrumb{display:inline-flex;align-items:center;gap:5px;font-size:11px;color:rgba(255,255,255,0.35);margin-bottom:10px;text-decoration:none}
.hero-section .breadcrumb a{color:rgba(255,255,255,0.45);text-decoration:none;transition:color .3s}
.hero-section .breadcrumb a:hover{color:#fff}
.hero-section .breadcrumb span{color:rgba(255,255,255,0.7)}
.hero-section .hero-title{font-family:var(--font-serif);font-size:30px;color:#fff;font-weight:400;margin:0;line-height:1.2}
.hero-section .hero-badge{font-size:11px;color:rgba(255,255,255,0.5);padding:3px 12px;border-radius:20px;background:rgba(255,255,255,0.08)}

.lim-section-title { text-align: center; margin-bottom: 48px; }
.lim-section-title .sub {
    color: var(--accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}
.lim-section-title h2 {
    font-family: var(--title-font);
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.lim-section-title p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
@media (max-width: 991px) { .lim-section-title h2 { font-size: 30px; } }

.lim-blog-card {
    border-radius: 12px; overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    transition: all .4s;
    height: 100%;
}
.lim-blog-card:hover { box-shadow: 0 6px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.lim-blog-card .blog-img { height: 200px; overflow: hidden; position: relative; }
.lim-blog-card .blog-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s;
}
.lim-blog-card:hover .blog-img img { transform: scale(1.08); }
.lim-blog-card .blog-img .category-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--accent); color: #fff;
    padding: 4px 12px; border-radius: 20px;
    font-size: 11px; font-weight: 600;
    z-index: 2;
}
.lim-blog-card .blog-body { padding: 18px 22px 22px; }
.lim-blog-card .blog-body .date { font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
.lim-blog-card .blog-body h5 {
    font-family: var(--title-font);
    font-size: 17px;
    margin-bottom: 8px;
}
.lim-blog-card .blog-body h5 a { color: var(--text-dark); text-decoration: none; transition: color .3s; }
.lim-blog-card .blog-body h5 a:hover { color: var(--accent); }
.lim-blog-card .blog-body p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.7;
}
.lim-blog-card .blog-body .read-more {
    color: var(--accent); font-weight: 600; font-size: 12px;
    text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
    transition: gap .3s;
}
.lim-blog-card .blog-body .read-more:hover { gap: 10px; }

.lim-footer { background: var(--bg-warm); color: var(--text-muted); border-top: 1px solid var(--border-light); }
.lim-footer .widget-title { color: var(--text-dark); font-family: var(--title-font); font-size: 18px; margin-bottom: 18px; }
.lim-footer a { color: var(--text-muted); transition: all .3s; text-decoration: none; }
.lim-footer a:hover { color: var(--accent); }
.lim-footer .links li { margin-bottom: 5px; }
.lim-footer .links li a { font-size: 13px; }
.lim-footer .contact-list .list-info { font-size: 13px; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }
.lim-footer .contact-list .list-info i { color: var(--accent); margin-top: 3px; }
.lim-footer .footer-bottom { border-top: 1px solid var(--border-light); padding: 18px 0; }
.lim-footer .footer-bottom .copyright { font-size: 12px; }
.lim-footer .social a {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid #ddd;
    display: inline-flex; align-items: center; justify-content: center;
    color: #bbb; transition: all .3s; margin-right: 5px;
}
.lim-footer .social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.lim-sticky-mobile {
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.08);
    padding: 8px 0;
    display: none;
}
@media (max-width: 991px) { .lim-sticky-mobile { display: block; } }

.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.lim-blog-content .featured-img {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
}
.lim-blog-content .featured-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.lim-blog-content .post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}
.lim-blog-content .post-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
}
.lim-blog-content .post-meta .meta-item i { color: var(--accent); }
.lim-blog-content .post-meta .meta-item .category-pill {
    background: var(--accent);
    color: #fff;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.lim-blog-content .post-body h2 {
    font-family: var(--title-font);
    font-size: 26px;
    color: var(--text-dark);
    margin: 32px 0 14px;
}
.lim-blog-content .post-body p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 16px;
}
.lim-blog-content .post-body ul {
    margin: 12px 0 20px;
    padding-left: 20px;
}
.lim-blog-content .post-body ul li {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 6px;
}
.lim-blog-content .post-body ul li::marker { color: var(--accent); }
.lim-blog-content .share-section {
    margin-top: 36px;
    padding: 24px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}
.lim-blog-content .share-section .share-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}
.lim-blog-content .share-section .share-buttons { display: flex; gap: 8px; }
.lim-blog-content .share-section .share-buttons a {
    width: 38px; height: 38px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-size: 15px;
    transition: all .3s; text-decoration: none;
}
.lim-blog-content .share-section .share-buttons a:hover { opacity: .85; transform: translateY(-2px); }
.lim-blog-content .share-section .share-buttons .fb { background: #3b5998; }
.lim-blog-content .share-section .share-buttons .tw { background: #1da1f2; }
.lim-blog-content .share-section .share-buttons .wa { background: #25D366; }
.lim-blog-content .share-section .share-buttons .em { background: var(--accent); }

.lim-blog-content .author-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.lim-blog-content .author-box .author-avatar {
    width: 56px; height: 56px; border-radius: 50%;
    object-fit: cover; background: var(--bg-warm);
}
.lim-blog-content .author-box .author-info h6 {
    font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px;
}
.lim-blog-content .author-box .author-info span { font-size: 12px; color: var(--text-muted); }

.lim-comments { margin-top: 40px; }
.lim-comments h3 {
    font-family: var(--title-font);
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 24px;
}
.lim-comments .comment-item {
    display: flex; gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-light);
}
.lim-comments .comment-item:last-child { border-bottom: none; }
.lim-comments .comment-item .c-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    object-fit: cover; background: var(--bg-warm);
    flex-shrink: 0;
}
.lim-comments .comment-item .c-body .c-name { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.lim-comments .comment-item .c-body .c-date { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; }
.lim-comments .comment-item .c-body .c-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
@media (max-width: 767px) {
    .lim-blog-content .featured-img img { height: 220px; }
    .lim-blog-content .post-body h2 { font-size: 22px; }
}

*,*::before,*::after{box-sizing:border-box}
:root{
    --accent:#0f2352;--accent-dark:#09163a;--accent-light:#1a3a7a;
    --accent-rgb:15,35,82;
    --bg-warm:#f8f7f4;--text-dark:#111;--text-muted:#6b7280;--border-light:#e5e7eb;
    --font-sans:'Inter',system-ui,-apple-system,sans-serif;
    --font-serif:'Playfair Display',Georgia,serif;
}

.lim-header{position:fixed;top:0;left:0;right:0;z-index:1000;background:transparent;transition:all .5s cubic-bezier(.4,0,.2,1);padding:20px 0}
.lim-header.scrolled{background:rgba(255,255,255,0.92);backdrop-filter:blur(20px) saturate(180%);box-shadow:0 1px 40px rgba(0,0,0,0.06);padding:10px 0}
.lim-header .header-inner{display:flex;align-items:center;justify-content:space-between}
.lim-header .logo img{height:100px;transition:all .5s}
.lim-header.scrolled .logo img{height:60px}
.lim-header .logo-light{display:block}
.lim-header .logo-dark{display:none}
.lim-header.scrolled .logo-light{display:none}
.lim-header.scrolled .logo-dark{display:block}
.lim-header .header-nav{display:flex;align-items:center;gap:28px}
.lim-header .header-nav a{color:rgba(255,255,255,0.85);font-size:13px;font-weight:500;letter-spacing:.3px;transition:color .3s;position:relative;text-decoration:none}
.lim-header .header-nav a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:1.5px;background:var(--accent);transition:width .4s cubic-bezier(.4,0,.2,1)}
.lim-header .header-nav a:hover::after{width:100%}
.lim-header .header-nav a:hover{color:#fff}
.lim-header.scrolled .header-nav a{color:var(--text-dark)}
.lim-header.scrolled .header-nav a:hover{color:var(--accent)}
.lim-header .header-actions{display:flex;align-items:center;gap:12px}
.lim-header .contact-chip{display:flex;align-items:center;gap:5px;color:rgba(255,255,255,0.75);font-size:12px;text-decoration:none;transition:color .3s}
.lim-header .contact-chip i{color:var(--accent);font-size:11px}
.lim-header.scrolled .contact-chip{color:var(--text-muted)}
.lim-header .lang-select{background:transparent;border:1px solid rgba(255,255,255,0.25);color:rgba(255,255,255,0.85);padding:3px 8px;border-radius:4px;font-size:11px;cursor:pointer;font-family:var(--font-sans)}
.lim-header.scrolled .lang-select{border-color:var(--border-light);color:var(--text-muted)}
.lim-header .btn-contact,.lim-header .btn-reserve{background:var(--accent);color:#fff;padding:10px 24px;border-radius:8px;font-size:12px;font-weight:600;transition:all .3s;text-decoration:none;white-space:nowrap;letter-spacing:.3px;display:inline-flex;align-items:center;gap:6px}
.lim-header .btn-contact:hover,.lim-header .btn-reserve:hover{background:var(--accent-light);transform:translateY(-1px);box-shadow:0 4px 15px rgba(var(--accent-rgb),.3)}
.lim-header .mobile-toggle{display:none;color:#fff;font-size:20px;cursor:pointer;align-items:center;justify-content:center}
.lim-header.scrolled .mobile-toggle{color:var(--text-dark)}
@media(max-width:991px){
    .lim-header .header-nav{display:none;position:fixed;top:140px;left:0;right:0;background:#fff;flex-direction:column;padding:20px;gap:16px;box-shadow:0 10px 40px rgba(0,0,0,0.1);z-index:9999;transition:top .3s}
    .lim-header.scrolled .header-nav{top:80px}
    .lim-header .header-nav.d-flex{display:flex!important}
    .lim-header .header-nav a{color:var(--text-dark)!important;font-size:15px}
    .lim-header .header-nav a::after{display:none}
    .lim-header .header-actions .contact-chip,.lim-header .header-actions .lang-select{display:none}
    .lim-header .mobile-toggle{display:flex;align-items:center;justify-content:center;width:34px;height:34px}
    .lim-header .btn-contact,.lim-header .btn-reserve{padding:7px 14px;font-size:11px;display:inline-flex;align-items:center;gap:4px}
}

.hero-section{position:relative;min-height:220px;display:flex;align-items:flex-end;overflow:hidden;background:linear-gradient(160deg,#0a0a1a 0%,#0f2352 40%,#1a3a7a 100%)}
.hero-section .hero-overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(to top,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.1) 50%,transparent 100%)}
.hero-section .hero-content{position:relative;z-index:2;width:100%;padding:180px 0 28px}
.hero-section .breadcrumb{display:inline-flex;align-items:center;gap:5px;font-size:11px;color:rgba(255,255,255,0.35);margin-bottom:10px;text-decoration:none}
.hero-section .breadcrumb a{color:rgba(255,255,255,0.45);text-decoration:none;transition:color .3s}
.hero-section .breadcrumb a:hover{color:#fff}
.hero-section .breadcrumb span{color:rgba(255,255,255,0.7)}
.hero-section .hero-title{font-family:var(--font-serif);font-size:30px;color:#fff;font-weight:400;margin:0;line-height:1.2}
.hero-section .hero-badge{font-size:11px;color:rgba(255,255,255,0.5);padding:3px 12px;border-radius:20px;background:rgba(255,255,255,0.08)}

.lim-section-title { text-align: center; margin-bottom: 48px; }
.lim-section-title .sub { color: var(--accent); font-size: 12px; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; margin-bottom: 8px; display: block; }
.lim-section-title h2 { font-family: var(--title-font); font-size: 40px; color: var(--text-dark); margin-bottom: 12px; }
.lim-section-title p { color: var(--text-muted); font-size: 15px; max-width: 560px; margin: 0 auto; line-height: 1.7; }
@media (max-width: 991px) { .lim-section-title h2 { font-size: 30px; } }
.lim-blog-card { border-radius: 12px; overflow: hidden; background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,0.04); transition: all .4s; height: 100%; }
.lim-blog-card:hover { box-shadow: 0 6px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.lim-blog-card .blog-img { height: 200px; overflow: hidden; position: relative; }
.lim-blog-card .blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.lim-blog-card:hover .blog-img img { transform: scale(1.08); }
.lim-blog-card .blog-img .category-badge { position: absolute; top: 12px; left: 12px; background: var(--accent); color: #fff; padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; z-index: 2; }
.lim-blog-card .blog-body { padding: 18px 22px 22px; }
.lim-blog-card .blog-body .date { font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
.lim-blog-card .blog-body h5 { font-family: var(--title-font); font-size: 17px; margin-bottom: 8px; }
.lim-blog-card .blog-body h5 a { color: var(--text-dark); text-decoration: none; transition: color .3s; }
.lim-blog-card .blog-body h5 a:hover { color: var(--accent); }
.lim-blog-card .blog-body p { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.7; }
.lim-blog-card .blog-body .read-more { color: var(--accent); font-weight: 600; font-size: 12px; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap .3s; }
.lim-blog-card .blog-body .read-more:hover { gap: 10px; }
.lim-footer { background: var(--bg-warm); color: var(--text-muted); border-top: 1px solid var(--border-light); }
.lim-footer .widget-title { color: var(--text-dark); font-family: var(--title-font); font-size: 18px; margin-bottom: 18px; }
.lim-footer a { color: var(--text-muted); transition: all .3s; text-decoration: none; }
.lim-footer a:hover { color: var(--accent); }
.lim-footer .links li { margin-bottom: 5px; }
.lim-footer .links li a { font-size: 13px; }
.lim-footer .contact-list .list-info { font-size: 13px; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }
.lim-footer .contact-list .list-info i { color: var(--accent); margin-top: 3px; }
.lim-footer .footer-bottom { border-top: 1px solid var(--border-light); padding: 18px 0; }
.lim-footer .footer-bottom .copyright { font-size: 12px; }
.lim-footer .social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid #ddd; display: inline-flex; align-items: center; justify-content: center; color: #bbb; transition: all .3s; margin-right: 5px; }
.lim-footer .social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.lim-sticky-mobile { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: #fff; box-shadow: 0 -2px 20px rgba(0,0,0,0.08); padding: 8px 0; display: none; }
@media (max-width: 991px) { .lim-sticky-mobile { display: block; } }
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.lim-blog-content .featured-img { border-radius: 16px; overflow: hidden; margin-bottom: 30px; }
.lim-blog-content .featured-img img { width: 100%; height: 420px; object-fit: cover; }
.lim-blog-content .post-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border-light); }
.lim-blog-content .post-meta .meta-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted); }
.lim-blog-content .post-meta .meta-item i { color: var(--accent); }
.lim-blog-content .post-meta .meta-item .category-pill { background: var(--accent); color: #fff; padding: 3px 12px; border-radius: 20px; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.lim-blog-content .post-body h2 { font-family: var(--title-font); font-size: 26px; color: var(--text-dark); margin: 32px 0 14px; }
.lim-blog-content .post-body p { font-size: 15px; color: var(--text-muted); line-height: 1.9; margin-bottom: 16px; }
.lim-blog-content .share-section { margin-top: 36px; padding: 24px 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.lim-blog-content .share-section .share-label { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.lim-blog-content .share-section .share-buttons { display: flex; gap: 8px; }
.lim-blog-content .share-section .share-buttons a { width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 15px; transition: all .3s; text-decoration: none; }
.lim-blog-content .share-section .share-buttons a:hover { opacity: .85; transform: translateY(-2px); }
.lim-blog-content .share-section .share-buttons .fb { background: #3b5998; }
.lim-blog-content .share-section .share-buttons .tw { background: #1da1f2; }
.lim-blog-content .share-section .share-buttons .wa { background: #25D366; }
.lim-blog-content .share-section .share-buttons .em { background: var(--accent); }
.lim-blog-content .author-box { display: flex; align-items: center; gap: 16px; background: #fff; border-radius: 12px; padding: 20px 24px; margin-top: 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.lim-blog-content .author-box .author-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; background: var(--bg-warm); }
.lim-blog-content .author-box .author-info h6 { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.lim-blog-content .author-box .author-info span { font-size: 12px; color: var(--text-muted); }
.lim-comments { margin-top: 40px; }
.lim-comments h3 { font-family: var(--title-font); font-size: 22px; color: var(--text-dark); margin-bottom: 24px; }
.lim-comments .comment-item { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--border-light); }
.lim-comments .comment-item:last-child { border-bottom: none; }
.lim-comments .comment-item .c-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--bg-warm); flex-shrink: 0; }
.lim-comments .comment-item .c-body .c-name { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.lim-comments .comment-item .c-body .c-date { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; }
.lim-comments .comment-item .c-body .c-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
@media (max-width: 767px) { .lim-blog-content .featured-img img { height: 220px; } .lim-blog-content .post-body h2 { font-size: 22px; } }

*,
*::before,
*::after {
    box-sizing: border-box
}

:root {
    --accent: #0f2352;
    --accent-dark: #09163a;
    --accent-light: #1a3a7a;
    --accent-rgb: 15, 35, 82;
    --bg-warm: #f8f7f4;
    --text-dark: #111;
    --text-muted: #6b7280;
    --border-light: #e5e7eb;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}


.lim-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all .5s cubic-bezier(.4, 0, .2, 1);
    padding: 20px 0
}

.lim-header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 40px rgba(0, 0, 0, 0.06);
    padding: 10px 0
}

.lim-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.lim-header .logo img {
    height: 120px;
    transition: all .5s
}

.lim-header.scrolled .logo img {
    height: 80px
}

.lim-header .logo-light {
    display: block
}

.lim-header .logo-dark {
    display: none
}

.lim-header.scrolled .logo-light {
    display: none
}

.lim-header.scrolled .logo-dark {
    display: block
}

.lim-header .header-nav {
    display: flex;
    align-items: center;
    gap: 28px
}

.lim-header .header-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .3px;
    transition: color .3s;
    position: relative;
    text-decoration: none
}

.lim-header .header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width .4s cubic-bezier(.4, 0, .2, 1)
}

.lim-header .header-nav a:hover::after {
    width: 100%
}

.lim-header .header-nav a:hover {
    color: #fff
}

.lim-header.scrolled .header-nav a {
    color: var(--text-dark)
}

.lim-header.scrolled .header-nav a:hover {
    color: var(--accent)
}

.lim-header .header-actions {
    display: flex;
    align-items: center;
    gap: 12px
}

.lim-header .contact-chip {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    text-decoration: none;
    transition: color .3s
}

.lim-header .contact-chip i {
    color: var(--accent);
    font-size: 11px
}

.lim-header.scrolled .contact-chip {
    color: var(--text-muted)
}

.lim-header .lang-select {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    font-family: var(--font-sans)
}

.lim-header.scrolled .lang-select {
    border-color: var(--border-light);
    color: var(--text-muted)
}

.lim-header .btn-contact,
.lim-header .btn-reserve {
    background: var(--accent);
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    transition: all .3s;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: .3px;
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.lim-header .btn-contact:hover,
.lim-header .btn-reserve:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(var(--accent-rgb), .3)
}

.lim-header .mobile-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.2s;
}

.lim-header .mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
}

.lim-header.scrolled .mobile-toggle {
    color: var(--text-dark);
}

.lim-header.scrolled .mobile-toggle:hover {
    background: var(--bg-warm);
}


.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu-panel.open {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1;
}

.mobile-menu-header .logo img {
    height: 40px;
}

.mobile-menu-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 22px;
    background: var(--bg-warm);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.mobile-menu-close:hover {
    background: var(--accent);
    color: #fff;
}

.mobile-menu-nav {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 16px;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
    background: var(--bg-warm);
    color: var(--accent);
    border-color: var(--border-light);
}

.mobile-menu-nav a i {
    font-size: 18px;
    width: 24px;
    text-align: center;
    color: var(--text-muted);
    transition: color 0.2s;
}

.mobile-menu-nav a:hover i,
.mobile-menu-nav a.active i {
    color: var(--accent);
}

.mobile-menu-divider {
    height: 1px;
    background: var(--border-light);
    margin: 8px 0 16px;
}

.mobile-menu-contact {
    padding: 0 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.mobile-menu-contact a:hover {
    border-color: var(--accent);
    background: var(--bg-warm);
    color: var(--accent);
}

.mobile-menu-contact a i {
    font-size: 18px;
    color: var(--accent);
    width: 24px;
    text-align: center;
}

.mobile-menu-lang {
    padding: 0 24px 24px;
    display: flex;
    gap: 8px;
}

.mobile-menu-lang select {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    background: #fff;
    color: var(--text-dark);
    font-size: 14px;
    font-family: var(--font-sans);
}

.mobile-menu-actions {
    padding: 0 24px 24px;
    display: flex;
    gap: 12px;
}

.mobile-menu-actions a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.mobile-menu-actions .btn-contact {
    background: var(--bg-warm);
    color: var(--text-dark);
    border: 1px solid var(--border-light);
}

.mobile-menu-actions .btn-contact:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.mobile-menu-actions .btn-reserve {
    background: var(--accent);
    color: #fff;
}

.mobile-menu-actions .btn-reserve:hover {
    background: var(--accent-dark);
}


.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    border-top: 1px solid var(--border-light);
    display: none;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
    .mobile-bottom-nav {
        display: flex;
    }
}

.mobile-bottom-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.2s;
    min-height: 60px;
}

.mobile-bottom-nav a i {
    font-size: 20px;
}

.mobile-bottom-nav a:hover,
.mobile-bottom-nav a.active {
    color: var(--accent);
}

.mobile-bottom-nav a.active i {
    color: var(--accent);
}

.mobile-bottom-nav a:active {
    background: var(--bg-warm);
}

@media(max-width:991px) {
    .lim-header .header-nav {
        display: none;
    }

    .lim-header .header-actions .contact-chip,
    .lim-header .header-actions .lang-select {
        display: none;
    }

    .lim-header .mobile-toggle {
        display: flex;
    }

    .lim-header .btn-contact,
    .lim-header .btn-reserve {
        padding: 7px 14px;
        font-size: 11px;
    }


    body {
        padding-bottom: 0;
    }
}


@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.mobile-menu-panel.open {
    animation: slideInRight 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.open {
    animation: fadeIn 0.3s ease;
}


@media (prefers-reduced-motion: reduce) {
    .mobile-menu-panel,
    .mobile-menu-overlay,
    .mobile-menu-panel.open,
    .mobile-menu-overlay.open {
        animation: none;
        transition: none;
    }
}


.hero-section {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: linear-gradient(160deg, #0a0a1a 0%, #0f2352 40%, #1a3a7a 100%)
}

.hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%)
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 180px 0 28px
}

.hero-section .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 10px;
    text-decoration: none
}

.hero-section .breadcrumb a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color .3s
}

.hero-section .breadcrumb a:hover {
    color: #fff
}

.hero-section .breadcrumb span {
    color: rgba(255, 255, 255, 0.7)
}

.hero-section .hero-title {
    font-family: var(--font-serif);
    font-size: 30px;
    color: #fff;
    font-weight: 400;
    margin: 0;
    line-height: 1.2
}

.hero-section .hero-badge {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    padding: 3px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08)
}


.lim-qr-wrap {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 20px;
    padding: 60px 56px;
    position: relative;
    overflow: hidden;
}

.lim-qr-wrap::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.qr-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 220px;
    margin: 0 auto;
}

.qr-frame {
    width: 180px;
    height: 180px;
    border-radius: 20px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.qr-frame i {
    font-size: 100px;
    color: var(--accent);
}

.qr-phone {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.qr-phone i {
    font-size: 20px;
    color: #fff;
}

.qr-features {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.qr-features .qf-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.qr-btns {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.qr-btns a {
    padding: 13px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
}

.qr-btns .btn-qr-primary {
    background: #fff;
    color: var(--accent);
}

.qr-btns .btn-qr-primary:hover {
    background: var(--bg-warm);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.qr-btns .btn-qr-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.qr-btns .btn-qr-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 991px) {
    .lim-qr-wrap {
        padding: 40px 24px;
    }

    .qr-visual {
        width: 160px;
        height: 160px;
    }

    .qr-frame {
        width: 130px;
        height: 130px;
    }

    .qr-frame i {
        font-size: 70px;
    }
}

@media (max-width: 767px) {
    .qr-visual {
        margin-bottom: 16px;
    }
}


.lim-cat-card {
    display: block;
    text-decoration: none;
    text-align: center;
    padding: 36px 20px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    transition: all .3s;
}

.lim-cat-card:hover {
    border-color: var(--accent);
    box-shadow: 0 6px 30px rgba(15, 35, 82, 0.10);
    transform: translateY(-4px);
}

.lim-cat-card .cat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 24px;
}

.lim-cat-card h5 {
    font-family: var(--title-font);
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.lim-cat-card span {
    font-size: 12px;
    color: var(--text-muted);
}


.lim-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 20px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    transition: all .3s;
    height: 100%;
}

.lim-menu-item:hover {
    border-color: var(--accent);
    box-shadow: 0 2px 16px rgba(15, 35, 82, 0.06);
}

.lim-menu-item .menu-info {
    flex: 1;
    padding-right: 16px;
}

.lim-menu-item .menu-name {
    font-family: var(--title-font);
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-weight: 600;
}

.lim-menu-item .menu-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.lim-menu-item .menu-price {
    font-family: var(--title-font);
    font-size: 18px;
    color: var(--accent);
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.lim-section-title {
    text-align: center;
    margin-bottom: 48px;
}

.lim-section-title .sub {
    color: var(--accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.lim-section-title h2 {
    font-family: var(--title-font);
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.lim-section-title p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .lim-section-title h2 {
        font-size: 30px;
    }
}

.lim-dish-card {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.05);
    transition: all .4s;
    height: 100%;
}

.lim-dish-card:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
    transform: translateY(-6px);
}

.lim-dish-card .dish-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.lim-dish-card .dish-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
}

.lim-dish-card:hover .dish-img img {
    transform: scale(1.08);
}

.lim-dish-card .dish-img .dish-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

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

.lim-dish-card .dish-body h5 {
    font-family: var(--title-font);
    font-size: 18px;
    margin-bottom: 6px;
}

.lim-dish-card .dish-body .dish-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.6;
}

.lim-dish-card .dish-body .dish-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

.lim-dish-card .dish-body .dish-meta .price {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
}

.lim-dish-card .dish-body .dish-meta .cat {
    font-size: 11px;
    color: var(--text-muted);
    background: var(--bg-warm);
    padding: 3px 10px;
    border-radius: 20px;
}

.lim-menu-cat-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    transition: all .4s;
    height: 100%;
    text-decoration: none;
    display: block;
    border: 1px solid var(--border-light);
}

.lim-menu-cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    border-color: var(--accent);
}

.lim-menu-cat-card .mcc-icon {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-warm);
    font-size: 42px;
    color: var(--accent);
}

.lim-menu-cat-card .mcc-body {
    padding: 14px 18px 20px;
    text-align: center;
}

.lim-menu-cat-card .mcc-body h6 {
    font-family: var(--title-font);
    font-size: 17px;
    margin-bottom: 2px;
    color: var(--text-dark);
}

.lim-menu-cat-card .mcc-body span {
    font-size: 12px;
    color: var(--text-muted);
}

.lim-menu-cat-card .mcc-body .mcc-items {
    font-size: 11px;
    color: var(--accent);
    margin-top: 6px;
}

.lim-ambiance {
    position: relative;
    overflow: hidden;
}

.lim-ambiance .amb-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 260px;
}

.lim-ambiance .amb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.lim-ambiance .amb-item:hover img {
    transform: scale(1.08);
}

.lim-ambiance .amb-item .amb-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    padding: 20px;
    color: #fff;
}

.lim-ambiance .amb-item .amb-caption h6 {
    font-family: var(--title-font);
    font-size: 16px;
    margin-bottom: 2px;
}

.lim-ambiance .amb-item .amb-caption span {
    font-size: 12px;
    opacity: .8;
}

.lim-ambiance .amb-item.tall {
    height: 360px;
}

.lim-service-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all .3s;
    height: 100%;
}

.lim-service-card:hover {
    border-color: var(--accent);
    box-shadow: 0 6px 30px rgba(15, 35, 82, 0.10);
    transform: translateY(-4px);
}

.lim-service-card .srv-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-warm);
    margin: 0 auto 14px;
    font-size: 26px;
    color: var(--accent);
    transition: all .3s;
}

.lim-service-card:hover .srv-icon {
    background: var(--accent);
    color: #fff;
}

.lim-service-card h5 {
    font-family: var(--title-font);
    font-size: 18px;
    margin-bottom: 8px;
}

.lim-service-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.lim-contact-info {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 32px;
    height: 100%;
    transition: all .3s;
}

.lim-contact-info:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 24px rgba(15, 35, 82, 0.08);
}

.lim-contact-info .ci-icon {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 12px;
}

.lim-contact-info h5 {
    font-family: var(--title-font);
    font-size: 17px;
    margin-bottom: 8px;
}

.lim-contact-info p,
.lim-contact-info a {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    text-decoration: none;
    display: block;
}

.lim-contact-info a:hover {
    color: var(--accent);
}

.lim-hours-table {
    width: 100%;
    font-size: 13px;
}

.lim-hours-table td {
    padding: 6px 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-light);
}

.lim-hours-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--text-dark);
}

.lim-faq .accordion-item {
    border: 1px solid var(--border-light);
    border-radius: 10px;
    margin-bottom: 8px;
    overflow: hidden;
}

.lim-faq .accordion-item .accordion-button {
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    background: #fafafa;
    box-shadow: none;
}

.lim-faq .accordion-item .accordion-button:not(.collapsed) {
    background: var(--accent);
    color: #fff;
}

.lim-faq .accordion-item .accordion-body {
    padding: 16px 20px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

.lim-footer {
    background: var(--bg-warm);
    color: var(--text-muted);
    border-top: 1px solid var(--border-light);
}

.lim-footer .widget-title {
    color: var(--text-dark);
    font-family: var(--title-font);
    font-size: 18px;
    margin-bottom: 18px;
}

.lim-footer a {
    color: var(--text-muted);
    transition: all .3s;
    text-decoration: none;
}

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

.lim-footer .links li {
    margin-bottom: 5px;
}

.lim-footer .links li a {
    font-size: 13px;
}

.lim-footer .contact-list .list-info {
    font-size: 13px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.lim-footer .contact-list .list-info i {
    color: var(--accent);
    margin-top: 3px;
}

.lim-footer .footer-bottom {
    border-top: 1px solid var(--border-light);
    padding: 18px 0;
}

.lim-footer .footer-bottom .copyright {
    font-size: 12px;
}

.lim-footer .social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    transition: all .3s;
    margin-right: 5px;
}

.lim-footer .social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.lim-sticky-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    display: none;
}

@media (max-width: 991px) {
    .lim-sticky-mobile {
        display: block;
    }
}

@media (max-width: 767px) {
    body {
        padding-bottom: 0;
    }

    .lim-sticky-mobile {
        bottom: 60px;
    }

    .mobile-bottom-nav {
        display: flex;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


.lim-section-title h2 .highlight {
    color: var(--accent);
}

.section-divider {
    width: 50px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto 12px;
    border-radius: 2px;
}

.lim-dish-card .dish-body .dish-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.6;
}

.lim-menu-cat-card {
    transition: all .4s cubic-bezier(.25, .46, .45, .94);
}


.lim-menu-accordion {
    max-width: 920px;
    margin: 0 auto;
}

.lim-acc-item {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s;
}

.lim-acc-item.open {
    border-color: var(--accent);
    box-shadow: 0 6px 30px rgba(15, 35, 82, 0.08);
}

.lim-acc-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    user-select: none;
    transition: background .3s;
}

.lim-acc-header:hover {
    background: var(--bg-warm);
}

.lim-acc-header .acc-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.lim-acc-header .acc-title {
    flex: 1;
}

.lim-acc-header .acc-title h4 {
    font-family: var(--title-font);
    font-size: 19px;
    color: var(--text-dark);
    margin: 0 0 2px;
    font-weight: 600;
}

.lim-acc-header .acc-title span {
    font-size: 12px;
    color: var(--text-muted);
}

.lim-acc-header .acc-chevron {
    color: var(--text-muted);
    font-size: 16px;
    transition: transform .35s ease;
}

.lim-acc-item.open .acc-chevron {
    transform: rotate(180deg);
    color: var(--accent);
}

.lim-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s cubic-bezier(.4, 0, .2, 1);
}

.lim-acc-inner {
    padding: 4px 22px 22px;
}

.lim-subcat {
    margin-top: 18px;
}

.lim-subcat:first-child {
    margin-top: 8px;
}

.lim-subcat-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--title-font);
    font-size: 15px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px dashed var(--border-light);
}

.lim-subcat-title i {
    font-size: 14px;
}

.lim-subcat .row.g-3 {
    --bs-gutter-y: 0.75rem;
}

.lim-acc-empty {
    font-size: 13px;
    color: var(--text-muted);
    padding: 8px 0;
}

@media (max-width: 767px) {
    .lim-acc-header {
        padding: 14px 16px;
        gap: 12px;
    }

    .lim-acc-header .acc-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .lim-acc-header .acc-title h4 {
        font-size: 16px;
    }

    .lim-acc-inner {
        padding: 4px 16px 18px;
    }

    .lim-menu-item {
        padding: 14px 16px;
    }
}

.lim-menu-cat-card:hover .mcc-icon {
    background: var(--accent);
    color: #fff;
}

.lim-menu-cat-card .mcc-icon {
    transition: all .4s cubic-bezier(.25, .46, .45, .94);
}

.lim-ambiance .amb-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.lim-service-card {
    border-radius: 16px;
    padding: 36px 24px;
}

.lim-service-card .srv-icon {
    width: 64px;
    height: 64px;
    font-size: 28px;
}

.lim-service-card:hover .srv-icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.05);
}

.lim-service-card .srv-icon {
    transition: all .3s cubic-bezier(.25, .46, .45, .94);
}

.lim-contact-info {
    border-radius: 16px;
    padding: 36px;
}

.bg-gradient-warm {
    background: linear-gradient(180deg, var(--bg-warm) 0%, #fff 100%);
}


*,*::before,*::after{box-sizing:border-box}
:root{
    --accent:#0f2352;--accent-dark:#09163a;--accent-light:#1a3a7a;
    --accent-rgb:15,35,82;
    --bg-warm:#f8f7f4;--text-dark:#111;--text-muted:#6b7280;--border-light:#e5e7eb;
    --font-sans:'Inter',system-ui,-apple-system,sans-serif;
    --font-serif:'Playfair Display',Georgia,serif;
}

.lim-header{position:fixed;top:0;left:0;right:0;z-index:1000;background:transparent;transition:all .5s cubic-bezier(.4,0,.2,1);padding:20px 0}
.lim-header.scrolled{background:rgba(255,255,255,0.92);backdrop-filter:blur(20px) saturate(180%);box-shadow:0 1px 40px rgba(0,0,0,0.06);padding:10px 0}
.lim-header .header-inner{display:flex;align-items:center;justify-content:space-between}
.lim-header .logo img{height:100px;transition:all .5s}
.lim-header.scrolled .logo img{height:60px}
.lim-header .logo-light{display:block}
.lim-header .logo-dark{display:none}
.lim-header.scrolled .logo-light{display:none}
.lim-header.scrolled .logo-dark{display:block}
.lim-header .header-nav{display:flex;align-items:center;gap:28px}
.lim-header .header-nav a{color:rgba(255,255,255,0.85);font-size:13px;font-weight:500;letter-spacing:.3px;transition:color .3s;position:relative;text-decoration:none}
.lim-header .header-nav a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:1.5px;background:var(--accent);transition:width .4s cubic-bezier(.4,0,.2,1)}
.lim-header .header-nav a:hover::after{width:100%}
.lim-header .header-nav a:hover{color:#fff}
.lim-header.scrolled .header-nav a{color:var(--text-dark)}
.lim-header.scrolled .header-nav a:hover{color:var(--accent)}
.lim-header .header-actions{display:flex;align-items:center;gap:12px}
.lim-header .contact-chip{display:flex;align-items:center;gap:5px;color:rgba(255,255,255,0.75);font-size:12px;text-decoration:none;transition:color .3s}
.lim-header .contact-chip i{color:var(--accent);font-size:11px}
.lim-header.scrolled .contact-chip{color:var(--text-muted)}
.lim-header .lang-select{background:transparent;border:1px solid rgba(255,255,255,0.25);color:rgba(255,255,255,0.85);padding:3px 8px;border-radius:4px;font-size:11px;cursor:pointer;font-family:var(--font-sans)}
.lim-header.scrolled .lang-select{border-color:var(--border-light);color:var(--text-muted)}
.lim-header .btn-contact,.lim-header .btn-reserve{background:var(--accent);color:#fff;padding:10px 24px;border-radius:8px;font-size:12px;font-weight:600;transition:all .3s;text-decoration:none;white-space:nowrap;letter-spacing:.3px;display:inline-flex;align-items:center;gap:6px}
.lim-header .btn-contact:hover,.lim-header .btn-reserve:hover{background:var(--accent-light);transform:translateY(-1px);box-shadow:0 4px 15px rgba(var(--accent-rgb),.3)}
.lim-header .mobile-toggle{display:none;color:#fff;font-size:20px;cursor:pointer;align-items:center;justify-content:center}
.lim-header.scrolled .mobile-toggle{color:var(--text-dark)}
@media(max-width:991px){
    .lim-header .header-nav{display:none;position:fixed;top:140px;left:0;right:0;background:#fff;flex-direction:column;padding:20px;gap:16px;box-shadow:0 10px 40px rgba(0,0,0,0.1);z-index:9999;transition:top .3s}
    .lim-header.scrolled .header-nav{top:80px}
    .lim-header .header-nav.d-flex{display:flex!important}
    .lim-header .header-nav a{color:var(--text-dark)!important;font-size:15px}
    .lim-header .header-nav a::after{display:none}
    .lim-header .header-actions .contact-chip,.lim-header .header-actions .lang-select{display:none}
    .lim-header .mobile-toggle{display:flex;align-items:center;justify-content:center;width:34px;height:34px}
    .lim-header .btn-contact,.lim-header .btn-reserve{padding:7px 14px;font-size:11px;display:inline-flex;align-items:center;gap:4px}
}

.hero-section{position:relative;min-height:220px;display:flex;align-items:flex-end;overflow:hidden;background:linear-gradient(160deg,#0a0a1a 0%,#0f2352 40%,#1a3a7a 100%)}
.hero-section .hero-overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(to top,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.1) 50%,transparent 100%)}
.hero-section .hero-content{position:relative;z-index:2;width:100%;padding:180px 0 28px}
.hero-section .breadcrumb{display:inline-flex;align-items:center;gap:5px;font-size:11px;color:rgba(255,255,255,0.35);margin-bottom:10px;text-decoration:none}
.hero-section .breadcrumb a{color:rgba(255,255,255,0.45);text-decoration:none;transition:color .3s}
.hero-section .breadcrumb a:hover{color:#fff}
.hero-section .breadcrumb span{color:rgba(255,255,255,0.7)}
.hero-section .hero-title{font-family:var(--font-serif);font-size:30px;color:#fff;font-weight:400;margin:0;line-height:1.2}
.hero-section .hero-badge{font-size:11px;color:rgba(255,255,255,0.5);padding:3px 12px;border-radius:20px;background:rgba(255,255,255,0.08)}

.lim-section-title {
    text-align: center;
    margin-bottom: 48px;
}
.lim-section-title .sub {
    color: var(--accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}
.lim-section-title h2 {
    font-family: var(--title-font);
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.lim-section-title p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
.lim-blog-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    transition: all .4s;
    height: 100%;
}
.lim-blog-card:hover { box-shadow: 0 6px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.lim-blog-card .blog-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.lim-blog-card .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.lim-blog-card:hover .blog-img img { transform: scale(1.08); }
.lim-blog-card .blog-img .category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}
.lim-blog-card .blog-body { padding: 18px 22px 22px; }
.lim-blog-card .blog-body .date {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.lim-blog-card .blog-body h5 {
    font-family: var(--title-font);
    font-size: 17px;
    margin-bottom: 8px;
}
.lim-blog-card .blog-body h5 a { color: var(--text-dark); text-decoration: none; transition: color .3s; }
.lim-blog-card .blog-body h5 a:hover { color: var(--accent); }
.lim-blog-card .blog-body p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.7;
}
.lim-blog-card .blog-body .read-more {
    color: var(--accent);
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .3s;
}
.lim-blog-card .blog-body .read-more:hover { gap: 10px; }
.lim-sidebar .widget {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.lim-sidebar .widget h4 {
    font-family: var(--title-font);
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-light);
}
.lim-sidebar .widget .cat-list { list-style: none; padding: 0; margin: 0; }
.lim-sidebar .widget .cat-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 13px;
}
.lim-sidebar .widget .cat-list li:last-child { border-bottom: none; }
.lim-sidebar .widget .cat-list li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color .3s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.lim-sidebar .widget .cat-list li a:hover { color: var(--accent); }
.lim-sidebar .widget .cat-list li a i { color: var(--accent); font-size: 10px; }
.lim-sidebar .widget .cat-list li span {
    background: var(--bg-warm);
    padding: 1px 10px;
    border-radius: 12px;
    font-size: 11px;
    color: var(--text-muted);
}
.lim-sidebar .recent-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}
.lim-sidebar .recent-item:last-child { margin-bottom: 0; }
.lim-sidebar .recent-item .ri-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.lim-sidebar .recent-item .ri-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lim-sidebar .recent-item .ri-body h6 {
    font-size: 13px;
    margin-bottom: 3px;
    line-height: 1.4;
}
.lim-sidebar .recent-item .ri-body h6 a { color: var(--text-dark); text-decoration: none; }
.lim-sidebar .recent-item .ri-body h6 a:hover { color: var(--accent); }
.lim-sidebar .recent-item .ri-body .ri-date { font-size: 11px; color: var(--text-muted); }
.lim-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
}
.lim-pagination a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 13px;
    text-decoration: none;
    transition: all .3s;
}
.lim-pagination a:hover,
.lim-pagination a.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.lim-pagination a.next-prev {
    width: auto;
    padding: 0 16px;
    font-size: 12px;
    font-weight: 600;
}
.lim-footer {
    background: var(--bg-warm);
    color: var(--text-muted);
    border-top: 1px solid var(--border-light);
}
.lim-footer .widget-title {
    color: var(--text-dark);
    font-family: var(--title-font);
    font-size: 18px;
    margin-bottom: 18px;
}
.lim-footer a { color: var(--text-muted); transition: all .3s; text-decoration: none; }
.lim-footer a:hover { color: var(--accent); }
.lim-footer .links li { margin-bottom: 5px; }
.lim-footer .links li a { font-size: 13px; }
.lim-footer .contact-list .list-info {
    font-size: 13px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.lim-footer .contact-list .list-info i { color: var(--accent); margin-top: 3px; }
.lim-footer .footer-bottom {
    border-top: 1px solid var(--border-light);
    padding: 18px 0;
}
.lim-footer .footer-bottom .copyright { font-size: 12px; }
.lim-footer .social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    transition: all .3s;
    margin-right: 5px;
}
.lim-footer .social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.lim-sticky-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.08);
    padding: 8px 0;
    display: none;
}
@media (max-width: 991px) {
    .lim-sticky-mobile { display: block; }
    .lim-page-banner { min-height: 40vh; }
    .lim-page-banner .banner-content h1 { font-size: 34px; }
    .lim-section-title h2 { font-size: 30px; }
}
@media (max-width: 767px) {
    .lim-page-banner .banner-content h1 { font-size: 26px; }
    .lim-page-banner .banner-content p { font-size: 14px; }
}

@media (max-width: 767px) {
    .lim-footer .widgets-section {
        padding-top: 2rem;
        padding-bottom: 1.5rem;
    }
    .lim-footer .widgets-section .row > div {
        margin-bottom: 1.5rem;
    }
    .lim-footer .widgets-section .row > div:last-child {
        margin-bottom: 0;
    }
}

.room-desc-box { line-height: 1.9; white-space: pre-line; }
.room-desc-box p { margin-bottom: 14px; }
.room-desc-box br { content: ""; display: block; margin-top: 10px; }
.room-desc-box ul, .room-desc-box ol { padding-left: 20px; margin-bottom: 14px; }
.price-wrap { display: flex; align-items: baseline; justify-content: center; gap: 10px; margin: 20px 0 16px; flex-wrap: wrap; }
.price-wrap .price { font-size: 30px; font-weight: 700; color: var(--accent); line-height: 1; }
.price-wrap .price-old { font-size: 16px; color: #e74c3c !important; text-decoration: line-through !important; }
.price-wrap .price-sub { font-size: 13px; color: var(--text-muted); }
.amenity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.amenity-grid .ag-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: var(--bg-warm); border-radius: 8px; }
.amenity-grid .ag-item .ag-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: #fff; border-radius: 8px; color: var(--accent); font-size: 15px; flex-shrink: 0; }
.amenity-grid .ag-item .ag-label { font-size: 13px; font-weight: 500; color: var(--text-dark); }
.room-desc-box.reveal.visible > p { margin-bottom: 12px; line-height: 1.8; }

.floating-contact{position:fixed;right:20px;top:50%;transform:translateY(-50%) translateX(80px);z-index:999;display:flex;flex-direction:column;gap:10px;opacity:0;visibility:hidden;transition:all .4s cubic-bezier(.4,0,.2,1)}
.floating-contact.visible{opacity:1;visibility:visible;transform:translateY(-50%) translateX(0)}
.floating-contact a{width:46px;height:46px;background:var(--accent);color:#fff;border-radius:12px;display:flex;align-items:center;justify-content:center;text-decoration:none;transition:all .3s;font-size:18px;box-shadow:0 4px 15px rgba(0,0,0,0.15)}
.floating-contact a:hover{background:var(--accent-light);transform:scale(1.08);color:#fff}
@media(max-width:767px){.floating-contact{right:10px;gap:8px}.floating-contact a{width:38px;height:38px;font-size:15px;border-radius:10px}}

