/* Keeper Guest House Styles - Premium Dark Theme with Gold Accents */

:root {
    --primary-color: #c9a961;
    --primary-dark: #b8944f;
    --primary-light: #d4b87a;
    --gold: #d4af37;
    --gold-dark: #b8941f;
    --gold-light: #e5c866;
    --secondary-color: #1a1a1a;
    --secondary-light: #2c2c2c;
    --text-color: #e0e0e0;
    --text-dark: #b0b0b0;
    --light-bg: #1a1a1a;
    --card-bg: #252525;
    --card-hover: #2d2d2d;
    --border-color: #3a3a3a;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 12px 60px rgba(0, 0, 0, 0.6);
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, var(--gold) 0%, var(--primary-color) 100%);
    --gradient-dark: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    --gradient-card: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
}

/* Modern Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-slide-in {
    animation: slideIn 0.5s ease-out;
}

.animate-shimmer {
    animation: shimmer 3s infinite;
    background-size: 2000px 100%;
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

html {
    overflow-x: hidden;
    overflow-y: auto;
}

@media (min-width: 769px) {
    html {
        zoom: 0.75;
    }
}

@media (max-width: 768px) {
    html {
        zoom: 1;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--gradient-dark);
    background-attachment: fixed;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

main {
    flex: 1;
    background: transparent;
}

/* Top Header - Contact Info Bar - Premium Professional */
/* Header Wrapper - Sticky Container */
.header-wrapper {
    position: -webkit-sticky;
    /* Safari support */
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    width: 100%;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    margin: 0;
    padding: 0;
    align-self: flex-start;
    /* Important for flex containers */
}

.top-header {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 0.6rem 0;
    position: relative;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 1rem;
}

.top-header-left {
    display: flex !important;
    align-items: center;
    flex: 0 0 auto;
    min-width: auto;
    order: 1;
    margin-right: auto;
}

/* Top Header Booking Partners */
.top-header-partners {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0;
    padding: 0;
}

.top-header-partner-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 1 !important;
    visibility: visible !important;
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 80px;
    height: 40px;
    flex-shrink: 0;
}

.top-header-partner-link:hover {
    opacity: 1 !important;
    transform: translateY(-2px);
    background: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.top-header-partner-logo {
    height: 28px !important;
    width: auto !important;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(1) !important;
    transition: var(--transition);
    background: transparent;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.top-header-partner-link:hover .top-header-partner-logo {
    filter: brightness(1.1) drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3)) !important;
    transform: scale(1.05);
}

.top-header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
    justify-content: flex-end;
    width: 100%;
}

.top-header-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.top-header-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.top-header-item:hover::before {
    left: 100%;
}

.top-header-item i {
    color: var(--gold);
    font-size: 0.9rem;
    transition: var(--transition);
    flex-shrink: 0;
    min-width: 16px;
    text-align: center;
}

.top-header-item span {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.top-header-item:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.top-header-item:hover i {
    color: var(--gold);
    transform: scale(1.15);
}

.top-header-whatsapp {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.2);
}

.top-header-whatsapp i {
    color: #25d366;
}

.top-header-whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.4);
    color: #25d366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.top-header-whatsapp:hover i {
    color: #25d366;
    transform: scale(1.15);
}

/* Header - Premium Modern Design */
.main-header {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border-bottom: 2px solid var(--border-color);
    position: relative;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--primary-color), var(--gold), transparent);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.main-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    text-decoration: none;
    color: var(--gold);
    font-weight: 700;
    transition: var(--transition);
    padding: 0.5rem 0.75rem;
    min-width: 140px;
}

.navbar-brand:hover {
    color: var(--gold-light);
    text-decoration: none;
    transform: translateY(-2px);
}

.header-logo {
    height: 95px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.5));
    transition: var(--transition);
    display: block;
    margin: 0 auto;
}

.navbar-brand:hover .header-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.7));
}

.brand-text {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.15rem;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.5px;
    white-space: nowrap;
    margin: 0;
    padding: 0;
}

.navbar-nav {
    align-items: center;
    gap: 0.5rem;
}

.nav-item {
    margin: 0 0.25rem;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    text-decoration: none;
    transform: translateY(-2px);
}

.nav-link i {
    font-size: 1rem;
    transition: var(--transition);
}

.nav-link:hover i {
    color: var(--gold);
    transform: scale(1.1);
}

.nav-text {
    display: inline-block;
}

.nav-divider {
    width: 1px;
    height: 30px;
    background: var(--border-color);
    margin: 0 0.5rem;
}

.navbar-toggler {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    background: var(--card-bg);
    color: var(--gold);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212, 175, 55, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Currency Selector */
.currency-selector-wrapper {
    margin: 0 0.5rem;
}

.currency-form {
    margin: 0;
}

.currency-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #2a2a2a;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--gold);
    transition: var(--transition);
    position: relative;
}

.currency-selector:hover {
    border-color: var(--gold);
    background: #333333;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.currency-icon {
    color: var(--gold);
    font-size: 1rem;
}

.currency-select {
    background: transparent;
    border: none;
    color: #ffffff;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-width: 60px;
}

.currency-select:focus {
    outline: none;
}

/* Currency Selector Dropdown Options - Premium Design */
.currency-select option {
    background: #ffffff;
    color: #6c757d;
    padding: 12px 15px;
    font-size: 0.95rem;
}

.currency-select option:checked,
.currency-select option[selected] {
    background: #007bff !important;
    color: #ffffff !important;
    font-weight: 600;
}

/* For better browser compatibility */
.currency-select option:hover {
    background: #f8f9fa;
    color: #212529;
}

/* Active/Selected option styling */
.currency-select option:focus {
    background: #007bff;
    color: #ffffff;
}

/* Custom dropdown styling for better appearance */
.currency-select::-ms-expand {
    display: none;
}

/* Firefox dropdown styling */
@-moz-document url-prefix() {
    .currency-select {
        color: #ffffff;
    }

    .currency-select option {
        background: #ffffff;
        color: #6c757d;
    }

    .currency-select option:checked {
        background: #007bff;
        color: #ffffff;
    }
}

.currency-arrow {
    color: var(--text-dark);
    font-size: 0.75rem;
    pointer-events: none;
}

/* User Dropdown */
.user-dropdown {
    position: relative;
}

.user-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: var(--transition);
}

.user-link:hover {
    background: var(--card-hover);
    border-color: var(--gold);
    color: var(--gold);
}

.user-link i:first-child {
    color: var(--gold);
    font-size: 1.25rem;
}

.user-name {
    font-weight: 600;
    color: var(--text-color);
}

.dropdown-arrow {
    color: var(--text-dark);
    font-size: 0.75rem;
    transition: var(--transition);
}

.user-link:hover .dropdown-arrow {
    color: var(--gold);
}

.dropdown-menu {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--secondary-light) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    color: var(--text-color);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.dropdown-item i {
    color: var(--gold);
    margin-right: 0.5rem;
}

.dropdown-divider {
    border-color: var(--border-color);
    margin: 0.5rem 0;
}

/* Login Button */
.btn-login {
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary-color) 100%);
    color: #1a1a1a;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-login:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    color: #1a1a1a;
}

/* Responsive Header */
@media (max-width: 991px) {
    .navbar-nav {
        margin-top: 1rem;
        padding: 1rem;
        background: var(--card-bg);
        border-radius: 12px;
        border: 1px solid var(--border-color);
    }

    .nav-item {
        margin: 0.25rem 0;
    }

    .nav-divider {
        display: none;
    }

    .currency-selector-wrapper {
        margin: 0.5rem 0;
    }
}

/* Hero Slider - Premium Full Screen - Super Enhanced */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 100vh;
    overflow: hidden;
    background: #0f0f0f;
    margin: 0;
    padding: 0;
    isolation: isolate;
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-slider .carousel {
    height: 100%;
    width: 100%;
    position: relative;
}

.hero-slider .carousel-inner {
    height: 100%;
    width: 100%;
    position: relative;
}

.hero-slider .carousel-item {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-slider .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    transition: opacity 0.6s ease;
}

.hero-slider .carousel-item.active::before {
    opacity: 0.7;
}

.slider-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.slider-image,
.hero-slider .carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: brightness(0.6) contrast(1.2) saturate(1.1);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1.1);
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.hero-slider .carousel-item.active .slider-image,
.hero-slider .carousel-item.active img {
    transform: scale(1);
    animation: kenburns 20s ease-in-out infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.15) translate(-2%, 2%);
    }
}

.hero-slider .carousel-caption {
    bottom: 0;
    left: 0;
    right: 0;
    padding: 100px 20px 80px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.9) 100%);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 2;
    height: 100%;
    min-height: 100%;
}

.hero-slider .carousel-caption::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%, rgba(212, 175, 55, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.hero-slider .carousel-item.active .carousel-caption::before {
    opacity: 1;
}

.caption-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 3;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-slider .carousel-item.active .caption-content {
    transform: translateY(0);
    opacity: 1;
}

.hero-slider h1 {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--gold);
    text-shadow:
        0 4px 30px rgba(0, 0, 0, 0.9),
        0 2px 15px rgba(212, 175, 55, 0.6),
        0 0 40px rgba(212, 175, 55, 0.3);
    line-height: 1.1;
    letter-spacing: -1px;
    position: relative;
    display: block;
    text-align: center;
    width: 100%;
    animation: titleGlow 3s ease-in-out infinite alternate;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.hero-slider .carousel-item.active h1 {
    transform: translateY(0);
    opacity: 1;
}

@keyframes titleGlow {
    0% {
        text-shadow:
            0 4px 30px rgba(0, 0, 0, 0.9),
            0 2px 15px rgba(212, 175, 55, 0.6),
            0 0 40px rgba(212, 175, 55, 0.3);
    }

    100% {
        text-shadow:
            0 4px 30px rgba(0, 0, 0, 0.9),
            0 2px 20px rgba(212, 175, 55, 0.8),
            0 0 60px rgba(212, 175, 55, 0.5);
    }
}

.hero-slider h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--primary-color));
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

