/* ============================================
   LALKA MIŁOŚCI — APARTAMENTY PREMIUM DLA PAR
   Complete CSS — Dark Luxury Theme
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  --bg-darkest: #070507;
  --bg-dark: #0d0a0e;
  --bg-darker: #110e13;
  --bg-card: #1a1520;
  --bg-card-hover: #221c2a;
  --accent: #9B1B30;
  --accent-light: #c2294a;
  --accent-dark: #7a1526;
  --gold: #D4AF37;
  --gold-light: #e6c96a;
  --gold-dark: #b8960e;
  --text: #f5f0f0;
  --text-muted: #a09898;
  --text-dim: #6b6065;
  --border: rgba(155, 27, 48, 0.2);
  --border-light: rgba(212, 175, 55, 0.15);
  --glass: rgba(26, 21, 32, 0.8);
  --shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 60px rgba(0, 0, 0, 0.7);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-darkest);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.05rem; }

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(155, 27, 48, 0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  box-shadow: 0 6px 30px rgba(155, 27, 48, 0.6);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.82rem; }
.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }

/* ---- Icons ---- */
.icon-sm { width: 18px; height: 18px; }
.icon-xs { width: 14px; height: 14px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 5, 7, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(7, 5, 7, 0.95);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-logo {
  width: 72px;
  height: 72px;
  border-radius: 0;
  object-fit: contain;
}

.navbar-brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

.brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
}

.navbar-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.navbar-links > a,
.navbar-links > .nav-dropdown > .nav-dropdown-toggle {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--transition);
}
.navbar-links > a:hover,
.navbar-links > .nav-dropdown:hover > .nav-dropdown-toggle {
  color: var(--text);
}
.navbar-links > a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.navbar-links > a:hover::after {
  width: 100%;
}

/* Nav dropdown submenu */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle .nav-chevron {
  width: 14px;
  height: 14px;
  transition: var(--transition);
}

.nav-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transform: translateX(-50%) translateY(8px);
  box-shadow: var(--shadow-lg);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  color: var(--text);
  background: rgba(155, 27, 48, 0.1);
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu .nav-sub-icon {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Mobile submenu */
.mobile-menu .mobile-sub {
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
  gap: 0.25rem;
}

.mobile-menu .mobile-sub a {
  font-size: 0.88rem;
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-menu .mobile-sub a .nav-sub-icon {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.mobile-menu .mobile-sub-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  padding: 0.5rem 0 0.2rem;
  font-weight: 600;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-flag {
  font-size: 1.2rem;
  cursor: pointer;
}

/* Language dropdown (replaces .lang-flag via i18n.js) */
.lang-dropdown {
  position: relative;
  display: inline-block;
}
.lang-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font-size: 0.82rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
  line-height: 1;
  white-space: nowrap;
}
.lang-dropdown-toggle:hover {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}
.lang-dropdown-arrow {
  font-size: 0.6rem;
  opacity: 0.6;
  transition: transform 0.25s;
}
.lang-dropdown.open .lang-dropdown-arrow {
  transform: rotate(180deg);
}
.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 100%;
  background: var(--bg-dark, #1a1118);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.lang-dropdown.open .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-dropdown-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.lang-dropdown-item:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text);
}
.lang-dropdown-item.active {
  color: var(--gold);
}
.lang-dropdown-flag {
  font-size: 1.05rem;
  line-height: 1;
}

/* Footer language buttons */
.footer-lang-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.footer-lang-btn:hover {
  border-color: var(--gold);
  color: var(--text);
}
.footer-lang-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.navbar-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.navbar-phone:hover { color: var(--gold); }

.hamburger {
  display: none;
  color: var(--text);
}
.hamburger svg { width: 24px; height: 24px; }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.75rem;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
}
.mobile-menu a:hover { color: var(--text); }
.mobile-menu.active { display: flex; }

.mobile-phone {
  color: var(--gold) !important;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.hero-audio-toggle {
  position: absolute;
  bottom: 6rem;
  right: 1.5rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}
.hero-audio-toggle:hover {
  background: rgba(0,0,0,0.65);
  border-color: rgba(255,255,255,0.5);
}
.hero-audio-toggle svg {
  width: 20px;
  height: 20px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 5, 7, 0.7) 0%,
    rgba(7, 5, 7, 0.5) 40%,
    rgba(7, 5, 7, 0.7) 70%,
    rgba(7, 5, 7, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem;
  padding-top: 80px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-light);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.05);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #fff, #e0d0d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.hero-trust .dot { color: var(--accent); }

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.hero-phone:hover { color: var(--gold); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}
.hero-scroll:hover {
  color: var(--gold);
}

.icon-bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  overflow: hidden;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.trust-icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--bg-dark);
}

