/* ---------- Tokens ---------- */
:root{
  --bg:#FFFFFF;
  --text:#111111;
  --text-secondary:#666666;
  --accent:#2563EB;
  --accent-dark:#1d4ed8;
  --border:#E5E7EB;
  --surface:#FAFAFA;
  --radius:14px;
  --max-w:1160px;
  --speed:200ms;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
/* Offsets every anchor target by the sticky nav's height, so jumping to a
   section (or #rezerva inside Contact) never hides the heading behind it. */
section[id], #rezerva{scroll-margin-top:84px;}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  position:relative;
}

/* ---------- Ambient background — soft color blobs, kept very subtle ---------- */
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    radial-gradient(680px 520px at 88% 4%, rgba(37,99,235,0.07), transparent 70%),
    radial-gradient(620px 480px at 6% 38%, rgba(37,99,235,0.05), transparent 70%),
    radial-gradient(700px 560px at 92% 78%, rgba(249,115,22,0.05), transparent 70%);
}

/* Fine dot-grid texture for alt (grey) sections, very low contrast */
.section.alt{
  background-color:var(--surface);
  background-image:radial-gradient(rgba(17,17,17,0.06) 1px, transparent 1px);
  background-size:22px 22px;
}

img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}

.container{
  max-width:var(--max-w);
  margin:0 auto;
  padding:0 24px;
}

h1,h2,h3{
  font-weight:700;
  letter-spacing:-0.02em;
  margin:0;
}
h1{font-size:clamp(2.2rem,5vw,3.6rem);line-height:1.1;}
h2{font-size:clamp(1.7rem,3.2vw,2.4rem);line-height:1.2;}
h3{font-size:1.15rem;}

p{margin:0;color:var(--text-secondary);}

.eyebrow{
  font-size:0.8rem;
  font-weight:600;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--accent);
  margin:0 0 10px;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 26px;
  border-radius:10px;
  font-weight:600;
  font-size:0.95rem;
  transition:background var(--speed) ease, color var(--speed) ease, border-color var(--speed) ease, transform var(--speed) ease;
  border:1px solid transparent;
  cursor:pointer;
}
.btn-primary{
  background:var(--accent);
  color:#fff;
  box-shadow:0 5px 15px rgba(37,99,235,0.3);
}
.btn-primary:hover{background:var(--accent-dark);box-shadow:0 8px 20px rgba(37,99,235,0.45);}
.btn-primary:active{box-shadow:0 3px 8px rgba(37,99,235,0.5);}
.btn-ghost{
  background:transparent;
  color:var(--text);
  border-color:var(--border);
}
.btn-ghost:hover{border-color:var(--text);}
.btn:active{transform:scale(0.98);}

/* Booking button — confetti burst on click, inspired by the Uiverse
   like/dislike fireworks effect (adapted: no checkbox state, just a
   one-shot burst triggered from script.js). */
.btn-book{overflow:visible;}
.confetti-burst{
  position:absolute;
  top:50%;
  left:50%;
  width:6px;
  height:6px;
  border-radius:50%;
  pointer-events:none;
}
.confetti-burst.is-bursting{
  animation:confetti-bang 0.8s ease-out forwards, confetti-fade 0.8s ease-in forwards;
}
@keyframes confetti-fade{
  0%, 70%{opacity:1;}
  100%{opacity:0;}
}
@keyframes confetti-bang{
  to{
    box-shadow:
      48px -42px #fff,
      -52px -38px #fff,
      62px 10px #93c5fd,
      -60px 14px #93c5fd,
      18px -58px #fff,
      -20px -56px #93c5fd,
      52px 34px #fff,
      -50px 36px #93c5fd,
      0px -64px #93c5fd,
      4px 50px #fff;
  }
}

