/* ================================================================
   DOR DE MARE — Homepage v3.0
   Premium coastal booking platform — Index page
   ================================================================ */

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: clamp(480px, 75vh, 760px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroPan 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  will-change: transform;
}
.mobile-break { display: none; }
@media (max-width: 768px) { .mobile-break { display: block; } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.65);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(24px, 5vw, 64px) clamp(60px, 10vh, 96px);
  max-width: 620px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-pill);
  padding: 6px 18px;
  margin-bottom: var(--sp-5);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.08;
  margin-bottom: var(--sp-4);
  letter-spacing: -0.03em;
}
.hero h1 em {
  font-family: var(--font-accent);
  font-weight: 700;
  font-style: normal;
  color: var(--c-sand);
  position: relative;
  display: inline;
}

.hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat-num {
  font-size: 1.125rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hero-stat-lbl {
  font-size: 0.625rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-stat-div {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* ── SEARCH BAR ────────────────────────────────────────────── */
.search-wrapper {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  margin: -32px auto 0;
  padding: 0 clamp(16px, 4vw, 40px);
}
.search-card {
  background: var(--c-surface);
  border-radius: var(--r-md);
  padding: var(--sp-6) var(--sp-8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 6px 20px rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: var(--sp-4);
  align-items: end;
  border: 1px solid var(--c-border-subtle);
}
[data-theme="dark"] .search-card {
  border-color: var(--c-border);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--c-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-input {
  height: 44px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r);
  padding: 0 var(--sp-4) 0 40px;
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--c-text);
  background: var(--c-bg);
  transition: all 0.2s var(--ease);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.form-input:focus {
  border-color: var(--c-primary);
  box-shadow: var(--s-focus);
  background: var(--c-surface);
}
.input-wrap { position: relative; }
.input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  pointer-events: none;
  z-index: 1;
  color: var(--c-text-tertiary);
}
.btn-search {
  background: var(--c-primary);
  color: #FFFFFF;
  border: none;
  border-radius: var(--r);
  height: 44px;
  padding: 0 var(--sp-6);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  box-shadow: 0 2px 8px rgba(26, 75, 132, 0.25);
}
.btn-search:hover {
  background: var(--c-primary-hover);
  box-shadow: 0 4px 16px rgba(26, 75, 132, 0.35);
  transform: translateY(-1px);
}

/* ── CATEGORY FILTER BAR ───────────────────────────────────── */
.cat-filter-bar {
  background: var(--c-bg);
  position: sticky;
  top: var(--header-h, 64px);
  z-index: 10;
  margin-top: 28px;
}
.cat-filter-inner {
  padding: 0 clamp(16px, 4vw, 64px);
  display: flex;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
}
.cat-filter-inner::-webkit-scrollbar { display: none; }
.cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  height: 48px;
  border-radius: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--c-text-secondary);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  flex-shrink: 0;
}
.cat-chip svg { width: 15px; height: 15px; flex-shrink: 0; stroke-width: 1.5; }
.cat-chip:hover {
  color: var(--c-primary);
  background: var(--c-primary-ghost);
}
.cat-chip.active {
  color: var(--c-primary);
  border-bottom-color: var(--c-primary);
  font-weight: 600;
  background: transparent;
}
[data-theme="dark"] .cat-chip.active {
  color: var(--c-primary);
  border-bottom-color: var(--c-primary);
}
/* Compatibilitate animatie JS */
.cat-chip.quick-icon { opacity: 0; transition: opacity 0.4s ease; }
.cat-chip.quick-icon.icon-visible { opacity: 1; }

/* ── LEGACY QUICK ICON CIRCLE (păstrat pentru compatibilitate) ─ */
.quick-icon-circle {
  width: 56px;
  height: 56px;
  border: 2px solid var(--c-border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.25s var(--ease);
  background: var(--c-surface);
  color: var(--c-text-secondary);
}
.quick-icon:hover .quick-icon-circle {
  background: var(--c-gradient);
  border-color: transparent;
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(26, 75, 132, 0.3);
}
.quick-icon span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-text-secondary);
}

