:root {
    --primary-color: #1f2937;
    --secondary-color: #d94f70;
    --accent-color: #7d2248;
    --light-color: #fffffe;
    --gray-light: #f5f5f5;
    --gray-medium: #4a4a4a;
    --gray-dark: #1a1a1a;
    --text-light: #BFD1FF;
    --button-green: #28a745;
    --transition: all 0.3s ease;
    --border-radius: 32px;
    --shadow: 0 15px 35px rgba(0,0,0,0.1);
    --shadow-hover: 0 25px 50px rgba(249, 173, 74, 0.2);
}

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

body {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-dark);
    background: var(--light-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Skip to content */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1001;
    transition: var(--transition);
}

.skip-to-content:focus {
    top: 6px;
}

/* Typography */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.1111rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Header */
header {
    background: white;
    color: var(--gray-dark);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    max-width: 200px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--gray-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
    width: 100%;
}

/* Green reservation button in navigation */
.nav-reserve {
    background: var(--button-green) !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: var(--border-radius) !important;
    font-weight: 600 !important;
    transition: var(--transition) !important;
}

.nav-reserve:hover,
.nav-reserve:focus {
    background: #218838 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.nav-reserve::after {
    display: none !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    transition: var(--transition);
    border-radius: 8px;
}

.hamburger:hover {
    background: var(--gray-light);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gray-dark);
    transition: var(--transition);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://induapartamenty.pl/wp-content/uploads/2025/10/LUB00715-HDR.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    margin-top: 80px;
    position: relative;
    overflow: visible;
    z-index: 5;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 18, 28, 0.58) 0%,
        rgba(10, 18, 28, 0.50) 38%,
        rgba(10, 18, 28, 0.62) 100%
    );
    z-index: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 1rem;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.hero-content h1 {
    color: var(--light-color);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 500;
    margin-bottom: 3rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 6px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.hero-tagline {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
    animation: fadeInUp 1s ease 0.4s both;
    background: rgba(206, 61, 95, 0.9);
    border-radius: 999px;
    padding: 0.4rem 1rem;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    animation: fadeInUp 1s ease 0.6s both;
    background: rgba(5, 10, 16, 0.54);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    padding: 0.9rem 1rem;
}

.hero-description strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.iai-search {
    margin: 2rem 0;
    padding: 0 1rem;
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 50;
    overflow: visible;
}

#iai_booking_data1,
#iai_booking_data2,
#iaicalendar {
    z-index: 9999 !important;
}

.trust-strip {
    position: relative;
    z-index: 1;
}

/* Trust Strip */
.trust-strip {
    background: #fff;
    padding: 22px 0;
    border-bottom: 1px solid #eceff5;
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.7rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    background: #f8f9fd;
    border: 1px solid #e5e9f2;
    border-radius: 12px;
    padding: 0.55rem 0.72rem;
    color: var(--gray-medium);
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-item i {
    color: var(--accent-color);
}

/* Section Styling */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    margin: 2rem auto;
    max-width: 200px;
}

/* About Section */
.about {
    background: white;
}

.about-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.about-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--gray-medium);
    font-weight: 300;
    margin-bottom: 3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-medium);
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text ul {
    color: var(--gray-medium);
    line-height: 1.8;
}

.about-text ul li {
    margin-bottom: 0.5rem;
}

.cta-text {
    position: relative;
    text-align: center;
    max-width: 620px;
    margin: 2.2rem auto 0;
    padding: 1.1rem 1.4rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(217, 79, 112, 0.14), rgba(125, 34, 72, 0.16));
    border: 1px solid rgba(125, 34, 72, 0.28);
    box-shadow: 0 10px 24px rgba(125, 34, 72, 0.16);
    font-size: 1.15rem;
    color: var(--primary-color);
    overflow: hidden;
}

.cta-text::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transform: translateX(-115%);
    transition: transform 0.9s ease;
    pointer-events: none;
}

