/* ============================================================
   ASTORIA APARTAMENT · MAMAIA NORD
   style.css — Production v2.0 — Full SEO + Mobile + Design
   ============================================================ */

/* ===== GOOGLE FONTS PRELOAD ===== */
/* Playfair Display + DM Sans — loaded in HTML */

/* ===== CSS VARIABLES ===== */
:root {
  --teal:        #1a9a9a;
  --teal-dark:   #0d7070;
  --teal-light:  #e4f5f5;
  --teal-mid:    #2db8b8;
  --gold:        #c9a96e;
  --gold-light:  #f5edd8;
  --dark:        #1a1a2e;
  --dark-mid:    #2d2d3a;
  --anthracite:  #5a5a6e;
  --gray-light:  #f0f0f4;
  --white:       #ffffff;
  --cream:       #fafaf8;
  --text:        #2a2a3a;
  --text-light:  #6a6a7a;

  --nav-h: 72px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm:  0 2px 12px rgba(26,154,154,0.08);
  --shadow-md:  0 8px 30px rgba(26,154,154,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.12);
  --shadow-xl:  0 40px 100px rgba(0,0,0,0.18);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --section-pad: clamp(4rem, 8vw, 7rem) 5%;
  --max-w: 1160px;
}

/* ===== RESET + BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ===== SELECTION ===== */
::selection { background: var(--teal); color: white; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ===== CUSTOM CURSOR (desktop) ===== */
@media (hover: hover) {
  body { cursor: none; }
  a, button, [onclick] { cursor: none; }
  #cursor {
    position: fixed; width: 10px; height: 10px;
    background: var(--teal); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.3s, height 0.3s, opacity 0.3s;
    mix-blend-mode: multiply;
  }
  #cursor-ring {
    position: fixed; width: 36px; height: 36px;
    border: 1.5px solid var(--teal); border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.3s, height 0.3s, opacity 0.3s;
    opacity: 0.5;
  }
  #cursor.grow { width: 18px; height: 18px; opacity: 0.6; }
  #cursor-ring.grow { width: 60px; height: 60px; opacity: 0.2; }
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(26,154,154,0.08);
  transition: box-shadow var(--transition), background var(--transition);
}
#navbar.scrolled {
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.99);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--teal); letter-spacing: 0.5px;
  flex-shrink: 0;
  display: flex; align-items: center; gap: 0.5rem;
}
.nav-logo span { color: var(--dark); font-weight: 400; font-size: 1.2rem; }
.nav-logo::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

.nav-links {
  display: flex; gap: 0.25rem; align-items: center;
}
.nav-links a {
  font-size: 0.82rem; font-weight: 500;
  color: var(--anthracite);
  letter-spacing: 0.8px; text-transform: uppercase;
  padding: 6px 12px; border-radius: 6px;
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--teal); background: var(--teal-light); }
.nav-links a.active-link { color: var(--teal); }

.nav-cta {
  background: var(--teal) !important; color: white !important;
  padding: 9px 20px !important; border-radius: var(--radius-xl) !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(26,154,154,0.3);
  transition: all var(--transition) !important;
}
.nav-cta:hover {
  background: var(--teal-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(26,154,154,0.4) !important;
}

.lang-switcher { display: flex; gap: 4px; }
.lang-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 28px;
  border: 1.5px solid rgba(26,154,154,0.25);
  color: var(--anthracite);
  border-radius: 6px; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.5px; text-decoration: none;
  transition: all var(--transition-fast);
}
.lang-btn:hover, .lang-btn.active {
  background: var(--teal); color: white; border-color: var(--teal);
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; border-radius: 8px;
  transition: background var(--transition-fast);
}
.hamburger:hover { background: var(--teal-light); }
.hamburger span {
  width: 22px; height: 2px; background: var(--dark);
  border-radius: 2px; transition: all var(--transition);
  display: block;
}

