/* ================================================================
   DOR DE MARE — Sejururi page
   Depends on: design-system.css, navbar.css
   ================================================================ */

/* ── PAGE ─────────────────────────────────────────────────── */

/* html background = footer color → niciun gap/overscroll alb la fund pe iOS */
html {
  background: #111827;
}

.sej-page {
  background: #111827;   /* = culoarea footer-ului → niciun gol alb sub footer */
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
[data-theme="dark"] .sej-page {
  background: var(--c-bg);
}


/* ── HERO ─────────────────────────────────────────────────── */
.sej-hero {
  padding-top: 72px;
  background: #F7F7F7;
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .sej-hero {
  background: var(--c-bg);
}

/* Decorative SVG waves */
.sej-deco {
  position: absolute;
  top: -15px;
  left: 0;
  width: 660px;
  height: 480px;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}
.sej-deco path {
  fill: none;
  stroke: rgba(0, 0, 0, 0.18);
  stroke-width: 1.5;
  stroke-linecap: round;
}
[data-theme="dark"] .sej-deco path {
  stroke: rgba(255, 255, 255, 0.10);
}

/* Hero grid */
.sej-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 44px 48px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "text image" "search search";
  gap: 0 48px;
}

.sej-hero-left  { grid-area: text;   align-self: start; padding-top: 160px; padding-bottom: 0; text-align: center; }
.sej-hero-right {
  grid-area: image;
  align-self: start;
  background: linear-gradient(135deg, #C8DDE8 0%, #A8C8DA 100%);
  border-radius: 35px;
}
.sej-hero-search {
  grid-area: search;
  margin-top: -220px;
  position: relative;
  z-index: 2;
  padding-bottom: 32px;
}

.sej-hero-img {
  width: 100%;
  aspect-ratio: 672 / 703;
  object-fit: cover;
  border-radius: 35px;
  display: block;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}

.sej-hero-img-mobile {
  display: none;
}

/* ── HERO ANIMATIONS — pur CSS, fără dependență de JS ────── */
@keyframes sejSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes sejFadeInRight {
  from { opacity: 0; transform: translateX(22px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes sejFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* `both` = pornesc în starea `from` (opacity:0) și rămân în starea `to` */
.sej-headline {
  animation: sejSlideUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}
.sej-subtitle {
  animation: sejSlideUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}
.sej-hero-right {
  animation: sejFadeInRight 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}
.sej-hero-search {
  animation: sejFadeIn 0.55s ease 0.38s both;
}

@media (prefers-reduced-motion: reduce) {
  .sej-headline,
  .sej-subtitle,
  .sej-hero-right,
  .sej-hero-search {
    animation: none;
  }
}

/* ── HEADLINE ─────────────────────────────────────────────── */
.sej-headline {
  font-family: var(--font);
  font-size: clamp(2.2rem, 4.86vw, 4.375rem);
  font-weight: 500;
  line-height: 1.18;
  color: #000000;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}
[data-theme="dark"] .sej-headline {
  color: var(--c-text);
  text-shadow: none;
}
.sej-headline em {
  font-style: italic;
  color: var(--c-primary);
}
[data-theme="dark"] .sej-headline em {
  color: var(--c-primary-light, #4DB5DC);
}
.sej-script {
  font-family: 'Dancing Script', cursive;
  font-style: normal;
  font-weight: 700;
  color: #F97316;
  letter-spacing: -0.01em;
}
[data-theme="dark"] .sej-script {
  color: var(--c-text);
}

/* ── SUBTITLE ─────────────────────────────────────────────── */
.sej-subtitle {
  font-family: var(--font);
  font-size: clamp(0.9rem, 1.39vw, 1.25rem);
  font-weight: 400;
  color: rgba(0, 0, 0, 0.68);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 530px;
}
[data-theme="dark"] .sej-subtitle {
  color: var(--c-text-secondary);
}

/* ── SEARCH WRAPPER — Liquid Glass ────────────────────────── */
.sej-search-outer {
  position: relative;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(32px) saturate(180%) brightness(1.06);
  -webkit-backdrop-filter: blur(32px) saturate(180%) brightness(1.06);
  border-radius: 33px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.10),
    0 1px 0 rgba(255, 255, 255, 0.90) inset,
    0 -1px 0 rgba(0, 0, 0, 0.05) inset;
}
.sej-search-outer::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 33px;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.48) 0%,
    rgba(255, 255, 255, 0.08) 40%,
    rgba(255, 255, 255, 0.00) 100%
  );
  pointer-events: none;
  z-index: 0;
}
.sej-search-outer > * { position: relative; z-index: 1; }

[data-theme="dark"] .sej-search-outer {
  background: rgba(20, 30, 45, 0.38);
  border-color: rgba(255, 255, 255, 0.11);
  box-shadow:
    0 8px 36px rgba(0, 0, 0, 0.40),
    0 1px 0 rgba(255, 255, 255, 0.11) inset,
    0 -1px 0 rgba(0, 0, 0, 0.25) inset;
}
[data-theme="dark"] .sej-search-outer::before {
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(255, 255, 255, 0.00) 55%
  );
}

.sej-search-section {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 22px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.80);
  box-shadow:
    0 2px 10px rgba(0, 0, 0, 0.06),
    0 1px 0 rgba(255, 255, 255, 1.00) inset;
}
[data-theme="dark"] .sej-search-section {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Search grid */
.sej-search-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr) auto;
  gap: 10px;
  align-items: end;
}