/* ── SECTION GENERIC ───────────────────────────────────────── */
section {
  padding: clamp(48px, 7vw, 80px) clamp(16px, 4vw, 64px);
  max-width: 100%;
  margin: 0;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
  color: var(--c-sand-dark);
  margin-bottom: var(--sp-2);
}
.section-title {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-2);
}
.section-title em {
  font-style: italic;
  font-weight: 600;
  color: var(--c-sand-dark);
}
.section-sub {
  color: var(--c-text-secondary);
  font-size: 0.875rem;
  margin-bottom: var(--sp-8);
  max-width: 480px;
  line-height: 1.6;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--sp-6);
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.btn-outline {
  border: 1.5px solid var(--c-border-strong);
  color: var(--c-text-secondary);
  background: transparent;
  border-radius: var(--r-pill);
  padding: 10px 24px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-outline:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
  background: var(--c-primary-ghost);
}

/* ── BOOKING CARDS (Property) ──────────────────────────────── */
.carousel-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--c-border-strong);
  background: var(--c-surface); color: var(--c-text-secondary);
  cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.carousel-btn:hover { background: var(--c-primary-ghost); border-color: var(--c-primary); color: var(--c-primary); }
.carousel-btn:active { transform: scale(0.95); }
@media (max-width: 768px) { .carousel-btn { display: none; } }

.carousel-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 16px 0 24px;
  margin: -16px 0 -24px;
}

/* Grid uniform 3 coloane */
.booking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

/* ── PROP GRID — carousel orizontal ── */
.prop-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  width: 100%;
}
.prop-grid::-webkit-scrollbar { display: none; }
.prop-grid .property-card,
.prop-grid .prop-skeleton {
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: 0;
  scroll-snap-align: start;
}

/* Dots */
.prop-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  min-height: 14px;
}
.prop-dot {
  width: 6px; height: 6px;
  border-radius: 3px;
  background: var(--c-border-strong);
  border: none; cursor: pointer; padding: 0; flex-shrink: 0;
  transition: background 0.2s, width 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.prop-dot.active { width: 20px; background: var(--c-primary); }
#popular .prop-dot { background: rgba(255,255,255,0.3); }
#popular .prop-dot.active { background: #FFFFFF; }
#popular .carousel-btn {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.9);
}
#popular .carousel-btn:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
  color: #FFFFFF;
}
/* Secțiunile de proprietăți — padding compact */
.prop-section {
  background: var(--c-bg);
  padding: clamp(32px, 5vw, 56px) clamp(16px, 4vw, 64px);
}
/* Section sub compact în prop sections */
.prop-section .section-sub { margin-bottom: 0; }

/* Secțiunea din mijloc — fundal brand blue */
#popular {
  background: linear-gradient(155deg, #0082B5 0%, #004E6C 100%);
  padding: 72px 0;
  position: relative;
  overflow: visible;
  margin-top: -2px;
}
[data-theme="dark"] #popular {
  background: linear-gradient(155deg, #3570B5 0%, #244C84 100%);
}
#popular .section-header {
  padding: var(--sp-4) clamp(16px, 4vw, 64px) var(--sp-6);
}
#popular .carousel-wrapper {
  padding: 0 clamp(16px, 4vw, 64px);
}
#popular .prop-dots {
  padding: var(--sp-4) clamp(16px, 4vw, 64px) clamp(var(--sp-5), 3vw, var(--sp-8));
}
#popular .section-title { color: #FFFFFF; }
#popular .section-sub   { color: rgba(255, 255, 255, 0.75); }
#popular .btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
}
#popular .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  color: #FFFFFF;
}
#popular .section-tag { color: var(--c-sand-light); font-size: 1.4rem; font-style: normal; }

/* ── WAVE TRANSITIONS ─────────────────────────────────────── */
#popular::before,
#popular::after,
.about-section::before,
.about-section::after,
.testimonials-section::before,
.testimonials-section::after {
  content: '';
  position: absolute;
  left: -1px; right: -1px;
  height: 74px;
  pointer-events: none;
  z-index: 2;
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/* Top waves — mobile: organic arc (original) */
#popular::before,
.about-section::before,
.testimonials-section::before {
  top: -1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 72' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C500,72 1100,0 1440,50 L1440,0 Z' fill='%23FAFAFA'/%3E%3C/svg%3E") no-repeat top / 100% 100%;
  transform: translateY(-1px);
}

/* Bottom waves — mobile: inverse of top arc */
#popular::after,
.about-section::after,
.testimonials-section::after {
  bottom: -1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 72' preserveAspectRatio='none'%3E%3Cpath d='M0,72 C500,0 1100,72 1440,22 L1440,72 Z' fill='%23FAFAFA'/%3E%3C/svg%3E") no-repeat bottom / 100% 100%;
  transform: translateY(1px);
}

/* Dark mode waves — mobile */
[data-theme="dark"] #popular::before,
[data-theme="dark"] .about-section::before,
[data-theme="dark"] .testimonials-section::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 72' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C500,72 1100,0 1440,50 L1440,0 Z' fill='%230D1117'/%3E%3C/svg%3E");
}
[data-theme="dark"] #popular::after,
[data-theme="dark"] .about-section::after,
[data-theme="dark"] .testimonials-section::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 72' preserveAspectRatio='none'%3E%3Cpath d='M0,72 C500,0 1100,72 1440,22 L1440,72 Z' fill='%230D1117'/%3E%3C/svg%3E");
}