.section-darker {
  background: var(--bg-darkest);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff, #d8c8c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

/* ============================================
   BENEFITS GRID
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}
.benefit-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(155, 27, 48, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.benefit-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(155, 27, 48, 0.2), rgba(155, 27, 48, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 1px solid rgba(155, 27, 48, 0.3);
}

.benefit-icon {
  width: 24px;
  height: 24px;
  color: var(--accent-light);
}

.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ============================================
   REVIEWS (Booking Opinions)
   ============================================ */
.reviews-award {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}
.reviews-award .booking-award-link img {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}
.reviews-award-info h3 {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.reviews-award-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.reviews-award-info {
  flex: 1;
}
.booking-award-certificate {
  flex-shrink: 0;
  margin-left: auto;
}
.booking-award-certificate img {
  width: 280px;
  height: auto;
  border-radius: 8px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
}
.review-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(155, 27, 48, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1a6b3c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-meta {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.review-name {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}
.review-date {
  color: var(--text-dim);
  font-size: 0.78rem;
}

.review-score {
  background: #003580;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.3rem 0.55rem;
  border-radius: 8px 8px 8px 0;
  flex-shrink: 0;
}

.review-title {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.review-text {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.reviews-cta {
  text-align: center;
  margin-top: 1rem;
}

/* ============================================
   APARTMENTS
   ============================================ */
.apartments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.apartment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.apartment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(155, 27, 48, 0.4);
}

.apartment-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.apartment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.apartment-card:hover .apartment-image img {
  transform: scale(1.08);
}

.apartment-tags {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.4rem;
}

.tag {
  font-size: 0.68rem;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: lowercase;
}
.tag-romantic {
  background: rgba(155, 27, 48, 0.8);
  color: #fff;
}
.tag-dark {
  background: rgba(20, 20, 20, 0.9);
  color: #c0c0c0;
  border: 1px solid rgba(100, 100, 100, 0.4);
}
.tag-premium {
  background: rgba(212, 175, 55, 0.8);
  color: #1a1a1a;
}
.tag-luxury {
  background: rgba(212, 175, 55, 0.9);
  color: #1a1a1a;
}
.tag-exclusive {
  background: rgba(30, 30, 30, 0.9);
  color: var(--gold);
  border: 1px solid var(--gold);
}
.tag-couple {
  background: rgba(155, 27, 48, 0.6);
  color: #fff;
}

.apartment-body {
  padding: 1.5rem;
}

.apartment-vibe {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.apartment-body h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.apartment-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.apartment-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.apartment-features span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.3rem 0.6rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.apartment-actions {
  display: flex;
  gap: 0.75rem;
}

/* ============================================
   WHY COUPLES
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.why-item:hover {
  background: var(--bg-card-hover);
  border-color: rgba(155, 27, 48, 0.4);
}

.why-icon {
  width: 22px;
  height: 22px;
  color: var(--accent-light);
  flex-shrink: 0;
}

.why-item span {
  font-size: 0.9rem;
  color: var(--text);
}

/* ============================================
   STEPS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}
.step-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 20px rgba(155, 27, 48, 0.4);
}

.step-icon {
  width: 24px;
  height: 24px;
  color: #fff;
}

.step-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Extras carousel */
.extras-carousel {
  margin-top: 3rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.extras-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: extras-scroll 35s linear infinite;
}
.extras-track:hover {
  animation-play-state: paused;
}
.extras-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(155, 27, 48, 0.12);
  border: 1px solid rgba(155, 27, 48, 0.25);
  border-radius: 2rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}
.extras-item:hover {
  background: rgba(155, 27, 48, 0.25);
  border-color: var(--accent);
}
.extras-item i,
.extras-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}
.extras-item span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}
@keyframes extras-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   UPSELLS
   ============================================ */
.upsell-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.upsell-featured-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.upsell-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.upsell-featured-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.upsell-featured-body {
  padding: 1.5rem;
}
.upsell-featured-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.upsell-featured-body p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.upsell-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.upsell-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  text-align: center;
  transition: var(--transition);
}
.upsell-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(155, 27, 48, 0.4);
  transform: translateY(-3px);
}

.upsell-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(155, 27, 48, 0.15), rgba(155, 27, 48, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  border: 1px solid rgba(155, 27, 48, 0.2);
}

.upsell-ic {
  width: 20px;
  height: 20px;
  color: var(--accent-light);
}

.upsell-card h4 {
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
  font-family: var(--font-heading);
}

.upsell-card p {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.upsell-price {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
}

/* ============================================
   KONFIGURATOR RANDKI
   ============================================ */

/* Progress bar */
.konfig-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.konfig-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 80px;
}
.konfig-progress-step span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.3s;
}
.konfig-progress-step.active span,
.konfig-progress-step.done span {
  color: var(--gold);
}
.konfig-progress-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--bg-card);
  border: 2px solid var(--border);
  color: var(--text-muted);
  transition: all 0.3s;
}
.konfig-progress-step.active .konfig-progress-num {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 20px rgba(155, 27, 48, 0.4);
}
.konfig-progress-step.done .konfig-progress-num {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-darkest);
}
.konfig-progress-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  min-width: 30px;
  max-width: 80px;
  position: relative;
  margin: 0 0.25rem;
  align-self: flex-start;
  margin-top: 18px;
}
.konfig-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--gold);
  transition: width 0.4s ease;
}