.hero-slider .carousel-item.active h1::after {
    width: 60%;
    max-width: 400px;
}

.hero-slider p {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    letter-spacing: 0.3px;
    text-align: center;
    display: block;
}

.hero-slider .carousel-item.active p {
    transform: translateY(0);
    opacity: 1;
}

/* Slider Badge */
.slider-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(201, 169, 97, 0.2) 100%);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 25px;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-align: center;
}

.hero-slider .carousel-item.active .slider-badge {
    transform: translateY(0);
    opacity: 1;
}

.slider-badge i {
    color: var(--gold);
    animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Slider CTA Button */
.slider-cta {
    margin-top: 35px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-slider .carousel-item.active .slider-cta {
    transform: translateY(0);
    opacity: 1;
}

.btn-slider-cta {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary-color) 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 6px 30px rgba(212, 175, 55, 0.5),
        0 0 40px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-slider-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-slider-cta:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold) 100%);
    transform: translateY(-3px);
    box-shadow:
        0 10px 40px rgba(212, 175, 55, 0.7),
        0 0 60px rgba(212, 175, 55, 0.5);
    color: #1a1a1a;
    text-decoration: none;
}

.btn-slider-cta:hover::before {
    left: 100%;
}

.btn-slider-cta:hover i {
    transform: translateX(5px);
}

.btn-slider-cta i {
    transition: transform 0.3s ease;
}

.slider-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.animate-fade-in {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-in-delay {
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Slider Particle Effect */
.hero-slider .carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 169, 97, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
    pointer-events: none;
}

.hero-slider .carousel-item.active::after {
    opacity: 1;
    animation: particleFloat 15s ease-in-out infinite;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-2%, 2%) scale(1.05);
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(201, 169, 97, 0.15) 100%);
    border: 3px solid rgba(212, 175, 55, 0.6);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.85;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.carousel-control-prev {
    left: 50px;
}

.carousel-control-next {
    right: 50px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.35) 0%, rgba(201, 169, 97, 0.35) 100%);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.2);
    opacity: 1;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.6), 0 0 30px rgba(212, 175, 55, 0.4);
}

.carousel-control-prev:active,
.carousel-control-next:active {
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 35px;
    height: 35px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
    transition: transform 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon {
    transform: translateX(-3px);
}

.carousel-control-next:hover .carousel-control-next-icon {
    transform: translateX(3px);
}

.carousel-indicators {
    bottom: 40px;
    margin: 0;
    padding: 0 20px;
    gap: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin: 0;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.carousel-indicators button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-indicators button:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: var(--gold);
    transform: scale(1.2);
}

.carousel-indicators button.active {
    background: var(--gold);
    border-color: var(--gold);
    width: 40px;
    border-radius: 20px;
    box-shadow:
        0 0 20px rgba(212, 175, 55, 0.8),
        0 0 40px rgba(212, 175, 55, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.carousel-indicators button.active::before {
    width: 100%;
    height: 100%;
    animation: indicatorPulse 2s ease-in-out infinite;
}

@keyframes indicatorPulse {

    0%,
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Historical Places Section - Dark Theme */
.historical-places {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.historical-places::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.section-header {
    margin-bottom: 80px;
    position: relative;
}

.section-header-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.4));
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    text-shadow:
        0 2px 20px rgba(212, 175, 55, 0.4),
        0 4px 40px rgba(212, 175, 55, 0.2);
    letter-spacing: -1px;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow:
            0 2px 20px rgba(212, 175, 55, 0.4),
            0 4px 40px rgba(212, 175, 55, 0.2);
    }

    100% {
        text-shadow:
            0 2px 30px rgba(212, 175, 55, 0.6),
            0 4px 60px rgba(212, 175, 55, 0.4),
            0 0 80px rgba(212, 175, 55, 0.2);
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--primary-color));
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
    animation: titleLineExpand 1s ease-out 0.5s forwards;
}

@keyframes titleLineExpand {
    to {
        width: 120px;
    }
}

.section-subtitle {
    color: var(--text-color);
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-top: 30px;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.section-header-divider {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 30px auto 0;
    position: relative;
}

.section-header-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

.historical-content {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--secondary-light) 100%);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.1);
    height: 100%;
    min-height: 600px;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.historical-content:hover {
    border-color: var(--gold);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.historical-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--primary-color), var(--gold));
    box-shadow: 0 2px 15px rgba(212, 175, 55, 0.6);
}

.historical-content::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.historical-content:hover::after {
    opacity: 1;
}

.historical-content-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: inline-block;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.historical-content-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.historical-content-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary-color));
    border-radius: 2px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
}

.historical-content p {
    color: var(--text-color);
    line-height: 1.9;
    font-size: 1.05rem;
    margin: 0;
    text-align: justify;
    position: relative;
    z-index: 1;
}

/* Modern Gallery Grid - Professional 2 Column Layout */
.historical-gallery {
    padding: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, minmax(180px, 1fr));
    gap: 15px;
    width: 100%;
    height: 100%;
    min-height: 600px;
    align-items: stretch;
}

/* New Modern Square Gallery Grid - Full Image Display */
.gallery-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
}

.gallery-card-modern {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(212, 175, 55, 0.1);
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.gallery-card-modern:hover {
    border-color: var(--gold);
    box-shadow:
        0 15px 50px rgba(212, 175, 55, 0.6),
        0 0 60px rgba(212, 175, 55, 0.4);
    transform: translateY(-8px) scale(1.02);
    z-index: 10;
}

.gallery-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    background: var(--card-bg);
}

.gallery-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-card-modern:hover .gallery-image-wrapper::before {
    opacity: 1;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card-modern:hover .gallery-image-wrapper img {
    transform: scale(1.1);
}

.gallery-card-title {
    padding: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(201, 169, 97, 0.05) 100%);
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 70px;
    transition: all 0.4s ease;
}

.gallery-card-modern:hover .gallery-card-title {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(201, 169, 97, 0.15) 100%);
    border-top-color: var(--gold);
    color: var(--gold);
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
}

.gallery-card-title i {
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.6));
}

.gallery-grid::after {
    content: '';
    display: block;
    clear: both;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(212, 175, 55, 0.1);
    border: 2px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.gallery-item:hover {
    border-color: var(--gold);
    box-shadow:
        0 15px 50px rgba(212, 175, 55, 0.6),
        0 0 60px rgba(212, 175, 55, 0.4);
    transform: translateY(-5px) scale(1.02);
    z-index: 10;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--card-bg);
    border-radius: 14px;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px;
    color: white;
    z-index: 3;
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    backdrop-filter: blur(10px);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    font-weight: 700;
    font-size: 1.15rem;
    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(212, 175, 55, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.gallery-overlay i {
    color: var(--gold);
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.8));
}

.gallery-item-large {
    grid-row: span 2;
    min-height: 380px;
}

.gallery-item-medium {
    grid-row: span 1;
    min-height: 180px;
}

.gallery-item-small {
    grid-row: span 1;
    min-height: 180px;
}

/* Lightbox Modal - Super Premium */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-modal.active .lightbox-backdrop {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    z-index: 10000;
    max-width: 95vw;
    max-height: 95vh;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-image-wrapper {
    position: relative;
    max-width: 100%;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 25px 100px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(212, 175, 55, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: #000;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-modal.active .lightbox-image {
    opacity: 1;
    transform: scale(1);
}

.lightbox-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold);
    font-size: 3rem;
    display: none;
    z-index: 10;
}

.lightbox-caption {
    margin-top: 20px;
    padding: 15px 30px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    max-width: 90%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

.lightbox-modal.active .lightbox-caption {
    opacity: 1;
    transform: translateY(0);
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10002;
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.3);
}

.lightbox-modal.active .lightbox-close {
    opacity: 1;
    transform: scale(1);
}

.lightbox-close:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: var(--gold);
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.7), 0 0 40px rgba(212, 175, 55, 0.6);
    color: #fff;
}

.lightbox-close:active {
    transform: scale(0.95);
}

/* Lightbox Navigation Buttons - Super Visible */
.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 3px solid var(--gold);
    color: var(--gold);
    font-size: 2rem;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10002;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(212, 175, 55, 0.4),
        inset 0 0 20px rgba(212, 175, 55, 0.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-modal.active .lightbox-nav {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
}

.lightbox-nav:hover {
    background: rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.2);
    box-shadow:
        0 6px 30px rgba(0, 0, 0, 0.8),
        0 0 50px rgba(212, 175, 55, 0.7),
        inset 0 0 30px rgba(212, 175, 55, 0.2);
    color: #fff;
}

.lightbox-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.lightbox-nav i {
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.8));
    font-weight: 900;
}

