/* ============================================
   POINT 7 HOTEL - CUSTOM STYLES
   ============================================ */

:root {
    --primary-color: #c1a067;
    --bs-primary: #c1a067;
    --bs-primary-rgb: 193, 160, 103;
    --secondary-color: #1a1a1a;
    --accent-color: #be9e5c;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --bg-light: #f8f8f8;
    --white: #ffffff;
    --transition: all 0.3s ease;
    /* Bootstrap-compatible responsive typography (1rem = 16px base) */
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-h6: 1rem;
    --font-size-h5: 1.25rem;
    --font-size-h4: 1.5rem;
    --font-size-h3: 1.75rem;
    --font-size-h2: 2rem;
    --font-size-h1: 2.5rem;
}

/* Bootstrap 5 compatible base: 16px root for consistent rem across devices */
html {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Responsive headings – Bootstrap-compatible rem scale */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }
p, .lead {
    font-size: var(--font-size-base);
}
@media (max-width: 767px) {
    body { font-size: var(--font-size-base); }
    p, .lead { font-size: clamp(0.9375rem, 2.5vw, 1rem); }
}

/* ============================================
   PRELOADER (Demo1 style)
   ============================================ */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.loader-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.loader-logo-container {
    position: relative;
    width: 120px;
    height: 120px;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 0;
    flex-shrink: 0;
    box-sizing: border-box;
}

.loader-logo-container .loader-logo {
    max-width: 100px;
    max-height: 100px;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
}

.loader-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.loader-border-bg {
    stroke-dasharray: 345.58;
    stroke-dashoffset: 0;
}

.loader-border-progress {
    stroke-dasharray: 345.58;
    stroke-dashoffset: 345.58;
    animation: preloaderCircleProgress 0.6s ease-in-out forwards;
    transform-origin: center;
}

.loader-logo {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
    transform-origin: center center !important;
    z-index: 10;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 70px !important;
    height: 70px !important;
    max-width: 70px !important;
    max-height: 70px !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.loader-logo .brand-logo-svg {
    height: 65px !important;
    width: auto;
    max-width: 65px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
}

.loader-wrapper > .loader-text,
.loader-wrapper > .brand-text-logo {
    color: #1a1a1a !important;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1.2;
    display: block !important;
    position: relative !important;
    z-index: 100;
    opacity: 1 !important;
    visibility: visible !important;
}

@keyframes preloaderCircleProgress {
    0% { stroke-dashoffset: 345.58; }
    100% { stroke-dashoffset: 0; }
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 0;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

#mainNav .container {
    display: flex;
    align-items: center;
    min-height: 80px;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark) !important;
    padding: 0;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-color);
    line-height: 1;
    position: relative;
    padding-right: 0.5rem;
    transition: var(--transition);
}

.navbar.scrolled .brand-name {
    font-size: 1.5rem;
}

.brand-name::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 60%;
    background: var(--primary-color);
    opacity: 0.3;
    transition: var(--transition);
}

.brand-name:hover {
    color: var(--accent-color);
    transform: scale(1.02);
}

.brand-subtitle {
    display: none;
}

.navbar-nav {
    align-items: center;
    gap: 0.25rem;
    display: flex;
}

.navbar-collapse {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 0.25rem;
    padding: 0.625rem 1rem !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    width: fit-content;
}

.navbar-nav .nav-link .fi {
    font-size: 1.2rem;
    border-radius: 2px;
}

.dropdown-item .fi {
    font-size: 1rem;
}

/* Dropdown Services / Language – project color instead of Bootstrap blue */
.dropdown-menu .dropdown-item.active {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}
.dropdown-menu .dropdown-item.active:hover {
    background-color: var(--accent-color) !important;
    color: #fff !important;
}
.dropdown-menu .dropdown-item:hover:not(.active) {
    background-color: rgba(201, 169, 97, 0.12);
    color: var(--text-dark);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background: transparent;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background: transparent;
}

.navbar-nav .btn-book {
    background: var(--primary-color);
    border-radius: 8px;
    margin-left: 0.75rem;
    padding: 0.625rem 1.5rem !important;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.2);
    transition: var(--transition);
}

.navbar-nav .btn-book::before {
    display: none;
}

.navbar-nav .btn-book::after {
    display: none;
}