.cta-text:hover::before {
    transform: translateX(115%);
}

.cta-text strong {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--accent-color);
    font-weight: 800;
}

.cta-text strong::before {
    content: "\f5ca";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--secondary-color);
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.01);
}

/* Optional module: Lobby Bar */
.lobby-breakfast {
    background: linear-gradient(180deg, #eef8f4 0%, #e3f2ec 100%);
    padding-top: 78px;
}

.lobby-breakfast-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 2rem;
    align-items: stretch;
}

.lobby-breakfast-media img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
}

.lobby-breakfast-content {
    background: #fcfefe;
    border: 1px solid #cbe5db;
    border-radius: 24px;
    padding: 1.8rem;
    box-shadow: 0 14px 34px rgba(33, 96, 79, 0.14);
}

.lobby-label {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(45, 126, 101, 0.14);
    color: #205a49;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.lobby-breakfast-content p {
    color: var(--gray-medium);
    margin-bottom: 1rem;
}

.lobby-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 1.1rem 0 1.5rem;
}

.lobby-points span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.72rem;
    border: 1px solid #cbe5db;
    border-radius: 999px;
    background: #edf8f3;
    color: var(--gray-dark);
    font-size: 0.88rem;
    font-weight: 600;
}

.lobby-points i {
    color: #2d7e65;
}

.lobby-cta {
    margin-top: 0.35rem;
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    text-align: center;
    color: var(--light-color);
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Privacy Policy */
.privacy-policy {
    padding: 80px 0;
    background: var(--light-color);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-intro {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    border-left: 4px solid var(--secondary-color);
}

.policy-intro p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    margin: 0;
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-light);
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
}

.policy-section p {
    margin-bottom: 1rem;
    color: var(--gray-medium);
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    color: var(--gray-medium);
}

.policy-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

.policy-section a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.policy-section a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Privacy Note */
.privacy-note {
    margin: 2rem auto 0;
    padding: 1.5rem;
    width: 100%;
    max-width: 600px;
}

.privacy-note p {
    margin: 0;
    color: white;
}

.privacy-note a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.privacy-note a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

/* Features Section */
.features {
    background: var(--gray-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* Amenities Highlight */
.amenities-highlight {
    background: #fff7f9;
}

.amenities-score {
    text-align: center;
    margin: -1rem 0 2rem;
    color: var(--primary-color);
    font-size: 1.05rem;
}

.amenities-icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.8rem;
}

.amenity-chip {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: white;
    border: 1px solid #f2d3dc;
    border-radius: 14px;
    padding: 0.8rem 0.95rem;
    box-shadow: 0 4px 14px rgba(125, 34, 72, 0.08);
}

.amenity-chip i {
    color: var(--accent-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.amenity-chip span {
    color: var(--gray-dark);
    font-size: 0.95rem;
    font-weight: 600;
}

.amenities-cta {
    text-align: center;
    margin-top: 2.2rem;
}

/* Apartments Page */
.apartments-page {
    background: #fff;
}

.apartments-lead {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.apartments-lead h2 {
    text-shadow: 5px 5px 10px gray;
    color: black;
    padding: 10px;
    margin-bottom: 0.75rem;
}

.ev-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin: 0 auto 2rem;
    padding: 0.9rem 1.1rem;
    max-width: 900px;
    border-radius: 14px;
    background: #f5f8ff;
    border: 1px solid #d6e1ff;
    color: var(--primary-color);
}

.ev-note i {
    color: #2c5eff;
    font-size: 1.3rem;
}

.apartments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.2rem;
}

.apartment-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.apartment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.apartment-card a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.apartment-image {
    position: relative;
    height: 220px;
}

.apartment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apartment-count {
    position: absolute;
    left: 12px;
    top: 12px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 10px;
    padding: 0.35rem 0.6rem;
    font-size: 0.85rem;
    font-weight: 700;
}

.apartment-body {
    padding: 1rem 1rem 1.1rem;
}

.apartment-body h3 {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    color: var(--primary-color);
}

.apartment-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 0.9rem;
}

.apartment-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.88rem;
    color: var(--gray-medium);
    background: #f5f6fa;
    border-radius: 99px;
    padding: 0.26rem 0.58rem;
}