/* Lightbox Counter */
.lightbox-counter {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 25px;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 30px;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 1rem;
    font-weight: 700;
    display: block;
    opacity: 1;
    z-index: 10002;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.lightbox-modal.active .lightbox-counter {
    opacity: 1;
    transform: translateX(-50%);
}

/* Lightbox Image Zoom */
.lightbox-image {
    cursor: zoom-in;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-image[style*="scale(2)"] {
    cursor: zoom-out;
}

/* Mobile Responsive Lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 98vw;
        max-height: 98vh;
    }

    .lightbox-image-wrapper {
        max-height: 80vh;
        border-radius: 15px;
    }

    .lightbox-image {
        max-height: 80vh;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .lightbox-nav {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .lightbox-prev {
        left: 20px;
    }

    .lightbox-next {
        right: 20px;
    }

    .lightbox-counter {
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.9rem;
        padding: 8px 20px;
    }

    .lightbox-caption {
        margin-top: 15px;
        padding: 12px 20px;
        font-size: 1rem;
        max-width: 95%;
    }
}

@media (max-width: 576px) {
    .lightbox-image-wrapper {
        max-height: 75vh;
        border-radius: 12px;
    }

    .lightbox-image {
        max-height: 75vh;
    }

    .lightbox-close {
        top: 5px;
        right: 5px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-caption {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}

/* Video Section - Premium Super Design */
.video-section-premium {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.video-section-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.video-wrapper-premium {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(212, 175, 55, 0.2);
    border: 2px solid var(--border-color);
    background: var(--card-bg);
    transition: var(--transition);
    z-index: 1;
}

.video-wrapper-premium>* {
    border-radius: 20px;
    overflow: hidden;
}

.video-wrapper-premium:hover {
    border-color: var(--gold);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
}

.video-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(201, 169, 97, 0.25) 100%);
    border: 2px solid rgba(212, 175, 55, 0.6);
    border-radius: 25px;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
}

.video-badge i {
    font-size: 1.1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.video-player-premium {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    background: #000;
    transition: var(--transition);
    position: relative;
    z-index: 10;
    min-height: 400px;
    object-fit: cover;
}

.video-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 15;
    border-radius: 20px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
}

.video-player-premium[data-loaded="true"]~.video-loading-overlay,
.video-player-premium.ready~.video-loading-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.video-loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.video-loading-spinner {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    animation: spin 1s linear infinite;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.video-loading-overlay p {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Video Controls - Ensure they're always visible */
.video-player-premium::-webkit-media-controls-panel {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 100%) !important;
    z-index: 1000 !important;
    display: flex !important;
    opacity: 1 !important;
}

.video-player-premium::-webkit-media-controls-play-button {
    z-index: 1001 !important;
    opacity: 1 !important;
    display: flex !important;
}

.video-player-premium::-webkit-media-controls-current-time-display,
.video-player-premium::-webkit-media-controls-time-remaining-display {
    z-index: 1001 !important;
    opacity: 1 !important;
    display: block !important;
}

.video-player-premium::-webkit-media-controls-timeline {
    z-index: 1001 !important;
    opacity: 1 !important;
    display: block !important;
}

.video-player-premium::-webkit-media-controls-volume-slider,
.video-player-premium::-webkit-media-controls-mute-button {
    z-index: 1001 !important;
    opacity: 1 !important;
    display: block !important;
}

.video-player-premium::-webkit-media-controls-fullscreen-button {
    z-index: 1001 !important;
    opacity: 1 !important;
    display: block !important;
}

/* Firefox video controls */
.video-player-premium::-moz-media-controls-panel {
    z-index: 1000 !important;
    opacity: 1 !important;
}

/* Standard video controls */
.video-player-premium video::-webkit-media-controls {
    z-index: 1000 !important;
    opacity: 1 !important;
}

.video-overlay-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(37, 37, 37, 0.95) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    backdrop-filter: blur(10px);
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-bottom: 60px;
}

.video-wrapper-premium:hover .video-overlay-info,
.video-player-premium:focus~.video-overlay-info {
    opacity: 0.7;
}

.video-wrapper-premium.video-playing .video-overlay-info {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

.video-wrapper-premium:hover .video-overlay-info,
.video-player-premium:focus~.video-overlay-info,
.video-player-premium:playing~.video-overlay-info {
    opacity: 0;
    pointer-events: none;
}

.video-overlay-info i {
    color: var(--gold);
    font-size: 1.1rem;
}

.video-content-premium {
    padding: 2rem;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--secondary-light) 100%);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.video-content-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary-color));
}

.video-content-header {
    margin-bottom: 2rem;
}

.video-content-title {
    color: var(--gold);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
}

.video-content-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--primary-color));
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
}

.video-content-text {
    margin-bottom: 2rem;
}

.video-paragraph {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.video-cta-wrapper {
    margin-top: 2rem;
}

.btn-google-earth {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow:
        0 6px 30px rgba(66, 133, 244, 0.4),
        0 0 40px rgba(66, 133, 244, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-google-earth::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-google-earth:hover {
    background: linear-gradient(135deg, #34a853 0%, #4285f4 100%);
    transform: translateY(-3px);
    box-shadow:
        0 10px 40px rgba(66, 133, 244, 0.6),
        0 0 60px rgba(66, 133, 244, 0.4);
    color: white;
    text-decoration: none;
}

.btn-google-earth:hover::before {
    left: 100%;
}

.btn-google-earth:hover i:last-child {
    transform: translateX(5px);
}

.btn-google-earth i:last-child {
    transition: transform 0.3s ease;
}

/* Booking Partners */
.booking-partners {
    padding: 40px;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--secondary-light) 100%);
    border-radius: 16px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.booking-partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary-color));
}

.partners-label {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.partners-grid .partner-link {
    flex: 0 0 auto;
    width: auto;
    min-width: 180px;
    max-width: 220px;
}

.partner-link {
    display: inline-block;
    transition: all 0.3s ease;
    padding: 20px 30px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: var(--shadow-md);
    border: 1px solid #e0e0e0;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
    background: #ffffff;
}

.partner-logo {
    height: 50px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.partner-link:hover .partner-logo {
    filter: brightness(1.1);
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.room-card img,
.gallery-item img,
.historical-place-card img,
.room-detail-gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .partner-logo {
        height: 50px;
    }

    .partners-grid {
        gap: 20px;
    }

    .booking-modal {
        margin: 1rem;
    }

    .auth-modal {
        margin: 1rem;
    }
}

.partner-link:hover .partner-logo {
    filter: grayscale(0);
}

/* Rooms Section - Dark Theme */
.rooms-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
}

.rooms-section h2,
.rooms-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    text-shadow: 0 2px 20px rgba(212, 175, 55, 0.4);
}

.rooms-section h2::after,
.rooms-section h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--primary-color));
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
}

.room-card-link {
    text-decoration: none;
    display: block;
    color: inherit;
    transition: var(--transition);
    width: 100%;
    height: 100%;
}

.room-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.room-card-link .room-card {
    width: 100%;
    height: 100%;
}

.room-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--secondary-light) 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    position: relative;
    cursor: pointer;
}

.room-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
}

.room-card:hover::before {
    opacity: 1;
}

.room-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
    background: #ffffff;
}

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

.room-card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-card h3 {
    color: var(--gold);
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.room-price {
    font-size: 1.75rem;
    color: var(--gold);
    font-weight: 700;
    margin: 15px 0;
    display: flex;
    align-items: baseline;
    gap: 5px;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.room-price::before {
    content: 'From';
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-right: 5px;
}

.room-card p {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.room-card p strong {
    color: var(--text-color);
    font-weight: 600;
}

.room-services {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.room-services li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #64748b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.room-services li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.1rem;
}

.room-services li:last-child {
    border-bottom: none;
}

.btn-book {
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary-color) 100%);
    color: #1a1a1a;
    padding: 14px 30px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    pointer-events: none;
    width: 100%;
    margin-top: auto;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-book:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold) 100%);
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

/* View All Rooms Button - Gold Theme */
.btn-view-all-rooms {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary-color) 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-view-all-rooms:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
    color: #1a1a1a;
    text-decoration: none;
}

.btn-view-all-rooms i {
    transition: var(--transition);
}

.btn-view-all-rooms:hover i {
    transform: translateX(5px);
}

/* About Page - Premium Dark Theme */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    overflow: visible;
    position: relative;
}

.about-section .container {
    max-width: 1400px;
    overflow: visible;
    position: relative;
}

/* About Main Content */
.about-main-content {
    margin-bottom: 4rem;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.about-text-content {
    padding: 2rem;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--secondary-light) 100%);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.about-text-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary-color));
}

.about-main-title {
    color: var(--gold);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 20px rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
}

.about-description {
    color: var(--text-color);
}

.about-paragraph {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.about-map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Historical Place Card Enhanced */
.historical-place-card-enhanced {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--secondary-light) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.historical-place-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary-color));
}

.historical-place-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 50px rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
}

.historical-place-image-wrapper-enhanced {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
}

.historical-place-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.historical-place-image-wrapper-enhanced:hover .historical-place-img {
    transform: scale(1.05);
}

.historical-place-content {
    padding: 1rem 0;
}

.historical-place-title-enhanced {
    color: var(--gold);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
}

.historical-place-description {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.distance-info-badge-enhanced {
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary-color) 100%);
    color: #1a1a1a;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: var(--transition);
}

.distance-info-badge-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
}

.distance-info-badge-enhanced i {
    font-size: 1.2rem;
}

/* QR Code Overlay Enhanced */
.qr-code-overlay-enhanced {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 12px;
    border: 2px solid var(--gold);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
    z-index: 10;
    transition: var(--transition);
}

.qr-code-overlay-enhanced:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

.qr-code-image-enhanced {
    width: 120px;
    height: 120px;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    background: white;
    padding: 8px;
}

/* Standalone QR Code - Professional Design */
.qr-codes-standalone-section {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.qr-code-standalone-container {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.qr-code-standalone {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--secondary-light) 100%);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.qr-code-standalone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary-color));
}

.qr-code-standalone:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
    border-color: var(--gold);
}