.navbar-nav .btn-book:hover {
    background: var(--accent-color);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.navbar-toggler {
    border-color: rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    transition: var(--transition);
}

.navbar-toggler:hover {
    background: rgba(201, 169, 97, 0.05);
    border-color: var(--primary-color);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 97, 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(201, 169, 97, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    z-index: 10;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: visible;
    padding-bottom: 0;
    border-radius: 0;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: visible;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    overflow: visible;
}

.hero-slide.active {
    opacity: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(26, 26, 26, 0.4) 100%);*/
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content-wrapper {
    padding-bottom: 2rem;
    position: relative;
    top: 480px;
}

.hero-content-wrapper .booking-widget-inline {
    max-width: 100%;
    margin-top: 2.5rem;
    margin-bottom: 0;
}

.hero-content-wrapper .booking-card {
    background: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 1.75rem;
    max-width: 90%;
}

@media (max-width: 992px) {
    .hero-content-wrapper {
        top: 400px;
        padding-bottom: 5%;
    }
    
    .hero-content-wrapper .booking-card,
    .hero-content-wrapper .booking-card.booking-card--desktop-fit {
        padding: 1.25rem 1.5rem;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        max-width: 100%;
        width: 100%;
    }
    
    .booking-card .form-label {
        color: var(--white);
        font-size: 0.75rem;
    }
    
    .booking-card .form-control,
    .booking-card .form-select {
        padding: 0.65rem 2.25rem 0.65rem 0.875rem;
        font-size: 0.85rem;
    }
    
    .input-icon,
    .select-icon {
        right: 0.875rem;
        font-size: 0.9rem;
    }
    
    .booking-card .btn-primary,
    .booking-card .btn-availability {
        width: 100%;
        margin-top: 0.5rem;
        min-height: 42px;
    }
    
    .booking-card .booking-form-fields.row > * {
        padding-left: 0.35rem;
        padding-right: 0.35rem;
    }
    .booking-card .booking-form-fields.row > *:first-child {
        padding-left: 0;
    }
    .booking-card .booking-form-fields.row > *:last-child {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        overflow-x: hidden;
    }
    
    .hero-section .container,
    .hero-section .hero-hero-container {
        margin-top: 100px;
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero-section .row {
        align-items: flex-start !important;
        min-height: auto;
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-content-wrapper {
        top: 0;
        padding-bottom: 2rem;
        position: relative;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero-content-wrapper .booking-widget-inline {
        margin-top: 1.5rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero-content-wrapper .booking-card {
        padding: 1.25rem 1rem;
        margin: 0;
        max-width: 100%;
        width: 100%;
        border-radius: 12px;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .booking-card .form-label {
        color: var(--white);
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
    }
    
    .booking-card .form-control,
    .booking-card .form-select {
        padding: 0.7rem 2.5rem 0.7rem 0.875rem;
        font-size: 0.875rem;
        min-height: 44px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .input-icon,
    .select-icon {
        right: 0.875rem;
        font-size: 0.875rem;
    }
    
    .booking-card .btn-availability {
        width: 100%;
        max-width: 100%;
        margin-top: 0;
        min-height: 44px;
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
        box-sizing: border-box;
    }
    
    .booking-card .row {
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .booking-card .row > * {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 0.75rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .booking-card .row > *:last-child {
        margin-bottom: 0;
    }
    
    .booking-card .row.align-items-end {
        align-items: flex-start !important;
    }
    
    .form-label--spacer {
        display: none;
    }
    
    .input-wrapper,
    .select-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 576px) {
    .hero-section .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero-content-wrapper {
        top: 0;
        padding-bottom: 1.5rem;
        position: relative;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-content-wrapper .booking-widget-inline {
        margin-top: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-content-wrapper .booking-card {
        padding: 1rem 0.75rem;
        border-radius: 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .booking-card .form-label {
        font-size: 0.65rem;
        margin-bottom: 0.35rem;
    }
    
    .booking-card .form-control,
    .booking-card .form-select {
        padding: 0.65rem 2rem 0.65rem 0.75rem;
        font-size: 0.8rem;
        min-height: 42px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .input-icon,
    .select-icon {
        right: 0.75rem;
        font-size: 0.8rem;
    }
    
    .booking-card .btn-availability {
        min-height: 42px;
        padding: 0.7rem 1rem;
        font-size: 0.75rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .btn-availability__icon {
        font-size: 0.875rem;
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--primary-color);
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Global button form – same as home page (border-radius, size, weight) */
main .btn,
main .btn-lg,
section .btn,
section .btn-lg,
.container .btn:not(.navbar .btn):not(.booking-card .btn),
.about-page-wrap .btn,
.about-cta-wrap .btn,
.rooms-page-wrap .btn,
.rooms-intro-section__cta .btn,
.room-detail-section__actions .btn,
.home-page-content .btn,
.home-page-content .btn-lg {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: var(--transition);
}
main .btn-sm,
section .btn-sm,
.home-page-content .btn-sm {
    font-size: 0.8125rem;
    padding: 0.375rem 0.75rem;
    min-height: 36px;
    border-radius: 0.375rem;
}
@media (min-width: 576px) {
    main .btn, main .btn-lg, section .btn, section .btn-lg,
    .container .btn:not(.navbar .btn):not(.booking-card .btn),
    .about-cta-wrap .btn, .rooms-page-wrap .btn, .rooms-intro-section__cta .btn,
    .room-detail-section__actions .btn, .home-page-content .btn, .home-page-content .btn-lg {
        font-size: 0.9375rem;
        padding: 0.65rem 1.35rem;
    }
}
@media (min-width: 768px) {
    main .btn, main .btn-lg, section .btn, section .btn-lg,
    .container .btn:not(.navbar .btn):not(.booking-card .btn),
    .about-cta-wrap .btn, .rooms-page-wrap .btn, .rooms-intro-section__cta .btn,
    .room-detail-section__actions .btn, .home-page-content .btn, .home-page-content .btn-lg {
        font-size: 1rem;
        padding: 0.625rem 1.25rem;
    }
}
@media (min-width: 992px) {
    main .btn, main .btn-lg, section .btn, section .btn-lg,
    .container .btn:not(.navbar .btn):not(.booking-card .btn),
    .about-cta-wrap .btn, .rooms-page-wrap .btn, .rooms-intro-section__cta .btn,
    .room-detail-section__actions .btn, .home-page-content .btn, .home-page-content .btn-lg {
        font-size: 1.0625rem;
        padding: 0.625rem 1.5rem;
    }
}
@media (min-width: 1200px) {
    main .btn, main .btn-lg, section .btn, section .btn-lg,
    .container .btn:not(.navbar .btn):not(.booking-card .btn),
    .about-cta-wrap .btn, .rooms-page-wrap .btn, .rooms-intro-section__cta .btn,
    .room-detail-section__actions .btn, .home-page-content .btn, .home-page-content .btn-lg {
        font-size: 1.125rem;
        padding: 0.688rem 1.625rem;
    }
}

.btn-primary {
    background: #c1a067 !important;
    border-color: #c1a067 !important;
    border: none;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #be9e5c !important;
    border-color: #be9e5c !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.3);
}

.btn-outline-primary {
    font-weight: 500;
    border-radius: 0.5rem;
    transition: var(--transition);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--secondary-color);
}

/* ============================================
   BOOKING WIDGET
   ============================================ */

.booking-widget {
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    z-index: 10;
    padding: 0 15px;
    pointer-events: none;
}

.booking-widget .container {
    pointer-events: auto;
}

.booking-widget-inline {
    position: relative;
    z-index: 10;
    margin-top: 2rem;
    margin-bottom: 0;
    pointer-events: auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.booking-card {
    background: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    margin: 0 auto;
    width: max-content;
    max-width: 95%;
    box-sizing: border-box;
}

.booking-card .form-label {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.35rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Input and Select Wrappers */
.input-wrapper,
.select-wrapper {
    position: relative;
}

.booking-card .input-wrapper,
.booking-card .select-wrapper {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.input-icon,
.select-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
    font-size: 1rem;
    z-index: 1;
}

.booking-card .form-control,
.booking-card .form-select {
    width: 100%;
    min-height: 42px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0.6rem 2.25rem 0.6rem 0.875rem;
    border-radius: 8px;
    transition: var(--transition);
    color: var(--text-dark);
    cursor: pointer;
    font-size: 0.875rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.booking-card .form-control[readonly] {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.9);
}

.booking-card .form-control:focus,
.booking-card .form-select:focus {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 97, 0.25);
    outline: none;
}

.booking-card .form-select {
    padding-right: 2.5rem;
}

.booking-card .form-select:hover {
    border-color: var(--primary-color);
}

/* Dropdown list: fshij blu, hover = #c1a067 */
.booking-card .form-select {
    accent-color: #c1a067;
    color-scheme: light;
}
.booking-card .form-select option {
    background: #fff;
    color: var(--text-dark);
}
.booking-card .form-select option:checked,
.booking-card .form-select option:hover,
.booking-card .form-select option:focus {
    background: #c1a067 !important;
    background-color: #c1a067 !important;
    color: #fff !important;
}

.booking-card .form-control::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

/* Custom dropdown Gäste / Zimmer: hover #c1a067, listë më e gjerë */
.booking-card .custom-select-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
}
.booking-card .custom-select-trigger {
    position: relative;
    width: 100%;
    min-width: 8rem;
    min-height: 42px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 2.25rem 0.6rem 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-dark);
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
}
.booking-card .custom-select-trigger:hover {
    border-color: var(--primary-color);
}
.booking-card .custom-select-trigger:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 97, 0.25);
}
.booking-card .custom-select-list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 100%;
    width: max-content;
    min-width: 9.5rem;
    max-width: 260px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    list-style: none;
    margin: 0;
    padding: 0.35rem 0;
    z-index: 9999;
    display: none;
    overflow: visible;
}
.booking-card .custom-select-list.is-open {
    display: block;
}
.booking-card .custom-select-list li {
    padding: 0.55rem 0.875rem;
    min-height: 2.25rem;
    line-height: 1.4;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 0.875rem;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
    box-sizing: border-box;
}
.booking-card .custom-select-list li:hover,
.booking-card .custom-select-list li[aria-selected="true"] {
    background: #c1a067;
    color: #fff;
}

/* Booking form: compact on large screens; wrap on tablet/mobile (Bootstrap responsive) */
.booking-form-fields.row {
    margin: 0 -0.35rem;
    width: 100%;
    max-width: 100%;
    gap: 0;
    flex-wrap: wrap;
}

@media (min-width: 993px) {
    .booking-form-fields.row {
        flex-wrap: nowrap;
    }
    .booking-card .booking-form-fields.row {
        width: max-content;
        max-width: 100%;
    }
    .booking-card .booking-form-fields.row > .col-lg-3 {
        flex: 0 0 14rem;
        max-width: 14rem;
    }
    .booking-card .booking-form-fields.row > .col-lg-2 {
        flex: 0 0 9rem;
        max-width: 9rem;
    }
    .booking-card .booking-form-fields.row > .col-lg-auto.booking-card__actions {
        flex: 0 0 auto;
        width: auto;
    }
    /* Kartë booking sa gjerësia e formës – pa hapësirë të zbrazët në të djathtë */
    .hero-content-wrapper .booking-card.booking-card--desktop-fit {
        width: max-content;
        max-width: 100%;
    }
}

.booking-card .booking-form-fields.row > * {
    padding-left: 0.35rem;
    padding-right: 0.35rem;
    box-sizing: border-box;
    margin-bottom: 0;
}

.booking-card .booking-form-fields.row > *:first-child {
    padding-left: 0;
}

.booking-card .booking-form-fields.row > *:last-child {
    padding-right: 0;
}

.booking-card .row {
    margin: 0;
    width: 100%;
    max-width: 100%;
}

.booking-card .row > * {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    box-sizing: border-box;
}

.booking-card .row > *:first-child {
    padding-left: 0;
}

.booking-card .row > *:last-child {
    padding-right: 0;
}

.booking-card .btn-primary {
    background: var(--primary-color);
    border: none;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
    font-size: 0.85rem;
    height: 100%;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-card .btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
    color: var(--white);
}

.booking-card .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
}

/* Booking "Verfügbarkeit prüfen" button in hero */
.booking-card .btn-availability {
    width: 100%;
    min-width: 0;
}

.btn-availability {
    background: var(--primary-color);
    border: none;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
    font-size: 0.8rem;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
}

.btn-availability:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
    color: var(--white);
}

.btn-availability:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
}

.btn-availability__icon {
    font-size: 1rem;
}

/* Flatpickr Calendar Styling - Remove all blue colors */
.flatpickr-calendar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Override ALL possible blue colors - use gold/brown instead */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.startRange,
.flatpickr-day.selected.endRange,
.flatpickr-day.today.selected,
.flatpickr-day.today.startRange,
.flatpickr-day.today.endRange,
.flatpickr-day[class*="selected"],
.flatpickr-day[class*="range"] {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--white) !important;
    box-shadow: none !important;
}

.flatpickr-day.inRange {
    background: rgba(201, 169, 97, 0.2) !important;
    border-color: rgba(201, 169, 97, 0.2) !important;
    color: var(--text-dark) !important;
    box-shadow: none !important;
}

.flatpickr-day:hover {
    background: rgba(201, 169, 97, 0.3) !important;
    border-color: rgba(201, 169, 97, 0.3) !important;
}

/* Remove any blue from today indicator */
.flatpickr-day.today {
    border-color: var(--primary-color) !important;
}

.flatpickr-day.today:hover {
    background: rgba(201, 169, 97, 0.3) !important;
    border-color: var(--primary-color) !important;
}

/* Override Flatpickr default blue theme completely */
.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
    border-bottom-color: rgba(255, 255, 255, 0.95) !important;
}

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
    border-top-color: rgba(255, 255, 255, 0.95) !important;
}

/* Remove any blue color from all Flatpickr elements */
.flatpickr-day[style*="blue"],
.flatpickr-day[style*="rgb(66"],
.flatpickr-day[style*="rgb(74"],
.flatpickr-day[style*="#4285"],
.flatpickr-day[style*="#4a90"] {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--white) !important;
}

/* Force override any inline styles */
.flatpickr-day.selected[style],
.flatpickr-day.startRange[style],
.flatpickr-day.endRange[style] {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--white) !important;
}

/* Month navigation arrows */
.flatpickr-prev-month,
.flatpickr-next-month {
    color: var(--text-dark) !important;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
    color: var(--primary-color) !important;
}

/* Current month/year display */
.flatpickr-current-month {
    color: var(--text-dark) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    color: var(--text-dark) !important;
}

/* ============================================
   SECTIONS
   ============================================ */

 

.section-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.section-title .highlight {
    color: var(--primary-color);
}

.section-text {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Section photo blocks (Dining, Fitness, Location) – shadow on container */
/* Section with photo: more vertical padding */
.section-with-photo {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

@media (min-width: 992px) {
    .section-with-photo {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }
}

.section-photo {
    border-radius: 0.375rem;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12), 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow var(--transition);
    min-height: 280px;
}

@media (min-width: 768px) {
    .section-photo {
        min-height: 340px;
    }
}

@media (min-width: 992px) {
    .section-photo {
        min-height: 400px;
    }
}

.section-photo:hover {
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.14), 0 8px 24px rgba(0, 0, 0, 0.1);
}

.section-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 280px;
}

@media (min-width: 768px) {
    .section-photo img {
        min-height: 340px;
    }
}

@media (min-width: 992px) {
    .section-photo img {
        min-height: 400px;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    margin-top: 50px;
    padding-top: 0;
    margin-bottom: 60px;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: box-shadow var(--transition);
}

.about-image-wrapper:hover img {
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.14), 0 12px 28px rgba(0, 0, 0, 0.08);
}

.experience-badge {
    position: absolute;
    bottom: -32px;
    right: -32px;
    z-index: 2;
    min-width: 120px;
    padding: 1.5rem 1.75rem;
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(145deg, #c9ad7a 0%, var(--primary-color) 40%, #b8945a 100%);
    color: var(--white);
    box-shadow: 0 12px 40px rgba(193, 160, 103, 0.4), 0 4px 16px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform var(--transition), box-shadow var(--transition);
}

.experience-badge:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 48px rgba(193, 160, 103, 0.45), 0 6px 20px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.badge-text {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    opacity: 0.95;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.service-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.service-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   ROOMS SECTION
   ============================================ */

.room-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--primary-color);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.room-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

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

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

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-100%);
    transition: var(--transition);
}

.room-card:hover .room-overlay {
    opacity: 1;
    transform: translateX(0);
}

.room-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.room-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.room-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.room-features i {
    color: var(--primary-color);
}

.room-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.room-price .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.room-price .price-unit {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* ============================================
   DINING SECTION
   ============================================ */

.dining-section {
    background: #fff;
    color: #000;
}

.dining-section .section-title {
    color: var(--text-dark);
}
.dining-section .section-title .highlight {
    color: var(--primary-color);
}
.dining-section .section-label {
    color: var(--text-muted);
}
.dining-section .section-text {
    color: var(--text-dark);
}

.dining-features {
    margin-top: 2rem;
}

.dining-feature {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.dining-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.dining-feature h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.dining-image-wrapper img {
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ============================================
   SPA SECTION
   ============================================ */

.spa-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--primary-color);
    transition: var(--transition);
    height: 100%;
}

.spa-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.spa-image {
    height: 250px;
    overflow: hidden;
}

.spa-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.spa-content {
    padding: 2rem;
}

.spa-content h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.spa-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.spa-duration {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* ============================================
   EXPERIENCES SECTION
   ============================================ */

.experience-card {
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 10px;
    transition: var(--transition);
    height: 100%;
    border: 2px solid var(--primary-color);
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.experience-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--white);
}

.experience-card h5 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.experience-card p {
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--primary-color);
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

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

.gallery-overlay i {
    font-size: 3rem;
    color: var(--white);
}

/* Gallery Lightbox */
.gallery-lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
}

.gallery-lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-modal .lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.gallery-lightbox-modal .lightbox-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 10000;
}

