/* ==========================================================================
   ANTONIA Inn APART HOTEL - Luxury Design System & Styling
   ========================================================================== */

/* Variables */
:root {
    --primary-navy: #0B132B;
    --primary-navy-light: #1C2541;
    --accent-gold: #C5A880;
    --accent-gold-light: #DFCDBC;
    --accent-gold-dark: #A4845D;
    --bg-sand: #FAF8F6;
    --bg-white: #FFFFFF;
    --text-dark: #202631;
    --text-muted: #5A6578;
    --border-light: #EBE7E0;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.03);
    --shadow-medium: 0 10px 30px rgba(11, 19, 43, 0.08);
    --shadow-luxury: 0 20px 50px rgba(164, 132, 93, 0.12);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button, input, select, textarea {
    font-family: inherit;
    outline: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography elements */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.25;
}

/* Buttons */
.btn-primary {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    padding: 12px 28px;
    border: 1px solid var(--accent-gold);
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: var(--primary-navy);
    color: var(--accent-gold);
    border-color: var(--primary-navy);
    box-shadow: 0 8px 20px rgba(11, 19, 43, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    padding: 12px 28px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 0;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--primary-navy);
    border-color: var(--bg-white);
}

.btn-large {
    padding: 16px 36px;
    font-size: 0.9rem;
}

.btn-small {
    padding: 8px 18px;
    font-size: 0.75rem;
}

.btn-full {
    width: 100%;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-subtle);
    padding: 10px 0;
}

.header-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-navy);
    line-height: 1;
}

.logo-text-fallback {
    flex-direction: column;
}

.logo-main {
    display: flex;
    align-items: baseline;
    gap: 1px;
}

.logo-accent {
    color: var(--accent-gold-dark);
}

.logo-inn {
    text-transform: none;
    margin-left: 8px;
    font-family: var(--font-body);
    font-weight: 400;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.55rem;
    letter-spacing: 4px;
    color: var(--accent-gold-dark);
    margin-top: 4px;
    font-weight: 500;
}

.logo-img {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.logo-img-footer {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--primary-navy);
    position: relative;
    padding: 6px 0;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold-dark);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-social-link {
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(11, 19, 43, 0.04);
    border: 1px solid rgba(197, 168, 128, 0.3);
    transition: var(--transition-fast);
    text-decoration: none;
}

.header-social-link i,
.header-social-link [data-lucide] {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

.header-social-link svg {
    width: 16px;
    height: 16px;
}

.header-social-link:hover {
    background: var(--accent-gold);
    color: var(--primary-navy);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 168, 128, 0.3);
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 8px 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    text-align: left;
}

.lang-btn:hover {
    background-color: rgba(197, 168, 128, 0.1);
    color: var(--accent-gold-dark);
}

.lang-btn.active {
    background-color: rgba(197, 168, 128, 0.15);
    font-weight: 600;
}

.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropdown-btn {
    background: #FFFFFF;
    border: 1px solid rgba(197, 168, 128, 0.4);
    border-radius: 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    color: var(--primary-navy);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-fast);
    outline: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.lang-dropdown-btn:hover,
.lang-dropdown.open .lang-dropdown-btn {
    background: rgba(197, 168, 128, 0.12);
    border-color: var(--accent-gold-dark);
    color: var(--accent-gold-dark);
}

.lang-dropdown-btn .chevron-icon,
.lang-dropdown-btn [data-lucide="chevron-down"] {
    width: 14px;
    height: 14px;
    stroke-width: 2.2;
    transition: transform 0.25s ease;
}

.lang-dropdown.open .chevron-icon,
.lang-dropdown.open [data-lucide="chevron-down"] {
    transform: rotate(180deg);
}

.lang-dropdown-content {
    display: none !important;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background-color: var(--bg-white);
    min-width: 160px;
    box-shadow: 0 12px 36px rgba(11, 19, 43, 0.15), 0 2px 8px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    border-radius: 12px;
    overflow: hidden;
    padding: 6px;
    border: 1px solid var(--border-light);
}