.mobile-menu {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: white;
  padding: 1.5rem 6%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  z-index: 999; flex-direction: column; gap: 0.25rem;
  border-top: 1px solid rgba(26,154,154,0.08);
  max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem; font-weight: 500; color: var(--dark);
  padding: 0.85rem 1rem; border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  display: flex; align-items: center; gap: 0.5rem;
}
.mobile-menu a:hover { background: var(--teal-light); color: var(--teal); }
.mobile-menu .mobile-cta {
  background: var(--teal) !important; color: white !important;
  border-radius: var(--radius-xl) !important;
  justify-content: center; font-weight: 700 !important;
  margin-top: 0.5rem;
}
.mobile-lang {
  display: flex; gap: 0.5rem; padding: 0.5rem 1rem;
  margin-top: 0.25rem;
}
.mobile-lang a {
  flex: 1; text-align: center; background: var(--gray-light);
  border-radius: 8px; font-size: 0.8rem !important; font-weight: 700 !important;
}
.mobile-lang a.active { background: var(--teal) !important; color: white !important; }

/* ===== PROGRESS BAR ===== */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  z-index: 1001; width: 0%; transition: width 0.1s linear;
}

/* ===== HERO ===== */
.hero {
  height: 100svh; min-height: 600px; max-height: 1000px;
  position: relative; display: flex; align-items: flex-end;
  overflow: hidden; padding: 0 5% clamp(3rem, 6vh, 5rem);
}

.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/terasa.jpg') center/cover no-repeat;
  transform: scale(1.08);
  transition: transform 10s cubic-bezier(0.0, 0.0, 0.2, 1);
  will-change: transform;
}
.hero-bg.loaded { transform: scale(1.0); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,15,25,0.82) 0%,
    rgba(10,15,25,0.45) 40%,
    rgba(10,15,25,0.15) 70%,
    transparent 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
  transform: translateY(30px); opacity: 0;
  animation: heroIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes heroIn {
  to { transform: translateY(0); opacity: 1; }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(12px);
  color: white; padding: 6px 16px; border-radius: var(--radius-xl);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 700; color: white; margin-bottom: 1.2rem;
  line-height: 1.05; letter-spacing: -0.03em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero h1 em { font-style: normal; color: var(--gold); }

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.82); margin-bottom: 2rem;
  max-width: 540px; line-height: 1.65;
  font-weight: 300;
}

.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap; align-items: center;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--teal); color: white;
  padding: 15px 30px; border-radius: var(--radius-xl);
  font-weight: 700; font-size: 0.95rem;
  transition: all var(--transition);
  box-shadow: 0 8px 30px rgba(26,154,154,0.4);
  border: none; cursor: pointer;
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(26,154,154,0.5);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: white; padding: 14px 28px; border-radius: var(--radius-xl);
  font-weight: 600; font-size: 0.95rem;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.hero-stats {
  position: absolute; bottom: clamp(3rem, 6vh, 5rem); right: 5%;
  z-index: 2; display: flex; gap: 1rem;
  transform: translateX(30px); opacity: 0;
  animation: heroIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
}
.hero-stat {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 1rem 1.3rem; text-align: center; color: white;
  min-width: 90px;
}
.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hero-stat .lbl {
  font-size: 0.7rem; opacity: 0.75;
  text-transform: uppercase; letter-spacing: 1px;
  margin-top: 4px;
}

/* SCROLL INDICATOR */
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.7rem;
  letter-spacing: 2px; text-transform: uppercase;
  animation: fadeInUp 1s 1.5s both;
}
.scroll-dot {
  width: 1.5px; height: 40px; background: rgba(255,255,255,0.3);
  position: relative; overflow: hidden; border-radius: 1px;
}
.scroll-dot::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent, white);
  animation: scrollDown 2s 2s infinite ease-in-out;
}
@keyframes scrollDown {
  0% { top: -100%; } 100% { top: 100%; }
}

/* ===== BOOKING STRIP ===== */
.booking-strip {
  background: var(--dark);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  overflow: hidden;
}
.strip-item {
  padding: 1rem 1.8rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.5px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 0.5rem;
  white-space: nowrap;
}
.strip-item:last-child { border-right: none; }
.strip-item strong { color: white; }

/* ===== SECTION COMMONS ===== */
section { padding: var(--section-pad); }