.gallery-lightbox-modal .lightbox-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-modal .lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
}

.gallery-lightbox-modal .lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
    transition: var(--transition);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.gallery-lightbox-modal .lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.gallery-lightbox-modal .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
}

.gallery-lightbox-modal .lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.gallery-lightbox-modal .lightbox-prev {
    left: -70px;
}

.gallery-lightbox-modal .lightbox-next {
    right: -70px;
}

.gallery-lightbox-modal .lightbox-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .gallery-lightbox-modal .lightbox-prev {
        left: 10px;
    }
    
    .gallery-lightbox-modal .lightbox-next {
        right: 10px;
    }
    
    .gallery-lightbox-modal .lightbox-close {
        top: 10px;
        right: 10px;
    }
    
    .gallery-lightbox-modal .lightbox-counter {
        bottom: 10px;
    }
}

/* ============================================
   BOOKING SECTION
   ============================================ */

.booking-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.booking-form-card {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: #1a1a1a;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

.footer-contact li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-contact i {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.3);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .booking-widget {
        position: relative;
        bottom: 0;
        margin-top: 2rem;
        padding: 0;
        transform: none;
    }
    
    .hero-section {
        height: 100vh;
        padding-bottom: 0;
    }
    
    .about-section {
        margin-top: 50px;
        padding-top: 4rem;
    }
    
    .experience-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 2rem;
    }
    
    /* Mobile: logo dhe hamburger qëndrojnë në pozicion, menuja hapet poshtë */
    #mainNav.navbar {
        align-items: flex-start;
        padding-top: 12px;
        padding-bottom: 0;
    }
    #mainNav .container {
        align-items: flex-start;
        flex-wrap: wrap;
        min-height: 80px;
    }
    #mainNav .navbar-brand,
    #mainNav .navbar-toggler {
        flex-shrink: 0;
    }
    #mainNav .navbar-collapse {
        flex-basis: 100%;
        order: 3;
        margin-top: 0;
        padding-top: 12px;
        padding-bottom: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }
    #mainNav .navbar-collapse.show {
        margin-top: 0;
    }
    
    .navbar-nav {
        padding-top: 1rem;
        padding-bottom: 1rem;
        text-align: center;
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        border-radius: 8px;
        margin: 0.25rem 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding-bottom: 2rem;
        align-items: flex-start;
        padding-top: 100px;
    }
    
    .hero-section .container {
        padding-top: 0;
    }
    
    .hero-section .row {
        min-height: auto;
    }
    
    .booking-card {
        padding: 1.5rem;
        margin: 0;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-section .container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
    }
    
    .booking-widget {
        padding: 0;
        transform: none;
        position: relative;
        bottom: 0;
        margin-top: 2rem;
    }
    
    .navbar-nav .btn-book {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-section {
        padding-top: 80px;
        padding-bottom: 1.5rem;
    }
    
    .brand-name {
        font-size: 1.35rem;
        letter-spacing: 2px;
    }
    
    .brand-name::after {
        display: none;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.9rem;
        padding: 0.625rem 0.875rem !important;
    }
    
    .room-features {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   ROOM DETAILS PAGE
   ============================================ */

.room-details-hero {
    padding: 3rem 0 2rem;
    background: var(--bg-light);
}

.room-breadcrumb {
    margin-bottom: 2rem;
}

.room-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.room-breadcrumb .breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.room-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.room-breadcrumb .breadcrumb-item.active {
    color: var(--text-dark);
}

.room-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--text-light);
    padding: 0 0.5rem;
}