.lang-dropdown-content.show {
    display: flex !important;
    flex-direction: column;
    gap: 2px;
    animation: dropdownFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-btn {
    color: var(--text-dark);
    padding: 9px 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.lang-btn:hover {
    background-color: rgba(197, 168, 128, 0.1);
    color: var(--accent-gold-dark);
}

.lang-btn.active {
    color: var(--accent-gold-dark);
    font-weight: 700;
    background-color: rgba(197, 168, 128, 0.15);
}

.flag-icon {
    width: 22px;
    height: 15px;
    border-radius: 3px;
    object-fit: cover;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    color: var(--primary-navy);
    cursor: pointer;
    font-size: 1.5rem;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--bg-white);
    z-index: 1100;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.drawer-close {
    background: none;
    border: none;
    color: var(--primary-navy);
    cursor: pointer;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: auto;
}

.drawer-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-navy);
    padding: 8px 0;
}

.mobile-lang {
    display: flex;
    gap: 16px;
    border-top: 1px solid var(--border-light);
    padding-top: 24px;
}

.mobile-lang .lang-btn {
    font-size: 0.9rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--bg-white);
    padding-top: 80px;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.8s ease-in-out, transform 8s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 24px;
    margin-bottom: 40px;
}

.hero-sub {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--accent-gold-light);
    margin-bottom: 24px;
    text-transform: uppercase;
    animation: fadeInDown 1s ease forwards;
}

.hero-title {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.hero-desc {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.4s forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s forwards;
}

/* Floating booking bar */
.quick-booking-bar {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1080px;
    background-color: var(--glass-white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    z-index: 20;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(197, 168, 128, 0.25);
}

.quick-form {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.quick-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.quick-input-group label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.quick-input-group label i {
    width: 12px;
    height: 12px;
    color: var(--accent-gold);
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4));
}

.quick-input-group input,
.quick-input-group select {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-light);
    padding: 12px;
    color: var(--text-dark);
    font-size: 0.85rem;
    border-radius: 0;
    width: 100%;
}

.quick-input-group input:focus,
.quick-input-group select:focus {
    border-color: var(--accent-gold-dark);
}

.quick-form button {
    height: 48px;
    white-space: nowrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    z-index: 10;
}

.scroll-arrow {
    margin-top: 8px;
    animation: bounce 2s infinite;
}

/* Sections Base */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px auto;
}

.section-tagline {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--accent-gold-dark);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Concept / Features Section */
.concept-section {
    background-color: var(--bg-sand);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 48px 36px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(197, 168, 128, 0.1);
    transition: var(--transition-smooth);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-gold);
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background-color: rgba(197, 168, 128, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px auto;
    color: var(--accent-gold-dark);
    transition: var(--transition-fast);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--accent-gold-dark);
    color: var(--bg-white);
}

.feature-icon {
    width: 24px;
    height: 24px;
}

.feature-title {
    font-size: 1.3rem;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Rooms Showcase Section */
.rooms-section {
    background-color: var(--bg-white);
}

.room-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1px;
}

.room-tab-btn {
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    padding: 16px 24px;
    cursor: pointer;
    color: var(--text-muted);
    position: relative;
    transition: var(--transition-fast);
}

.room-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold-dark);
    transition: var(--transition-fast);
}

.room-tab-btn.active {
    color: var(--primary-navy);
}

.room-tab-btn.active::after {
    width: 100%;
}

.room-details-container {
    position: relative;
}

.room-detail-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.room-detail-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.room-panel-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* Room Images Slider */
.room-slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.room-image-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.room-slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.room-slide-img.active {
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
    color: var(--primary-navy);
}

.slider-btn:hover {
    background-color: var(--accent-gold-dark);
    color: var(--bg-white);
}

.slider-btn.prev {
    left: 16px;
}

.slider-btn.next {
    right: 16px;
}

.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background-color: var(--bg-white);
    transform: scale(1.3);
}