/* Desktop — two waves, inspired by mobile */
@media (min-width: 768px) {
  #popular::before,
  .about-section::before,
  .testimonials-section::before {
    display: block;
    height: 110px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 110' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C360,110 880,0 1440,68 L1440,0 L0,0 Z' fill='%23FAFAFA'/%3E%3C/svg%3E") no-repeat top / 100% 100%;
    transform: translateY(-1px);
  }
  #popular::after,
  .about-section::after,
  .testimonials-section::after {
    display: block;
    height: 110px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 110' preserveAspectRatio='none'%3E%3Cpath d='M0,110 C360,0 880,110 1440,42 L1440,110 L0,110 Z' fill='%23FAFAFA'/%3E%3C/svg%3E") no-repeat bottom / 100% 100%;
    transform: translateY(1px);
  }
  [data-theme="dark"] #popular::before,
  [data-theme="dark"] .about-section::before,
  [data-theme="dark"] .testimonials-section::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 110' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C360,110 880,0 1440,68 L1440,0 L0,0 Z' fill='%230D1117'/%3E%3C/svg%3E");
  }
  [data-theme="dark"] #popular::after,
  [data-theme="dark"] .about-section::after,
  [data-theme="dark"] .testimonials-section::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 110' preserveAspectRatio='none'%3E%3Cpath d='M0,110 C360,0 880,110 1440,42 L1440,110 L0,110 Z' fill='%230D1117'/%3E%3C/svg%3E");
  }
}

/* Content sits above waves */
#popular .section-header,
#popular .carousel-wrapper,
#popular .prop-dots,
.about-section .about-inner,
.testimonials-section .testi-inner {
  position: relative;
  z-index: 3;
}

/* Italic em in blue section titles */
#popular .section-title em {
  font-style: italic;
  color: var(--c-sand-light);
  font-weight: inherit;
}
.about-title em {
  font-family: var(--font-accent);
  font-weight: 700;
  font-style: normal;
  color: var(--c-sand-light);
  font-size: 1.15em;
}
.cta-list-text h2 em {
  font-style: italic;
  color: var(--c-sand-light);
}

/* ── PROPERTY CARD — Redesign ──────────────────────────────── */
.property-card {
  background: #FFFFFF;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 6px 20px rgba(0,0,0,0.07);
  transition: transform 0.28s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.28s cubic-bezier(0.22,1,0.36,1);
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.04), 0 16px 40px rgba(0,0,0,0.11);
}

/* ── IMAGE ── */
.card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: #E5E7EB;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.property-card:hover .card-img img { transform: scale(1.05); }

/* ── BADGE ── */
.card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 4px 11px;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.card-badge.badge-featured { background: rgba(254,243,199,0.97); color: #92400E; }
.card-badge.badge-popular  { background: rgba(254,226,226,0.97); color: #DC2626; }
.card-badge.badge-new      { background: rgba(237,233,254,0.97); color: #5B21B6; }
.card-badge.badge-premium  { background: rgba(224,242,254,0.97); color: #0369A1; }

/* ── RANK ── */
.card-rank {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-size: 0.625rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 3px 8px;
  letter-spacing: 0.04em;
}

/* ── FAV BUTTON ── */
.fav-btn {
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.14);
  transition: transform 0.18s ease, background 0.18s ease;
  z-index: 1;
}
.fav-btn:hover { transform: scale(1.12); background: #FFFFFF; }

/* ── RATING IMAGE BADGE (top-rated section) ── */
.rating-img-badge {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  align-items: center;
  gap: 3px;
  background: var(--c-primary);
  border-radius: 20px;
  padding: 4px 9px 4px 7px;
  font-size: 12px;
  font-weight: 600;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  z-index: 1;
  pointer-events: none;
}
.rating-img-badge svg { flex-shrink: 0; }

/* ── SKELETON ── */
.prop-skeleton,
.food-skeleton,
.store-skeleton {
  position: relative;
  overflow: hidden;
  background: #EBEBEB;
  border-radius: 18px;
}
.prop-skeleton::after,
.food-skeleton::after,
.store-skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.7) 50%, transparent 100%);
  animation: shimmer 1.4s infinite linear;
  will-change: transform;
}
.prop-skeleton  { height: 280px; min-width: 180px; }
.food-skeleton  { height: 280px; }
.store-skeleton { height: 300px; }

/* ── CARD BODY ── */
.card-body {
  padding: 14px 16px 16px;
  background: #FFFFFF;
}
.card-name {
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 4px;
  line-height: 1.3;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-loc {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.75rem;
  color: #9CA3AF;
  font-weight: 400;
  margin-bottom: 12px;
}
.card-loc svg { opacity: 0.6; flex-shrink: 0; }

/* Chips ascunse — card mai curat */
.prop-chips { display: none; }

/* ── FOOTER ── */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  margin-bottom: 12px;
}
.card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #374151;
}
.stars { color: var(--c-sand); font-size: 0.6875rem; }
.card-price { text-align: right; }
.price-val {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-primary);
  letter-spacing: -0.01em;
}
.price-per {
  font-size: 0.625rem;
  color: #9CA3AF;
  display: block;
  text-align: right;
  margin-top: 1px;
}