/* Form groups */
.sej-fg {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.sej-fg label {
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--c-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.sej-fg-wrap { position: relative; }
.sej-fg-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--c-primary);
  z-index: 1;
  display: flex;
  align-items: center;
}
.sej-fg-input {
  height: 44px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r, 10px);
  padding: 0 12px 0 36px;
  font-family: var(--font);
  font-size: 0.85rem;
  color: var(--c-text);
  background: var(--c-bg);
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.sej-fg-input:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(0, 123, 167, 0.12);
  background: var(--c-surface, #fff);
}
[data-theme="dark"] .sej-fg-input {
  background: var(--c-surface);
  color: var(--c-text);
  border-color: var(--c-border);
}
[data-theme="dark"] .sej-fg-input:focus {
  background: var(--c-bg-elevated);
}

/* Search button */
.sej-btn-search {
  background: var(--c-primary);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  height: 46px;
  width: 46px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(0, 123, 167, 0.30);
  flex-shrink: 0;
}
.sej-btn-search:hover {
  background: #006A91;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 123, 167, 0.40);
}
.sej-btn-search:active { transform: translateY(0); }
[data-theme="dark"] .sej-btn-search {
  background: rgba(77, 149, 185, 0.16);
  color: #E0F2FE;
  border: 1px solid rgba(125, 211, 252, 0.18);
  box-shadow: none;
}
[data-theme="dark"] .sej-btn-search:hover {
  background: rgba(77, 149, 185, 0.26);
  color: #FFFFFF;
  border-color: rgba(125, 211, 252, 0.32);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1200px) {
  .sej-hero-inner {
    padding: 40px 32px 0;
    gap: 0 32px;
  }
}