.qr-code-header {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.qr-code-header i {
    font-size: 1.3rem;
}

.qr-code-image-wrapper {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 16px;
    display: inline-block;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--gold);
    position: relative;
}

.qr-code-image-wrapper::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--gold), var(--primary-color));
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
}

.qr-code-standalone-image {
    width: 200px;
    height: 200px;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    object-fit: contain;
    background: #ffffff;
}

.qr-code-instruction {
    color: var(--text-color);
    font-size: 0.95rem;
    margin-top: 1rem;
    font-style: italic;
    opacity: 0.9;
}

/* Historical Place QR Code - Standalone */
.historical-place-content .qr-code-standalone-container {
    margin-top: 2rem;
    max-width: 100%;
}

.historical-place-content .qr-code-standalone {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(37, 37, 37, 0.95) 100%);
    backdrop-filter: blur(10px);
}

/* Responsive QR Code Styles */
@media (max-width: 768px) {
    .qr-codes-standalone-section {
        flex-direction: column;
        gap: 1.5rem;
    }

    .qr-code-standalone-container {
        max-width: 100%;
        min-width: 100%;
    }

    .qr-code-standalone {
        padding: 1.5rem;
    }

    .qr-code-standalone-image {
        width: 180px;
        height: 180px;
    }

    .qr-code-header {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .qr-code-standalone {
        padding: 1.25rem;
    }

    .qr-code-standalone-image {
        width: 160px;
        height: 160px;
    }

    .qr-code-image-wrapper {
        padding: 1rem;
    }

    .qr-code-header {
        font-size: 0.9rem;
    }

    .qr-code-instruction {
        font-size: 0.85rem;
    }
}

.qr-code-label-enhanced {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0.5rem 0 0 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-section h1 {
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 2.5rem;
    text-shadow: 0 2px 20px rgba(212, 175, 55, 0.4);
}

.about-section h2 {
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 50px;
    font-size: 2.25rem;
    position: relative;
    padding-bottom: 20px;
    text-shadow: 0 2px 20px rgba(212, 175, 55, 0.4);
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--primary-color));
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
}

.about-image {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.historical-place-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--secondary-light) 100%);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.historical-place-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.historical-place-card:hover {
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
    border-color: var(--gold);
}

.historical-place-card:hover::before {
    opacity: 1;
}

.historical-place-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.historical-place-card h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.historical-place-card p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1rem;
}

/* Contact Page - Dark Theme */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.contact-section .section-title {
    font-size: 3rem;
}

.contact-form {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--secondary-light) 100%);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary-color));
}

.form-title {
    color: var(--gold);
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.form-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.input-group-text {
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary-color) 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 8px 0 0 8px;
    font-weight: 600;
}

.input-group .form-control {
    border-left: none;
    border-radius: 0 8px 8px 0;
}

.input-group .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 97, 0.15);
}

.contact-info {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--secondary-light) 100%);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary-color));
}

