/* =============================================
   Pensiunea Maria Sibiu — style.css
   Design: 2026 | Modern Luxury Hospitality
   ============================================= */

/* ─── LANGUAGE SWITCHER (dropdown) ──────────── */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switcher {
  position: relative;
}

.lang-current {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  padding: 6px 9px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lang-current:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.45);
}

.lang-current img {
  width: 28px;
  height: 19px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  box-shadow: 0 1px 3px rgba(0,0,0,.25);
}

.lang-chevron {
  font-size: .6rem;
  color: rgba(255,255,255,.80);
  transition: transform .2s ease;
}

.lang-switcher.open .lang-chevron {
  transform: rotate(180deg);
}

/* Dropdown panel */
.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 36px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.10);
  padding: 6px;
  min-width: 148px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(.96);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 9999;
}

.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: #1C3A2E;
  font-size: .84rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: background .15s;
}

.lang-option:hover {
  background: #f2f7f4;
}

.lang-option.active {
  background: rgba(212,175,55,.12);
  font-weight: 600;
}

.lang-option img {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,.20);
  flex-shrink: 0;
}

.lang-option .fa-check {
  margin-left: auto;
  font-size: .68rem;
  color: #C9A227;
}

/* Scrolled / solid navbar */
.navbar.scrolled .lang-current {
  background: rgba(28,58,46,.09);
  border-color: rgba(28,58,46,.20);
}

.navbar.scrolled .lang-current:hover {
  background: rgba(28,58,46,.16);
  border-color: rgba(28,58,46,.35);
}

.navbar.scrolled .lang-chevron {
  color: #2d6a4f;
}

@media (max-width: 768px) {
  .lang-current {
    padding: 5px 8px;
    gap: 5px;
  }
  .lang-current img {
    width: 26px;
    height: 17px;
  }
  .lang-dropdown {
    right: -4px;
  }
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ─── VARIABLES ─────────────────────────────── */
:root {
  --green-900: #1C3A2E;
  --green-800: #244d3d;
  --green-700: #2e6050;
  --gold-500:  #C9A84C;
  --gold-400:  #d9be7a;
  --cream:     #FAF8F4;
  --white:     #FFFFFF;
  --gray-900:  #1A1A1A;
  --gray-700:  #3D3D3D;
  --gray-500:  #6B6B6B;
  --gray-300:  #C4C4C4;
  --gray-100:  #F0EDE8;
  --border:    #E8E2D9;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --shadow-xs: 0 1px 4px rgba(0,0,0,.06);
  --shadow-sm: 0 2px 10px rgba(0,0,0,.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.16);

  --radius-xs: 6px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;

  --transition: .3s cubic-bezier(.4,0,.2,1);
  --transition-slow: .6s cubic-bezier(.4,0,.2,1);

  --nav-height: 80px;
  --container:  1200px;
}

/* ─── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--gray-700);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── CONTAINER ──────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── TYPOGRAPHY ─────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: var(--green-900); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
p  { font-size: 1rem; line-height: 1.75; color: var(--gray-500); }

.text-gold   { color: var(--gold-500); }
.text-green  { color: var(--green-900); }
.text-center { text-align: center; }
.text-white  { color: var(--white); }

/* ─── SECTION LABEL ──────────────────────────── */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
}
.section-label::before {
  content: '—';
  margin-right: 8px;
}

/* ─── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--green-900);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  background: var(--gold-500);
  color: var(--white);
}
.btn-gold:hover {
  background: #b8962f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
}
.btn-outline {
  border: 2px solid var(--green-900);
  color: var(--green-900);
  padding: 12px 30px;
}
.btn-outline:hover {
  background: var(--green-900);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  border: 2px solid rgba(255,255,255,.7);
  color: var(--white);
  padding: 12px 30px;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}
.btn-sm { padding: 10px 22px; font-size: .875rem; }
.btn-lg { padding: 18px 42px; font-size: 1.05rem; }

/* ─── NAV ────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.navbar.transparent { background: transparent; }
.navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar-brand img {
  height: 52px;
  width: auto;
  transition: var(--transition);
}
.navbar-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.navbar-brand-text .brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}
.navbar-brand-text .brand-sub {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.navbar.scrolled .brand-name { color: var(--green-900); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 8px 14px;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  border-radius: var(--radius-xs);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--white); }
.navbar.scrolled .nav-link { color: var(--gray-700); }
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active { color: var(--green-900); }

/* Icons inside nav-link — desktop: hidden; mobile: visible */
.nav-link .fa-home,
.nav-link .fa-info-circle,
.nav-link .fa-map-marker-alt,
.nav-link .fa-handshake,
.nav-link .fa-star,
.nav-link .fa-images,
.nav-link .fa-calendar-check { display: none; }

