:root {
  --navy: #0b2a4a;
  --blue: #134f80;
  --orange: #f36f21;
  --orange-dark: #b94708;
  --orange-deep: #8f3300;
  --green: #157346;
  --light: #f5f8fb;
  --text: #18212b;
  --muted: #5c6773;
  --white: #fff;
  --border: #d9e1ea;
  --success: #0b6b3a;
  --error: #9c1c1c;
  --shadow: 0 16px 38px rgba(11, 42, 74, .11);
  --shadow-hover: 0 22px 44px rgba(11, 42, 74, .17);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  line-height: 1.58;
  background: var(--white);
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--orange-dark);
  outline-offset: 3px;
}
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
.wrap { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }
section[id] { scroll-margin-top: 92px; }
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.skip-link:focus { transform: translateY(0); }

.topbar { background: var(--navy); color: var(--white); font-size: 13px; }
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px 24px;
  padding: 8px 0;
  flex-wrap: wrap;
}
.topbar-sites,
.topbar-contact { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.topbar a { color: var(--white); font-weight: 700; }
.topbar a:hover { text-decoration: underline; text-underline-offset: 3px; }

.nav {
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 18px rgba(11, 42, 74, .05);
  backdrop-filter: blur(10px);
}
.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 8px 0;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo { width: min(290px, 30vw); height: auto; }
.menu { display: flex; align-items: center; gap: 22px; font-size: 15px; color: var(--navy); font-weight: 750; }
.menu a { position: relative; padding: 10px 0; }
.menu a:not(.menu-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 2px;
  background: var(--orange);
  transition: right .2s ease;
}
.menu a:hover { color: var(--orange-dark); }
.menu a:hover::after { right: 0; }
.menu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--orange-dark);
  color: var(--white);
  padding: 10px 16px !important;
}
.menu-cta:hover { background: var(--orange-deep); color: var(--white) !important; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 10px;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
  margin: 5px 0;
  transition: .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 800;
  border: 2px solid transparent;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange-dark); color: var(--white); box-shadow: 0 9px 20px rgba(185, 71, 8, .24); }
.btn-primary:hover { background: var(--orange-deep); }
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-secondary:hover { background: var(--blue); }
.btn-whatsapp { background: var(--green); color: var(--white); }
.btn-whatsapp:hover { background: #0f613a; }
.btn-outline { border-color: rgba(255,255,255,.85); color: var(--white); background: rgba(11,42,74,.12); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn:disabled { cursor: wait; opacity: .7; transform: none; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-media,
.hero-media img,
.hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { z-index: -3; }
.hero-media img { object-fit: cover; object-position: 62% 58%; }
.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 24, 42, .91) 0%, rgba(5, 24, 42, .79) 48%, rgba(5, 24, 42, .38) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .28));
}
.hero-wrap { display: flex; align-items: center; min-height: inherit; }
.hero-content { width: min(780px, 100%); padding: 76px 0 84px; }
.eyebrow {
  display: inline-block;
  color: var(--orange-dark);
  text-transform: uppercase;
  letter-spacing: 1.45px;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 17px;
}
h1, h2, h3 { margin: 0 0 16px; line-height: 1.12; text-wrap: balance; }
h1 { font-size: clamp(38px, 5vw, 67px); letter-spacing: -.025em; }
h2 { font-size: clamp(30px, 4vw, 46px); color: var(--navy); letter-spacing: -.018em; }
h3 { font-size: 22px; color: var(--navy); }
p { margin-top: 0; }
.hero .eyebrow { color: #ffb07a; }
.hero p { font-size: clamp(18px, 2vw, 20px); color: rgba(255, 255, 255, .94); max-width: 690px; margin: 0 0 28px; }
.hero-actions,
.cta-actions,
.contact-actions { display: flex; gap: 13px; flex-wrap: wrap; }
.hero-actions { margin-top: 28px; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px; }
.badge {
  border: 1px solid rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .12);
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  backdrop-filter: blur(6px);
}