.section-inner { max-width: var(--max-w); margin: 0 auto; }

.section-label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.2rem;
}
.section-label::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 0.6rem; height: 1.5px; background: var(--teal);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; color: var(--dark);
  line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--teal); }

.section-sub {
  font-size: 1rem; color: var(--anthracite);
  line-height: 1.75; max-width: 600px;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal-right.visible { opacity: 1; transform: none; }

/* Stagger children */
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s, transform 0.5s; }
.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.07s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.14s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.21s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.28s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.35s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.42s; }
.stagger.visible > *:nth-child(8) { transition-delay: 0.49s; }
.stagger.visible > * { opacity: 1; transform: none; }

/* ===== FEATURES STRIP ===== */
.features-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--teal-light);
  border: 1px solid var(--teal-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-box {
  background: white; padding: 2rem 1.5rem;
  text-align: center;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.feature-box:hover { background: var(--teal-light); }
.feature-box .icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--teal-light); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; transition: background var(--transition-fast);
}
.feature-box:hover .icon { background: var(--teal); color: white; }
.feature-box .icon svg { width: 22px; height: 22px; }
.feature-box h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 700; margin-bottom: 0.35rem;
  color: var(--dark);
}
.feature-box p { font-size: 0.8rem; color: var(--anthracite); line-height: 1.5; }

/* ===== DESPRE SECTION ===== */
.despre-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem); align-items: center;
}
.despre-images {
  position: relative;
}
.despre-images .img-main {
  width: 88%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5; object-fit: cover;
}
.despre-images .img-float {
  position: absolute; bottom: -2rem; right: 0;
  width: 52%; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover;
  border: 4px solid white;
}
.despre-badge {
  position: absolute; top: 2rem; right: 0;
  background: var(--teal); color: white;
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem; text-align: center;
  box-shadow: var(--shadow-md);
}
.despre-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 700; line-height: 1; color: var(--gold);
}
.despre-badge .lbl { font-size: 0.7rem; opacity: 0.85; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

.despre-features {
  display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.5rem;
}
.feature-item {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.9rem; color: var(--text); font-weight: 500;
  padding: 0.6rem 0; border-bottom: 1px solid var(--gray-light);
}
.feature-item:last-child { border-bottom: none; }
.feature-item::before {
  content: ''; width: 6px; height: 6px;
  background: var(--teal); border-radius: 50%; flex-shrink: 0;
}

/* ===== CAMERE ===== */
.camere-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.camera-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: white; border: 1px solid rgba(26,154,154,0.08);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.camera-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26,154,154,0.2);
}
.camera-img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  transition: transform var(--transition-slow);
}
.camera-card:hover .camera-img { transform: scale(1.04); }
.camera-body { padding: 1.5rem; }
.camera-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; margin-bottom: 0.5rem;
}
.camera-body p { font-size: 0.85rem; color: var(--anthracite); line-height: 1.6; margin-bottom: 1rem; }
.camera-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.camera-tag {
  background: var(--teal-light); color: var(--teal-dark);
  padding: 3px 10px; border-radius: 20px;
  font-size: 0.72rem; font-weight: 600;
}