/* ── ACTION BAR ── */
.card-body::after {
  content: 'Vezi Detalii';
  display: block;
  padding: 9px 0;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-primary);
  background: #EEF4FF;
  border-radius: 10px;
  pointer-events: none;
  transition: background 0.22s ease, color 0.22s ease;
}
.property-card:hover .card-body::after {
  background: var(--c-primary);
  color: #FFFFFF;
}

/* ── FOOD SECTION ──────────────────────────────────────────── */
.food-section {
  background: #2057DE;
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: clamp(48px, 7vw, 80px) clamp(16px, 4vw, 64px);
}
[data-theme="dark"] .food-section {
  background: #1E4A8C;
}
.food-section .section-tag { color: var(--c-sand-light); }
.food-section .section-title { color: #FFFFFF; }
.food-section .section-sub { color: #BFDBFE; }
.food-section .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.95);
  background: transparent;
}
.food-section .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
  color: #FFFFFF;
}
.food-section .carousel-btn {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #FFFFFF;
}
.food-section .carousel-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.8);
  color: #FFFFFF;
}
/* Food carousel orizontal */
.food-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  padding-top: 16px;
  margin-top: -16px;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.food-grid::-webkit-scrollbar { display: none; }
.food-grid .food-card,
.food-grid .food-skeleton {
  flex: 0 0 300px;
  width: 300px;
  scroll-snap-align: start;
}
.food-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12), 0 1px 4px rgba(0,0,0,0.06);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
[data-theme="dark"] .food-card {
  background: var(--c-surface);
  border-color: var(--c-border);
}
.food-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(30,64,175,0.22), 0 4px 12px rgba(0,0,0,0.1);
}
.food-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.food-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.food-card:hover .food-img img { transform: scale(1.05); }

.food-body { padding: var(--sp-3) var(--sp-4) var(--sp-4); }
.food-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--c-text);
  margin-bottom: var(--sp-2);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.food-cat {
  font-size: 0.6875rem;
  color: var(--c-text-tertiary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.food-meta {
  margin-bottom: var(--sp-3);
}
.food-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-sand);
}
.food-time {
  font-size: 0.8125rem;
  color: var(--c-text-secondary);
}
.food-rating {
  font-size: 0.8125rem;
  color: var(--c-primary);
  font-weight: 600;
}
.btn-food {
  width: 100%;
  background: var(--c-primary);
  border: none;
  color: #FFFFFF;
  border-radius: var(--r-pill);
  padding: 10px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.8125rem;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  box-shadow: 0 2px 8px rgba(26, 75, 132, 0.2);
}
.btn-food:hover {
  background: var(--c-primary-hover);
  box-shadow: 0 4px 16px rgba(26, 75, 132, 0.35);
  transform: translateY(-1px);
}


/* ── STORE SECTION ─────────────────────────────────────────── */
.store-section {
  background: var(--c-bg);
}
[data-theme="dark"] .store-section {
  background: var(--c-bg);
}