@media (max-width: 960px) {
  .sej-hero { background: #F7F7F7; }
  [data-theme="dark"] .sej-hero { background: var(--c-bg); }

  .sej-hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas: "text" "search";
    padding: 36px 20px 0;
    gap: 0;
    min-height: 760px;
  }
  .sej-hero-left {
    position: relative;
    z-index: 2;
    padding-top: 32px;
    text-align: center;
  }
  .sej-subtitle { max-width: 100%; }

  .sej-hero-right {
    display: block;
    position: absolute;
    top: 215px;
    left: -20px;
    right: -20px;
    background: transparent;
    border-radius: 0;
    z-index: 1;
  }
  .sej-hero-img { display: none; }
  .sej-hero-img-mobile {
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1.18);
    transform-origin: center center;
  }
  .sej-hero-search {
    margin-top: -100px;
    position: relative;
    z-index: 2;
    padding-bottom: 36px;
  }
  .sej-search-outer {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(40px) saturate(200%) brightness(1.10);
    -webkit-backdrop-filter: blur(40px) saturate(200%) brightness(1.10);
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    box-shadow:
      0 10px 40px rgba(0, 0, 0, 0.14),
      0 1px 0 rgba(255, 255, 255, 0.92) inset,
      0 -1px 0 rgba(0, 0, 0, 0.07) inset;
  }
  .sej-search-section {
    background: rgba(255, 255, 255, 0.50);
    border-radius: 26px;
  }
  .sej-headline { font-size: 3.5rem; }
}

@media (max-width: 600px) {
  .sej-deco { display: none; }

  .sej-hero-right { top: 222px; }
  .sej-hero-inner {
    padding: 20px 16px 0;
    min-height: 730px;
  }
  .sej-hero-left {
    padding-top: 20px;
    padding-bottom: 8px;
    text-align: center;
  }
  .sej-hero-search { padding-bottom: 28px; }
  .sej-headline { font-size: 2.85rem; }

  .sej-search-outer { border-radius: 30px; padding: 10px; }
  .sej-search-section { border-radius: 22px; }
  .sej-search-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .sej-btn-search {
    width: 100%;
    border-radius: 12px;
    height: 44px;
  }

  /* Carduri mai mari pe mobile */
  .property-card { padding: 12px; border-radius: 24px; }
  .card-name  { font-size: 1.05rem; }
  .card-loc   { font-size: 0.82rem; }
  .price-val  { font-size: 1.18rem; }
  .price-per  { font-size: 0.74rem; }
  .card-cta   { font-size: 0.82rem; }
  .card-type  { font-size: 0.74rem; padding: 5px 12px; }
}

@media (max-width: 420px) {
  .sej-search-grid { grid-template-columns: 1fr 1fr; }
  .sej-headline { font-size: 2.35rem; }
  .sej-subtitle { font-size: 0.82rem; }
  .sej-hero-right { top: 198px; }
}

/* ════════════════════════════════════════════════════════════
   CAROUSEL ORIZONTAL — tipar dor-de-mare (scroll nativ garantat)
   .carousel-wrapper(overflow:hidden) > .prop-grid(overflow-x:auto)
   width:100% + min-width:0 pe carduri. Fără drag JS.
   ════════════════════════════════════════════════════════════ */
/* margin-top:-1px → acoperă seam-ul hairline hero↔content prin care răzbate
   fundalul închis (#111827) al body-ului pe ecrane cu DPR fracționar (mobil) */
.sej-content {
  flex: 1 0 auto;
  background: #F7F7F7;
  position: relative;
  z-index: 1;
  margin-top: -1px;
}
[data-theme="dark"] .sej-content { background: var(--c-bg); }

/* Toast gol nu trebuie să apară ca o cutie albă în flux */
#toast:empty { display: none; }

.prop-section {
  background: #F7F7F7;
  padding: clamp(20px, 2.6vw, 28px) clamp(16px, 4vw, 64px);
}
[data-theme="dark"] .prop-section { background: var(--c-bg); }
.prop-section[hidden] { display: none; }
/* prima secțiune — mai mult spațiu față de hero */
#sej-promovate { padding-top: clamp(44px, 6vw, 76px); }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--sp-6);
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.section-head-text { min-width: 0; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-accent);
  font-size: 1.15rem; font-weight: 700;
  color: var(--c-sand-dark);
  margin-bottom: var(--sp-2);
}
.section-title {
  font-family: 'Inter', var(--font);
  font-size: clamp(1.25rem, 2.2vw, 1.875rem);
  font-weight: 600; color: var(--c-text);
  line-height: 1.2; letter-spacing: -0.02em;
  margin: 0;
}
.section-title em { font-style: normal; font-weight: 600; color: inherit; }
.section-sub { color: var(--c-text-secondary); font-size: 0.9rem; margin: 0; max-width: 480px; line-height: 1.6; }