/* Mobile brand item — hidden on desktop */
.nav-mobile-brand { display: none; }

/* Backdrop — hidden on desktop */
.nav-backdrop { display: none; }

.nav-cta {
  background: var(--gold-500);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-sm) !important;
}
.nav-cta:hover { background: #b8962f !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--green-900); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-exterior.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(28,58,46,.75) 0%,
    rgba(28,58,46,.55) 50%,
    rgba(15,30,22,.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 60px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.18);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold-400);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-400);
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin: 0 auto 48px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* BOOKING WIDGET */
.booking-widget {
  position: relative;
  z-index: 2;
  padding: 0 0 80px;
}

/*
  Grid plat 4 coloane:
  Rândul 1: check-in | check-out | adulți | copii
  Rândul 2: email    | telefon   | buton (span 2)
*/
.booking-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 20px;
  align-items: end;
}

.booking-field { display: flex; flex-direction: column; gap: 6px; }
.booking-field label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-900);
  display: flex;
  align-items: center;
  gap: 5px;
}
.booking-field label i { color: var(--gold-500); font-size: .65rem; }

.booking-field .field-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 12px 14px;
  transition: var(--transition);
}
.booking-field .field-icon:focus-within {
  border-color: var(--green-700);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(46,96,80,.1);
}
.booking-field .field-icon > i {
  color: var(--gold-500);
  font-size: .9rem;
  flex-shrink: 0;
}
.booking-field input {
  background: none;
  border: none;
  outline: none;
  font-size: .9rem;
  color: var(--gray-900);
  width: 100%;
  min-width: 0;
}
.booking-field input::placeholder { color: var(--gray-300); }

/* Counter stepper (adulți / copii) */
.counter-field { justify-content: space-between; }
.counter-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--green-900);
  font-size: 1.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  cursor: pointer;
}
.counter-btn:hover {
  background: var(--green-900);
  color: var(--white);
  border-color: var(--green-900);
}
.counter-field input[type="number"] {
  width: 32px;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-900);
  pointer-events: none; /* click doar prin butoane */
}
/* Ascunde săgețile native ale browserului pe input number */
.counter-field input[type="number"]::-webkit-outer-spin-button,
.counter-field input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.counter-field input[type="number"] { -moz-appearance: textfield; }

/* Butonul ocupă ultimele 2 coloane în rândul 2 */
.booking-btn { grid-column: span 2; }
.btn-booking-submit {
  width: 100%;
  justify-content: center;
  white-space: nowrap;
  height: 49px;
  font-size: .95rem;
}