/* Featured card stânga + 3 compacte dreapta */
.store-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  width: 100%;
}
.store-grid .store-card:first-child,
.store-grid .store-skeleton:first-child {
  grid-row: span 3;
}
.store-grid .store-card:first-child .store-img {
  aspect-ratio: unset;
  flex: 1;
  min-height: 280px;
}
.store-grid .store-card:first-child .store-name {
  font-size: 1.05rem;
}
.store-grid .store-card:first-child .store-price {
  font-size: 1.15rem;
}
.store-grid .store-skeleton:first-child {
  min-height: 460px;
}
/* Carduri compacte orizontale */
.store-grid .store-card:not(:first-child) {
  flex-direction: row;
  align-items: stretch;
}
.store-grid .store-card:not(:first-child) .store-img {
  width: 110px;
  min-width: 110px;
  aspect-ratio: unset;
  align-self: stretch;
  flex-shrink: 0;
}
.store-grid .store-card:not(:first-child) .store-body {
  padding: 10px 12px;
  justify-content: center;
}
.store-grid .store-card:not(:first-child) .store-name {
  font-size: 0.85rem;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.store-grid .store-card:not(:first-child) .store-cat {
  font-size: 0.6rem;
}
.store-grid .store-card:not(:first-child) .store-price {
  font-size: 0.875rem;
  margin-bottom: var(--sp-2);
}
.store-grid .store-card:not(:first-child) .btn-cart {
  padding: 7px 10px;
  font-size: 0.75rem;
}
.store-grid .store-skeleton:not(:first-child) {
  height: 110px;
  min-height: unset;
}
.store-card {
  background: var(--c-surface);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--s-card);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
[data-theme="dark"] .store-card {
  border: 1px solid var(--c-border);
}
.store-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--s-md);
}
.store-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.store-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.store-card:hover .store-img img { transform: scale(1.05); }
.store-body { padding: var(--sp-4); flex: 1; display: flex; flex-direction: column; }
.store-cat {
  font-size: 0.6875rem;
  color: var(--c-sand-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.store-name {
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 4px;
  color: var(--c-text);
}
.store-price {
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-sand-dark);
  margin-bottom: var(--sp-3);
}
.btn-cart {
  width: 100%;
  background: var(--c-primary);
  color: #FFFFFF;
  border: none;
  border-radius: var(--r-pill);
  padding: 10px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.8125rem;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  margin-top: auto;
}
.btn-cart:hover {
  background: var(--c-primary-hover);
  box-shadow: 0 4px 16px rgba(26, 75, 132, 0.3);
  transform: translateY(-1px);
}

/* Product badge */
.prod-badge-home {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-radius: var(--r-pill);
  padding: 3px 10px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.prod-badge-home.badge-bio   { background: #D1FAE5; color: #065F46; }
.prod-badge-home.badge-local { background: var(--c-primary-pale); color: var(--c-primary); }
.prod-badge-home.badge-new   { background: #EDE9FE; color: #5B21B6; }
.prod-badge-home.badge-sale  { background: #FEF3C7; color: #92400E; }

/* ── COASTAL CURVE BETWEEN SECTIONS ────────────────────────── */
.coastal-curve-home {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.coastal-curve-home svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ── FOOTER (inherits from design-system.css) ──────────────── */
footer {
  background: #111827;
  color: rgba(255, 255, 255, 0.7);
  padding: var(--sp-12) clamp(16px, 4vw, 64px) var(--sp-6);
}
[data-theme="dark"] footer {
  background: #0A0E14;
  border-top: 1px solid var(--c-border);
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto var(--sp-10);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
}
.footer-logo {
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: var(--sp-3);
}
.footer-logo span { color: var(--c-accent); }
.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--sp-5);
}
.social-row { display: flex; gap: var(--sp-2); }
.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  transition: all 0.15s var(--ease);
  text-decoration: none;
}
.social-btn:hover {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #FFFFFF;
}
.footer-col h3 {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: var(--sp-4);
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  padding: var(--sp-1) 0;
  transition: color 0.15s;
  text-decoration: none;
}
.footer-col a:hover { color: #FFFFFF; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: var(--sp-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  flex-wrap: wrap;
  gap: var(--sp-2);
}

/* ── ANIMATIONS ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-4px); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 2px 8px rgba(26,75,132,0.25); }
  50%       { box-shadow: 0 4px 24px rgba(26,75,132,0.5); }
}
/* Quick icons — pop-up cu spring la scroll */
@keyframes iconPopUp {
  0%   { opacity: 0; transform: translateY(36px) scale(0.75); }
  60%  { opacity: 1; transform: translateY(-8px) scale(1.08); }
  80%  { transform: translateY(3px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.quick-icon.icon-visible {
  animation: iconPopUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Hero Ken Burns — zoom out lent la load */
@keyframes heroPan {
  from { transform: scale(1.1) translate(1%, 0.5%); }
  to   { transform: scale(1.0) translate(0, 0); }
}
/* Search card entrance */
@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(28px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}
/* Food section gradient animat */
@keyframes gradientPan {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}

.fade-up { animation: fadeUp 0.4s cubic-bezier(0.22,1,0.36,1) forwards; }
.delay-1 { animation-delay: 0.05s; opacity: 0; }
.delay-2 { animation-delay: 0.1s; opacity: 0; }
.delay-3 { animation-delay: 0.15s; opacity: 0; }
.delay-4 { animation-delay: 0.2s; opacity: 0; }

/* Search card — slide-up la load */
.search-card {
  animation: slideUpFade 0.4s cubic-bezier(0.22,1,0.36,1) 0.1s both;
}

/* Scroll progress bar */
#scrollProgress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  background: #3A8DFF;
  z-index: 10000;
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
  pointer-events: none;
}
.quick-icon-circle { transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1); }
.quick-icon:hover .quick-icon-circle { transform: translateY(-6px) scale(1.12); }
.quick-icon span { transition: color 0.2s var(--ease); }
.quick-icon:hover span { color: var(--c-primary); }
.food-card { transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.food-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(26,75,132,0.2), 0 4px 12px rgba(0,0,0,0.08); }
.store-card { transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.store-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05); }
.carousel-btn { transition: all 0.2s var(--ease); }
.carousel-btn:hover { transform: scale(1.08); }
.btn-search:hover { transform: translateY(-2px); }
@media (hover: none) {
  .food-card:hover,
  .store-card:hover { transform: none; box-shadow: 0 4px 24px rgba(0,0,0,0.12), 0 1px 4px rgba(0,0,0,0.06); }
  .property-card:hover .card-img img { transform: none; }
  .carousel-btn:hover { transform: none; }
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .search-card { grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-grid { grid-template-columns: repeat(2, 1fr); }
  .prop-grid .property-card,
  .prop-grid .prop-skeleton { flex: 0 0 calc((100% - 40px) / 3); }
  .store-grid { grid-template-columns: 1.3fr 1fr; }
}
@media (max-width: 768px) {
  /* Dezactiveaza animatia hero pe mobile — GPU e limitat */
  .hero-bg img { animation: none; transform: none; will-change: auto; }

  .hero { height: clamp(360px, 55vh, 440px); }
  .hero-content { padding: 0 20px 64px; }
  .hero h1 { font-size: 2rem; }
  .hero h1 em { background: none; -webkit-text-fill-color: var(--c-sand); color: var(--c-sand); }
  .hero p { font-size: 0.875rem; }
  .hero-stats { display: none; }

  .search-wrapper { padding: 0 20px; margin-top: -24px; }
  .search-card {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
    padding: 20px;
    border-radius: var(--r-md);
  }
  /* Font weight mai lejer in search pe mobile */
  .form-group label { font-weight: 400; letter-spacing: 0.04em; }
  .form-input { font-size: 0.9375rem; }
  .btn-search { width: 100%; justify-content: center; }

  section { padding: clamp(28px,6vw,40px) 20px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
  .section-title { font-size: 1.0625rem; font-weight: 600; }

  /* Food/store carousel → grid 2×2 pe mobile (fără scroll orizontal) */
  .food-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow-x: unset;
    gap: 12px;
    padding-bottom: 0;
    scroll-snap-type: unset;
  }
  .food-grid .food-card,
  .food-grid .food-skeleton {
    flex: unset;
    width: auto;
    scroll-snap-align: unset;
  }
  /* Ascunde cardurile 3+ pe mobile — 2 e suficient */
  .food-grid .food-card:nth-child(n+3),
  .food-grid .food-skeleton:nth-child(n+3) {
    display: none;
  }

  /* Cazări → 1 coloana pe mobile */
  .booking-grid { grid-template-columns: 1fr; }

  /* Prop grid mobile — peek vizibil la cardul următor */
  .prop-grid { gap: 14px; touch-action: pan-x pan-y; overflow-y: hidden; }
  .prop-grid .property-card,
  .prop-grid .prop-skeleton { flex: 0 0 80%; max-width: none; }

  /* Store → single column pe mobile */
  .store-grid {
    grid-template-columns: 1fr;
  }
  .store-grid .store-card:first-child,
  .store-grid .store-skeleton:first-child {
    grid-row: span 1;
  }
  .store-grid .store-card:first-child .store-img {
    aspect-ratio: 4/3;
    min-height: unset;
    flex: unset;
  }
  .store-grid .store-skeleton:first-child {
    min-height: 300px;
  }
  .store-grid .store-card:not(:first-child) {
    flex-direction: row;
  }
  .store-grid .store-card:not(:first-child) .store-img {
    width: 100px;
    min-width: 100px;
  }

  footer { padding: var(--sp-10) var(--sp-4) var(--sp-5); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .footer-bottom { flex-direction: column; gap: var(--sp-2); text-align: center; }
}
@media (max-width: 480px) {
  .booking-grid,
  .food-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 380px) {
  .cat-filter-inner { gap: 2px; }
}


/* ── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.25s var(--ease), transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.reveal-visible {
  opacity: 1;
  transform: none;
}

/* ── MOBILE PERFORMANCE ────────────────────────────────────── */
@media (max-width: 768px) {
  /* Elimina backdrop-filter costisitor pe telefoane */
  .hero-badge {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.18);
  }
}

/* ── TESTIMONIALE ───────────────────────────────────────────── */
.testimonials-section {
  background: linear-gradient(155deg, #006085 0%, #0082B5 55%, #004E6C 100%);
  padding: clamp(70px, 8vw, 100px) clamp(16px, 4vw, 64px);
  position: relative;
  overflow: visible;
}
[data-theme="dark"] .testimonials-section {
  background: linear-gradient(155deg, #244C84 0%, #3570B5 55%, #1A3A62 100%);
}
.testi-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.testi-header {
  text-align: center;
  margin-bottom: var(--sp-10);
}
.testimonials-section .section-tag {
  background: transparent;
  color: var(--c-sand);
  border-color: transparent;
}
.testimonials-section .section-title {
  color: #FFFFFF;
}
.testimonials-section .section-sub {
  color: rgba(255, 255, 255, 0.65);
  margin-left: auto;
  margin-right: auto;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.testi-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: box-shadow 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
  backdrop-filter: blur(6px);
}
.testi-card:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}
.testi-stars {
  color: var(--c-sand);
  font-size: 0.875rem;
  letter-spacing: 2px;
}
.testi-quote {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9375rem;
  font-style: italic;
  line-height: 1.65;
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  margin-top: auto;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
}
.testi-detail {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
@media (max-width: 900px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .testimonials-section {
    padding-top: calc(clamp(40px, 5vw, 60px) + 64px);
    padding-bottom: calc(clamp(40px, 5vw, 60px) + 64px);
  }
}
@media (max-width: 560px) {
  .testi-grid { grid-template-columns: 1fr; }
}

/* ══ DESPRE NOI ══════════════════════════════════════════════ */
.about-section {
  position: relative;
  background: linear-gradient(155deg, #006085 0%, #0082B5 55%, #004E6C 100%);
  padding: clamp(40px, 5vw, 60px) 0;
  overflow: visible;
  margin-top: -2px;
}
[data-theme="dark"] .about-section {
  background: linear-gradient(155deg, #244C84 0%, #3570B5 55%, #1A3A62 100%);
}

.about-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(32px, 4vw, 56px) clamp(var(--sp-4), 4vw, var(--sp-16));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-4);
}

/* Blob decorativ în fundal */
.about-inner::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  top: 10%;
  right: -80px;
  pointer-events: none;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(212, 175, 55, 0.18);
  color: var(--c-sand-light);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--r-pill);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: var(--sp-4);
  backdrop-filter: blur(8px);
}
.about-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-5);
}
.about-title em {
  font-family: var(--font-accent);
  font-weight: 700;
  font-style: normal;
  color: var(--c-sand-light);
  font-size: 1.15em;
}
.about-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: var(--sp-4);
}
.about-desc:last-of-type { margin-bottom: 0; }

.about-stats {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  margin-top: var(--sp-4);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  width: 100%;
}
.about-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.about-stat strong {
  font-size: 2.2rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  line-height: 1;
}
.about-stat span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}
.about-stat-div {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}


/* Dark mode — secțiunea are deja fundal albastru, nu e nevoie de override */

/* ── CTA SECTION — Listare Proprietate ─────────────────────── */
.cta-list-section {
  background: var(--c-bg);
  padding: clamp(40px, 6vw, 64px) clamp(16px, 4vw, 64px);
  border-top: 1px solid var(--c-border-subtle);
}
.cta-list-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  flex-wrap: wrap;
}
.cta-list-text h2 {
  color: var(--c-text);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  margin-bottom: var(--sp-2);
  letter-spacing: -0.02em;
}
.cta-list-text h2 em {
  color: var(--c-sand);
}
.cta-list-text p {
  color: var(--c-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 480px;
}
.btn-cta-list {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--c-primary);
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.9375rem;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  box-shadow: 0 2px 12px rgba(0, 130, 181, 0.25);
}
.btn-cta-list svg { flex-shrink: 0; }
.btn-cta-list:hover {
  background: var(--c-primary-dark);
  transform: translateY(-2px);
}
@media (max-width: 640px) {
  .cta-list-inner { flex-direction: column; align-items: flex-start; }
  .btn-cta-list { width: 100%; justify-content: center; }
}