/* Steps */
.konfig-step {
  display: none;
  animation: konfFadeIn 0.4s ease;
}
.konfig-step-active {
  display: block;
}
@keyframes konfFadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
.konfig-step-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.konfig-step-title .icon-sm {
  color: var(--gold);
}
.konfig-step-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* Step 1: Apartments */
.konfig-apartments {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.konfig-apt-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.konfig-apt-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.konfig-apt-card.selected {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}
.konfig-apt-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.konfig-apt-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.konfig-apt-card:hover .konfig-apt-img img {
  transform: scale(1.05);
}
.konfig-apt-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-darkest);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s;
}
.konfig-apt-card.selected .konfig-apt-check {
  opacity: 1;
  transform: scale(1);
}
.konfig-apt-body {
  padding: 1.25rem;
}
.konfig-apt-body h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.konfig-apt-vibe {
  font-size: 0.78rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.konfig-apt-body > p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.konfig-apt-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.konfig-apt-features span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

/* Step 2: Dates */
.konfig-dates,
.konfig-guests {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.konfig-date-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.konfig-date-field label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.konfig-input {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color 0.3s;
  width: 100%;
  box-sizing: border-box;
}
.konfig-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.konfig-input::placeholder {
  color: var(--text-muted);
}
.konfig-textarea {
  min-height: 80px;
  resize: vertical;
}
/* date input colorscheme */
.konfig-input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.8);
  cursor: pointer;
}

/* Step 3: Extras */
.konfig-extras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.konfig-extra {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  text-align: center;
}
.konfig-extra:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}
.konfig-extra.selected {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
}
.konfig-extra-check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-darkest);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s;
}
.konfig-extra.selected .konfig-extra-check {
  opacity: 1;
  transform: scale(1);
}
.konfig-extra-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(155,27,48,.15), rgba(212,175,55,.1));
  border-radius: 50%;
}
.konfig-extra h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.konfig-extra p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.konfig-extra-price {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
}

/* Step 4: Summary */
.konfig-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.konfig-summary-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.konfig-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.6rem 0;
}
.konfig-summary-label {
  color: var(--text-muted);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.konfig-summary-value {
  color: var(--text-primary);
  font-size: 0.88rem;
  font-weight: 500;
  text-align: right;
  max-width: 55%;
}
.konfig-summary-divider {
  height: 1px;
  background: var(--border);
  margin: 0.5rem 0;
}
.konfig-summary-total {
  padding-top: 0.75rem;
}
.konfig-summary-total .konfig-summary-label {
  color: var(--text-primary);
  font-weight: 600;
}
.konfig-summary-total .konfig-summary-value {
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 700;
}
.konfig-summary-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.4;
}
.konfig-summary-form h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.konfig-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Navigation */
.konfig-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.konfig-btn-next,
.konfig-btn-send {
  min-width: 180px;
}
.konfig-btn-send {
  background: #25D366;
  border-color: #25D366;
}
.konfig-btn-send:hover {
  background: #1da851;
  border-color: #1da851;
}