/* Accesibilitate: linkurile din conținut nu sunt diferențiate doar prin culoare */
main p a:not(.btn),
.contact-line a,
.consent a,
.legal-card a,
.footer-legal a,
.footer-social a {
  text-decoration: underline;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

.hero-badges {
  padding-left: 0;
  list-style: none;
}

section { padding: 76px 0; }
section.hero { padding: 0; }
.section-light { background: var(--light); }
.lead { color: var(--muted); font-size: 18px; max-width: 870px; margin: 0 0 34px; }
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card,
.contact-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card { overflow: hidden; transition: transform .22s ease, box-shadow .22s ease; }
.card-body { padding: 24px; }
.card img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; background: #d8dde4; }
.card p:last-child,
.contact-box p:last-child { margin-bottom: 0; }
.mini { color: var(--orange-dark); font-weight: 900; text-transform: uppercase; font-size: 13px; letter-spacing: .7px; }
.checklist { padding-left: 0; list-style: none; margin: 18px 0 0; }
.checklist li { margin: 9px 0; padding-left: 27px; position: relative; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--orange-dark); font-weight: 900; }

.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: 34px; }
.stat { background: var(--navy); color: var(--white); border-radius: var(--radius); padding: 24px 16px; text-align: center; }
.stat strong { display: block; font-size: 38px; color: var(--orange); line-height: 1; margin-bottom: 9px; }
.stat span { display: block; font-weight: 700; }