/* ===== DOTĂRI ===== */
.dotari-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.dotare-card {
  background: white; border-radius: var(--radius-md);
  padding: 1.5rem 1.2rem; text-align: center;
  border: 1px solid rgba(26,154,154,0.08);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  cursor: default;
}
.dotare-card:hover {
  background: var(--teal-light);
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.dotare-icon {
  width: 48px; height: 48px;
  background: var(--teal-light); color: var(--teal);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 0.9rem;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.dotare-card:hover .dotare-icon { background: var(--teal); color: white; }
.dotare-icon svg { width: 22px; height: 22px; }
.dotare-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem; font-weight: 700; margin-bottom: 0.3rem;
}
.dotare-card p { font-size: 0.78rem; color: var(--anthracite); }

/* ===== PRETURI ===== */
.pret-card {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 2.5rem 2rem; text-align: center;
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.pret-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--teal-light), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.pret-card:hover { border-color: var(--teal); }
.pret-card:hover::before { opacity: 1; }
.pret-card.featured {
  background: var(--teal); color: white;
  transform: scale(1.04);
  box-shadow: 0 20px 50px rgba(26,154,154,0.35);
}
.pret-card.featured::before { display: none; }
.pret-card .season-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.pret-card .season-name {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--anthracite); margin-bottom: 0.25rem;
}
.pret-card.featured .season-name { color: rgba(255,255,255,0.8); }
.pret-card .season-months {
  font-size: 0.82rem; color: var(--anthracite); margin-bottom: 1.2rem;
}
.pret-card.featured .season-months { color: rgba(255,255,255,0.65); }
.pret-card .pret-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 700; line-height: 1;
  color: var(--teal);
}
.pret-card.featured .pret-num { color: var(--gold); }
.pret-card .pret-unit { font-size: 0.85rem; color: var(--anthracite); margin-top: 4px; }
.pret-card.featured .pret-unit { color: rgba(255,255,255,0.7); }
.pret-best {
  position: absolute; top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold); color: white;
  padding: 4px 18px; border-radius: 0 0 12px 12px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
  white-space: nowrap;
}

/* ===== CALCULATOR ===== */
.calculator {
  background: white; border-radius: var(--radius-xl);
  padding: 2.5rem; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(26,154,154,0.1);
}
.calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.calc-field label {
  display: block; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--anthracite); margin-bottom: 0.5rem;
}
.calc-field input, .calc-field select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid rgba(26,154,154,0.2);
  border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; color: var(--text);
  background: white; outline: none;
  transition: border-color var(--transition-fast);
  appearance: none; -webkit-appearance: none;
}
.calc-field input:focus, .calc-field select:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(26,154,154,0.1);
}
.calc-result {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: var(--radius-md); padding: 1.5rem;
  color: white; text-align: center; margin-top: 1rem;
}
.calc-result .total {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 700; color: var(--gold);
}
.calc-result p { font-size: 0.82rem; opacity: 0.8; margin-top: 4px; }

/* ===== CALENDAR ===== */
.calendar-wrapper {
  background: white; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-md);
  border: 1px solid rgba(26,154,154,0.1);
}
.cal-header {
  background: var(--teal); color: white;
  padding: 1.2rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.cal-header h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; }
.cal-nav {
  background: rgba(255,255,255,0.2); border: none; color: white;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem; transition: background var(--transition-fast);
}
.cal-nav:hover { background: rgba(255,255,255,0.35); }
.cal-days-hdr {
  display: grid; grid-template-columns: repeat(7, 1fr);
  background: var(--teal-light);
  padding: 0.5rem 1rem;
}
.cal-days-hdr span {
  text-align: center; font-size: 0.72rem;
  font-weight: 700; color: var(--teal-dark);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  padding: 0.75rem 1rem 1.5rem;
  gap: 4px;
}
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center;
  justify-content: center; font-size: 0.82rem;
  border-radius: 50%; transition: all var(--transition-fast);
  font-weight: 500;
}
.cal-day.other-month { color: #ccc; }
.cal-day.today { background: var(--gold-light); color: var(--gold); font-weight: 700; }
.cal-day.occupied {
  background: #ffe4e4; color: #cc4444;
  font-weight: 700; text-decoration: line-through;
  cursor: not-allowed; font-size: 0.75rem;
}
.cal-day.available {
  cursor: pointer;
}
.cal-day.available:hover { background: var(--teal-light); color: var(--teal); }
.cal-legend {
  display: flex; gap: 1.5rem; padding: 0.75rem 1.5rem 1rem;
  border-top: 1px solid var(--gray-light); font-size: 0.75rem;
  color: var(--anthracite);
}
.cal-legend span {
  display: flex; align-items: center; gap: 0.4rem;
}
.leg-dot {
  width: 10px; height: 10px; border-radius: 50%;
}

/* ===== GALERIE ===== */
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto auto;
  gap: 10px;
}
.galerie-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-sm); cursor: zoom-in;
  background: var(--gray-light);
}
.galerie-item:first-child {
  grid-column: span 2; grid-row: span 2;
}
.galerie-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--transition-slow);
  display: block;
}
.galerie-item:first-child img { min-height: 360px; }
.galerie-item:not(:first-child) img { aspect-ratio: 4/3; }
.galerie-item:hover img { transform: scale(1.06); }
.galerie-overlay {
  position: absolute; inset: 0;
  background: rgba(26,154,154,0); color: white;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.galerie-overlay svg { width: 32px; height: 32px; opacity: 0; transition: opacity var(--transition); }
.galerie-item:hover .galerie-overlay { background: rgba(26,154,154,0.35); }
.galerie-item:hover .galerie-overlay svg { opacity: 1; }

/* ===== LIGHTBOX ===== */
#lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.95); z-index: 9000;
  align-items: center; justify-content: center;
  padding: 2rem; flex-direction: column; gap: 1rem;
  cursor: zoom-out;
  animation: fadeIn 0.25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
#lightbox img {
  max-width: 90vw; max-height: 80vh; object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
#lightboxCaption { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
#lightbox button {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.3);
  color: white; width: 44px; height: 44px;
  border-radius: 50%; font-size: 1.1rem;
  cursor: pointer; transition: background var(--transition-fast);
  display: flex; align-items: center; justify-content: center;
}
#lightbox button:hover { background: rgba(255,255,255,0.25); }