/* Validation shake */
@keyframes konfShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}
.konfig-shake {
  animation: konfShake 0.4s ease;
}
.konfig-input.konfig-error {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(155, 27, 48, 0.2);
}
.konfig-apt-card.konfig-error {
  border-color: var(--accent) !important;
  animation: konfShake 0.4s ease;
}

/* Responsive */
@media (max-width: 1024px) {
  .konfig-extras-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .konfig-apartments {
    grid-template-columns: 1fr;
  }
  .konfig-dates,
  .konfig-guests {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .konfig-extras-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .konfig-summary {
    grid-template-columns: 1fr;
  }
  .konfig-form-row {
    grid-template-columns: 1fr;
  }
  .konfig-progress {
    gap: 0;
    margin-bottom: 2rem;
  }
  .konfig-progress-step {
    min-width: 60px;
  }
  .konfig-progress-step span {
    font-size: 0.62rem;
  }
  .konfig-progress-num {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
  .konfig-progress-line {
    margin-top: 15px;
    min-width: 20px;
  }
}
@media (max-width: 480px) {
  .konfig-extras-grid {
    grid-template-columns: 1fr 1fr;
  }
  .konfig-extra {
    padding: 1rem 0.75rem;
  }
  .konfig-extra h4 {
    font-size: 0.85rem;
  }
  .konfig-nav {
    flex-direction: column;
  }
  .konfig-nav .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-carousel {
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}

.testimonial-quote {
  margin-bottom: 1.25rem;
}
.quote-icon {
  width: 32px;
  height: 32px;
  color: var(--accent-light);
  opacity: 0.6;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.star-filled {
  width: 18px;
  height: 18px;
  color: var(--gold);
  fill: var(--gold);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   STATS
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.stat-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.stat-max {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stats-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-dim);
  font-style: italic;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: rgba(155, 27, 48, 0.4);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover {
  color: var(--gold);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================
   CTA Section
   ============================================ */
.section-cta {
  background: linear-gradient(135deg, var(--bg-dark), rgba(155, 27, 48, 0.1), var(--bg-dark));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.cta-contact {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.cta-contact a:hover { color: var(--gold); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-darkest);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  padding-bottom: 100px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  width: 150px;
  height: 150px;
  border-radius: 0;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.footer-brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-18 {
  font-size: 0.78rem;
  color: var(--accent-light);
  font-weight: 500;
}

.footer-booking-award {
  display: inline-block;
  margin-top: 1.25rem;
}
.footer-booking-award img {
  width: 120px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.footer-booking-award img:hover {
  transform: scale(1.05);
}

/* Booking Award Highlight (Why section) */
.booking-award-highlight {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.booking-award-link {
  flex-shrink: 0;
}
.booking-award-link img {
  width: 140px;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.booking-award-link img:hover {
  transform: scale(1.05);
}
.booking-award-text h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.booking-award-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--text);
  font-family: var(--font-body);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-col a:hover { color: var(--gold); }

.footer-langs {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 1.2rem;
}
.footer-langs span { cursor: pointer; }

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.footer-socials a svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-dim);
}
.footer-18-sm {
  margin-top: 0.5rem;
  font-size: 0.72rem !important;
  color: var(--text-dim) !important;
}

.footer-credit {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-dim);
}
.footer-credit a {
  color: var(--gold);
  font-weight: 500;
}
.footer-credit a:hover {
  text-decoration: underline;
}

/* ============================================
   BOTTOM BAR
   ============================================ */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  background: rgba(7, 5, 7, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}

.bottom-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.75rem 0.5rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition);
}
.bottom-bar-item:hover { color: var(--text); }
.bottom-bar-item svg { width: 20px; height: 20px; }

.bottom-bar-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
}
.bottom-bar-primary:hover { color: #fff; }

/* ============================================
   WHATSAPP FAB
   ============================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 80px;
  right: 1.5rem;
  z-index: 998;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* ============================================
   BOOKING MODAL (iframe overlay)
   ============================================ */
.booking-modal-overlay {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--bg-darkest);
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
}
.booking-modal-overlay.active {
  display: flex;
}
.booking-modal {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: calc(100vh - 70px);
  background: #fff;
  border-radius: 0;
  overflow: hidden;
}
.booking-modal iframe {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 70px);
  border: none;
}
.booking-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10001;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.booking-modal-close:hover {
  background: var(--accent);
}

/* ============================================
   PACKAGES SECTION
   ============================================ */
.packages-section {
  border-top: 3px solid var(--accent);
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.package-card {
  background: var(--bg-card);
  border: 1px solid var(--accent-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.package-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.package-header {
  margin-bottom: 1.5rem;
}
.package-header .package-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.package-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-primary);
}
.package-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
}
.package-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.package-list li:last-child {
  border-bottom: none;
}
.package-list li .icon-xs {
  color: var(--accent);
  flex-shrink: 0;
}
.package-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto !important;
  padding-top: 1rem;
}
@media (max-width: 600px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   INSTAGRAM FEED
   ============================================ */
.instagram-section {
  overflow: hidden;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}
.instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  display: block;
}
.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.instagram-overlay svg {
  width: 2rem;
  height: 2rem;
  color: #fff;
}
.instagram-item:hover img {
  transform: scale(1.1);
}
.instagram-item:hover .instagram-overlay {
  opacity: 1;
}
.instagram-section .btn svg {
  width: 1.1rem;
  height: 1.1rem;
  vertical-align: -0.15em;
  margin-right: 0.4rem;
}
@media (max-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   LEGAL / REGULAMIN
   ============================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-block {
  margin-bottom: 3rem;
}
.legal-block h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.legal-block ol {
  padding-left: 1.5rem;
  counter-reset: legal-item;
  list-style: none;
}
.legal-block ol > li {
  counter-increment: legal-item;
  position: relative;
  padding-left: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.legal-block ol > li::before {
  content: counter(legal-item) ".";
  position: absolute;
  left: -1.5rem;
  color: var(--accent);
  font-weight: 600;
}
.legal-block ul {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}
.legal-block ul li {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.35rem;
  list-style: disc;
}
.legal-block strong {
  color: var(--text-primary);
}
.legal-contact {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--bg-darker);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.legal-contact h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.legal-contact p {
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}
.legal-contact a {
  color: var(--accent-light);
}

/* ============================================
   SCROLL ANIMATIONS (AOS-like)
   ============================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .navbar-links {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .navbar-phone span {
    display: none;
  }
  .navbar-right .btn {
    display: none;
  }
  .lang-flag {
    display: none;
  }
  .lang-dropdown {
    display: none;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .apartments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .upsell-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .apartments-grid {
    grid-template-columns: 1fr;
  }
  .upsell-featured {
    grid-template-columns: 1fr;
  }
  .upsell-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .booking-award-highlight {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
    padding: 1.5rem;
  }
  .booking-award-text h3 {
    justify-content: center;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .cta-actions .btn {
    width: 100%;
    max-width: 320px;
  }
  .trust-items {
    gap: 1.25rem;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .reviews-award {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.25rem;
  }
  .reviews-award-info h3 {
    justify-content: center;
  }
  .booking-award-certificate img {
    width: 220px;
  }
  .hero-subtitle {
    display: none;
  }
  .hero-trust {
    display: none;
  }
  .hero-phone {
    font-size: 1.4rem;
    font-weight: 600;
  }
  .hero {
    align-items: flex-start;
  }
  .hero-content {
    padding-top: 100px;
  }
}

@media (max-width: 480px) {
  .navbar-inner {
    height: 56px;
    padding: 0 0.75rem;
  }
  .navbar-logo {
    width: 30px;
    height: 30px;
  }
  .brand-name {
    font-size: 0.85rem;
  }
  .brand-sub {
    font-size: 0.5rem;
    letter-spacing: 0.12em;
  }
  .navbar-brand {
    gap: 0.5rem;
  }
  .navbar-right {
    gap: 0.5rem;
  }
  .btn-lg {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  .upsell-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .hero-content {
    padding-top: 100px;
  }
  .container {
    padding: 0 1rem;
  }
}

/* ============================================
   MAP
   ============================================ */
.map-section {
  width: 100%;
  line-height: 0;
  border-top: 1px solid var(--border);
}

.map-section iframe {
  width: 100%;
  height: 450px;
  filter: grayscale(0.3) brightness(0.8) contrast(1.1);
  transition: filter 0.3s ease;
}

.map-section iframe:hover {
  filter: grayscale(0) brightness(0.9) contrast(1);
}

@media (max-width: 768px) {
  .map-section iframe {
    height: 300px;
  }
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-zoom-icon {
  width: 32px;
  height: 32px;
  color: #fff;
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item-wide {
    grid-column: span 1;
  }
  .gallery-item-tall {
    grid-row: span 1;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
    gap: 0.5rem;
  }
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  transition: opacity 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 10;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.lightbox-close svg {
  width: 24px;
  height: 24px;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 10;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
}
.lightbox-prev svg,
.lightbox-next svg {
  width: 24px;
  height: 24px;
}

.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darkest);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* ---- Selection ---- */
::selection {
  background: rgba(155, 27, 48, 0.4);
  color: #fff;
}

/* ===================== SUBPAGES ===================== */

/* Page Header (used on all subpages) */
.page-header {
  padding: 10rem 0 4rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-darkest) 0%, var(--bg-dark) 100%);
}
.page-header .section-label { margin-bottom: 0.5rem; }
.page-header .section-title { margin-bottom: 1rem; }
.page-header .section-desc { max-width: 600px; margin: 0 auto; }

/* Oferta Hero */
.oferta-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 7rem 0 4rem;
  box-sizing: border-box;
}
.oferta-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(7,5,7,0.65) 0%,
    rgba(7,5,7,0.55) 40%,
    rgba(7,5,7,0.8) 100%);
  z-index: 1;
}
.oferta-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 2rem;
  margin: auto;
}
.oferta-hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.oferta-hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin: 0 0 1.25rem;
}
.oferta-hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 2.5rem;
}
.oferta-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.oferta-hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .oferta-hero { min-height: 100vh; padding: 6rem 0 4rem; }
  .oferta-hero-title { font-size: 2.5rem; }
  .oferta-hero-desc { font-size: 1rem; }
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-muted); }