/* MODAL CONFIRMARE REZERVARE */
.booking-success-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(28, 58, 46, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn .4s ease;
}
.booking-success-overlay.hide {
  animation: fadeOut .3s ease forwards;
}
@keyframes fadeOut {
  to { opacity: 0; pointer-events: none; }
}
.booking-success-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: slideUpIn .5s cubic-bezier(.34,1.56,.64,1);
}
@keyframes slideUpIn {
  from { opacity: 0; transform: translateY(40px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.booking-success-icon {
  width: 88px; height: 88px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2.4rem;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(34,197,94,.35);
}
.booking-success-card h2 {
  font-size: 1.7rem;
  color: var(--green-900);
  margin-bottom: 16px;
}
.booking-success-card > p {
  font-size: .95rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 32px;
}
.booking-success-details {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-bottom: 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.success-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: var(--gray-700);
}
.success-detail-item i {
  color: var(--gold-500);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

/* ─── SECTION ────────────────────────────────── */
section { padding: 96px 0; }
.section-header { margin-bottom: 56px; }
.section-header p { max-width: 580px; margin-top: 16px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 16px auto 0; }

/* ─── ABOUT SNIPPET (homepage) ───────────────── */
.about-snippet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 520px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 72%;
  height: 78%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}
.about-badge {
  position: absolute;
  top: 48%;
  left: 60%;
  background: var(--green-900);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.about-badge .badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}
.about-badge .badge-text { font-size: .75rem; color: rgba(255,255,255,.8); }
.about-text p { margin-top: 16px; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,.12);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  flex-shrink: 0;
}
.feature-info .feature-title {
  font-size: .9rem;
  font-weight: 600;
  color: var(--green-900);
  display: block;
}
.feature-info .feature-desc {
  font-size: .8rem;
  color: var(--gray-500);
}

/* ─── ROOMS ──────────────────────────────────── */
.rooms-section { background: var(--gray-100); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.room-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.room-card:hover .room-card-image img { transform: scale(1.08); }
.room-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold-500);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.room-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.room-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--green-900);
  margin-bottom: 8px;
}
.room-desc {
  font-size: .875rem;
  color: var(--gray-500);
  flex: 1;
  margin-bottom: 20px;
}
.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.room-price { font-family: var(--font-heading); }
.room-price span { font-size: 1.4rem; font-weight: 700; color: var(--green-900); }
.room-price small { font-size: .8rem; color: var(--gray-500); }
.room-cta {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold-500);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.room-cta:hover { color: var(--green-900); gap: 8px; }

/* ─── AMENITIES ──────────────────────────────── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.amenity-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.amenity-icon {
  width: 72px; height: 72px;
  background: rgba(28,58,46,.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--green-900);
  transition: var(--transition);
}
.amenity-card:hover .amenity-icon {
  background: var(--green-900);
  color: var(--white);
}
.amenity-card h4 { font-size: 1rem; margin-bottom: 8px; }
.amenity-card p { font-size: .875rem; }

/* ─── REVIEWS (homepage snippet) ─────────────── */
.reviews-section { background: var(--green-900); }
.reviews-section .section-header h2,
.reviews-section .section-header .section-label { color: var(--gold-400); }
.reviews-section .section-header p { color: rgba(255,255,255,.7); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 32px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.review-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}
.review-stars { color: var(--gold-400); margin-bottom: 16px; font-size: .9rem; letter-spacing: 2px; }
.review-text {
  font-size: .9rem;
  line-height: 1.75;
  color: rgba(255,255,255,.85);
  font-style: italic;
  margin-bottom: 24px;
}
.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-name {
  font-weight: 600;
  font-size: .875rem;
  color: var(--white);
}
.review-source {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
}
.review-platform img {
  height: 28px;
  width: auto;
  opacity: .7;
  filter: brightness(2);
}

/* ─── CTA BAND ───────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--gold-500) 0%, #b8962f 100%);
  padding: 72px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,.85); margin-top: 8px; }
.cta-band .btn-primary {
  background: var(--white);
  color: var(--green-900);
  flex-shrink: 0;
}
.cta-band .btn-primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

/* ─── PAGE HERO (inner pages) ────────────────── */
.page-hero {
  min-height: 45vh;
  background: var(--green-900);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + 48px) 0 72px;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-exterior.jpg') center/cover;
  opacity: .15;
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 560px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold-400); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: .65rem; }

/* ─── DESPRE NOI PAGE ────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-xs);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--green-900);
  line-height: 1;
  display: block;
}
.stat-suffix { color: var(--gold-500); }
.stat-label { font-size: .875rem; color: var(--gray-500); margin-top: 8px; }

.discover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.discover-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.discover-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.discover-card-header {
  background: var(--green-900);
  padding: 28px 28px 20px;
}
.discover-card-header .discover-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,.2);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.discover-card-header h3 { color: var(--white); font-size: 1.1rem; }
.discover-card-body { padding: 24px 28px; }
.discover-card-body p { font-size: .875rem; }
.discover-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold-500);
  margin-top: 16px;
  transition: var(--transition);
}
.discover-link:hover { gap: 10px; }

/* ─── LOCALIZARE PAGE ────────────────────────── */
.map-section { background: var(--gray-100); }
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-container iframe { width: 100%; height: 450px; border: none; display: block; }