/* Room Info Detail */
.room-info-title {
    font-size: 2.2rem;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.room-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: var(--accent-gold-dark);
    font-weight: 600;
}

.room-specs > span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-specs i {
    width: 16px;
    height: 16px;
}

.room-info-desc {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.room-sub-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-navy);
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 8px;
}

.room-amenities-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
    margin-bottom: 40px;
}

.room-amenities-list li {
    font-size: 0.85rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.room-amenities-list li i {
    width: 14px;
    height: 14px;
    color: var(--accent-gold-dark);
}

/* Discover Leptokarya Section */
.lepto-section {
    background-color: var(--bg-sand);
}

.lepto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lepto-image-container {
    position: relative;
}

.lepto-main-image {
    width: 100%;
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-medium);
}

.lepto-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--primary-navy);
    color: var(--bg-white);
    padding: 32px 28px;
    box-shadow: var(--shadow-luxury);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1;
    color: var(--accent-gold);
}

.badge-unit {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.badge-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.lepto-info h2 {
    margin-bottom: 24px;
}

.lepto-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.lepto-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.point-item {
    display: flex;
    gap: 16px;
}

.point-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(197, 168, 128, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold-dark);
    flex-shrink: 0;
}

.point-icon i {
    width: 18px;
    height: 18px;
}

.point-title {
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 6px;
}

.point-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Photo Gallery Section */
.gallery-section {
    background-color: var(--bg-white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    background: none;
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    padding: 10px 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--accent-gold-dark);
    color: var(--accent-gold-dark);
    background-color: rgba(197, 168, 128, 0.05);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    background-color: #f0f0f0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 19, 43, 0.6);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    width: 24px;
    height: 24px;
}

/* Lightbox Overlay */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 19, 43, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--bg-white);
    cursor: pointer;
    font-size: 2rem;
    z-index: 2100;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 3rem;
    z-index: 2100;
    transition: var(--transition-fast);
    padding: 20px;
}

.lightbox-arrow:hover {
    color: var(--accent-gold);
}

.lightbox-arrow.prev {
    left: 24px;
}

.lightbox-arrow.next {
    right: 24px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 2px solid rgba(197, 168, 128, 0.3);
}

.lightbox-caption {
    color: rgba(255,255,255,0.9);
    margin-top: 16px;
    font-size: 1rem;
    text-align: center;
    max-width: 600px;
    font-family: var(--font-body);
}

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Location Map & Details */
.location-section {
    background-color: var(--bg-white);
}

.location-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 50px;
    align-items: stretch;
}

.location-details-card {
    background-color: var(--bg-sand);
    padding: 48px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.location-card-title {
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold-dark);
    flex-shrink: 0;
}

.contact-icon i {
    width: 18px;
    height: 18px;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 0.95rem;
    color: var(--primary-navy);
    font-weight: 600;
}

.contact-value a:hover {
    color: var(--accent-gold-dark);
}

.contact-subvalue {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.luxury-divider {
    height: 1px;
    background-color: var(--border-light);
    margin: 36px 0;
}

.distance-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-navy);
    margin-bottom: 16px;
    font-weight: 700;
}

.distance-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.distance-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.distance-list i {
    width: 14px;
    height: 14px;
    color: var(--accent-gold-dark);
}

.map-wrapper {
    position: relative;
    width: 100%;
    min-height: 450px;
    box-shadow: var(--shadow-medium);
}

#hotel-map {
    width: 100%;
    height: 100%;
    min-height: 450px;
    z-index: 10;
}

.map-overlay-info {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background-color: var(--bg-white);
    padding: 20px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--accent-gold);
    z-index: 100;
    max-width: 280px;
}

.map-overlay-info h4 {
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 6px;
}

.map-overlay-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

/* Booking Section */
.booking-section {
    background-color: var(--primary-navy);
    color: var(--bg-white);
}

.booking-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.booking-text-side .section-title {
    color: var(--bg-white);
}