/* ---------- Promo bar — Ofertă 3+1 ---------- */
.promo-bar{
  position:relative;
  background:#FFD7A8;
  color:#1d2d50;
  overflow:hidden;
}
.promo-bar::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:50%;
  height:100%;
  background:linear-gradient(110deg, transparent, rgba(255,255,255,0.10), transparent);
  transform:translateX(-100%);
  animation:promo-shimmer 3.5s linear infinite;
  will-change:transform;
}
.promo-inner{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 24px;
  font-size:0.85rem;
  font-weight:500;
  flex-wrap:wrap;
  text-align:center;
}
.promo-dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#1d2d50;
  flex-shrink:0;
  animation:promo-pulse 1.8s ease-in-out infinite;
}
.promo-link{
  color:#1d2d50;
  font-weight:700;
  text-decoration:underline;
  text-decoration-color:rgba(29,45,80,0.4);
  text-underline-offset:3px;
  transition:text-decoration-color var(--speed) ease;
}
.promo-link:hover{text-decoration-color:#1d2d50;}
@keyframes promo-shimmer{to{transform:translateX(300%);}}
@keyframes promo-pulse{
  0%,100%{box-shadow:0 0 0 0 rgba(29,45,80,0.5);}
  50%{box-shadow:0 0 0 5px rgba(29,45,80,0);}
}

/* ---------- Nav ---------- */
.nav{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,0.92);
  border-bottom:1px solid var(--border);
  backdrop-filter:none;
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:68px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  font-size:1.05rem;
  color:var(--text);
}
.brand img{border-radius:6px;}
.nav-links{
  display:flex;
  align-items:center;
  gap:32px;
  font-size:0.95rem;
  font-weight:500;
}
.nav-links a:not(.nav-cta){position:relative;padding-bottom:4px;}
.nav-links a:not(.nav-cta)::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:100%;
  height:2px;
  background:var(--accent);
  transform:translateX(-50%) scaleX(0);
  transform-origin:center;
  transition:transform 250ms ease;
}
.nav-links a:hover{color:var(--accent);}
.nav-links a:not(.nav-cta):hover::after{transform:translateX(-50%) scaleX(1);}
.nav-cta{
  background:var(--accent);
  color:#fff !important;
  padding:9px 18px;
  border-radius:8px;
  transition:background var(--speed) ease;
}
.nav-cta:hover{background:var(--accent-dark);}
.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:8px;
}
.nav-toggle span{width:22px;height:2px;background:var(--text);}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height:88vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  color:#fff;
}
.hero-media{
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
}
.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 60%;
  transform:translateY(0) scale(1.08);
  will-change:transform;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.72) 100%);
}
.hero-content{
  position:relative;
  z-index:1;
  padding:88px 0 56px;
}
.hero-copy{max-width:640px;}
.eyebrow-light{color:#fff;opacity:0.85;}
.hero h1{color:#fff;}
.hero-sub{
  font-size:1.1rem;
  margin-top:16px;
  max-width:480px;
  color:rgba(255,255,255,0.85);
}
.hero-actions{
  display:flex;
  justify-content:center;
  gap:14px;
  margin-top:24px;
  flex-wrap:wrap;
}
.btn-ghost-light{
  color:#fff;
  border-color:rgba(255,255,255,0.5);
}
.btn-ghost-light:hover{border-color:#fff;}
.hero-stats{
  display:flex;
  justify-content:space-between;
  gap:40px;
  margin:28px 0 0;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,0.25);
}
.hero-stats > div{text-align:center;}
.hero-stats dt{font-size:1.6rem;font-weight:700;color:#fff;}
.hero-stats dd{margin:4px 0 0;font-size:0.85rem;color:rgba(255,255,255,0.75);}

/* ---------- Hero — final style: editorial serif italic, centered ----------
   .hero is display:flex, so its only child (.container.hero-content) needs
   width:100% or it shrink-wraps instead of spanning the full hero. */
.hero-content{display:flex;justify-content:center;width:100%;}
.hero-copy{text-align:left;}
.serif-italic{
  font-family:"Playfair Display", Georgia, serif;
  font-style:italic;
  font-weight:500;
}
.serif-italic em{color:#FFD7A8;font-style:italic;}

/* Typewriter subtitle */
.typed-cursor{
  display:inline-block;
  width:2px;
  height:1.1em;
  margin-left:2px;
  background:rgba(255,255,255,0.75);
  vertical-align:-0.15em;
  animation:cursor-blink 900ms step-end infinite;
}
.typed-cursor.is-done{animation:none;opacity:0;}
@keyframes cursor-blink{50%{opacity:0;}}

/* ---------- SEO text block ---------- */
.seo-text{
  max-width:760px;
  display:flex;
  flex-direction:column;
  gap:20px;
}
.seo-text p{
  font-size:1rem;
  color:var(--text-secondary);
  line-height:1.75;
}
.seo-text strong{color:var(--text);font-weight:600;}

/* ---------- Sections ---------- */
.section{padding:96px 0;border-top:1px solid var(--border);}
#contact{padding:32px 0;}
.section-tight{padding:80px 0;}
.section-narrow .container{max-width:760px;}
.section-head{max-width:600px;margin-bottom:56px;}

/* ---------- Feature grid — Stripe-style "flashlight" border ----------
   .feature is the outer tile: a soft always-on glow (::before) plus a
   stronger one that fades in on hover (::after), both a radial-gradient
   positioned at the cursor via --x/--y (set in script.js). .feature-content
   is an opaque card inset by --border, so the glow is only ever visible
   on that thin ring, never washing out the card body. */
.grid{display:grid;gap:28px;}
.features{grid-template-columns:repeat(3,1fr);}
.feature{
  --x: 50%;
  --y: 50%;
  --border: 1px;
  min-height:230px;
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--border);
}
.feature::before,
.feature::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:radial-gradient(360px circle at var(--x) var(--y), rgba(37,99,235,0.35), transparent 45%);
}
.feature::before{z-index:0;opacity:0.4;}
.feature::after{z-index:0;opacity:0;transition:opacity 350ms ease;}
.feature:hover::after{opacity:1;}
.feature-content{
  position:absolute;
  inset:var(--border);
  z-index:1;
  display:flex;
  flex-direction:column;
  background:#fff;
  border-radius:inherit;
  padding:28px 28px 24px;
}
.feature-content .icon{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
  border-radius:14px;
  background:rgba(37,99,235,0.12);
  color:var(--accent);
}
.feature-content .icon svg{width:24px;height:24px;}
.feature-content .icon img{
  width:26px;
  height:26px;
  object-fit:contain;
  /* The PNGs are black line-art on transparent — recolor black to the
     site's accent blue (#2563EB) so they match the badge tint. */
  filter:invert(36%) sepia(95%) saturate(1789%) hue-rotate(214deg) brightness(97%) contrast(101%);
}
.feature-content strong{
  display:block;
  font-size:1.15rem;
  font-weight:700;
  color:var(--text);
  margin-bottom:8px;
}
.feature-content span{
  display:block;
  font-size:0.95rem;
  color:var(--text-secondary);
}

/* ---------- Gallery slideshow ---------- */
.slideshow{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  background:var(--surface);
  max-width:760px;
  margin:0 auto;
}
.slideshow-track{
  display:flex;
  transition:transform 500ms cubic-bezier(0.22,0.61,0.36,1);
}
.slide{
  flex:0 0 100%;
  min-width:0;
}
.slide img{
  width:100%;
  aspect-ratio:2/1;
  object-fit:cover;
  display:block;
}
.slide-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:32px;
  height:32px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.5);
  background:rgba(17,17,17,0.35);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:background var(--speed) ease;
}
.slide-arrow:hover{background:rgba(17,17,17,0.6);}
.slide-arrow svg{width:16px;height:16px;}
.slide-arrow.prev{left:8px;}
.slide-arrow.next{right:8px;}
.slide-dots{
  position:absolute;
  bottom:18px;
  left:0;
  right:0;
  display:flex;
  justify-content:center;
  gap:8px;
}
.slide-dots button{
  width:8px;
  height:8px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,0.5);
  cursor:pointer;
  padding:0;
  transition:background var(--speed) ease, transform var(--speed) ease;
}
.slide-dots button.is-active{
  background:#fff;
  transform:scale(1.3);
}