.transport-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.transport-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-xs);
}
.transport-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.transport-icon {
  width: 56px; height: 56px;
  background: var(--green-900);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.transport-card h3 { font-size: 1.1rem; }
.transport-steps { display: flex; flex-direction: column; gap: 12px; }
.transport-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.step-num {
  width: 28px; height: 28px;
  background: rgba(201,168,76,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold-500);
  flex-shrink: 0;
  margin-top: 2px;
}
.step-text { font-size: .875rem; color: var(--gray-700); }
.step-text em { font-style: normal; color: var(--gray-500); font-size: .82rem; }

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-info-icon {
  width: 64px; height: 64px;
  background: rgba(28,58,46,.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-900);
  font-size: 1.4rem;
  margin: 0 auto 16px;
}
.contact-info-card h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.contact-info-card a, .contact-info-card p { color: var(--green-900); font-weight: 500; }
.contact-info-card a:hover { color: var(--gold-500); }

/* ─── PARTENERI PAGE ─────────────────────────── */
.partners-intro {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 48px;
  margin-bottom: 56px;
  box-shadow: var(--shadow-xs);
  text-align: center;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.partner-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  transition: var(--transition);
  min-height: 120px;
}
.partner-card:hover {
  border-color: var(--gold-500);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.partner-card img { max-height: 50px; object-fit: contain; filter: grayscale(.3); transition: var(--transition); }
.partner-card:hover img { filter: grayscale(0); }
.partner-card span {
  font-size: .8rem;
  font-weight: 500;
  color: var(--gray-500);
}

/* ─── RECENZII PAGE ──────────────────────────── */
.reviews-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.review-page-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  border-left: 4px solid transparent;
}
.review-page-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--gold-500);
}
.review-quote { font-size: 2rem; color: var(--gold-400); line-height: 1; margin-bottom: 12px; }
.review-page-text {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 24px;
}
.review-page-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.review-page-author { font-weight: 600; color: var(--green-900); font-size: .9rem; }
.review-page-platform { display: flex; align-items: center; gap: 8px; }
.review-page-platform img { height: 24px; width: auto; }
.review-page-platform span { font-size: .78rem; color: var(--gray-500); }

.reviews-summary {
  background: var(--green-900);
  border-radius: var(--radius-md);
  padding: 56px 48px;
  text-align: center;
  margin-top: 64px;
  color: var(--white);
}
.reviews-summary h2 { color: var(--gold-400); margin-bottom: 12px; }
.reviews-summary p { color: rgba(255,255,255,.75); }
.platform-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.platform-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 16px 28px;
  border-radius: var(--radius-sm);
}
.platform-badge img { height: 32px; filter: brightness(1.5); }
.platform-badge span { font-size: .85rem; color: rgba(255,255,255,.8); }

/* ─── CONTACT PAGE ───────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
  align-items: start;
}
.contact-sidebar { display: flex; flex-direction: column; gap: 24px; }
.contact-sidebar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-xs);
}
.contact-sidebar-card h4 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold-500);
  margin-bottom: 16px;
}
.sidebar-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.sidebar-info-item:last-child { margin-bottom: 0; }
.sidebar-info-icon {
  width: 38px; height: 38px;
  background: rgba(28,58,46,.07);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-900);
  flex-shrink: 0;
}
.sidebar-info-text { font-size: .875rem; }
.sidebar-info-text strong { display: block; color: var(--green-900); margin-bottom: 2px; }
.sidebar-info-text a { color: var(--gray-700); }
.sidebar-info-text a:hover { color: var(--gold-500); }

.social-links { display: flex; gap: 10px; margin-top: 8px; }
.social-link {
  width: 40px; height: 40px;
  background: var(--green-900);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .9rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold-500); transform: translateY(-2px); }

/* CONTACT FORM */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 48px;
  box-shadow: var(--shadow-xs);
}
.contact-form-card h3 { margin-bottom: 8px; }
.contact-form-card > p { margin-bottom: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--green-900);
  letter-spacing: .04em;
}
.form-group label .required { color: var(--gold-500); margin-left: 2px; }
.form-control {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 13px 16px;
  font-size: .9rem;
  color: var(--gray-900);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-control:focus {
  border-color: var(--green-700);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(28,58,46,.08);
}
.form-control::placeholder { color: var(--gray-300); }
textarea.form-control { resize: vertical; min-height: 140px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--green-900);
  flex-shrink: 0;
  margin-top: 2px;
}
.form-check label { font-size: .82rem; color: var(--gray-500); font-weight: 400; }
.form-check label a { color: var(--green-900); text-decoration: underline; }
.form-submit { margin-top: 24px; }
.form-submit .btn { padding: 16px 40px; }