.room-header {
    margin-bottom: 3rem;
}

.room-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.room-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.room-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.room-rating i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.rating-text {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

.room-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.meta-item i {
    color: var(--primary-color);
}

.room-price-box {
    text-align: right;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.price-period {
    font-size: 1.25rem;
    color: var(--text-light);
}

.price-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Mobile: price in top-right next to badge; desktop unchanged */
.room-price-box-mobile {
    display: none;
}
@media (max-width: 991px) {
    .room-header-top-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 1rem;
    }
    .room-price-box-mobile {
        display: block;
        text-align: right;
        flex-shrink: 0;
    }
    .room-price-box-mobile .price-main {
        justify-content: flex-end;
    }
    .room-price-box-mobile .price-amount {
        font-size: 2rem;
    }
    .room-header .col-lg-4 .room-price-box {
        display: none;
    }
}

/* Room Gallery */
.room-gallery-section {
    background: var(--white);
}

.room-main-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 500px;
    cursor: pointer;
}

.room-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.room-main-image-wrapper:hover .room-main-image {
    transform: scale(1.05);
}

.gallery-fullscreen-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.gallery-fullscreen-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.room-thumbnails-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    height: 500px;
}

.thumbnail-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
    height: calc((500px - 3rem) / 4);
}

.thumbnail-item:hover,
.thumbnail-item.active {
    opacity: 1;
    transform: scale(1.02);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.lightbox-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 10000;
}