.info-title {
    color: var(--gold);
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(201, 169, 97, 0.1) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-details {
    flex: 1;
}

.contact-details strong {
    display: block;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-details a,
.contact-details p {
    color: var(--text-dark);
    text-decoration: none;
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

.contact-details a:hover {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.map-container-wrapper {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--secondary-light) 100%);
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.map-image-wrapper img {
    width: 100%;
    border-radius: 12px;
}

.map-embed-wrapper iframe {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.qr-codes-section {
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.qr-section-title {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.qr-codes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.qr-code-item {
    text-align: center;
    padding: 25px;
    background: var(--card-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.qr-code-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.qr-code-item:hover::before {
    opacity: 1;
}

.qr-code-item:hover {
    background: var(--card-hover);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    transform: translateY(-8px);
    border-color: var(--gold);
}

.qr-code-img {
    width: 100%;
    max-width: 250px;
    min-width: 200px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 15px;
    background: #ffffff;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(201, 169, 97, 0.2);
}

.qr-code-item:hover .qr-code-img {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
}

.qr-code-name {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 600;
    margin: 0;
    padding-top: 5px;
}

/* QR Code */
.qr-code {
    text-align: center;
    margin: 20px 0;
}

.qr-code img {
    max-width: 200px;
    border: 3px solid #ddd;
    padding: 10px;
    background: white;
    border-radius: 8px;
}

/* Historical Place Image with QR Overlay */
.historical-place-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.historical-place-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.historical-place-image-wrapper:hover img {
    transform: scale(1.05);
}

.qr-code-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.qr-code-overlay:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.qr-code-image {
    width: 120px;
    height: 120px;
    display: block;
    margin: 0 auto 8px;
    border-radius: 6px;
}

.qr-code-label {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.distance-info-badge {
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary-color) 100%);
    color: #1a1a1a;
    padding: 12px 24px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.distance-info-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.distance-info-badge i {
    font-size: 1.1rem;
}

/* Footer - Premium Modern Design */
.main-footer {
    margin-top: auto;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border-top: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
    padding: 3rem 0 1rem;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--primary-color), var(--gold), transparent);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-section {
    padding: 0.5rem 0;
}

.footer-title {
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    position: relative;
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

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

.footer-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-icon {
    color: var(--gold);
    font-size: 1rem;
    width: 20px;
    text-align: center;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-list a,
.footer-list span {
    color: var(--text-dark);
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.6;
    flex: 1;
}

.footer-list a:hover {
    color: var(--gold) !important;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transform: translateX(5px);
}

.footer-text {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--gold);
    font-size: 1.25rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary-color) 100%);
    color: #1a1a1a;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    border-color: var(--gold);
}

.footer-map {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.footer-map iframe {
    width: 100%;
    height: 200px;
    border: none;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
}

.footer-copyright,
.footer-developer {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-developer {
    justify-content: flex-end;
}

.developer-name {
    color: var(--gold);
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.developer-name-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: var(--transition);
}

.developer-name-link:hover {
    text-decoration: none;
    color: inherit;
}

.developer-name-link:hover .developer-name {
    color: var(--primary-color);
    text-shadow: 0 2px 20px rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
}

/* Mobile Footer */
@media (max-width: 768px) {
    .main-footer {
        padding: 2rem 0 1rem;
    }

    .footer-section {
        margin-bottom: 2rem;
    }

    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-copyright,
    .footer-developer {
        justify-content: center;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .footer-map iframe {
        height: 150px;
    }
}

.map-container iframe {
    max-width: 100%;
    height: 300px;
}

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

@media (max-width: 992px) {
    .historical-places {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .historical-content {
        padding: 35px 30px;
        margin-bottom: 30px;
        min-height: auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 12px;
        min-height: 500px;
    }

    .gallery-item-large {
        min-height: 320px;
    }

    .gallery-item-medium,
    .gallery-item-small {
        min-height: 150px;
    }

    /* Modern Gallery Grid - Tablet */
    .gallery-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-card-title {
        padding: 15px;
        font-size: 1rem;
        min-height: 60px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
        min-height: 500px;
    }

    .hero-slider .carousel-item {
        height: 60vh;
        min-height: 500px;
    }

    .carousel-caption {
        padding: 60px 15px 50px;
        text-align: center;
    }

    .caption-content {
        padding: 0 20px;
        text-align: center;
        align-items: center;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 55px;
        height: 55px;
    }

    .carousel-control-prev {
        left: 15px;
    }

    .carousel-control-next {
        right: 15px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 25px;
        height: 25px;
    }

    .carousel-indicators {
        bottom: 25px;
    }

    .slider-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .btn-slider-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .historical-places {
        padding: 50px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .top-header {
        padding: 0.5rem 0;
    }

    .top-header-content {
        padding: 0 10px;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .top-header-left {
        flex: 0 0 auto;
        justify-content: flex-start;
        order: 1;
        display: flex !important;
        margin-right: auto;
    }

    .top-header-partners {
        gap: 0.75rem;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        justify-content: flex-start;
    }

    .top-header-partner-link {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        min-width: 75px;
        height: 38px;
    }

    .top-header-partner-logo {
        height: 24px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .top-header-right {
        order: 2;
        margin-left: auto;
    }

    .top-header-right {
        gap: 0.6rem;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        order: 1;
    }

    .top-header-item {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        gap: 0.4rem;
        flex: 0 1 auto;
        min-width: fit-content;
    }

    .top-header-item span {
        display: inline-block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 140px;
    }

    .top-header-item i {
        font-size: 0.85rem;
        flex-shrink: 0;
        min-width: 14px;
    }

    .historical-content {
        padding: 30px 25px;
        min-height: auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 10px;
        min-height: 450px;
    }

    .gallery-item-large {
        grid-row: span 2;
        min-height: 280px;
    }

    .gallery-item-medium,
    .gallery-item-small {
        grid-row: span 1;
        min-height: 130px;
    }

    .gallery-item img {
        min-height: 100%;
    }

    .gallery-overlay {
        transform: translateY(0);
        background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    }

    .gallery-overlay span {
        font-size: 1rem;
    }

    .contact-form,
    .contact-info {
        margin-bottom: 30px;
        padding: 25px !important;
    }

    .navbar-nav {
        text-align: center;
    }

    .currency-selector {
        margin: 10px 0;
        text-align: center;
    }

    .top-header {
        padding: 0.4rem 0;
    }

    .top-header-content {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .top-header-left {
        flex: 0 0 auto;
        justify-content: flex-start;
        order: 1;
        display: flex !important;
        margin-right: auto;
        width: 100%;
    }

    .top-header-partners {
        gap: 0.5rem;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .top-header-partner-link {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        min-width: 65px;
        height: 32px;
        padding: 0.25rem 0.4rem;
    }

    .top-header-partner-logo {
        height: 20px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .top-header-right {
        order: 2;
        margin-left: auto;
        width: 100%;
    }

    .top-header-right {
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: flex-end;
        order: 1;
    }

    .top-header-item {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
        gap: 0.4rem;
    }

    .top-header-item span {
        display: none;
    }

    .top-header-item i {
        font-size: 1rem;
    }

    .historical-place-card-enhanced {
        padding: 1.5rem;
    }

    .historical-place-title-enhanced {
        font-size: 1.5rem;
    }

    .qr-code-overlay-enhanced {
        bottom: 10px;
        right: 10px;
        padding: 0.75rem;
    }

    .qr-code-image-enhanced {
        width: 80px;
        height: 80px;
    }

    .qr-code-label-enhanced {
        font-size: 0.7rem;
    }

    .distance-info-badge-enhanced {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        display: block;
        text-align: center;
    }

    .about-section {
        padding: 40px 0;
    }

    .room-card {
        margin-bottom: 20px;
    }

    .rooms-section {
        padding: 60px 0;
    }

    .room-gallery-thumbnails {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 0.75rem;
    }

    .main-gallery-image {
        aspect-ratio: 4/3;
    }

    /* Header Logo - Mobile */
    .navbar {
        justify-content: center;
        padding: 0.5rem 0;
    }

    .navbar-brand {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.45rem;
        padding: 0.5rem 0.75rem;
        min-width: 150px;
        margin: 0 auto;
        flex: 0 0 auto;
    }

    .header-logo {
        height: 100px;
        width: auto;
        object-fit: contain;
        display: block;
        margin: 0 auto;
        filter: drop-shadow(0 2px 12px rgba(212, 175, 55, 0.6));
    }

    .brand-text {
        font-size: 1.2rem;
        text-align: center;
        margin: 0;
        padding: 0;
        letter-spacing: 0.6px;
    }

    .about-main-title {
        font-size: 2rem;
    }

    .about-paragraph {
        font-size: 1rem;
    }

    .video-section-premium {
        padding: 60px 0;
    }

    .video-content-premium {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .video-content-title {
        font-size: 1.5rem;
    }

    .video-paragraph {
        font-size: 1rem;
    }

    .btn-google-earth {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .video-badge {
        padding: 0.6rem 1.25rem;
        font-size: 0.8rem;
        top: 15px;
        left: 15px;
    }

    .video-overlay-info {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
}

@media (max-width: 576px) {

    /* Header Logo - Small Mobile */
    .navbar {
        justify-content: center;
        padding: 0.4rem 0;
    }

    .navbar-brand {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        padding: 0.45rem 0.6rem;
        min-width: 140px;
        margin: 0 auto;
        flex: 0 0 auto;
    }

    .header-logo {
        height: 90px;
        width: auto;
        object-fit: contain;
        display: block;
        margin: 0 auto;
        filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.6));
    }

    .brand-text {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
        text-align: center;
        margin: 0;
        padding: 0;
    }

    .hero-slider {
        height: 55vh;
        min-height: 450px;
    }

    .hero-slider .carousel-item {
        height: 55vh;
        min-height: 450px;
    }

    .carousel-caption {
        padding: 50px 15px 40px;
        text-align: center;
    }

    .caption-content {
        padding: 0 15px;
        text-align: center;
        align-items: center;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }

    .carousel-indicators {
        bottom: 20px;
        gap: 8px;
    }

    .carousel-indicators button {
        width: 10px;
        height: 10px;
    }

    .carousel-indicators button.active {
        width: 30px;
    }

    .slider-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.875rem;
        margin-bottom: 15px;
    }

    .btn-slider-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .top-header {
        padding: 0.35rem 0;
    }

    .top-header-right {
        gap: 0.4rem;
        justify-content: center;
        width: 100%;
        flex-direction: column;
    }

    .top-header-item {
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
        width: 100%;
        justify-content: center;
    }

    .top-header-item span {
        display: inline;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    .top-header-item i {
        font-size: 0.85rem;
        flex-shrink: 0;
    }

    .top-header-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .top-header-left {
        flex: 1 1 100%;
        justify-content: center;
        order: 1;
    }

    .top-header-partners {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .top-header-partner-logo {
        height: 20px;
    }

    .top-header-right {
        gap: 0.4rem;
        justify-content: center;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        order: 2;
    }

    .historical-content {
        padding: 25px 20px;
        min-height: auto;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 10px;
        min-height: auto;
    }

    /* Modern Gallery Grid - Mobile */
    .gallery-grid-modern {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-card-modern {
        border-radius: 12px;
    }

    .gallery-image-wrapper {
        aspect-ratio: 1 / 1;
    }

    .gallery-card-title {
        padding: 15px;
        font-size: 0.95rem;
        min-height: 55px;
    }

    .gallery-card-title i {
        font-size: 1rem;
    }

    .gallery-item-large,
    .gallery-item-medium,
    .gallery-item-small {
        grid-row: span 1;
        min-height: 200px;
    }

    .gallery-item {
        min-height: 200px;
    }

    .gallery-item img {
        min-height: 200px;
    }

    .room-card-body {
        padding: 15px;
    }

    .room-price {
        font-size: 1.25rem;
    }

    .top-header {
        padding: 0.35rem 0;
    }

    .top-header-right {
        gap: 0.4rem;
        justify-content: center;
        width: 100%;
        flex-direction: column;
    }

    .top-header-item {
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
        width: 100%;
        justify-content: center;
    }

    .top-header-item span {
        display: inline;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    .top-header-item i {
        font-size: 0.85rem;
        flex-shrink: 0;
    }

    .contact-form,
    .contact-info {
        padding: 25px !important;
    }

    .form-title,
    .info-title {
        font-size: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin: 0 auto 15px;
    }

    .partners-grid {
        gap: 20px;
    }

    .partner-logo {
        height: 50px;
    }

    .qr-codes-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }

    .qr-code-img {
        max-width: 220px;
        min-width: 180px;
    }

    .qr-code-item {
        padding: 20px;
    }

    .booking-partners {
        padding: 25px;
    }

    .partners-label {
        font-size: 0.85rem;
    }

    .gallery-item {
        min-height: 150px;
    }

    .gallery-item img {
        min-height: 150px;
    }

    .video-section-premium {
        padding: 60px 0;
    }

    .video-content-premium {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .video-content-title {
        font-size: 1.5rem;
    }

    .video-paragraph {
        font-size: 1rem;
    }

    .btn-google-earth {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .video-badge {
        padding: 0.6rem 1.25rem;
        font-size: 0.8rem;
        top: 15px;
        left: 15px;
    }

    .video-overlay-info {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
}

/* GTranslate Widget Styling */
.gtranslate_wrapper {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 999;
}

.gtranslate_wrapper select {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--secondary-light) 100%);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-color);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.gtranslate_wrapper select:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.gtranslate_wrapper select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

@media (max-width: 768px) {
    .gtranslate_wrapper {
        bottom: 90px;
        right: 15px;
    }

    .gtranslate_wrapper select {
        padding: 0.6rem 0.875rem;
        font-size: 0.85rem;
    }

    /* Breadcrumb - Tablet */
    .breadcrumb-nav {
        padding: 0.6rem 0;
        margin-bottom: 1.25rem;
    }

    .breadcrumb {
        gap: 0.2rem;
        font-size: 0.85rem;
    }

    .breadcrumb-item+.breadcrumb-item::before {
        margin: 0 0.5rem;
        font-size: 0.75rem;
    }

    .breadcrumb-item a {
        font-size: 0.85rem;
        padding: 0.25rem 0.45rem;
    }

    .breadcrumb-item.active {
        font-size: 0.85rem;
        padding: 0.25rem 0.45rem;
    }

    .breadcrumb-item i {
        font-size: 0.75rem;
        margin-right: 0.25rem;
    }

    /* Room Detail Title - Tablet */
    .room-detail-title {
        font-size: 1.85rem;
        margin-bottom: 1.25rem;
        padding-bottom: 0.75rem;
        gap: 0.45rem;
    }

    .room-detail-title::after {
        width: 70px;
        height: 2px;
    }

    .room-detail-title i {
        font-size: 1.5rem;
    }

    .room-detail-info {
        margin-top: calc(max(1.5rem, 1.85rem * 1.3) + 0.75rem + 0.125rem + 1.25rem);
    }
}

@media (max-width: 576px) {
    .gtranslate_wrapper {
        bottom: 80px;
        right: 10px;
    }

    .gtranslate_wrapper select {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    /* Breadcrumb - Small Mobile */
    .breadcrumb-nav {
        padding: 0.4rem 0;
        margin-bottom: 0.75rem;
    }

    .breadcrumb {
        gap: 0.1rem;
        font-size: 0.75rem;
    }

    .breadcrumb-item {
        max-width: calc(50% - 0.5rem);
    }

    .breadcrumb-item+.breadcrumb-item::before {
        margin: 0 0.25rem;
        font-size: 0.65rem;
    }

    .breadcrumb-item a {
        font-size: 0.75rem;
        padding: 0.15rem 0.3rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .breadcrumb-item.active {
        font-size: 0.75rem;
        padding: 0.15rem 0.3rem;
        max-width: 100%;
    }

    .breadcrumb-item i {
        font-size: 0.65rem;
        margin-right: 0.15rem;
    }

    /* Room Detail Title - Small Mobile */
    .room-detail-title {
        font-size: 1.35rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
        gap: 0.35rem;
        line-height: 1.4;
    }

    .room-detail-title::after {
        width: 50px;
        height: 2px;
    }

    .room-detail-title i {
        font-size: 1.1rem;
    }

    /* Room Detail Info - Mobile: Reset margin-top when stacked */
    .room-detail-info {
        margin-top: calc(max(1.1rem, 1.35rem * 1.4) + 0.5rem + 0.125rem + 0.75rem);
    }
}

/* Auth Modal - Premium Dark Theme - Full Screen Fit */
.auth-modal {
    border-radius: 24px;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(212, 175, 55, 0.1);
    overflow: hidden;
    max-height: 95vh;
    max-width: 95vw;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.modal-dialog.modal-dialog-centered {
    max-width: 600px;
    width: 90%;
    margin: auto;
}

@media (max-width: 768px) {
    .modal-dialog.modal-dialog-centered {
        max-width: 95%;
        width: 95%;
        margin: 1rem auto;
    }

    .auth-modal {
        max-height: 98vh;
        max-width: 100%;
        border-radius: 16px;
    }
}

.auth-modal-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-bottom: 2px solid var(--border-color);
    padding: 2rem;
    position: relative;
}

.auth-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary-color));
}

.auth-modal-title-wrapper {
    flex: 1;
}

.auth-modal-title {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.75rem;
    margin: 0;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    letter-spacing: -0.5px;
}

.auth-modal-title.animate {
    animation: titleFadeIn 0.3s ease;
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-modal-subtitle {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin: 0.5rem 0 0 0;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.auth-modal-subtitle.animate {
    animation: subtitleFadeIn 0.3s ease 0.1s both;
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.auth-modal-body {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    padding: 2rem;
    color: var(--text-color);
    overflow-y: auto;
    max-height: calc(95vh - 200px);
}

@media (max-width: 768px) {
    .auth-modal-body {
        padding: 1.5rem;
        max-height: calc(98vh - 180px);
    }
}

/* Custom scrollbar for auth modal */
.auth-modal-body::-webkit-scrollbar {
    width: 6px;
}

.auth-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.auth-modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--gold), var(--primary-color));
    border-radius: 10px;
}

.auth-modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--gold));
}

/* Booking Login Notification - Professional */
.booking-login-notification {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(201, 169, 97, 0.1) 100%);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    animation: slideDown 0.3s ease;
    transition: all 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-login-notification-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.booking-login-notification-content i {
    color: var(--gold);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.booking-login-notification-content strong {
    display: block;
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.booking-login-notification-content .notification-text {
    flex: 1;
}

.booking-login-notification-content p {
    color: var(--text-color);
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.btn-register-now {
    background: linear-gradient(135deg, var(--gold) 0%, #c9a961 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-register-now:hover {
    background: linear-gradient(135deg, #c9a961 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: #1a1a1a;
}

.btn-register-now:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.btn-register-now i {
    font-size: 0.85rem;
}

/* Flatpickr Premium Date Picker Styles */
.flatpickr-calendar {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 2px solid var(--gold);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.3);
    font-family: 'Inter', sans-serif;
    padding: 1rem;
    animation: fadeInScale 0.3s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.flatpickr-months {
    background: transparent;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.flatpickr-month {
    color: var(--gold);
    fill: var(--gold);
}

.flatpickr-current-month {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    padding: 0.5rem 0;
}

.flatpickr-prev-month,
.flatpickr-next-month {
    color: var(--gold);
    fill: var(--gold);
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.flatpickr-weekdays {
    background: transparent;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
}

.flatpickr-weekday {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flatpickr-days {
    padding-top: 0.5rem;
}

.flatpickr-day {
    color: var(--text-color);
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
    height: 40px;
    line-height: 40px;
}

.flatpickr-day:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    color: var(--gold);
    transform: scale(1.1);
}

.flatpickr-day.today {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    font-weight: 700;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: linear-gradient(135deg, var(--gold) 0%, #c9a961 100%);
    border-color: var(--gold);
    color: #1a1a1a;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    background: linear-gradient(135deg, #c9a961 0%, var(--gold) 100%);
    transform: scale(1.05);
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
}

.flatpickr-day.flatpickr-disabled:hover {
    background: transparent;
    border-color: transparent;
    transform: none;
}

.flatpickr-day.inRange {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--gold);
}

/* Flatpickr Input Styles */
.flatpickr-input[readonly] {
    cursor: pointer;
    background: var(--bg-dark);
    color: var(--text-color);
}

.flatpickr-input[readonly]:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* Alt Input (Display Format) */
.flatpickr-alt-input {
    background: transparent !important;
    border: none !important;
    color: var(--text-color) !important;
    font-size: 1rem !important;
    padding: 0 !important;
    cursor: pointer !important;
    font-weight: 500 !important;
    width: 100% !important;
}

.flatpickr-alt-input:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Booking Input with Flatpickr */
.booking-input-group {
    position: relative;
}

.booking-input-group .flatpickr-wrapper {
    width: 100%;
    position: relative;
}

.booking-input-group input.flatpickr-input {
    width: 100%;
    background: var(--bg-dark);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 0.875rem 1rem 0.875rem 3rem;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.booking-input-group input.flatpickr-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    background: rgba(26, 26, 26, 0.8);
}

.booking-input-group .flatpickr-alt-input {
    position: absolute;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-color);
    font-weight: 500;
}

.booking-input-group input.flatpickr-input:not(:focus):not(:valid)+.flatpickr-alt-input {
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .flatpickr-calendar {
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 auto;
        border-radius: 12px;
    }

    .flatpickr-day {
        height: 35px;
        line-height: 35px;
        font-size: 0.9rem;
    }

    .flatpickr-current-month {
        font-size: 1rem;
    }
}

.auth-tabs {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
    gap: 0.5rem;
}

.auth-tabs .nav-link {
    color: var(--text-dark);
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    transition: var(--transition);
    background: transparent;
}

.auth-tabs .nav-link:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.auth-tabs .nav-link.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.auth-form {
    max-width: 100%;
}

.auth-input-group {
    position: relative;
    margin-bottom: 1.25rem;
}

.auth-input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1rem;
    z-index: 1;
}

.auth-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 1rem;
    transition: var(--transition);
}

.auth-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: var(--card-hover);
}

.auth-input::placeholder {
    color: var(--text-dark);
    opacity: 0.6;
}

/* Phone Input Group - Country Code Side by Side */
.auth-phone-group {
    position: relative;
}

.phone-input-wrapper {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
    width: 100%;
    position: relative;
}

/* Country Code Select with Icon */
.phone-country-code {
    flex: 0 0 auto;
    min-width: 140px;
    padding: 0.875rem 1rem 0.875rem 3rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4af37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    position: relative;
}

/* Phone icon for country code - positioned for country code select */
.auth-phone-group .auth-input-icon {
    left: 1rem;
    top: 1.5rem;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
}

/* Adjust country code padding to show icon properly */
.phone-country-code {
    padding-left: 3rem;
    margin-left: 0;
}

/* Ensure icon is visible on mobile */
@media (max-width: 576px) {
    .auth-phone-group .auth-input-icon {
        left: 0.875rem;
        top: 1.25rem;
        font-size: 0.9rem;
    }

    .phone-country-code {
        padding-left: 2.75rem;
    }
}

.phone-country-code:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background-color: var(--card-hover);
}

.phone-input-wrapper .phone-input {
    flex: 1;
    padding-left: 3rem;
    margin: 0;
    min-width: 0;
}

/* Mobile Responsive for Phone Input */
@media (max-width: 768px) {
    .phone-input-wrapper {
        flex-direction: column;
        gap: 0.75rem;
    }

    .phone-country-code {
        min-width: 100%;
        width: 100%;
        padding: 0.875rem 1rem 0.875rem 3rem;
    }

    .phone-input-wrapper .phone-input {
        width: 100%;
        padding-left: 3rem;
    }

    .auth-phone-group .auth-input-icon {
        top: 1.5rem;
    }
}

@media (max-width: 576px) {
    .phone-input-wrapper {
        gap: 0.5rem;
    }

    .phone-country-code {
        padding: 0.75rem 0.875rem 0.75rem 2.75rem;
        font-size: 0.9rem;
        min-width: 100%;
    }

    .phone-input-wrapper .phone-input {
        padding-left: 2.75rem;
        font-size: 0.9rem;
    }

    .auth-phone-group .auth-input-icon {
        left: 0.875rem;
        font-size: 0.9rem;
        top: 1.25rem;
    }
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.auth-options .form-check {
    margin: 0;
}

.auth-options .form-check-input {
    background-color: var(--card-bg);
    border-color: var(--border-color);
}

.auth-options .form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}

.auth-options .form-check-label {
    color: var(--text-dark);
    cursor: pointer;
}

.auth-link {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.auth-link:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.auth-submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary-color) 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    cursor: pointer;
}

.auth-submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
}

.btn-close-white {
    opacity: 1 !important;
    background: rgba(220, 53, 69, 0.15) !important;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    border: 2px solid #dc3545;
    filter: none !important;
    position: relative;
}

/* Hide Bootstrap's default SVG */
.btn-close-white>svg {
    display: none !important;
}

/* Custom red X icon */
.btn-close-white::before {
    content: '×';
    position: absolute;
    font-size: 32px;
    line-height: 1;
    color: #dc3545 !important;
    font-weight: 300;
    opacity: 1 !important;
    filter: none !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.btn-close-white:hover {
    opacity: 1 !important;
    background: rgba(220, 53, 69, 0.3) !important;
    border-color: #ff4757;
    transform: scale(1.1);
    filter: none !important;
}

.btn-close-white:hover::before {
    color: #ff4757 !important;
    transform: translate(-50%, -50%) rotate(90deg);
}

.btn-close-white:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.3);
    outline: none;
}

.btn-close-white:active {
    transform: scale(0.95);
}

/* Booking Modal - Modern Professional Design */
.modal {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1055;
}

.modal-backdrop {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(26, 26, 26, 0.9) 100%);
    z-index: 1050;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-backdrop.show {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

body.modal-open {
    overflow: hidden;
    padding-right: 0 !important;
    position: fixed;
    width: 100%;
}

body.modal-open .header-wrapper {
    padding-right: 0;
}

.modal-dialog {
    margin: 1.75rem auto;
    max-width: 90%;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content {
    border-radius: 24px;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(212, 175, 55, 0.1);
    overflow: hidden;
    position: relative;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--primary-color), var(--gold));
    z-index: 1;
}

.modal-header {
    border-bottom: 2px solid rgba(212, 175, 55, 0.15);
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    padding: 2rem;
    position: relative;
}

.modal-header .modal-title {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.75rem;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.modal-body {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    color: var(--text-color);
    padding: 2rem;
}

.modal-footer {
    border-top: 2px solid rgba(212, 175, 55, 0.15);
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    padding: 1.5rem 2rem;
}

.btn-close {
    filter: invert(1) brightness(2);
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.btn-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.btn-close:focus {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

/* Booking Modal Styles - Premium Design */
.booking-modal {
    border-radius: 24px;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(212, 175, 55, 0.1);
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.booking-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--primary-color), var(--gold));
    z-index: 1;
}

.booking-modal-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-bottom: 2px solid rgba(212, 175, 55, 0.15);
    padding: 2rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.booking-modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.booking-modal-title {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.75rem;
    margin: 0;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.booking-modal-subtitle {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin: 0.5rem 0 0 0;
}

.booking-modal-body {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    padding: 2rem;
    color: var(--text-color);
}

/* Custom scrollbar for booking modal */
.booking-modal::-webkit-scrollbar {
    width: 8px;
}

.booking-modal::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.booking-modal::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--gold), var(--primary-color));
    border-radius: 10px;
}

.booking-modal::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--gold));
}

.booking-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.booking-section-title {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.booking-input-group {
    position: relative;
    margin-bottom: 1rem;
}

.booking-input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1rem;
    z-index: 1;
}

.booking-input,
.booking-select,
.booking-textarea {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    background: var(--secondary-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 1rem;
    transition: var(--transition);
}

.booking-input:focus,
.booking-select:focus,
.booking-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: var(--card-hover);
}

.booking-input::placeholder {
    color: var(--text-dark);
    opacity: 0.6;
}

.booking-textarea {
    padding-left: 1rem;
    resize: vertical;
}

.booking-promo-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary-color) 100%);
    color: #1a1a1a;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.booking-promo-btn:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold) 100%);
    transform: translateY(-50%) scale(1.05);
}

.booking-message {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

.booking-price-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(201, 169, 97, 0.05) 100%);
    border: 2px solid var(--gold);
}

.booking-price-display {
    padding: 1rem 0;
}

.booking-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.booking-price-row:last-of-type {
    border-bottom: none;
}

.booking-price-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin-top: 1rem;
    border-top: 2px solid var(--gold);
    font-size: 1.25rem;
}

.booking-total-amount {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.booking-note {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.booking-submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary-color) 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    margin-top: 1rem;
}

.booking-submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form label {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-color);
}

/* Loading Spinner */
.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Alert Messages - Dark Theme */
.alert {
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    color: var(--text-color);
}

.alert-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.alert-danger {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.05) 100%);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.alert-info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-color: rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.alert-warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.05) 100%);
    border-color: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

/* Room Gallery Premium */
.room-gallery-premium {
    margin-bottom: 2rem;
}

.room-gallery-main {
    margin-bottom: 1rem;
}

.main-gallery-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
    background: var(--card-bg);
    aspect-ratio: 16/9;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: pan-y pinch-zoom;
    z-index: 0;
    isolation: isolate;
}

.main-gallery-image:active,
.main-gallery-image.dragging {
    cursor: grabbing;
}

.main-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease, transform 0.5s ease;
    will-change: opacity, transform;
    background: var(--card-bg);
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.main-gallery-image.dragging img {
    transition: none;
}

.main-gallery-image:hover:not(.dragging) img {
    transform: scale(1.05);
}

/* Gallery Navigation Buttons */
.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--gold);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.gallery-nav-btn:hover {
    background: var(--gold);
    color: #1a1a1a;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.gallery-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-nav-prev {
    left: 20px;
}