/* FORM STATES */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-xs);
  margin-bottom: 24px;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-success { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); color: #15803d; }
.alert-error   { background: rgba(239,68,68,.1);  border: 1px solid rgba(239,68,68,.3);  color: #b91c1c; }
.honeypot { display: none !important; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--green-700); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--green-900);
  gap: 16px;
}
.faq-question i {
  color: var(--gold-500);
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ─── POLITICI PAGES ─────────────────────────── */
.policy-content {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 56px 64px;
  box-shadow: var(--shadow-xs);
  max-width: 900px;
  margin: 0 auto;
}
.policy-content h2 { font-size: 1.6rem; margin: 40px 0 16px; }
.policy-content h2:first-child { margin-top: 0; }
.policy-content h3 { font-size: 1.2rem; margin: 28px 0 12px; }
.policy-content p { margin-bottom: 16px; font-size: .95rem; }
.policy-content ul, .policy-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
  list-style: disc;
}
.policy-content ol { list-style: decimal; }
.policy-content li { font-size: .95rem; color: var(--gray-500); margin-bottom: 8px; line-height: 1.7; }
.policy-content b, .policy-content strong { color: var(--green-900); }
.policy-content a { color: var(--green-700); text-decoration: underline; }
.policy-last-updated {
  font-size: .82rem;
  color: var(--gray-300);
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding-top: 20px;
}

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  background: #0e2219;
  color: rgba(255,255,255,.7);
}
.footer-top {
  padding: 80px 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand img { height: 56px; margin-bottom: 20px; }
.footer-brand p { font-size: .875rem; line-height: 1.75; max-width: 300px; }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-col ul li a i { font-size: .7rem; color: var(--gold-400); }
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: .875rem;
}
.footer-contact-item i { color: var(--gold-400); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .8rem; }
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold-400); }

/* ─── COOKIE BANNER ──────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: rgba(14,34,25,.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201,168,76,.25);
  padding: 24px 0;
  transform: translateY(100%);
  transition: var(--transition);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cookie-text { font-size: .875rem; color: rgba(255,255,255,.8); max-width: 680px; }
.cookie-text a { color: var(--gold-400); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--gold-500);
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius-xs);
  font-size: .875rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-cookie-accept:hover { background: #b8962f; }
.btn-cookie-decline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.7);
  padding: 10px 24px;
  border-radius: var(--radius-xs);
  font-size: .875rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-cookie-decline:hover { border-color: rgba(255,255,255,.6); color: var(--white); }

/* ─── DIVIDER ────────────────────────────────── */
.divider {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  border-radius: 2px;
  margin: 20px 0 28px;
}
.divider.center { margin: 20px auto 28px; }