/* Apartment Detail */
.apartment-detail-hero {
  border-radius: 1rem;
  overflow: hidden;
  max-height: 500px;
}
.apartment-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hero media grid (video + image) */
.hero-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
.hero-media-grid .apartment-detail-hero {
  max-height: 500px;
}
.hero-media-video {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  max-height: 500px;
}
.hero-media-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-media-video .video-sound-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  pointer-events: none;
  transition: opacity 0.3s;
}
.hero-media-video .video-sound-hint.hidden {
  opacity: 0;
}
@media (max-width: 768px) {
  .hero-media-grid {
    grid-template-columns: 1fr;
  }
  .hero-media-video {
    max-height: 350px;
  }
}
.apartment-detail-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Booking sidebar */
.apartment-booking-sidebar {
  position: sticky;
  top: 6rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.apartment-booking-sidebar h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1rem;
  text-align: center;
}

/* Booking benefits list */
.booking-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.booking-benefits li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.88rem;
  color: var(--text-muted);
}
.booking-benefits li:last-child {
  border-bottom: none;
}
.booking-benefits li i {
  color: var(--gold);
  flex-shrink: 0;
}

/* Booking iframe embed */
.booking-embed-frame {
  width: 100%;
  min-height: 500px;
  border: none;
  border-radius: var(--radius-md);
  background: #fff;
}
.booking-embed-full {
  min-height: 600px;
}