/* ---------- Pricing ---------- */
.pricing{grid-template-columns:repeat(3,1fr);}
.price-card{
  position:relative;
  isolation:isolate;
  padding:36px 32px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:0 1px 2px rgba(17,17,17,0.03);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}
/* Spotlight border — a radial glow that follows the cursor, visible only
   on the 1px border ring (white padding-box layer hides it everywhere else).
   z-index:-1 keeps it behind the card's own text content. */
.price-card::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  border-radius:inherit;
  border:1px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    radial-gradient(180px circle at var(--mx,50%) var(--my,50%), rgba(37,99,235,0.9), transparent 70%) border-box;
  opacity:0;
  pointer-events:none;
  transition:opacity 250ms ease;
}
.price-card:hover::after{opacity:1;}
.price-card h3{margin-bottom:14px;}
.price{
  font-size:2rem;
  font-weight:700;
  color:var(--text);
  margin:0 0 20px;
}
.price span{font-size:0.95rem;font-weight:500;color:var(--text-secondary);}
.price-card ul{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
  color:var(--text-secondary);
  font-size:0.92rem;
}
.price-note{
  margin-top:32px;
  font-size:0.85rem;
  text-align:center;
}

/* ---------- Process — solid blue card that flips to white on hover ----------
   Rest: filled with --accent, white text. Hover: flips to a white card
   with dark text and two short accent bars top/bottom. */