/* ── DARK MODE — Property Cards ────────────────────────────── */
[data-theme="dark"] .property-card {
  background: var(--c-surface);
}
[data-theme="dark"] .card-body {
  background: var(--c-surface);
}
[data-theme="dark"] .card-name {
  color: var(--c-text);
}
[data-theme="dark"] .card-loc {
  color: var(--c-text-tertiary);
}
[data-theme="dark"] .card-rating {
  color: var(--c-text-secondary);
}
[data-theme="dark"] .card-footer {
  border-top-color: var(--c-border);
}
[data-theme="dark"] .prop-skeleton,
[data-theme="dark"] .food-skeleton,
[data-theme="dark"] .store-skeleton {
  background: var(--c-surface);
}
[data-theme="dark"] .card-body::after {
  background: var(--c-primary-ghost);
  color: var(--c-primary);
}
[data-theme="dark"] .property-card:hover .card-body::after {
  background: var(--c-primary);
  color: #FFFFFF;
}

/* ══ MISIUNEA NOASTRĂ ════════════════════════════════════════ */
.mission-section {
  position: relative;
  background: var(--c-bg);
  padding: clamp(40px, 5vw, 60px) 0;
  border-bottom: 1px solid var(--c-border-subtle);
}
.mission-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(32px, 4vw, 56px) clamp(var(--sp-4), 4vw, var(--sp-16));
  display: grid;
  grid-template-columns: 42fr 58fr;
  gap: clamp(var(--sp-10), 6vw, var(--sp-16));
  align-items: start;
}
.mission-label {
  display: inline-flex;
  align-items: center;
  background: var(--c-sand-pale);
  color: var(--c-sand-dark);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: var(--r-pill);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: var(--sp-6);
}
.mission-badge {
  display: inline-flex;
  align-items: center;
  background: var(--c-sand-pale);
  color: var(--c-sand-dark);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: var(--r-pill);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: var(--sp-4);
}