/* Equipment 2-column grid */
.equipment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.equipment-col h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.apartment-detail-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.apartment-detail-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.apartment-detail-features h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li i { color: var(--gold); flex-shrink: 0; }
.feature-premium {
  flex-wrap: wrap;
}
.feature-star {
  color: #e53e3e;
  font-size: 1rem;
  margin-left: 0.1rem;
}
.feature-badge {
  display: block;
  width: 100%;
  font-size: 0.75rem;
  color: #e53e3e;
  padding-left: 1.75rem;
  margin-top: -0.25rem;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.contact-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(155, 27, 48, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.contact-card-icon i { color: var(--accent); width: 22px; height: 22px; }
.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.contact-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0.25rem 0 0;
}
.contact-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
  transition: color 0.2s;
}
.contact-link:hover { color: var(--accent); }
.contact-address {
  color: var(--text-secondary) !important;
  font-size: 1rem !important;
  line-height: 1.6;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2.5rem;
}
.contact-form-wrap h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(155, 27, 48, 0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23888'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group select option {
  background: var(--bg-dark);
  color: var(--text-primary);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 0.6rem;
  color: #22c55e;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

/* Active nav link */
.navbar-links a.active {
  color: var(--accent);
}

/* Responsive subpages */
@media (max-width: 1024px) {
  .apartment-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .equipment-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .apartment-booking-sidebar {
    position: static;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .page-header { padding: 8rem 0 3rem; }
  .apartment-detail-hero { max-height: 350px; }
  .apartment-detail-text h2 { font-size: 1.6rem; }
  .contact-form-wrap { padding: 1.5rem; }
  .apartments-grid[style*="repeat(2"] { grid-template-columns: 1fr !important; }
}

/* ============================================
   EXPERT TEASER (Homepage)
   ============================================ */
.expert-teaser {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.expert-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.expert-teaser-text .section-label {
  text-align: left;
}

.expert-teaser-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff, #d8c8c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.expert-teaser-text p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.expert-teaser-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.expert-teaser-topics span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(155, 27, 48, 0.12);
  border: 1px solid rgba(155, 27, 48, 0.25);
  color: var(--accent-light);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

.expert-teaser-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.expert-teaser-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.expert-teaser-card-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.expert-teaser-card-item .etci-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.expert-teaser-card-item .etci-icon svg {
  width: 20px;
  height: 20px;
}

.expert-teaser-card-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.expert-teaser-card-item p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .expert-teaser-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ============================================
   EXPERT ARTICLES PAGE
   ============================================ */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.article-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.article-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.article-card:hover .article-card-image img {
  transform: scale(1.05);
}

.article-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(155, 27, 48, 0.9);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-card-body {
  padding: 1.5rem;
}

.article-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.article-card-body p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.article-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem 1.5rem;
}

.article-card-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.article-card-author .author-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
}

.article-read-more {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.article-read-more:hover {
  color: var(--gold-light);
}

.expert-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 3rem;
}

.expert-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-family: var(--font-heading);
}