.package-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.package { display: flex; flex-direction: column; }
.package .price {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  padding: 31px;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.package .price h3 { color: var(--white); }
.package .price strong { font-size: clamp(36px, 5vw, 44px); color: var(--orange); line-height: 1; margin: 7px 0 8px; }
.package .price .mini { color: #ff9a5d; }
.package .details { background: var(--white); padding: 30px; flex: 1; display: flex; flex-direction: column; align-items: flex-start; }
.package .details .checklist { margin-bottom: 24px; }
.package .details .btn { margin-top: auto; }
.package-actions { display: grid; gap: 13px; width: 100%; margin-top: auto; }
.package-actions .btn { margin-top: 0; }
.package-more { color: var(--navy); font-weight: 850; text-decoration: underline; text-underline-offset: 4px; }
.package-source { margin: 0 0 20px; color: var(--muted); font-size: 14px; }
.package-festival .price { background: linear-gradient(135deg, #45105f, #77158d 58%, #a72a8d); }
.package-festival .price .mini { color: #ffd36b; }
.package-festival .price strong { color: #ffd54a; }
.package-wide { margin-top: 24px; }
.package-wide .card-body { padding: 30px; }
.package-wide .btn { margin-top: 6px; }
.package-note { margin: 18px 0 0; color: var(--muted); font-size: 14px; }

.cta {
  background:
    radial-gradient(circle at 12% 20%, rgba(243,111,33,.23), transparent 32%),
    radial-gradient(circle at 88% 80%, rgba(54,131,188,.26), transparent 36%),
    linear-gradient(135deg, #071d33, var(--navy) 60%, #134f80);
  color: var(--white);
  text-align: center;
}
.cta h2 { color: var(--white); }
.cta p { color: rgba(255, 255, 255, .91); max-width: 760px; margin: 0 auto 27px; font-size: 18px; }
.cta-actions { justify-content: center; }

.contact-grid { align-items: start; }
.contact-box { padding: 28px; }
.contact-line { display: flex; align-items: flex-start; gap: 11px; margin: 13px 0; color: var(--text); font-weight: 700; overflow-wrap: anywhere; }
.contact-line a { color: var(--blue); }
.contact-line a:hover { text-decoration: underline; text-underline-offset: 3px; }
.contact-actions { margin-top: 24px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-weight: 750; margin-bottom: 6px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #bdc9d6;
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
}
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover { border-color: #8da1b5; }
.form-field textarea { min-height: 140px; resize: vertical; }
.consent { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--muted); margin: 4px 0 18px; }
.consent input { margin-top: 4px; flex: 0 0 auto; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { margin: 0 0 22px; border-radius: 12px; padding: 14px 16px; font-weight: 750; }
.form-status.success { background: #eaf7ef; color: var(--success); border: 1px solid #b9e1c8; }
.form-status.error { background: #fff0f0; color: var(--error); border: 1px solid #efbcbc; }

footer { background: #071d33; color: rgba(255, 255, 255, .82); padding: 40px 0; font-size: 15px; }
footer strong { color: var(--white); }
footer a { color: var(--white); }
footer a:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .9fr 1.2fr; gap: 24px; }

.mobile-actions { display: none; }

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 0;
  background: var(--light);
}
.not-found-box { max-width: 700px; text-align: center; padding: 38px; }
.not-found-logo { width: min(420px, 90%); margin: 0 auto 28px; }
.not-found h1 { color: var(--navy); }
.not-found .lead { margin-inline: auto; }

@media (hover: hover) {
  .card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
}

@media (max-width: 1060px) {
  .menu { gap: 15px; font-size: 14px; }
  .brand-logo { width: min(245px, 28vw); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 880px) {
  html { scroll-padding-top: 78px; }
  body.menu-open { overflow: hidden; }
  section[id] { scroll-margin-top: 78px; }
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-sites { display: none; }
  .nav-inner { min-height: 70px; }
  .brand-logo { width: min(245px, 66vw); }
  .menu-toggle { display: block; }
  .menu {
    position: absolute;
    left: -18px;
    right: -18px;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 30px rgba(11, 42, 74, .13);
    padding: 8px 18px 18px;
  }
  .menu.open { display: flex; }
  .menu a { padding: 13px 10px; border-bottom: 1px solid var(--border); }
  .menu a::after { display: none; }
  .menu-cta { margin-top: 9px; border-bottom: 0 !important; }
  .hero { min-height: 570px; }
  .hero-content { padding: 64px 0 70px; }
  .hero-media img { object-position: 67% 56%; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,24,42,.93), rgba(5,24,42,.79)); }
  .grid-3,
  .grid-2,
  .stats,
  .package-list,
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 58px 0; }
  .stat { padding: 21px 15px; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .package-list { grid-template-columns: 1fr; }
  body { padding-bottom: 66px; }
  .wrap { width: min(100% - 24px, var(--max)); }
  .topbar { font-size: 12px; }
  .topbar-inner { padding: 7px 0; }
  .topbar-contact span { display: none; }
  .topbar-contact { justify-content: center; gap: 3px 12px; }
  .nav-inner { min-height: 64px; padding: 7px 0; }
  .brand-logo { width: min(220px, 68vw); }
  .hero { min-height: 535px; }
  .hero-content { padding: 55px 0 61px; }
  h1 { font-size: clamp(36px, 10.5vw, 46px); }
  h2 { font-size: 31px; }
  .hero p { font-size: 17px; }
  .hero-actions .btn { width: 100%; }
  .hero-badges { gap: 8px; }
  .badge { font-size: 13px; padding: 8px 11px; }
  .grid-4 { grid-template-columns: 1fr; }
  .card-body,
  .contact-box,
  .package .details,
  .package-wide .card-body { padding: 22px; }
  .package .price { min-height: auto; padding: 27px 22px; }
  .stats { gap: 12px; }
  .stat strong { font-size: 33px; }
  .stat span { font-size: 14px; }
  .contact-actions .btn { flex: 1; }
  .submit-button { width: 100%; }
  footer { padding: 34px 0; }
  .mobile-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 -7px 22px rgba(5, 24, 42, .2);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-actions a {
    min-height: 58px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    border-right: 1px solid rgba(255,255,255,.16);
    font-size: 12px;
    font-weight: 800;
  }
  .mobile-actions a:last-child { border-right: 0; background: var(--orange-dark); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}


/* Social links and reviews */
.topbar-inner { row-gap: 7px; }
.topbar-social { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 7px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  line-height: 1;
}
.social-link:hover { background: rgba(255,255,255,.1); text-decoration: none !important; }
.social-link svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; flex: 0 0 auto; }
.social-link:first-child svg { fill: currentColor; stroke: none; }
.social-link .icon-fill { fill: currentColor; stroke: none; }

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px 32px;
  margin-bottom: 28px;
}
.section-heading-row .lead { margin-bottom: 0; }
.review-source-actions { display: flex; gap: 10px; flex-wrap: wrap; flex: 0 0 auto; }
.btn-source { background: #064a7b; color: var(--white); }
.btn-source:hover { background: #043b63; }
.btn-facebook { background: #0f5fc7; color: var(--white); }
.btn-facebook:hover { background: #0b4d9b; }

.ratings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 34px;
}
.rating-summary-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 24px;
}
.rating-summary-card strong {
  display: block;
  margin: 14px 0 4px;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}
.rating-summary-card strong span { font-size: .48em; font-weight: 800; }
.rating-summary-card p { margin: 0; color: var(--muted); font-size: 14px; }
.facebook-source { color: #0b4d9b; background: #e8f1ff; }
.reviews-subtitle { margin: 0 0 18px; color: var(--navy); }
.review-score { color: var(--navy); font-weight: 900; white-space: nowrap; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 260px;
}
.review-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.review-source { display: inline-flex; align-items: center; min-height: 28px; padding: 5px 9px; border-radius: 999px; font-size: 12px; font-weight: 900; }
.google-source { color: #155724; background: #e9f8ee; }
.booking-source { color: #003b74; background: #e7f2ff; }
.review-stars { color: #9a5a00; letter-spacing: 1px; font-size: 15px; white-space: nowrap; }
.review-card blockquote { margin: 0 0 22px; color: var(--navy); font-size: 18px; line-height: 1.55; font-weight: 750; }
.review-meta { margin-top: auto; margin-bottom: 0; color: var(--muted); font-size: 13px; }
.reviews-disclaimer { margin: 18px 0 0; color: var(--muted); font-size: 13px; }

.footer-social { line-height: 1.7; }


@media (max-width: 1180px) {
  .topbar-inner { justify-content: center; }
  .topbar-sites, .topbar-contact { justify-content: center; }
  .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1060px) {
  .menu { gap: 12px; font-size: 13px; }
  .brand-logo { width: min(230px, 25vw); }
}

@media (max-width: 880px) {
  .topbar-contact {
    width: 100%;
    justify-content: center;
  }
  .section-heading-row { align-items: flex-start; flex-direction: column; }

  /* Paginile juridice au doar două legături; le păstrăm vizibile pe mobil. */
  .legal-page .nav-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 12px;
    padding-bottom: 10px;
  }
  .legal-page .brand {
    width: 100%;
    justify-content: center;
  }
  .legal-page .menu {
    position: static;
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 10px;
    padding: 0;
    border: 0;
    box-shadow: none;
  }
  .legal-page .menu a {
    padding: 9px 12px;
    border-bottom: 0;
  }
  .legal-page .menu-cta { margin-top: 0; }
}

@media (max-width: 620px) {
  .topbar-sites { gap: 5px 7px; }
  .topbar-social { gap: 5px; }
  .social-link { padding: 5px 7px; }
  .social-link span { font-size: 11px; }
  .topbar-contact a[href^="mailto:"] { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { min-height: auto; }
  .review-source-actions { width: 100%; }
  .review-source-actions .btn { flex: 1; min-width: 155px; }
}

/* Formulare și pagini juridice — mutat din CSS inline pentru compatibilitate CSP */
.form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.form-grid .form-field-full{grid-column:1/-1}.contact-form fieldset{border:1px solid rgba(11,42,74,.18);border-radius:14px;padding:16px;margin:0 0 18px}.contact-form legend{font-weight:700;padding:0 8px;color:#0b2a4a}.checkbox-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px 16px}.checkbox-option{display:flex;align-items:flex-start;gap:8px}.checkbox-option input{margin-top:.25em}.field-help{display:block;font-size:.88rem;opacity:.78;margin-top:6px}.footer-legal{margin-top:10px;line-height:1.7}.footer-legal a{white-space:nowrap}.operator-summary{font-size:.92rem;line-height:1.55}.legal-main{padding:48px 0 72px}.legal-card{max-width:920px;margin:0 auto;background:#fff;border-radius:18px;padding:clamp(24px,4vw,48px);box-shadow:0 14px 40px rgba(11,42,74,.09)}.legal-card h1{margin-top:0}.legal-card h2{margin-top:30px}.legal-card ul{padding-left:22px}.legal-back{display:inline-flex;margin-bottom:24px}.legal-meta{opacity:.75}.legal-contact-box{background:#f3f7fa;border-radius:14px;padding:18px;margin:24px 0}.required-note{font-size:.9rem;opacity:.75;margin-top:-4px}.form-error{color:#a32121;font-weight:600;margin-top:8px}.date-row{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
@media(max-width:720px){.form-grid,.checkbox-grid,.date-row{grid-template-columns:1fr}.form-grid .form-field-full{grid-column:auto}.contact-form fieldset{padding:14px}}

/* Formular în doi pași */
.multi-step-form { position: relative; }
.form-progress {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin: 22px 0 28px;
}
.progress-step {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  min-width: 0;
}
.progress-step:last-child { justify-content: flex-end; text-align: right; }
.progress-step span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e8eef4;
  color: var(--navy);
  font-weight: 900;
}
.progress-step strong { font-size: 14px; line-height: 1.2; }
.progress-step.is-active { color: var(--navy); }
.progress-step.is-active span,
.progress-step.is-complete span { background: var(--orange-dark); color: var(--white); }
.progress-line { height: 2px; background: #d8e1ea; }
.progress-line.is-complete { background: var(--orange); }
.form-step[hidden] { display: none !important; }
.form-step h4 { margin: 0 0 18px; color: var(--navy); font-size: 20px; }
.step-description { margin: -8px 0 20px; color: var(--muted); }
.contact-help { margin: -3px 0 4px; }
.form-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
}
.form-navigation-next { justify-content: flex-end; }
.form-navigation .btn { min-width: 170px; }
.form-field textarea#structura_familii,
.form-field textarea#cerinte_speciale,
.form-field textarea#alte_informatii { min-height: 110px; }
.form-field input.is-invalid,
.form-field select.is-invalid,
.form-field textarea.is-invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(163, 33, 33, .1);
}
.checkbox-grid.is-invalid {
  border: 1px solid var(--error);
  border-radius: 10px;
  padding: 10px;
  background: #fff8f8;
}

@media (max-width: 620px) {
  .form-progress { grid-template-columns: 1fr 34px 1fr; gap: 6px; }
  .progress-step { gap: 7px; align-items: flex-start; }
  .progress-step span { width: 30px; height: 30px; }
  .progress-step strong { font-size: 12px; }
  .form-navigation { flex-direction: column-reverse; align-items: stretch; }
  .form-navigation-next { flex-direction: column; }
  .form-navigation .btn { width: 100%; min-width: 0; }
}

@media (max-width: 880px) {
  .ratings-grid,
  .reviews-grid-real { grid-template-columns: 1fr; }
}


/* Galerie foto responsive */
.menu a[aria-current="page"] { color: var(--orange-dark); }
.menu a[aria-current="page"]::after { right: 0; }
.gallery-hero {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.gallery-hero .hero-media,
.gallery-hero .hero-media img,
.gallery-hero .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.gallery-hero .hero-media { z-index: -3; }
.gallery-hero .hero-media img { object-fit: cover; object-position: center 48%; }
.gallery-hero .hero-shade {
  z-index: -2;
  background: linear-gradient(90deg, rgba(5,24,42,.93) 0%, rgba(5,24,42,.80) 52%, rgba(5,24,42,.43) 100%);
}
.gallery-hero-content { padding: 76px 0 82px; }
.gallery-hero-content h1 { max-width: 850px; }
.gallery-hero-content p { max-width: 720px; font-size: clamp(17px, 2vw, 20px); color: rgba(255,255,255,.94); }
.gallery-category-nav { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.gallery-section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 26px; }
.gallery-section-heading .lead { margin-bottom: 0; }
.gallery-count {
  flex: 0 0 auto;
  color: var(--navy);
  background: #eaf0f5;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 850;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.gallery-card {
  position: relative;
  display: block;
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #dce4eb;
  box-shadow: 0 12px 28px rgba(11,42,74,.11);
  aspect-ratio: 4 / 3;
  isolation: isolate;
}
.gallery-card picture,
.gallery-card img { width: 100%; height: 100%; }
.gallery-card img { object-fit: cover; transition: transform .35s ease; }
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(5,24,42,.82) 100%);
  z-index: 1;
}
.gallery-card-caption {
  position: absolute;
  z-index: 2;
  left: 15px;
  right: 15px;
  bottom: 13px;
  color: var(--white);
  font-weight: 850;
  line-height: 1.25;
  text-shadow: 0 2px 6px rgba(0,0,0,.42);
}
.gallery-card:focus-visible { outline-offset: 5px; }
.gallery-card:hover img { transform: scale(1.035); }
.gallery-subsection { padding: 18px 0 50px; }
.gallery-subsection h3 { font-size: clamp(25px, 3vw, 34px); }
.gallery-subsection > p { max-width: 770px; color: var(--muted); margin-bottom: 24px; }
.gallery-subsection-last { padding-bottom: 0; }
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(3,13,23,.94);
  padding: clamp(18px, 4vw, 54px);
  display: grid;
  grid-template-columns: minmax(44px, 72px) minmax(0, 1fr) minmax(44px, 72px);
  align-items: center;
}
.gallery-lightbox[hidden] { display: none; }
.gallery-lightbox figure { margin: 0; display: grid; justify-items: center; gap: 14px; max-height: 100%; }
.gallery-lightbox img { max-width: min(1180px, 100%); max-height: calc(100vh - 150px); object-fit: contain; border-radius: 10px; box-shadow: 0 22px 60px rgba(0,0,0,.45); }
.gallery-lightbox figcaption { color: var(--white); text-align: center; font-weight: 750; }
.lightbox-close,
.lightbox-nav {
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(11,42,74,.72);
  color: var(--white);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 34px;
  display: grid;
  place-items: center;
  line-height: 1;
}
.lightbox-close { position: absolute; right: 18px; top: 18px; font-size: 30px; }
.lightbox-next { justify-self: end; }
body.lightbox-open { overflow: hidden; }

@media (max-width: 880px) {
  .gallery-hero { min-height: 470px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-section-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
}

@media (max-width: 620px) {
  .gallery-hero { min-height: 490px; }
  .gallery-hero-content { padding: 56px 0 62px; }
  .gallery-category-nav { flex-direction: column; }
  .gallery-category-nav .btn { width: 100%; }
  .gallery-grid { grid-template-columns: 1fr; gap: 14px; }
  .gallery-card { border-radius: 14px; }
  .gallery-section-heading { margin-bottom: 20px; }
  .gallery-lightbox { padding: 70px 10px 24px; grid-template-columns: 44px minmax(0, 1fr) 44px; }
  .gallery-lightbox img { max-height: calc(100vh - 170px); }
  .lightbox-nav { width: 40px; height: 40px; font-size: 28px; }
  .lightbox-close { right: 12px; top: 12px; }
}

/* Landing pages: facilități, rezervare și festivaluri */
.landing-hero {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.landing-hero .hero-media,
.landing-hero .hero-media img,
.landing-hero .hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.landing-hero .hero-media { z-index: -3; }
.landing-hero .hero-media img { object-fit: cover; }
.facilities-hero .hero-media img { object-position: center 48%; }
.festivals-hero .hero-media img { object-position: center 55%; }
.landing-hero .hero-shade {
  z-index: -2;
  background: linear-gradient(90deg, rgba(5,24,42,.95) 0%, rgba(5,24,42,.83) 52%, rgba(5,24,42,.46) 100%);
}
.landing-hero-content { padding: 78px 0 86px; }
.landing-hero-content h1 { max-width: 880px; }
.landing-hero-content > p {
  max-width: 760px;
  color: rgba(255,255,255,.94);
  font-size: clamp(17px, 2vw, 21px);
}
.section-actions { display: flex; justify-content: center; margin-top: 28px; }
.btn-outline-dark {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

.quick-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
}
.quick-page-card {
  display: grid;
  grid-template-columns: minmax(180px, .85fr) minmax(0, 1.15fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.quick-page-card picture { display: block; width: 100%; height: 100%; min-height: 300px; overflow: hidden; }
.quick-page-card picture img,
.quick-page-card > img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; }
.quick-page-card .quick-page-poster { background: #f2f3f7; }
.quick-page-card .quick-page-poster img { object-fit: contain; padding: 8px; }
.quick-page-card > div { padding: 28px; display: flex; flex-direction: column; align-items: flex-start; }
.quick-page-card h3 { margin-top: 6px; }
.quick-page-card p { color: var(--muted); flex: 1; }

.feature-card .card-body { display: flex; flex-direction: column; align-items: flex-start; height: calc(100% - 220px); }
.feature-card .card-body p { flex: 1; }

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(11,42,74,.08);
}
.info-card h3 { margin: 12px 0 8px; }
.info-card p { color: var(--muted); margin-bottom: 0; }
.info-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #eaf0f5;
  font-size: 24px;
}

.booking-channel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.booking-channel {
  display: grid;
  justify-items: center;
  gap: 5px;
  text-align: center;
  min-height: 150px;
  padding: 22px 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(11,42,74,.08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.booking-channel:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(185,71,8,.45); }
.booking-channel span { font-size: 30px; }
.booking-channel strong { color: var(--navy); font-size: 18px; }
.booking-channel small { color: var(--muted); overflow-wrap: anywhere; }

.booking-steps {
  list-style: none;
  padding: 0;
  margin: 30px 0 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.booking-steps li {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.booking-steps li > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange-dark);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 14px;
}
.booking-steps h3 { font-size: 18px; margin: 0 0 7px; }
.booking-steps p { margin: 0; color: var(--muted); }
.notice-box {
  padding: 18px 20px;
  border-left: 5px solid var(--orange-dark);
  border-radius: 12px;
  background: #fff4ec;
  color: var(--text);
}
.notice-box a { color: var(--orange-deep); text-decoration: underline; text-underline-offset: 3px; font-weight: 800; }

.event-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}
.event-overview-card {
  display: grid;
  gap: 6px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.event-overview-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.event-overview-card strong { color: var(--navy); font-size: clamp(23px, 3vw, 32px); }
.event-overview-card small { color: var(--muted); font-size: 15px; }
.event-overview-featured { border-color: rgba(185,71,8,.45); background: #fff8f3; }
.event-genre { color: var(--orange-deep); font-size: 13px; font-weight: 950; letter-spacing: .16em; }

.event-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 74px);
}
.event-layout-reverse .event-media { order: 2; }
.event-layout-reverse .event-content { order: 1; }
.event-media {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
  min-height: 410px;
  background: #dce4eb;
}
.event-media > img { width: 100%; height: 100%; min-height: 410px; object-fit: cover; }
.event-media-collage {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 8px;
  padding: 8px;
  background: var(--white);
}
.event-media-collage img { width: 100%; height: 100%; min-height: 410px; object-fit: cover; border-radius: 13px; }
.event-content h2 { margin-top: 4px; }
.event-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}
.event-status-past { background: #e7edf3; color: var(--navy); }
.event-status-upcoming { background: #e7f5ed; color: var(--success); }
.event-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 11px; margin: 24px 0 16px; }
.event-checklist { margin-top: 22px; }
.source-note { font-size: 14px; color: var(--muted); }

.event-media-poster {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: linear-gradient(180deg, #111b27, #22364e);
}
.event-media-poster picture,
.event-media-poster img { width: 100%; height: 100%; }
.event-media-poster img {
  min-height: auto;
  object-fit: contain;
  border-radius: 14px;
  background: #f7f8fb;
}
.partner-highlight { margin-top: 20px; }
.poster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}
.poster-card {
  display: grid;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.poster-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.poster-card:focus-visible { outline-offset: 5px; }
.poster-card-media {
  display: grid;
  place-items: center;
  min-height: 250px;
  padding: 14px;
  background: #f7f8fb;
}
.poster-card picture,
.poster-card img { width: 100%; }
.poster-card img {
  height: auto;
  max-height: 470px;
  object-fit: contain;
  border-radius: 12px;
}
.poster-card-caption {
  display: grid;
  gap: 4px;
  padding: 14px 16px 18px;
}
.poster-card-caption strong {
  color: var(--navy);
  font-size: 18px;
}
.poster-card-caption small {
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 1060px) {
  .amenity-grid,
  .booking-channel-grid,
  .booking-steps,
  .poster-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quick-page-card { grid-template-columns: 1fr; }
  .quick-page-card picture,
  .quick-page-card picture img,
  .quick-page-card > img { min-height: 230px; max-height: 260px; }
}

@media (max-width: 880px) {
  .landing-hero { min-height: 520px; }
  .landing-hero-content { padding: 62px 0 70px; }
  .quick-page-grid,
  .event-layout { grid-template-columns: 1fr; }
  .event-layout-reverse .event-media,
  .event-layout-reverse .event-content { order: initial; }
  .event-media { min-height: 330px; }
  .event-media > img,
  .event-media-collage img { min-height: 330px; }
}

@media (max-width: 620px) {
  .landing-hero { min-height: 535px; }
  .landing-hero-content { padding: 54px 0 60px; }
  .landing-hero .hero-shade { background: linear-gradient(180deg, rgba(5,24,42,.83), rgba(5,24,42,.94)); }
  .quick-page-grid,
  .amenity-grid,
  .booking-channel-grid,
  .booking-steps,
  .event-overview-grid,
  .poster-grid { grid-template-columns: 1fr; }
  .quick-page-card > div,
  .info-card,
  .event-overview-card { padding: 21px; }
  .booking-channel { min-height: 130px; }
  .event-media-collage { grid-template-columns: 1fr; }
  .event-media-collage img { min-height: 230px; }
  .poster-card-media { min-height: 210px; }
  .event-actions .btn,
  .section-actions .btn { width: 100%; }
}

/* Pagina dedicată solicitării de ofertă */
.offer-note { margin-top: 24px; }
.offer-form-section { scroll-margin-top: 110px; }
@media (max-width: 620px) { .offer-note { margin-top: 18px; } }

/* Protecția formularului și topbar mobil simplificat */
.form-security-status {
  margin: 10px 0 18px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #eef3f7;
  color: #314a5f;
  font-size: .9rem;
  font-weight: 700;
}
.form-security-status.is-ready { background: #e7f5ed; color: #19623a; }
.form-security-status.is-error { background: #fff0f0; color: #982323; }
.turnstile-container { margin: 18px 0; min-height: 65px; }
.turnstile-container[hidden] { display: none; }

@media (max-width: 620px) {
  .topbar-inner { min-height: 38px; padding: 6px 0; }
  .topbar-social { display: none; }
  .topbar-contact { width: auto; justify-content: center; }
  .topbar-contact a[href^="mailto:"] { display: none; }
  .topbar-contact span { display: none; }
  .topbar-contact a[href^="tel:"] {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
  }
  .festivals-hero .hero-media img { object-position: 51% center; }
}