.carousel-controls { display: flex; gap: 10px; flex-shrink: 0; }
.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;
  transition: all 0.2s var(--ease);
}
.carousel-btn:hover { background: var(--c-primary-ghost); border-color: var(--c-primary); color: var(--c-primary); }
.carousel-btn:active { transform: scale(0.95); }

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

.prop-grid {
  display: flex;
  gap: 16px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.prop-grid::-webkit-scrollbar { display: none; }
.prop-grid .property-card,
.prop-grid .prop-skeleton {
  flex: 0 0 calc((100% - 56px) / 4.5); /* ~4 pe rând, carduri o idee mai mici + peek */
  min-width: 0;
  scroll-snap-align: start;
}

.prop-dots { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 12px; min-height: 18px; }
.prop-dot {
  width: 8px; height: 8px; min-width: 8px; min-height: 8px;
  border-radius: 50%; background: var(--c-border-strong);
  border: 1px solid transparent; appearance: none; -webkit-appearance: none;
  cursor: pointer; line-height: 0; padding: 0; flex-shrink: 0; opacity: 0.75;
  transition: all 0.18s var(--ease);
}
.prop-dot:hover { opacity: 1; transform: scale(1.18); }
.prop-dot.active { background: var(--c-primary); border-color: var(--c-primary); opacity: 1; transform: scale(1.12); }

/* Signature „inset photo" card — foto rotunjită în interiorul padding-ului */
.property-card {
  background: #FFFFFF; border-radius: 22px; overflow: hidden;
  padding: 10px;
  border: 1px solid var(--c-border-subtle);
  box-shadow: 0 1px 3px rgba(15,23,42,0.04), 0 6px 20px rgba(15,23,42,0.06);
  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;
}
[data-theme="dark"] .property-card { background: var(--c-bg-elevated); border-color: var(--c-border); }

.card-img {
  aspect-ratio: 4/3; overflow: hidden; position: relative;
  background: #E5E7EB; border-radius: 15px;
}
[data-theme="dark"] .card-img { background: rgba(255,255,255,0.06); }
.card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.55s cubic-bezier(0.22,1,0.36,1); }