.lightbox-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
    transition: var(--transition);
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1rem;
}

/* Room Details Content */
.room-details-content-section {
    background: var(--white);
}

.room-description-text {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.section-subtitle {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--primary-color);
    transition: var(--transition);
}

.amenity-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
}

.amenity-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.amenity-item:hover i {
    color: var(--white);
}

.amenity-item span {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.amenity-item:hover span {
    color: var(--white);
}

.room-features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Room Sidebar */
.room-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--primary-color);
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

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

.sidebar-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-light);
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list li i {
    color: var(--primary-color);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.sidebar-list li strong {
    color: var(--text-dark);
    margin-left: auto;
}

/* Booking Form Section */
.booking-form-section {
    background: var(--bg-light);
}

.booking-card-expanded {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--primary-color);
    position: relative;
}

.booking-card-expanded .btn-availability-check,
.booking-card-expanded .btn-primary {
    background: #c1a067 !important;
    border-color: #c1a067 !important;
    color: #fff !important;
}

.booking-card-expanded .btn-availability-check:hover,
.booking-card-expanded .btn-primary:hover {
    background: #be9e5c !important;
    border-color: #be9e5c !important;
    color: #fff !important;
}

.booking-card-expanded .btn-availability-check {
    white-space: nowrap;
    min-width: 12rem;
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-light);
}