.process{grid-template-columns:repeat(3,1fr);align-items:stretch;}
.step{display:block;height:100%;}
.step-content{
  position:relative;
  height:100%;
  padding:28px 28px 32px;
  background:var(--accent);
  border-radius:20px;
  overflow:hidden;
  transition:background 0.45s ease, color 0.45s ease, box-shadow 0.45s ease;
}
.step-content::before,
.step-content::after{
  content:"";
  position:absolute;
  left:50%;
  width:64px;
  height:4px;
  border-radius:4px;
  background:var(--accent);
  transform:translateX(-50%) scaleX(0);
  opacity:0;
  transition:transform 0.4s ease, opacity 0.4s ease;
}
.step-content::before{top:0;}
.step-content::after{bottom:0;}
.step-content:hover{
  background:#fff;
  box-shadow:0 20px 40px rgba(37,99,235,0.15);
}
.step-content:hover::before,
.step-content:hover::after{
  opacity:1;
  transform:translateX(-50%) scaleX(1);
}
.step-num{
  display:inline-block;
  font-size:0.85rem;
  font-weight:700;
  color:#fff;
  opacity:0.85;
  margin-bottom:14px;
  transition:color 0.45s ease, opacity 0.45s ease;
}
.step-content:hover .step-num{color:var(--accent);opacity:1;}
.step-content h3{
  color:#fff;
  margin-bottom:8px;
  transition:color 0.45s ease;
}
.step-content:hover h3{color:var(--text);}
.step-content p{
  color:rgba(255,255,255,0.8);
  font-size:0.95rem;
  transition:color 0.45s ease;
}
.step-content:hover p{color:var(--text-secondary);}

/* ---------- Testimonials — vertical 3D perspective stack ----------
   Collapsed into a tight, blurred deck by default; hovering the list
   un-stacks the cards into a clean vertical row with staggered timing
   driven by the inline --i custom property. */