.gallery-nav-next {
    right: 20px;
}

.gallery-nav-btn i {
    pointer-events: none;
}

/* Hide navigation buttons on mobile */
@media (max-width: 768px) {
    .gallery-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .gallery-nav-prev {
        left: 10px;
    }

    .gallery-nav-next {
        right: 10px;
    }
}

.gallery-overlay-info {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    border: 1px solid var(--gold);
    z-index: 10;
    pointer-events: none;
    isolation: isolate;
}

.gallery-image-count {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.room-gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.gallery-thumbnail {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    aspect-ratio: 1;
    background: var(--card-bg);
}

.gallery-thumbnail:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.gallery-thumbnail.active {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.gallery-thumbnail img,
.gallery-thumbnail .thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
    will-change: transform;
    background: var(--card-bg);
}

.gallery-thumbnail img[data-src] {
    opacity: 0;
    filter: blur(5px);
}

.gallery-thumbnail img:not([data-src]) {
    opacity: 1;
    filter: blur(0);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.gallery-thumbnail:hover img {
    transform: scale(1.1);
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-thumbnail:hover .thumbnail-overlay {
    opacity: 1;
}

.thumbnail-overlay i {
    color: var(--gold);
    font-size: 1.5rem;
}

.room-gallery-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    border: 2px dashed var(--border-color);
    color: var(--text-dark);
}

.room-gallery-placeholder i {
    font-size: 4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.room-detail-left,
.room-detail-right {
    padding-top: 0 !important;
}

.about-section .row {
    margin-top: 0;
    align-items: flex-start;
    gap: 0;
    position: relative;
    overflow: visible;
}

.about-section .container {
    overflow: visible;
    position: relative;
}

.about-section .container {
    max-width: 1400px;
    overflow: visible;
    position: relative;
}

/* Ensure title has consistent height for alignment */
.room-detail-left .room-detail-title {
    min-height: calc(2.25rem * 1.3 + 0.75rem + 0.125rem);
    box-sizing: border-box;
}

.room-detail-info {
    background: linear-gradient(145deg, #1a1a1a 0%, #252525 50%, #1f1f1f 100%);
    padding: 45px;
    border-radius: 24px;
    margin: 0;
    margin-top: calc(2.25rem * 1.3 + 0.75rem + 0.125rem + 1.5rem);
    margin-bottom: 30px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 100px;
    overflow: hidden;
    align-self: flex-start;
    min-height: 550px;
    max-height: calc(100vh - 120px);
    will-change: transform;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    isolation: isolate;
    transition: all 0.3s ease;
    width: 100%;
}

.room-detail-info:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow:
        0 16px 50px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(212, 175, 55, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 30px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

/* Match gallery image height - make info box same height as gallery */
.room-detail-left .main-gallery-image {
    min-height: 550px;
}

/* Ensure Room Information box aligns perfectly with gallery image */
.room-detail-right {
    display: flex;
    flex-direction: column;
    padding-left: 3rem;
    padding-right: 0;
    justify-content: flex-start;
    align-items: stretch;
    height: fit-content;
    position: relative;
    overflow: visible;
}

.room-detail-left {
    padding-right: 3rem;
    padding-left: 0;
    max-width: 100%;
}

/* Equal spacing - ensure both columns have same padding */
@media (min-width: 992px) {
    .room-detail-left {
        padding-right: 3rem !important;
        padding-left: 0 !important;
    }

    .room-detail-right {
        padding-left: 3rem !important;
        padding-right: 0 !important;
    }
}

.room-detail-left .room-gallery-premium {
    max-width: 100%;
}

.room-detail-left .main-gallery-image {
    max-width: 100%;
}

.room-detail-info {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
}

/* Equal spacing for both columns - removed duplicate */

@media (max-width: 992px) {
    .about-section .row {
        margin-left: -15px;
        margin-right: -15px;
    }

    .about-section .row>[class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }

    .room-detail-right {
        padding-left: 0;
        padding-right: 0;
        margin-top: 2rem;
    }

    .room-detail-left {
        padding-right: 0;
        padding-left: 0;
    }

    .room-detail-info {
        margin-left: 0;
        margin-right: 0;
        padding: 30px;
        position: relative;
        top: 0;
    }
}

/* Ensure gallery navigation buttons are visible */
.room-detail-left {
    position: relative;
    z-index: 1;
}

.gallery-nav-next {
    right: 20px !important;
    z-index: 15;
}

.gallery-nav-prev {
    left: 20px !important;
    z-index: 15;
}

.room-detail-left .room-detail-title {
    min-height: calc(2.25rem * 1.3 + 0.75rem + 0.125rem);
}

.room-detail-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--primary-color) 50%, var(--gold) 100%);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
}

.room-detail-info::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-detail-info:hover::after {
    opacity: 1;
}

.room-detail-info h4 {
    color: var(--gold);
    margin: 0;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 0 2px 15px rgba(212, 175, 55, 0.4), 0 0 20px rgba(212, 175, 55, 0.2);
    padding: 0;
    font-size: 1.85rem;
    line-height: 1.3;
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
    position: relative;
}

.room-detail-info h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
}

.room-detail-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-detail-info li {
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--text-color);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.room-detail-info li::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--gold), var(--primary-color));
    border-radius: 2px;
    transition: height 0.3s ease;
}