.booking-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.booking-subtitle {
    color: var(--text-light);
    margin: 0.5rem 0 0 0;
}

.btn-close-booking {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: 50%;
}

.btn-close-booking:hover {
    background: var(--bg-light);
    color: var(--text-dark);
    transform: rotate(90deg);
}

.booking-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid var(--bg-light);
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.feature-badge i {
    color: var(--primary-color);
}

.total-price-box {
    background: linear-gradient(135deg, rgba(166, 137, 95, 0.1) 0%, rgba(190, 158, 120, 0.1) 100%);
    border: 2px solid var(--primary-color) !important;
    transition: var(--transition);
}

.total-price-box:hover {
    box-shadow: 0 5px 20px rgba(166, 137, 95, 0.2);
    transform: translateY(-2px);
}

.total-price-box .h4 {
    color: var(--primary-color);
    font-weight: 700;
}

.total-price-box .text-muted {
    color: var(--text-light) !important;
}

/* Related Rooms */
.related-rooms-section {
    background: var(--white);
}

/* Checkout & Payment Styles */
.checkout-section,
.payment-section,
.payment-success-section {
    background: var(--bg-light);
    min-height: calc(100vh - 80px);
}

.checkout-summary-card,
.payment-summary-card,
.payment-security-card,
.checkout-form-card,
.payment-form-card,
.success-card,
.booking-details-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.summary-item {
    padding-bottom: 1rem;
}