.apartment-meta i {
    color: var(--accent-color);
}

.apartment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 115px;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    font-weight: 700;
    color: #fff;
    background: var(--secondary-color);
    transition: var(--transition);
}

.apartment-card:hover .apartment-btn {
    background: #c93f63;
}

/* Apartment Single Pages */
.apartment-single {
    background: #fff;
    padding: 40px 0 80px;
}

.apartment-nav-links {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.4rem;
    flex-wrap: wrap;
}

.apartment-nav-links a {
    color: var(--accent-color);
    font-weight: 700;
    text-decoration: none;
}

.apartment-nav-links a:hover,
.apartment-nav-links a:focus {
    color: var(--secondary-color);
}

.apartment-single-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 1.4rem;
    align-items: stretch;
}

.apartment-single-image {
    border-radius: 18px;
    overflow: hidden;
    min-height: 320px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.apartment-single-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.apartment-single-content {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef1f6;
    padding: 1.25rem 1.25rem 1.4rem;
}

.apartment-single-content h2 {
    margin-bottom: 0.7rem;
    color: var(--primary-color);
}

.apartment-single-note {
    margin: 0.8rem 0 0;
    color: var(--gray-medium);
}

.apartment-single-actions {
    margin-top: 1.1rem;
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.apartment-single-actions .btn-outline {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    background: #fff;
}

.apartment-single-actions .btn-outline:hover,
.apartment-single-actions .btn-outline:focus {
    background: #fdf2f6;
}

.apartment-highlights {
    margin-top: 1rem;
    border-top: 1px solid #edf0f5;
    padding-top: 1rem;
}

.apartment-highlights h3 {
    margin-bottom: 0.7rem;
    color: var(--primary-color);
    font-size: 1.05rem;
}

.apartment-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 0.6rem;
}

.apartment-highlight-card {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.7rem;
    border-radius: 12px;
    background: #f7f8fc;
    color: var(--gray-medium);
    font-size: 0.92rem;
}

.apartment-highlight-card i {
    color: var(--accent-color);
    width: 17.6px;
    text-align: center;
}

/* Reservation Section */
.reservation {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: white;
    text-align: center;
}

.reservation .section-title {
    color: white;
}

.reservation-widget {
    background: rgba(255, 255, 255, 0.95);
    color: var(--gray-dark);
    padding: 3rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.reservation-widget iframe {
    border: none;
    max-width: 100%;
    width: 100%;
    min-height: 120px;
    border-radius: 20px;
}

/* Location Section */
.location {
    background: white;
}

.location-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.location-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-medium);
    margin-bottom: 3rem;
}

.location-address {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    font-weight: 500;
    color: var(--primary-color);
    font-style: normal;
}

.map-container {
    margin-top: 3rem;
}