.room-detail-info li:hover {
    padding-left: 12px;
    color: var(--gold);
    border-bottom-color: rgba(212, 175, 55, 0.3);
}

.room-detail-info li:hover::before {
    height: 60%;
}

.room-detail-info li:last-child {
    border-bottom: none;
}

.room-detail-info li strong {
    color: var(--gold);
    margin-right: 5px;
}

.btn-book-now {
    width: 100%;
    padding: 1.6rem;
    background: linear-gradient(135deg, var(--gold) 0%, #e6c85a 50%, var(--primary-color) 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 18px;
    font-weight: 800;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    box-shadow:
        0 8px 35px rgba(212, 175, 55, 0.6),
        0 0 0 1px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2.5rem;
    position: relative;
    overflow: hidden;
}

.btn-book-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-book-now::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-book-now:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e6c85a 50%, var(--gold) 100%);
    transform: translateY(-3px);
    box-shadow:
        0 12px 45px rgba(212, 175, 55, 0.8),
        0 0 0 1px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 40px rgba(212, 175, 55, 0.4);
}

.btn-book-now:hover::before {
    left: 100%;
}

.btn-book-now:hover::after {
    width: 300px;
    height: 300px;
}

.btn-book-now:active {
    transform: translateY(-1px);
    box-shadow:
        0 6px 25px rgba(212, 175, 55, 0.6),
        0 0 0 1px rgba(212, 175, 55, 0.2);
}