.summary-price {
    padding-top: 1rem;
}

.payment-method-option {
    border: 2px solid var(--bg-light);
    border-radius: 10px;
    padding: 1rem;
    transition: var(--transition);
    cursor: pointer;
}

.payment-method-option:hover {
    border-color: var(--primary-color);
    background: rgba(166, 137, 95, 0.05);
}

.payment-method-option input[type="radio"]:checked + label {
    color: var(--primary-color);
}

.payment-method-option input[type="radio"]:checked ~ .payment-method-option {
    border-color: var(--primary-color);
}

.payment-details {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.payment-icons {
    color: var(--text-light);
    font-size: 0.875rem;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.success-icon {
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.next-steps ul li {
    padding: 0.5rem 0;
}

.action-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 768px) {
    .checkout-summary-card,
    .payment-summary-card,
    .checkout-form-card,
    .payment-form-card {
        padding: 1.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons .btn {
        width: 100%;
    }
}

/* Enhanced Checkout Form Validation States */
.form-control-modern.is-valid {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    padding-right: calc(1.5em + 0.75rem);
}

.form-control-modern.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 3.6.2.2.2-.2m0 4.8-.2-.2-.2.2'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    padding-right: calc(1.5em + 0.75rem);
}

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

/* Form Animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-section {
    animation: slideInUp 0.4s ease-out;
}

.form-section:nth-child(1) { animation-delay: 0.1s; }
.form-section:nth-child(2) { animation-delay: 0.2s; }
.form-section:nth-child(3) { animation-delay: 0.3s; }
.form-section:nth-child(4) { animation-delay: 0.4s; }
.form-section:nth-child(5) { animation-delay: 0.5s; }

/* Summary Card Animation */
.checkout-summary-card {
    animation: slideInUp 0.5s ease-out;
}

/* Loading State */
.btn-submit-modern.loading {
    pointer-events: none;
}

.btn-submit-modern.loading .btn-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Accessibility Improvements */
.form-control-modern:focus-visible,
.form-select-modern:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.form-check-input-modern:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .checkout-progress,
    .btn-submit-modern,
    .trust-indicators {
        display: none;
    }
    
    .checkout-summary-card,
    .checkout-form-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Responsive Design for Room Details */
@media (max-width: 992px) {
    .room-title {
        font-size: 2.5rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .room-main-image-wrapper,
    .room-thumbnails-grid {
        height: 400px;
    }
    
    .thumbnail-item {
        height: calc((400px - 3rem) / 4);
    }
    
    .room-sidebar {
        position: relative;
        top: 0;
        margin-top: 3rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 768px) {
    .room-title {
        font-size: 2rem;
    }
    
    .room-main-image-wrapper,
    .room-thumbnails-grid {
        height: 300px;
    }
    
    .thumbnail-item {
        height: calc((300px - 3rem) / 4);
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .room-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .booking-card-expanded {
        padding: 2rem 1.5rem;
    }
    
    .booking-header {
        flex-direction: column;
    }
    
    .btn-close-booking {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
}

/* ============================================
   COOKIE BANNER
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    border-top: 2px solid var(--primary-color);
}

.cookie-banner.show {
    transform: translateY(0);
    display: block !important;
}

.cookie-banner-content {
    color: var(--white);
}

.cookie-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.cookie-banner-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cookie-banner-link {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition);
}

.cookie-banner-link:hover {
    color: var(--accent-color);
}

.cookie-banner-actions .btn {
    min-width: 120px;
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    transition: var(--transition);
}

.cookie-banner-actions .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.cookie-banner-actions .btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.4);
}

.cookie-banner-actions .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.cookie-banner-actions .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    color: var(--white);
}

/* Adjust body padding when cookie banner is visible */
body.cookie-banner-visible {
    padding-bottom: 120px;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.25rem 0;
    }
    
    .cookie-banner-title {
        font-size: 1rem;
    }
    
    .cookie-banner-text {
        font-size: 0.85rem;
    }
    
    .cookie-banner-actions {
        width: 100%;
    }
    
    .cookie-banner-actions .btn {
        width: 100%;
        min-width: auto;
    }
    
    body.cookie-banner-visible {
        padding-bottom: 140px;
    }
}

/* ============================================
   BOOKING SEARCH RESULTS
   ============================================ */

.booking-results-section {
    background: var(--bg-light);
}

.booking-results-section .section-title {
    margin-bottom: 0;
}

#searchCriteria {
    font-size: 0.95rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#searchCriteria strong {
    color: var(--primary-color);
    margin-right: 0.25rem;
}

#noResults {
    padding: 4rem 2rem;
}

#noResults i {
    opacity: 0.3;
}

#noResults h3 {
    color: var(--text-dark);
    margin-top: 1rem;
}

#searchLoading {
    padding: 4rem 2rem;
}