/* Timeline */
.mission-timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 50px;
}
.mission-timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 8px;
  bottom: 24px;
  width: 2px;
  background: var(--c-border);
}
.mission-step {
  position: relative;
  padding-bottom: var(--sp-7);
}
.mission-step:last-child { padding-bottom: 0; }
.mission-step::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-sand);
  opacity: 0.85;
}
.mission-step-year {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-sand-dark);
  margin-bottom: 3px;
  text-transform: uppercase;
}
.mission-step-body strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 4px;
}
.mission-step-body p {
  font-size: 0.8125rem;
  color: var(--c-text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* Right side */
.mission-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--c-text);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-5);
}
.mission-title em {
  font-family: var(--font-accent);
  font-weight: 700;
  font-style: normal;
  color: var(--c-sand);
  font-size: 1.2em;
}
.mission-desc {
  font-size: 0.9375rem;
  color: var(--c-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--sp-4);
}
.mission-credo {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  margin-top: var(--sp-6);
  padding: var(--sp-5);
  background: var(--c-sand-pale);
  border-radius: var(--r-md);
  border-left: 3px solid var(--c-sand);
}
.mission-credo p {
  font-size: 0.9375rem;
  color: var(--c-text);
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}
.mission-credo-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--c-sand);
}
@media (max-width: 900px) {
  .mission-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
  .mission-timeline { padding-left: 44px; }
}

/* ── REDUCED MOTION ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-bg img { animation: none; transform: scale(1); }
  .quick-icon.icon-visible { animation: none; opacity: 1; transform: none; }
  .cat-chip.quick-icon.icon-visible { opacity: 1; }
  .search-card { animation: none; }
  .fade-up { animation: none; opacity: 1; }
}