/* Frosted type pill — colț stânga-jos pe imagine */
.card-type {
  position: absolute; left: 9px; bottom: 9px;
  background: rgba(255,255,255,0.92); color: var(--c-primary-dark, #004E6C);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border-radius: 999px; padding: 4px 10px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12); pointer-events: none;
}
[data-theme="dark"] .card-type { background: rgba(22,27,34,0.82); color: #E0F2FE; }

/* Rating badge — colț dreapta-sus pe imagine */
.card-rating {
  position: absolute; top: 9px; right: 9px;
  display: inline-flex; align-items: center; gap: 3px;
  background: var(--c-primary); border-radius: 999px; padding: 4px 9px 4px 7px;
  font-size: 0.72rem; font-weight: 700; color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18); pointer-events: none;
}
.card-rating svg { flex-shrink: 0; }

.card-body { padding: 12px 6px 4px; background: transparent; }
.card-name {
  font-weight: 600; font-size: 0.92rem; margin-bottom: 4px; line-height: 1.3;
  color: var(--c-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.card-loc {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.75rem; color: var(--c-text-tertiary); margin-bottom: 12px;
  white-space: nowrap; overflow: hidden;
}
.card-loc svg { flex-shrink: 0; color: var(--c-primary); opacity: 0.8; }
.card-loc span { overflow: hidden; text-overflow: ellipsis; }

/* Footer — preț (stânga) + „Vezi →" (dreapta) */
.card-foot {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 8px;
  padding-top: 10px; border-top: 1px solid var(--c-border-subtle);
}
[data-theme="dark"] .card-foot { border-top-color: var(--c-border); }
.card-price { line-height: 1.1; min-width: 0; }
.price-val { font-size: 1.02rem; font-weight: 800; color: var(--c-text); letter-spacing: -0.02em; }
.price-per { display: block; font-size: 0.68rem; font-weight: 500; color: var(--c-text-tertiary); margin-top: 1px; }
.card-cta {
  display: inline-flex; align-items: center; gap: 4px; flex-shrink: 0;
  font-size: 0.76rem; font-weight: 700; color: var(--c-primary);
  transition: gap 0.2s ease;
}
.card-cta svg { transition: transform 0.2s ease; }

@media (hover: hover) and (pointer: fine) {
  .property-card:hover { transform: translateY(-4px); box-shadow: 0 6px 14px rgba(15,23,42,0.06), 0 18px 38px rgba(15,23,42,0.12); }
  .property-card:hover .card-img img { transform: scale(1.06); }
  .property-card:hover .card-cta { gap: 7px; }
  .property-card:hover .card-cta svg { transform: translateX(2px); }
}

.prop-skeleton { position: relative; overflow: hidden; background: #EBEBEB; border-radius: 22px; height: 250px; }
[data-theme="dark"] .prop-skeleton { background: rgba(255,255,255,0.06); }
.prop-skeleton::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.7) 50%, transparent 100%);
  animation: sejPropShimmer 1.4s infinite linear; will-change: transform;
}
@keyframes sejPropShimmer { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

/* Responsive carousel — 4 pe rând pe desktop, scade treptat */
@media (max-width: 900px) {
  .prop-grid .property-card, .prop-grid .prop-skeleton { flex: 0 0 calc((100% - 32px) / 3); }
}
@media (max-width: 768px) {
  .carousel-btn { display: none; }
  .prop-grid .property-card, .prop-grid .prop-skeleton { flex: 0 0 calc((100% - 16px) / 2); }
}
@media (max-width: 600px) {
  .prop-section { padding: 16px 16px; }
  #sej-promovate { padding-top: 34px; }
  .prop-grid { gap: 16px; touch-action: pan-x pan-y; }
  /* Carduri mari: unul plin + un mic peek din următorul */
  .prop-grid .property-card, .prop-grid .prop-skeleton { flex: 0 0 82%; max-width: none; }
  .prop-skeleton { height: 320px; }
}
@media (max-width: 420px) {
  .prop-grid .property-card, .prop-grid .prop-skeleton { flex: 0 0 88%; }
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: #111827;
  color: rgba(255, 255, 255, 0.7);
  padding: var(--sp-12) clamp(var(--sp-4), 4vw, var(--sp-12)) var(--sp-6);
  padding-bottom: calc(var(--sp-6) + env(safe-area-inset-bottom, 0px));
  flex-shrink: 0;
}
[data-theme="dark"] footer {
  background: #0A0E14;
  border-top: 1px solid var(--c-border);
}
footer .footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-10);
}
footer .footer-logo {
  font-family: var(--font);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: var(--sp-3);
}
footer .footer-logo span { color: var(--c-accent); }
footer .footer-desc {
  font-family: var(--font);
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--sp-5);
}
footer .social-row { display: flex; gap: var(--sp-2); }
footer .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.5);
  transition: all var(--duration-fast, 0.15s) var(--ease, ease);
  text-decoration: none;
}
footer .social-btn:hover {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #FFFFFF;
}
footer .footer-col h3,
footer .footer-col h4 {
  font-family: var(--font);
  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 .footer-col a {
  display: block;
  font-family: var(--font);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  padding: var(--sp-1) 0;
  transition: color var(--duration-fast, 0.15s) var(--ease, ease);
  text-decoration: none;
}
footer .footer-col a:hover { color: #FFFFFF; }
footer .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-family: var(--font);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  flex-wrap: wrap;
  gap: var(--sp-2);
}