.testimonial-stack{
  list-style:none;
  margin:0 auto;
  padding:0;
  max-width:560px;
  position:relative;
  transform-style:preserve-3d;
  perspective:600px;
  display:flex;
  flex-direction:column;
  gap:0;
  transition:gap 500ms ease;
}
.testimonial-stack:hover{gap:16px;}
.testimonial-stack li{
  position:relative;
  display:flex;
  align-items:center;
  gap:18px;
  padding:18px 22px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:0 10px 24px rgba(17,17,17,0.1);
  transition:500ms;
  transition-delay:calc((var(--i, 1) - 1) * 60ms);
  cursor:default;
}
.testimonial-stack li:nth-child(1){transform:translateZ(-50px) translateY(14px);opacity:.6;filter:blur(3px);}
.testimonial-stack li:nth-child(2){opacity:.85;filter:blur(1.5px);}
.testimonial-stack li:nth-child(3){transform:translateZ(45px) translateY(-22px);}
.testimonial-stack:hover li{
  opacity:1;
  filter:blur(0);
  transform:translateZ(0) translateY(0);
}
.testimonial-stack .avatar{
  width:56px;
  height:56px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:0.9rem;
  color:#fff;
  background:linear-gradient(135deg, var(--accent), var(--accent-dark));
  flex-shrink:0;
}
.testimonial-stack .content{min-width:0;}
.testimonial-stack .content h3{font-size:0.95rem;margin-bottom:2px;}
.testimonial-stack .location{font-size:0.78rem;color:var(--text-secondary);margin-bottom:6px;}
.testimonial-stack .quote{color:var(--text);font-size:0.88rem;line-height:1.4;}