.booking-intro-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.8;
}

.booking-policy-box {
    background-color: var(--primary-navy-light);
    border-left: 3px solid var(--accent-gold);
    padding: 28px;
}

.policy-box-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    margin-bottom: 16px;
    font-weight: 700;
}

.policy-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.policy-list li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 12px;
}

.policy-list li i {
    width: 14px;
    height: 14px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

/* Booking Form Card */
.booking-form-card {
    background-color: var(--bg-white);
    color: var(--text-dark);
    padding: 48px;
    box-shadow: var(--shadow-luxury);
}

.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    width: 100%;
}

.form-row.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: var(--bg-sand);
    border: 1px solid var(--border-light);
    padding: 12px 16px;
    font-size: 0.9rem;
    border-radius: 0;
    transition: var(--transition-fast);
    width: 100%;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-gold-dark);
    background-color: var(--bg-white);
}

/* Modal overlays */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 19, 43, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-card {
    background-color: var(--bg-white);
    padding: 48px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-luxury);
    border: 1px solid var(--accent-gold);
}

.modal-icon {
    width: 72px;
    height: 72px;
    background-color: rgba(197, 168, 128, 0.1);
    color: var(--accent-gold-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.modal-icon i {
    width: 32px;
    height: 32px;
}

.modal-title {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.modal-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

/* Footer Section */
.footer {
    background-color: #070D1D;
    color: rgba(255, 255, 255, 0.75);
    padding: 80px 0 32px 0;
    border-top: 1px solid rgba(197, 168, 128, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: var(--bg-white);
    margin-bottom: 24px;
}

.footer-about-text {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    border-color: var(--accent-gold);
}

.social-links i,
.social-links svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-title {
    color: var(--bg-white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 4px;
}

.footer-contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-info li {
    font-size: 0.85rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-info i {
    width: 16px;
    height: 16px;
    color: var(--accent-gold);
    margin-top: 2px;
}

.footer-contact-info a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
}

/* Custom Leaflet Marker Styling */
.leaflet-div-icon.luxury-marker {
    background: none;
    border: none;
}

.marker-pin {
    width: 30px;
    height: 30px;
    border-radius: 50% 50% 50% 0;
    background: var(--accent-gold-dark);
    position: absolute;
    transform: rotate(-45deg);
    left: 50%;
    top: 50%;
    margin: -15px 0 0 -15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    border: 2px solid var(--bg-white);
}

.marker-pin::after {
    content: '';
    width: 14px;
    height: 14px;
    margin: 6px 0 0 6px;
    background: var(--primary-navy);
    position: absolute;
    border-radius: 50%;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Media Queries (Responsive Design) */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .room-panel-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .room-slider-wrapper {
        aspect-ratio: 16/9;
    }
    .lepto-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .lepto-image-container {
        max-width: 600px;
        margin: 0 auto;
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .logo {
        font-size: 1.2rem;
    }
    .logo-sub {
        font-size: 0.5rem;
        letter-spacing: 3px;
    }
    .nav-menu, .header-actions .btn-book {
        display: none;
    }
    .burger-menu {
        display: block;
    }
    .quick-booking-bar {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        margin-top: 40px;
        padding: 20px;
    }
    .quick-form {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    .hero-section {
        height: auto;
        padding: 140px 0 60px 0;
    }
    .hero-scroll-indicator {
        display: none;
    }
    .room-tab-btn {
        font-size: 1rem;
        padding: 12px 16px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .form-row.two-cols {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .booking-form-card {
        padding: 24px;
    }
    .lepto-badge {
        padding: 20px 16px;
        bottom: -15px;
        right: -15px;
    }
    .badge-num {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .room-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .room-tab-btn {
        width: 100%;
        text-align: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .location-details-card {
        padding: 24px;
    }
}

.logo-img {
    max-width: 210px;
    transition: var(--transition-fast);
}
.header.scrolled .logo-img {
    height: 48px;
}
.logo-img-footer {
    opacity: 0.95;
}