/* ===== RECENZII ===== */
.recenzii-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.recenzie-card {
  background: white; border-radius: var(--radius-lg);
  padding: 2rem; border: 1px solid rgba(26,154,154,0.1);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.recenzie-card::before {
  content: '"';
  position: absolute; top: 0.5rem; right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 8rem; font-weight: 700; line-height: 1;
  color: var(--teal-light); z-index: 0;
}
.recenzie-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.recenzie-score {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--teal); color: white;
  padding: 4px 14px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 700;
  margin-bottom: 1rem; position: relative; z-index: 1;
}
.recenzie-text {
  font-size: 0.92rem; line-height: 1.7; color: var(--anthracite);
  font-style: italic; margin-bottom: 1.2rem;
  position: relative; z-index: 1;
}
.recenzie-autor {
  display: flex; align-items: center; gap: 0.75rem;
  position: relative; z-index: 1;
}
.recenzie-autor .avatar {
  width: 42px; height: 42px; background: var(--teal);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: white;
  flex-shrink: 0;
}
.recenzie-autor .name { font-size: 0.9rem; font-weight: 700; color: var(--dark); }
.recenzie-autor .platform { font-size: 0.75rem; color: var(--anthracite); }

/* ===== LOCATIE ===== */
.map-container {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(26,154,154,0.1);
}
.map-container iframe { display: block; }