#searchLoading .spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3rem;
}

#closeSearchResults {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .booking-results-section .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem;
    }
    
    #closeSearchResults {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   RESPONSIVE – MOBILE (all devices)
   Buttons full width, professional top/bottom spacing
   ============================================ */
@media (max-width: 767px) {
    /* Navbar: keep toggler and nav buttons auto width */
    .navbar .btn,
    .navbar-toggler {
        width: auto;
        min-height: 44px;
    }
    /* Content area buttons: full width, professional vertical spacing */
    main .btn,
    section .btn,
    .container > .row .btn,
    .container .btn:not(.navbar .btn),
    .booking-card .btn-primary,
    .booking-card .btn-availability,
    .room-detail-section__actions .btn,
    .about-cta-wrap .btn,
    .hero-section .btn,
    .price-card__link.btn {
        width: 100%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
        min-height: 44px;
        padding: 0.75rem 1.25rem;
    }
    .btn-group .btn,
    .about-cta-wrap .btn {
        width: 100%;
    }
    /* Gap between stacked buttons (e.g. two CTAs) */
    .about-cta-wrap .btn + .btn,
    .room-detail-section__actions .btn + .btn,
    .d-flex.gap-2 .btn + .btn {
        margin-top: 0.75rem;
    }
    /* Booking card buttons: keep spacing without double margin */
    .booking-card .btn-primary,
    .booking-card .btn-availability {
        margin-top: 0.75rem;
        margin-bottom: 0;
    }
    .booking-card .btn-availability {
        margin-bottom: 0.5rem;
    }
    /* Rooms page: price card buttons 100% width, stacked vertically */
    .price-card__actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    .price-card__btn,
    .price-card__link {
        width: 100%;
        flex: 0 0 auto;
        min-width: 100%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
    }
}