.expert-intro-text h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.expert-intro-text .expert-credentials {
  font-size: 0.82rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.expert-intro-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.articles-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  justify-content: center;
}

.articles-filter .filter-btn {
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.articles-filter .filter-btn:hover,
.articles-filter .filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

@media (max-width: 1024px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
  .expert-intro {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

/* ============================================
   CONSULTATIONS PAGE
   ============================================ */
.consult-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.consult-hero-text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff, #d8c8c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.consult-hero-text p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.consult-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.consult-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--gold-light);
}

.consult-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}

.consult-visual-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #fff;
}

.consult-visual-icon svg {
  width: 36px;
  height: 36px;
}

.consult-visual h3 {
  margin-bottom: 0.75rem;
}

.consult-visual p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.consult-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.consult-pkg {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.consult-pkg:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.consult-pkg.featured {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

.consult-pkg.featured::before {
  content: 'Najpopularniejszy';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  padding: 0.2rem 1rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.consult-pkg-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #fff;
}

.consult-pkg-icon svg {
  width: 24px;
  height: 24px;
}

.consult-pkg h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.consult-pkg .pkg-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.consult-pkg .pkg-duration {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.consult-pkg ul {
  text-align: left;
  margin-bottom: 1.5rem;
}

.consult-pkg ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.consult-pkg ul li svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.consult-how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.consult-how-item {
  text-align: center;
  padding: 1.5rem;
}

.consult-how-item .how-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 auto 1rem;
}

.consult-how-item h4 {
  margin-bottom: 0.5rem;
}

.consult-how-item p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.consult-trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.consult-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.consult-trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

@media (max-width: 1024px) {
  .consult-packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .consult-how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .consult-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .consult-packages-grid {
    grid-template-columns: 1fr;
  }
  .consult-how-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   APARTMENT INLINE CALENDAR
   ============================================ */
.apt-cal-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.apt-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.apt-cal-header h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin: 0;
  text-transform: capitalize;
}

.apt-cal-nav {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.apt-cal-nav:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.apt-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.4rem;
}

.apt-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.apt-cal-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
  border: 1px solid transparent;
  line-height: 1.1;
}

.apt-cal-day:hover:not(.apt-cal-blocked):not(.apt-cal-past):not(.apt-cal-empty) {
  background: rgba(155, 27, 48, 0.2);
  border-color: var(--accent);
}

.apt-cal-day.apt-cal-empty { cursor: default; }
.apt-cal-day.apt-cal-past { color: var(--text-dim); opacity: 0.4; cursor: not-allowed; }
.apt-cal-day.apt-cal-blocked { color: var(--text-dim); text-decoration: line-through; opacity: 0.5; cursor: not-allowed; background: rgba(239, 68, 68, 0.08); }
.apt-cal-day.apt-cal-weekend { color: var(--accent-light); }

.apt-cal-price {
  font-size: 0.55rem;
  color: var(--text-dim);
  margin-top: 1px;
}

.apt-cal-day.apt-cal-sel-start,
.apt-cal-day.apt-cal-sel-end {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 8px rgba(155, 27, 48, 0.5);
}

.apt-cal-day.apt-cal-sel-start .apt-cal-price,
.apt-cal-day.apt-cal-sel-end .apt-cal-price {
  color: rgba(255,255,255,0.8);
}

.apt-cal-day.apt-cal-in-range {
  background: rgba(155, 27, 48, 0.15);
  border-color: rgba(155, 27, 48, 0.3);
}

.apt-cal-legend {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.apt-cal-legend span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.apt-leg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.apt-leg-avail { background: var(--text-muted); }
.apt-leg-blocked { background: rgba(239, 68, 68, 0.5); }
.apt-leg-selected { background: var(--accent); }

.apt-cal-summary {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.apt-cal-sum-row {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.apt-cal-sum-row strong {
  color: var(--text);
}

.apt-cal-sum-total {
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  font-size: 1rem;
}

.apt-cal-sum-total strong {
  color: var(--accent-light);
  font-size: 1.1rem;
}

.apt-cal-book-btn {
  width: 100%;
  margin-top: 1rem;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.apt-cal-hint {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* ===== Pakiety — compact grid ===== */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.pkg-card {
  background: #1a1520;
  border: 1px solid rgba(155,27,48,0.25);
  border-radius: 10px;
  padding: 1.2rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.pkg-card:hover {
  border-color: #9B1B30;
  box-shadow: 0 0 20px rgba(155,27,48,0.15);
}
.pkg-featured {
  border: 2px solid #d4a853;
  background: linear-gradient(135deg, #1a1520 0%, #2a1a25 100%);
  box-shadow: 0 0 25px rgba(212,168,83,0.12);
}
.pkg-featured:hover {
  border-color: #e8c170;
  box-shadow: 0 0 35px rgba(212,168,83,0.25);
}
.pkg-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #d4a853, #b8912e);
  color: #1a1520;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pkg-ico {
  width: 1.8rem;
  height: 1.8rem;
  color: #9B1B30;
  margin: 0 auto 0.4rem;
}
.pkg-featured .pkg-ico {
  color: #d4a853;
}
.pkg-name {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.6rem;
  line-height: 1.3;
}
.pkg-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.8rem;
  text-align: left;
  flex: 1;
}
.pkg-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #aaa;
  font-size: 0.78rem;
  line-height: 1.35;
}
.pkg-list li:last-child {
  border-bottom: none;
}
.pkg-list li i {
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
  color: #9B1B30;
  margin-top: 1px;
}
.pkg-featured .pkg-list li i {
  color: #d4a853;
}
.pkg-price {
  font-size: 1.15rem;
  font-weight: 600;
  color: #9B1B30;
  margin-top: auto;
  padding-top: 0.5rem;
}
.pkg-featured .pkg-price {
  color: #d4a853;
}
@media (max-width: 900px) {
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .pkg-grid { grid-template-columns: 1fr; }
}