.locatie-distances {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--gray-light);
  border-radius: var(--radius-lg); overflow: hidden;
}
.distance-item {
  background: white; padding: 1.2rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  transition: background var(--transition-fast);
}
.distance-item:hover { background: var(--teal-light); }
.distance-icon {
  font-size: 1.5rem; flex-shrink: 0;
  width: 44px; text-align: center;
}
.distance-info h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem; font-weight: 700; margin-bottom: 0.15rem;
}
.distance-info p { font-size: 0.78rem; color: var(--anthracite); }
.distance-val {
  margin-left: auto; flex-shrink: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; color: var(--teal);
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--gray-light);
  overflow: hidden;
}
.faq-question {
  padding: 1.3rem 0;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; gap: 1rem;
  font-size: 0.97rem; font-weight: 600; color: var(--dark);
  transition: color var(--transition-fast);
}
.faq-question:hover { color: var(--teal); }
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--teal-light); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  transition: all var(--transition-fast);
}
.faq-item.open .faq-toggle { background: var(--teal); color: white; transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height var(--transition);
  font-size: 0.9rem; color: var(--anthracite); line-height: 1.7;
}
.faq-answer-inner { padding: 0 0 1.2rem; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ===== REZERVARE FORM ===== */
.rezervare-form {
  background: white; border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(26,154,154,0.1);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--anthracite);
}
.form-field input, .form-field select, .form-field textarea {
  padding: 12px 15px;
  border: 1.5px solid rgba(26,154,154,0.18);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem; color: var(--text);
  background: var(--cream); outline: none;
  transition: all var(--transition-fast);
  width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--teal); background: white;
  box-shadow: 0 0 0 3px rgba(26,154,154,0.1);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; padding: 16px;
  background: var(--teal); color: white;
  border: none; border-radius: var(--radius-xl);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: all var(--transition);
  margin-top: 0.5rem;
  box-shadow: 0 8px 30px rgba(26,154,154,0.3);
}
.form-submit:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(26,154,154,0.4);
}
.form-note {
  font-size: 0.78rem; color: var(--anthracite);
  text-align: center; margin-top: 0.75rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  padding: var(--section-pad); text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/terasa.jpg') center/cover;
  opacity: 0.06;
}
.cta-section .section-inner { position: relative; z-index: 1; }
.cta-section .section-label { color: var(--gold); }
.cta-section h2 { color: white; }
.cta-section p { color: rgba(255,255,255,0.65); margin-bottom: 2.5rem; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark); color: rgba(255,255,255,0.7);
  padding: clamp(3.5rem, 7vw, 6rem) 5% 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem; max-width: var(--max-w); margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: white; margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.75; max-width: 320px; }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: white; margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a {
  font-size: 0.88rem; color: rgba(255,255,255,0.6);
  transition: color var(--transition-fast);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom a { color: var(--teal); transition: opacity var(--transition-fast); }
.footer-bottom a:hover { opacity: 0.7; }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: all var(--transition);
  animation: waBounce 3s 3s infinite;
}
.wa-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 14px 40px rgba(37,211,102,0.5);
  animation: none;
}
.wa-float svg { width: 28px; height: 28px; fill: white; }
@keyframes waBounce {
  0%, 90%, 100% { transform: translateY(0); }
  95% { transform: translateY(-8px); }
}

/* ===== POPUP ===== */
#popup {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.65); z-index: 8000;
  align-items: center; justify-content: center; padding: 1.5rem;
  backdrop-filter: blur(4px);
}
.popup-box {
  background: white; border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 4rem);
  max-width: 500px; width: 100%; text-align: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  animation: popIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes popIn { from { transform: scale(0.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.popup-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  width: 32px; height: 32px;
  background: var(--gray-light); border: none; border-radius: 50%;
  cursor: pointer; font-size: 1rem; color: var(--anthracite);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition-fast);
}
.popup-close:hover { background: var(--teal-light); color: var(--teal); }
.popup-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.popup-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; margin-bottom: 0.75rem;
}
.popup-box p { font-size: 0.9rem; color: var(--anthracite); margin-bottom: 1.5rem; line-height: 1.6; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--cream);
  padding: 0.9rem 5%;
  font-size: 0.8rem; color: var(--anthracite);
  margin-top: var(--nav-h);
  border-bottom: 1px solid rgba(26,154,154,0.06);
}
.breadcrumb a { color: var(--teal); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 0.5rem; opacity: 0.5; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 60%, #1a3a3a 100%);
  padding: clamp(4rem, 8vw, 6rem) 5% clamp(3.5rem, 7vw, 5.5rem);
  color: white; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/terasa.jpg') center/cover;
  opacity: 0.1;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.04));
}
.page-hero-content { position: relative; z-index: 1; max-width: 720px; }
.page-hero .section-label { color: var(--gold); }
.page-hero .section-label::before { background: var(--gold); }
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem); color: white; margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.78); line-height: 1.7; }

/* ===== RELATED PAGES ===== */
.related-pages {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
  max-width: 900px; margin: 2.5rem auto 0;
}
.related-card {
  background: white; border-radius: var(--radius-md); padding: 1.5rem;
  border: 1.5px solid rgba(26,154,154,0.1);
  text-decoration: none; color: inherit;
  transition: all var(--transition); text-align: center;
}
.related-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.related-card .icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.related-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 700; margin-bottom: 0.3rem;
}
.related-card p { font-size: 0.78rem; color: var(--anthracite); }