/* ---------- FAQ ---------- */
.faq-list{display:flex;flex-direction:column;gap:0;}
details{
  border-bottom:1px solid var(--border);
  padding:20px 0;
}
summary{
  cursor:pointer;
  font-weight:600;
  font-size:1.02rem;
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
summary::after{
  content:"+";
  font-size:1.3rem;
  color:var(--accent);
  font-weight:400;
}
details[open] summary::after{content:"–";}
details p{margin-top:14px;font-size:0.95rem;}

/* ---------- Contact — kept compact so the whole form fits without scroll ---------- */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:start;
}
.contact-list{
  list-style:none;
  padding:0;
  margin:16px 0 0;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.contact-list strong{display:block;font-size:0.8rem;color:var(--text-secondary);margin-bottom:2px;}
.contact-list a:hover{color:var(--accent);}
.contact-form{
  display:flex;
  flex-direction:column;
  gap:10px;
  background:#fff;
  padding:20px;
  border:1px solid var(--border);
  border-radius:var(--radius);
}
.contact-form label{
  display:flex;
  flex-direction:column;
  gap:4px;
  font-size:0.8rem;
  font-weight:600;
  color:var(--text);
}
.contact-form input,
.contact-form select,
.contact-form textarea{
  font-family:inherit;
  font-size:0.9rem;
  padding:8px 12px;
  border:1px solid var(--border);
  border-radius:8px;
  background:var(--surface);
  color:var(--text);
  outline:none;
  transition:border-color var(--speed) ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{border-color:var(--accent);}
.contact-form input:focus,
.contact-form textarea:focus{box-shadow:0 0 0 3px rgba(37,99,235,0.12);}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.form-note{font-size:0.75rem;margin-top:-2px;line-height:1.4;}
.form-success{
  text-align:center;
  padding:40px 24px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
}
.form-success h3{color:var(--accent);margin-bottom:8px;}
.form-success p{font-size:0.9rem;}

/* Custom date picker — replaces native <input type="date"> entirely, since
   the native calendar pop-up is rendered by the OS/browser and its size
   can't be controlled from CSS. This one is ours end-to-end. */
.date-field{position:relative;}
.date-trigger{color:var(--text-secondary);}
.date-trigger.has-value{color:var(--text);}
.date-trigger svg{width:16px;height:16px;flex-shrink:0;color:var(--text-secondary);}
.date-panel{
  position:absolute;
  top:calc(100% + 6px);
  left:0;
  z-index:30;
  width:300px;
  max-width:90vw;
  padding:14px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:10px;
  box-shadow:0 12px 28px rgba(17,17,17,0.12);
  opacity:0;
  transform:translateY(-6px);
  pointer-events:none;
  transition:opacity 180ms ease, transform 180ms ease;
}
.date-field.is-open .date-panel{opacity:1;transform:translateY(0);pointer-events:auto;}
.date-panel-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:10px;
  font-weight:700;
  font-size:0.9rem;
  text-transform:capitalize;
}
.date-nav{
  width:28px;
  height:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:none;
  border-radius:6px;
  background:none;
  color:var(--text-secondary);
  cursor:pointer;
  transition:background var(--speed) ease, color var(--speed) ease;
}
.date-nav:hover{background:var(--surface);color:var(--accent);}
.date-nav svg{width:16px;height:16px;}
.date-panel-weekdays{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  text-align:center;
  font-size:0.7rem;
  font-weight:600;
  color:var(--text-secondary);
  margin-bottom:4px;
}
.date-panel-days{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:2px;
}
.date-day{
  aspect-ratio:1;
  display:flex;
  align-items:center;
  justify-content:center;
  border:none;
  border-radius:6px;
  background:none;
  font-size:0.85rem;
  font-family:inherit;
  color:var(--text);
  cursor:pointer;
  transition:background var(--speed) ease, color var(--speed) ease;
}
.date-day:hover:not(:disabled){background:rgba(37,99,235,0.12);}
.date-day.is-muted{color:var(--text-secondary);opacity:0.45;}
.date-day.is-today{color:var(--accent);font-weight:700;}
.date-day.is-selected{background:var(--accent);color:#fff;}
.date-day:disabled{opacity:0.3;cursor:not-allowed;}
.date-panel-footer{
  display:flex;
  justify-content:space-between;
  margin-top:10px;
  padding-top:10px;
  border-top:1px solid var(--border);
}
.date-panel-footer button{
  background:none;
  border:none;
  font-family:inherit;
  font-weight:600;
  font-size:0.82rem;
  color:var(--accent);
  cursor:pointer;
}
.date-panel-footer button:hover{text-decoration:underline;}

/* Custom "Tip cazare" dropdown — full control over the open list and its
   hover color, since native <select> options can't be reliably restyled. */
.visually-hidden{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
.custom-select{position:relative;}
.custom-select-trigger{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  font-family:inherit;
  font-size:0.9rem;
  text-align:left;
  padding:8px 12px;
  border:1px solid var(--border);
  border-radius:8px;
  touch-action:manipulation;
  -webkit-tap-highlight-color:transparent;
  background:var(--surface);
  color:var(--text-secondary);
  cursor:pointer;
  transition:border-color var(--speed) ease, box-shadow var(--speed) ease;
}
.custom-select-trigger.has-value{color:var(--text);}
.custom-select-trigger svg{
  width:16px;height:16px;
  flex-shrink:0;
  color:var(--text-secondary);
  transition:transform var(--speed) ease;
}
.custom-select.is-open .custom-select-trigger{
  border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(37,99,235,0.12);
}
.custom-select.is-open .custom-select-trigger svg{transform:rotate(180deg);}
.custom-select-options{
  position:absolute;
  top:calc(100% + 6px);
  left:0;
  right:0;
  z-index:20;
  margin:0;
  padding:6px;
  list-style:none;
  background:#fff;
  border:1px solid var(--border);
  border-radius:10px;
  box-shadow:0 12px 28px rgba(17,17,17,0.12);
  opacity:0;
  transform:translateY(-6px);
  pointer-events:none;
  transition:opacity 180ms ease, transform 180ms ease;
}
.custom-select.is-open .custom-select-options{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}
.custom-select-options li{
  padding:9px 10px;
  border-radius:6px;
  font-size:0.88rem;
  font-weight:500;
  color:var(--text);
  cursor:pointer;
  touch-action:manipulation;
  -webkit-tap-highlight-color:transparent;
  transition:background var(--speed) ease, color var(--speed) ease;
}
.custom-select-options li:hover,
.custom-select-options li.is-active{
  background:var(--accent);
  color:#fff;
}

/* ---------- Process — "Rezervă acum" CTA under the 3 steps ---------- */
.process-cta{
  margin-top:40px;
  text-align:center;
}

/* ---------- Footer ---------- */
.footer{
  border-top:1px solid var(--border);
  padding:32px 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  font-size:0.85rem;
  color:var(--text-secondary);
  flex-wrap:wrap;
  gap:8px;
}

/* ---------- Fade-in on scroll ---------- */
.fade-in{
  opacity:0;
  transform:translateY(16px);
  transition:opacity 500ms ease, transform 500ms ease;
}
.fade-in.is-visible{
  opacity:1;
  transform:translateY(0);
}

/* ---------- Card appearance — one fixed effect per section, deliberately different ---------- */
.card-anim{
  position:relative;
}

/* Camere — simple fade-in/slide from the right on scroll; the hover
   interaction itself now lives in the flashlight-border effect above. */
.appear-right{
  opacity:0;
  transform:translateX(36px);
  transition:opacity 550ms ease, transform 550ms ease;
  transition-delay:var(--stagger-delay,0ms);
}
.appear-right.is-visible{opacity:1;transform:translateX(0);}

/* Tarife — pop scale-in */
.appear-pop{
  opacity:0;
  transform:scale(0.92);
  transition:opacity 450ms cubic-bezier(0.34,1.56,0.64,1), transform 450ms cubic-bezier(0.34,1.56,0.64,1);
}
.appear-pop.is-visible{opacity:1;transform:scale(1);}

/* Tarife — Lift & Colored Glow Shadow on hover: floats up, diffuse
   indigo-tinted shadow blooms underneath. Declared after .appear-pop so
   the hover transform wins the cascade once the entrance settles. */
.price-card:hover{
  transform:translateY(-7px);
  box-shadow:0 28px 32px -12px rgba(79,70,229,0.18), 0 10px 14px -8px rgba(59,130,246,0.12);
}

/* Rezervare (pași) — slide alternant la apariție; hover-ul (fundal albastru
   → alb) trăiește pe .step-content, fără conflict cu acest transition. */
.appear-slide{
  opacity:0;
  transform:translateX(var(--slide-x,-24px));
  transition:opacity 500ms ease, transform 500ms ease;
  transition-delay:var(--stagger-delay,0ms);
}
.appear-slide.is-visible{opacity:1;transform:translateX(0);}

/* ---------- Responsive ---------- */
@media (max-width:900px){
  .features,.pricing,.process{grid-template-columns:repeat(2,1fr);}
  .contact-grid{grid-template-columns:1fr;}
  .hero{min-height:80vh;}
}

@media (max-width:680px){
  .nav-links{
    position:absolute;
    top:68px;
    left:0;
    right:0;
    background:#fff;
    border-bottom:1px solid var(--border);
    flex-direction:column;
    align-items:flex-start;
    padding:20px 24px;
    gap:18px;
    display:none;
  }
  .nav-links.is-open{display:flex;}
  .nav-toggle{display:flex;}
  .features,.pricing,.process{grid-template-columns:1fr;}
  .form-row{grid-template-columns:1fr;}
  .hero-stats{gap:24px;flex-wrap:wrap;justify-content:center;}
  .hero-content{padding:110px 0 64px;justify-content:center;}
  .hero-copy{max-width:100%;text-align:center;}
  .hero-actions{justify-content:center;}
  .section{padding:64px 0;}
}

@media (prefers-reduced-motion: reduce){
  .fade-in{transition:none;opacity:1;transform:none;}
  html{scroll-behavior:auto;}
}