.btn-book-now:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
    color: #1a1a1a;
}

/* Room Detail Page - Enhanced Styles */
/* Breadcrumb Navigation - SEO Friendly */
.breadcrumb-nav {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    gap: 0.25rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '/';
    color: var(--text-dark);
    margin: 0 0.5rem;
    font-size: 0.8rem;
    opacity: 0.6;
}

.breadcrumb-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.breadcrumb-item a:hover {
    color: var(--gold);
    text-decoration: none;
    background: rgba(212, 175, 55, 0.1);
}

.breadcrumb-item.active {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.breadcrumb-item i {
    font-size: 0.75rem;
    margin-right: 0.25rem;
}

.room-detail-title {
    color: var(--gold);
    font-weight: 700;
    font-size: 2.25rem;
    margin: 0;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    text-shadow: 0 2px 20px rgba(212, 175, 55, 0.4);
    padding: 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
    position: relative;
    line-height: 1.3;
}

.room-detail-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--primary-color));
}

.room-detail-title i {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.room-section-title {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

.room-section-title i {
    font-size: 1.25rem;
}

.room-description-text {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

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

.room-service-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
}

.room-service-item:hover {
    background: var(--card-hover);
    border-color: var(--gold);
    transform: translateX(5px);
}

.service-check {
    color: #10b981;
    font-size: 1.25rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.room-service-item span {
    color: var(--text-color);
    font-size: 1rem;
}

.room-description-section,
.room-services-section {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--secondary-light) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.room-description-section::before,
.room-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary-color));
}

.room-detail-info i {
    color: var(--gold);
    margin-right: 18px;
    width: 28px;
    font-size: 1.4rem;
    flex-shrink: 0;
    text-align: center;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.room-detail-info li:hover i {
    transform: scale(1.15) rotate(5deg);
    color: var(--primary-color);
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.5));
}

.room-detail-info li strong {
    margin-right: 5px;
}

/* GTranslate Widget Styling */
.gtranslate_wrapper {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 999;
}

.gtranslate_wrapper select {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--secondary-light) 100%);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-color);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    min-width: 120px;
}

.gtranslate_wrapper select:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.gtranslate_wrapper select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

@media (max-width: 768px) {
    .gtranslate_wrapper {
        bottom: 90px;
        right: 15px;
    }

    .gtranslate_wrapper select {
        padding: 0.6rem 0.875rem;
        font-size: 0.85rem;
        min-width: 100px;
    }
}

@media (max-width: 576px) {
    .gtranslate_wrapper {
        bottom: 80px;
        right: 10px;
    }

    .gtranslate_wrapper select {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        min-width: 90px;
    }
}

/* ============================================
   404 Error Page - Premium Design
   ============================================ */
.error-404-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    overflow: hidden;
}

.error-404-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

/* 404 Number */
.error-404-number {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}

.error-digit {
    font-size: 180px;
    font-weight: 900;
    color: var(--gold);
    text-shadow:
        0 0 30px rgba(201, 169, 97, 0.5),
        0 0 60px rgba(201, 169, 97, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.5);
    line-height: 1;
    animation: fadeInScale 0.6s ease-out;
}

.error-digit:nth-child(1) {
    animation-delay: 0.1s;
}

.error-digit:nth-child(2) {
    animation-delay: 0.2s;
}

.error-digit:nth-child(3) {
    animation-delay: 0.3s;
}

.error-digit-animated {
    animation: pulse 2s ease-in-out infinite;
    position: relative;
}

.error-digit-animated::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border: 3px solid var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: ripple 2s ease-out infinite;
}

/* Error Icon */
.error-404-icon {
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out 0.4s both;
}

.error-404-icon i {
    font-size: 80px;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(201, 169, 97, 0.5);
    animation: shake 3s ease-in-out infinite;
}

/* Error Title */
.error-404-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.error-404-title i {
    color: var(--gold);
    margin-right: 15px;
}

/* Error Divider */
.error-404-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 30px;
    border-radius: 2px;
    animation: fadeInScale 0.8s ease-out 0.6s both;
}

/* Error Message */
.error-404-message {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

/* Quick Links */
.error-404-quick-links {
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.quick-links-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-links-title i {
    color: var(--gold);
    margin-right: 10px;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.quick-link-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(201, 169, 97, 0.2);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.1), transparent);
    transition: left 0.5s ease;
}

.quick-link-card:hover::before {
    left: 100%;
}

.quick-link-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.quick-link-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), #d4af37);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.quick-link-icon i {
    font-size: 24px;
    color: #1a1a1a;
}

.quick-link-card:hover .quick-link-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.5);
}

.quick-link-content {
    flex: 1;
}

.quick-link-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.quick-link-content p {
    font-size: 0.9rem;
    color: #aaaaaa;
    margin: 0;
}

.quick-link-arrow {
    color: var(--gold);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.quick-link-card:hover .quick-link-arrow {
    transform: translateX(5px);
}

/* Main CTA Button */
.error-404-cta {
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

.btn-error-home {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--gold), #d4af37);
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow:
        0 5px 20px rgba(201, 169, 97, 0.4),
        0 0 30px rgba(201, 169, 97, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-error-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-error-home:hover::before {
    left: 100%;
}

.btn-error-home:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 30px rgba(201, 169, 97, 0.6),
        0 0 40px rgba(201, 169, 97, 0.4);
}

.btn-error-home:active {
    transform: translateY(-1px);
}

.btn-error-home i:first-child {
    margin-right: 10px;
}

.btn-error-home i:last-child {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-error-home:hover i:last-child {
    transform: translateX(5px);
}

/* Search Suggestion */
.error-404-search {
    animation: fadeInUp 0.8s ease-out 1s both;
}

.search-suggestion-text {
    color: #888888;
    font-size: 1rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-suggestion-text i {
    color: var(--gold);
    margin-right: 8px;
}

/* Decorative Elements */
.error-404-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1), transparent);
    animation: float 20s ease-in-out infinite;
}

.decoration-circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.decoration-circle-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.decoration-circle-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes ripple {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

@keyframes shake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: rotate(-5deg);
    }

    20%,
    40%,
    60%,
    80% {
        transform: rotate(5deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .error-digit {
        font-size: 140px;
    }

    .error-404-title {
        font-size: 2rem;
    }

    .quick-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .error-404-section {
        padding: 60px 0;
        min-height: 70vh;
    }

    .error-404-number {
        gap: 10px;
    }

    .error-digit {
        font-size: 100px;
    }

    .error-404-icon i {
        font-size: 60px;
    }

    .error-404-title {
        font-size: 1.75rem;
        flex-direction: column;
        gap: 10px;
    }

    .error-404-title i {
        margin-right: 0;
    }

    .error-404-message {
        font-size: 1rem;
    }

    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .quick-link-card {
        padding: 20px;
    }

    .btn-error-home {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .decoration-circle-1 {
        width: 200px;
        height: 200px;
    }

    .decoration-circle-2 {
        width: 150px;
        height: 150px;
    }

    .decoration-circle-3 {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .error-digit {
        font-size: 80px;
    }

    .error-404-title {
        font-size: 1.5rem;
    }

    .quick-link-card {
        flex-direction: column;
        text-align: center;
    }

    .quick-link-arrow {
        display: none;
    }
}

/* ============================================
   MODERN ENHANCEMENTS - Keeper Guest House
   ============================================ */

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced Card Hover Effects */
.room-card,
.gallery-card-modern,
.historical-gallery .gallery-card-modern {
    transition: var(--transition);
    will-change: transform;
}

.room-card:hover,
.gallery-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

/* Modern Button Enhancements */
.btn-book,
.btn-view-all-rooms,
.btn-slider-cta {
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-book::after,
.btn-view-all-rooms::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-book:hover::after,
.btn-view-all-rooms:hover::after {
    width: 300px;
    height: 300px;
}

/* Glass Morphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced Loading States */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    border-top-color: var(--gold);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Modern Form Inputs */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="date"],
select,
textarea {
    transition: var(--transition-fast);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    outline: none;
}

/* Smooth Image Loading */
img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* Performance Optimizations */
* {
    -webkit-tap-highlight-color: transparent;
}

.room-card,
.gallery-card-modern,
.btn-book {
    contain: layout style paint;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .whatsapp-float,
    .scroll-to-top,
    .header-wrapper,
    .main-footer {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}