/* ===== CTA BTN ===== */
.cta-btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: white; color: var(--teal);
  padding: 16px 34px; border-radius: var(--radius-xl);
  text-decoration: none; font-weight: 700; font-size: 1rem;
  transition: all var(--transition);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* ===== BOOKING.COM RATING BADGE ===== */
.booking-badge {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: #003580; color: white;
  padding: 10px 18px; border-radius: var(--radius-sm);
  font-size: 0.85rem; font-weight: 600;
}
.booking-badge .score {
  background: #009fe3; padding: 4px 10px;
  border-radius: 4px; font-weight: 800; font-size: 1rem;
}

/* ===== TRUST BADGES ===== */
.trust-row {
  display: flex; gap: 2rem; align-items: center;
  flex-wrap: wrap; margin-top: 1.5rem;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--anthracite); font-weight: 500;
}
.trust-item svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }

/* ===== ABOUT SECTION ===== */
.despre-text p { 
  font-size: 1rem; line-height: 1.8;
  color: var(--anthracite); margin-bottom: 1rem;
}
.despre-text p:last-child { margin-bottom: 0; }

/* ===== PAGE CARDS ===== */
.page-card {
  background: white; border-radius: var(--radius-lg); padding: 2rem;
  border: 1.5px solid rgba(26,154,154,0.1);
  transition: all var(--transition); text-decoration: none; color: inherit;
  display: block;
}
.page-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-teal { color: var(--teal); }
.text-gold { color: var(--gold); }
.bg-cream { background: var(--cream); }
.bg-dark { background: var(--dark); }
.bg-teal { background: var(--teal); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

/* ===== MOBILE — CRITICAL ===== */
@media (max-width: 1024px) {
  .nav-links { gap: 0; }
  .nav-links a { padding: 5px 9px; font-size: 0.78rem; }
  .dotari-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { display: none; }
  .despre-grid { grid-template-columns: 1fr; }
  .despre-images .img-float { display: none; }
  .despre-images .img-main { width: 100%; aspect-ratio: 16/9; }
  .camere-grid { grid-template-columns: 1fr 1fr; }
  .features-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  :root { --section-pad: clamp(3rem, 8vw, 5rem) 5%; }
  
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }

  .booking-strip {
    display: grid; grid-template-columns: 1fr 1fr;
  }
  .strip-item {
    padding: 0.9rem 1rem;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.75rem;
  }

  .camere-grid { grid-template-columns: 1fr; }
  .dotari-grid { grid-template-columns: repeat(2, 1fr); }
  .recenzii-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .galerie-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .galerie-item:first-child { grid-column: span 2; grid-row: span 1; }
  .galerie-item:first-child img { min-height: 220px; }

  .form-grid { grid-template-columns: 1fr; }
  .calc-row { grid-template-columns: 1fr; }

  .locatie-distances { grid-template-columns: 1fr; }

  .related-pages { grid-template-columns: 1fr; }

  .wa-float { bottom: 1.2rem; right: 1.2rem; width: 50px; height: 50px; }
  .wa-float svg { width: 24px; height: 24px; }

  /* Touch feedback */
  .galerie-item:active img { transform: scale(0.98); }
  .camera-card:active { transform: scale(0.98); }

  /* Bigger tap targets */
  .faq-question { padding: 1.5rem 0; min-height: 56px; }
  .nav-links a { min-height: 44px; }
  .mobile-menu a { min-height: 52px; }

  #cursor, #cursor-ring { display: none; }
}

@media (max-width: 480px) {
  .hero { min-height: 100svh; padding-bottom: 4rem; }
  .scroll-hint { display: none; }
  .features-strip { grid-template-columns: 1fr 1fr; }
  .feature-box { padding: 1.2rem 1rem; }
  .section-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
}

/* ===== PRINT ===== */
@media print {
  #navbar, .wa-float, #popup, .scroll-hint { display: none !important; }
  body { padding-top: 0; }
  .hero { height: auto; min-height: 300px; }
  .reveal, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
}