/* ─── BACK TO TOP ────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--green-900);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 500;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--gold-500); transform: translateY(-3px); }

/* ─── ANIMATIONS ─────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.fade-in-up { animation: fadeInUp .7s ease both; }
.fade-in    { animation: fadeIn .5s ease both; }
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1100px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --nav-height: 70px; }
  section { padding: 72px 0; }

  .hamburger { display: flex; }

  /* Backdrop */
  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.48);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 998;
  }
  .nav-backdrop.open { display: block; }

  /* Drawer */
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 86vw);
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 0;
    box-shadow: -6px 0 40px rgba(0,0,0,.18);
    transform: translateX(110%);
    transition: transform .32s cubic-bezier(.4,0,.2,1);
    z-index: 999;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav-menu.open { transform: translateX(0); }

  /* Mobile brand header inside drawer */
  .nav-mobile-brand {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 28px 22px 22px;
    border-bottom: 1px solid #f0f0f0;
    list-style: none;
  }
  .nav-mobile-brand img { border-radius: 50%; }
  .nav-mobile-brand .mob-brand-name {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: .98rem;
    font-weight: 700;
    color: #1C3A2E;
    line-height: 1.2;
  }
  .nav-mobile-brand .mob-brand-sub {
    display: block;
    font-size: .68rem;
    color: #C9A227;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: 2px;
  }

  /* Show icons in mobile drawer */
  .nav-link .fa-home,
  .nav-link .fa-info-circle,
  .nav-link .fa-map-marker-alt,
  .nav-link .fa-handshake,
  .nav-link .fa-star,
  .nav-link .fa-images,
  .nav-link .fa-calendar-check {
    display: inline-block;
    width: 20px;
    text-align: center;
    color: #C9A227;
    font-size: .9rem;
    flex-shrink: 0;
  }

  /* Nav items */
  .nav-link {
    color: #374151 !important;
    padding: 15px 22px !important;
    border-radius: 0 !important;
    font-size: .95rem !important;
    font-weight: 500 !important;
    border-left: 3px solid transparent;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .nav-link:hover {
    background: #f7faf8 !important;
    color: #1C3A2E !important;
    border-left-color: #C9A227;
  }
  .nav-link.active {
    color: #1C3A2E !important;
    background: rgba(28,58,46,.06) !important;
    border-left-color: #C9A227;
    font-weight: 600 !important;
  }
  .nav-link::after { display: none !important; }

  /* CTA button in drawer */
  .nav-cta {
    margin: 12px 18px 28px !important;
    padding: 16px 22px !important;
    background: #1C3A2E !important;
    color: #fff !important;
    text-align: center !important;
    border-radius: 12px !important;
    font-size: .97rem !important;
    font-weight: 600 !important;
    letter-spacing: .02em;
    border-left: none !important;
    justify-content: center !important;
  }
  .nav-cta:hover {
    background: #2d6a4f !important;
    border-left-color: transparent !important;
  }

  .booking-card  { grid-template-columns: 1fr 1fr; }
  .booking-btn   { grid-column: 1 / -1; }

  .about-snippet { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 380px; }

  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-sidebar { flex-direction: row; flex-wrap: wrap; }
  .contact-sidebar-card { flex: 1; min-width: 240px; }

  .transport-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }

  .cta-band-inner { flex-direction: column; text-align: center; }

  .discover-grid { grid-template-columns: 1fr; }

  .policy-content { padding: 36px 28px; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .reviews-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  section { padding: 56px 0; }

  .booking-card { grid-template-columns: 1fr; padding: 20px 16px; }
  .booking-btn  { grid-column: 1; }
  .rooms-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .discover-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom-links { flex-direction: column; gap: 8px; align-items: center; }

  .cookie-banner-inner { flex-direction: column; }
  .cookie-actions { width: 100%; }
  .btn-cookie-accept, .btn-cookie-decline { flex: 1; text-align: center; }

  .hero h1 { font-size: 2rem; }
  .page-hero { min-height: 35vh; }

  .about-badge { display: none; }
  .platform-badges { flex-direction: column; align-items: center; }
}

/* ─── PHOTO GALLERY ─────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--gray-100, #f3f4f6);
  outline: none;
}

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

.gallery-item:hover img,
.gallery-item:focus img {
  transform: scale(1.06);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.52) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .28s ease;
  display: flex;
  align-items: flex-end;
  padding: 12px 14px;
  pointer-events: none;
}

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

.gallery-item-caption {
  color: #fff;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.3;
}

.gallery-zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.6);
  opacity: 0;
  transition: opacity .22s ease, transform .22s ease;
  color: #fff;
  font-size: 1.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
  pointer-events: none;
}

.gallery-item:hover .gallery-zoom-icon,
.gallery-item:focus .gallery-zoom-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

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

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

.lightbox-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
}

.lightbox-img {
  max-width: 88vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0,0,0,.55);
  display: block;
}

.lightbox-caption {
  color: rgba(255,255,255,.78);
  font-size: .88rem;
  margin-top: 14px;
  text-align: center;
  letter-spacing: .03em;
  font-family: 'Inter', sans-serif;
}

.lightbox-close {
  position: absolute;
  top: -46px;
  right: -4px;
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  transition: color .18s;
  padding: 6px 10px;
}

.lightbox-close:hover { color: #fff; }

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.20);
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .18s;
  font-size: .95rem;
}

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

.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

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

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .lightbox-nav { width: 38px; height: 38px; font-size: .8rem; }
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
  .lightbox-img { max-width: 94vw; max-height: 75vh; }
}