.map-container iframe {
    width: 100%;
    max-width: 1000px;
    height: 500px;
    border: 0;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Gallery Section */
.gallery {
    background: var(--gray-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    height: 280px;
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

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

/* Contact Section */
.contact {
    background: var(--primary-color);
    color: white;
}

.contact .section-title {
    color: white;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.contact-item {
    padding: 2rem;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-item p,
.contact-item address {
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: normal;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover,
.contact-item a:focus {
    color: var(--secondary-color);
}

/* Contact Page */
.contact-page {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info-section h2,
.map-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--gray-light);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item address {
    font-style: normal;
    line-height: 1.6;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-item a:hover,
.contact-item a:focus {
    color: var(--secondary-color);
}

.hours-info {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.hours-info p {
    margin-bottom: 0.5rem;
}

.emergency-info {
    color: var(--accent-color);
    font-size: 0.9rem;
    background: #fff3cd;
    padding: 0.75rem;
    border-radius: 6px;
    border-left: 3px solid #ffc107;
    margin-top: 1rem;
}

.map-section p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Info clause section */
.info-clause-section {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--secondary-color);
    text-align: center;
    margin-top: 2rem;
}

.info-clause-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-clause-section p {
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
    line-height: 1.6;
}

.info-clause-button {
    margin-top: 1.5rem;
}

.info-clause-button .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    background: var(--secondary-color);
    color: white;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.info-clause-button .btn:hover,
.info-clause-button .btn:focus {
    background: #e89a3a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: var(--gray-light);
    padding: 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column address {
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-column p {
    margin-bottom: 0.5rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column a:hover,
.footer-column a:focus {
    color: var(--secondary-color);
    transform: translateX(2px);
}

.footer-column a[href^="tel:"] {
    font-weight: 500;
}

.footer-column a[href^="mailto:"] {
    font-weight: 500;
}

.footer-part-of {
    text-align: center;
    padding: 1.2rem 0 1.4rem;
    border-top: 1px solid #333;
}

.footer-part-of p {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 0.2px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.2rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-signature {
    margin-top: 0.45rem;
    font-size: 1rem;
    color: #ffffff;
}

.footer-link {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover,
.footer-link:focus {
    color: var(--light-color);
}

/* Buttons */
.btn {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #e09935;
    transform: translateY(-2px);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 5%;
    right: 5%;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.floating-btn {
    background: var(--button-green);
    color: white;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.floating-btn--call {
    background: #007bff !important;
    display: flex !important;
}

.floating-btn--call:hover,
.floating-btn--call:focus {
    background: #0056b3;
    transform: translateY(-2px);
    opacity: 1;
}

.floating-btn--reserve {
    background: var(--button-green);
}

.floating-btn--reserve:hover,
.floating-btn--reserve:focus {
    background: #218838;
    transform: translateY(-2px);
    opacity: 1;
}

.btn-icon {
    font-size: 18px;
}

.btn-text {
    font-size: 16px;
}

/* Utility Classes */
.highlight {
    color: var(--secondary-color);
    font-weight: 600;
}

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

.mb-large {
    margin-bottom: 4rem;
}

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Keyboard navigation styles */
.keyboard-navigation a:focus,
.keyboard-navigation button:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Responsive Design */
@media (min-width: 769px) {
    .floating-btn--call {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem 0;
        box-shadow: var(--shadow);
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 2rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        background-attachment: scroll;
        height: auto;
        min-height: calc(100svh - 80px);
        padding: 110px 0 56px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text p {
        margin-bottom: 1rem;
    }

    .lobby-breakfast-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .lobby-breakfast-media img {
        min-height: 220px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .apartment-single-grid {
        grid-template-columns: 1fr;
    }
    
    .reservation-widget {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reservation-widget iframe {
        min-height: 100px;
    }
    
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        left: auto;
        width: auto;
        flex-direction: column;
        gap: 10px;
        display: flex !important;
    }

    .floating-btn {
        text-align: center;
        font-size: 12px;
        padding: 12px 20px;
        justify-content: center;
        min-width: 0;
        width: auto;
        max-width: none;
    }

    .floating-btn--call {
        display: flex !important;
        background: #007bff !important;
        order: 2;
    }

    .floating-btn--reserve {
        display: flex !important;
        background: var(--button-green) !important;
        order: 1;
    }

    .btn-text {
        font-size: 12px;
        white-space: nowrap;
    }

    .btn-icon {
        font-size: 14px;
    }

    /* Back to top - above floating buttons on mobile */
    .back-to-top {
        bottom: 145px !important;
        right: 15px !important;
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
        z-index: 1001;
    }

    .hero-content {
        margin: 0 1.5rem;
        width: 100%;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
        line-height: 1.12;
        margin-bottom: 0.8rem;
        word-break: break-word;
    }
    
    .iai-search {
        margin: 1.5rem 0;
        padding: 0 0.5rem;
    }

    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        margin: 0 1rem;
    }

    .hero-content h1 {
        font-size: clamp(1.85rem, 8.8vw, 2.4rem);
        line-height: 1.1;
    }
    
    .iai-search {
        margin: 1rem 0;
        padding: 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }

    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .feature-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000;
        --secondary-color: #ff6600;
        --gray-medium: #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .hero {
        background-attachment: scroll;
    }
}

/* Print styles */
@media print {
    .floating-btn,
    .hamburger,
    .nav-links {
        display: none !important;
    }
    
    .hero {
        height: auto;
        background: none;
        color: black;
    }
    
    .hero-content {
        color: black;
    }
    
    .reservation-widget iframe {
        display: none;
    }
}

/* Removed loading spinner - images load directly */
/* ===== UX ENHANCEMENTS ===== */

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Feature Card Hover Effects */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card .feature-icon {
    transition: transform 0.3s ease, color 0.3s ease;
    color: var(--accent-color);
}

.feature-card:hover .feature-icon {
    transform: scale(1.2);
    color: var(--secondary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    background: none;
    border: none;
}

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

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    cursor: pointer;
    padding: 20px;
    transition: color 0.3s ease;
    background: none;
    border: none;
}

.lightbox-nav:hover {
    color: var(--secondary-color);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Gallery item hover */
.gallery-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    transition: transform 0.5s ease;
}

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

/* Pool gallery items */
.gallery-item--pool {
    position: relative;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 8px 30px rgba(249, 173, 74, 0.3);
}

.gallery-item--pool::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 173, 74, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.gallery-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gallery-badge i {
    font-size: 0.9rem;
}

/* ===== AWARD BANNER ===== */
.award-banner {
    background: linear-gradient(135deg, #1a365d 0%, #2d4a77 50%, #1a365d 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.award-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.award-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.award-banner-img {
    width: 350px;
    height: auto;
    filter: drop-shadow(0 12px 35px rgba(0, 0, 0, 0.5));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.award-banner-text {
    color: white;
    text-align: left;
}

.award-banner-text h2 {
    color: #f9ad4a;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.award-banner-text p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: white;
}

.award-banner-desc {
    font-size: 0.95rem;
    opacity: 0.85;
    display: block;
}

@media (max-width: 768px) {
    .award-banner {
        padding: 2rem 0;
    }

    .award-banner-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .award-banner-img {
        width: 250px;
    }

    .award-banner-text {
        text-align: center;
    }
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    padding: 5rem 0;
    background: var(--gray-light);
}

.reviews-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.reviews-title-wrap {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.booking-award {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.reviews-score {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.reviews-score-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.reviews-score-text {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.reviews-score-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.booking-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #003580, #0057b8);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 53, 128, 0.3);
}

.booking-badge i {
    font-size: 1.2rem;
    color: #4caf50;
}

.reviews-proof {
    margin-top: 0.8rem;
    color: var(--gray-medium);
    font-size: 0.92rem;
}

.demand-note {
    margin-top: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #7d2248;
    background: #fff3f7;
    border: 1px solid #f1c7d7;
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
}

.reviews-categories-panel {
    background: #fff;
    border: 1px solid #dde6f3;
    border-radius: 14px;
    padding: 1rem;
    margin-bottom: 1.8rem;
    box-shadow: 0 6px 20px rgba(0, 53, 128, 0.08);
}

.reviews-categories-title {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-size: 1.05rem;
}

.reviews-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 0.8rem;
}

.review-subscore {
    border: 1px solid #e8edf5;
    background: #f8fbff;
    border-radius: 12px;
    padding: 0.65rem 0.75rem;
}

.review-subscore-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.6rem;
    margin-bottom: 0.45rem;
}

.review-subscore-name {
    color: var(--gray-medium);
    font-size: 0.9rem;
    font-weight: 600;
}

.review-subscore-value {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 800;
}

.review-subscore-meter {
    height: 11px;
    border-radius: 999px;
    background: #e1e9f7;
    overflow: hidden;
}

.review-subscore-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #0057b8 0%, #0a7bff 100%);
    border-radius: 999px;
}

.review-subscore.is-top {
    background: #f2f8ff;
    border-color: #bcd4ff;
}

.review-subscore.is-top .review-subscore-value {
    color: #0047a4;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    font-size: 1.1rem;
}

.review-name {
    font-weight: 600;
    color: var(--primary-color);
}

.review-meta {
    font-size: 0.8rem;
    color: var(--gray-medium);
}

.review-score {
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
}

.review-score.excellent {
    background: #1f7a1f;
}

.review-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.review-text {
    color: var(--gray-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.review-type {
    display: inline-block;
    background: var(--gray-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--gray-medium);
    margin-top: 1rem;
}

/* Reviews responsive */
@media (max-width: 768px) {
    .reviews-header {
        flex-direction: column;
        text-align: center;
    }
    
    .reviews-title-wrap {
        flex-direction: column;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-award {
        width: 150px;
    }
}

/* Language switcher */
.nav-lang {
    position: relative;
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid #d9d9d9;
    color: var(--gray-dark);
    border-radius: 999px;
    padding: 0.33rem 0.61rem;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.lang-toggle:hover,
.lang-toggle:focus {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.lang-caret {
    width: 0;
    height: 0;
    border-left: 4.4px solid transparent;
    border-right: 4.4px solid transparent;
    border-top: 5.5px solid currentColor;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 88px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    padding: 0.35rem;
    display: none;
    z-index: 1200;
}

.nav-lang.is-open .lang-dropdown {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--gray-dark);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: 8px;
    padding: 0.35rem 0.45rem;
}

.lang-option:hover,
.lang-option:focus {
    background: var(--gray-light);
    color: var(--secondary-color);
}

.lang-flag {
    width: 17.6px;
    height: 13.2px;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: inset 0 0 0 0.5px rgba(255, 255, 255, 0.6);
    flex: 0 0 17.6px;
}

.flag-pl {
    background: linear-gradient(to bottom, #ffffff 50%, #dc143c 50%);
}

.flag-de {
    background: linear-gradient(to bottom, #000000 33.33%, #dd0000 33.33%, #dd0000 66.66%, #ffce00 66.66%);
}

.flag-en {
    background:
        linear-gradient(to right, transparent 42%, #c8102e 42%, #c8102e 58%, transparent 58%),
        linear-gradient(to bottom, transparent 42%, #c8102e 42%, #c8102e 58%, transparent 58%),
        #012169;
}

.flag-cz {
    background:
        linear-gradient(150deg, transparent 50%, #d7141a 50%),
        linear-gradient(30deg, #11457e 50%, transparent 50%),
        linear-gradient(to bottom, #ffffff 50%, #d7141a 50%);
}

.header-lang-hint {
    display: none;
}

@media (max-width: 900px) {
    .lang-toggle {
        font-size: 0.79rem;
        padding: 0.31rem 0.53rem;
    }

    .lang-flag {
        width: 15.4px;
        height: 11px;
        flex-basis: 15.4px;
    }
}

@media (max-width: 768px) {
    nav.container {
        position: relative;
    }

    .header-lang-hint {
        display: block;
        position: absolute;
        right: 64px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 9px;
        font-weight: 600;
        letter-spacing: 0.02em;
        color: #8f97a5;
        pointer-events: none;
        user-select: none;
        opacity: 0.88;
        white-space: nowrap;
        line-height: 1;
    }

    .lang-dropdown {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
}
