@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Nunito+Sans:wght@300;400;600;700;900&display=swap");

:root {
  --color-ink: #111827;
  --color-muted: #5b6472;
  --color-line: #e5e8ee;
  --color-bg: #ffffff;
  --color-soft: #f6f7f9;
  --color-blue: #10233f;
  --color-blue-2: #17345e;
  --color-gold: #c79a36;
  --color-gold-2: #f4e6c7;
  --color-green: #118c5a;
  --shadow-soft: 0 18px 45px rgba(16, 35, 63, 0.12);
  --radius: 8px;
  --container: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100svh;
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  display: flex;
  flex-direction: column;
}

body.menu-open {
  overflow: hidden;
}

main {
  flex: 1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--color-ink);
  padding: 0.82rem 0.9rem;
}

input:focus,
select:focus,
textarea:focus,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(199, 154, 54, 0.35);
  outline-offset: 2px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.18;
  color: var(--color-blue);
}

h1 {
  font-size: clamp(2.35rem, 6vw, 4.6rem);
  margin-bottom: 1.1rem;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 0.85rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
}

p {
  color: var(--color-muted);
}

.container {
  width: min(var(--container), calc(100% - 6vw));
  margin-inline: auto;
}

.narrow {
  max-width: 780px;
}

.section {
  padding: 72px 0;
}

.section-muted {
  background: var(--color-soft);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 32px;
}

.section-heading p {
  font-size: 1.05rem;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gold);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 0.8rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--color-gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-green);
  color: #fff;
  box-shadow: 0 12px 24px rgba(17, 140, 90, 0.2);
}

.btn-primary:hover {
  background: #0d764c;
}

.btn-secondary {
  background: #fff;
  color: var(--color-blue);
  border-color: rgba(16, 35, 63, 0.18);
}

.btn-secondary:hover {
  box-shadow: var(--shadow-soft);
}

.skip-link {
  position: absolute;
  inset-inline-start: 16px;
  top: 8px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--color-blue);
  color: #fff;
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--color-blue);
  color: var(--color-gold);
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--color-blue);
  font-size: 1.05rem;
}

.brand small {
  color: var(--color-muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-inline-start: auto;
}

.main-nav a {
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius);
  color: var(--color-blue);
  font-weight: 700;
  font-size: 0.95rem;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: var(--color-gold-2);
}

.header-cta {
  min-width: 190px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--color-blue);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.menu-toggle:hover {
  background: var(--color-gold-2);
  border-color: var(--color-gold);
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.menu-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.18s ease, width 0.22s ease;
  transform-origin: center;
}

/* Third line slightly shorter — classic detail */
.menu-toggle span:nth-child(3) {
  width: 15px;
  align-self: flex-end;
  margin-inline-end: 6px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  width: 22px;
  margin-inline-end: 0;
}

/* אנימציית X כשהתפריט פתוח */
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 22px;
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 22px;
  margin-inline-end: 0;
  align-self: auto;
}

/* אנימציית כניסה לתפריט */
@keyframes navSlideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(244, 230, 199, 0.45), rgba(255, 255, 255, 0) 46%),
    #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 46px;
  align-items: center;
}

.hero-text {
  max-width: 720px;
  font-size: 1.17rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 28px 0;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-badges li {
  border: 1px solid rgba(16, 35, 63, 0.13);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  background: #fff;
  color: var(--color-blue);
  font-weight: 700;
  font-size: 0.95rem;
}

.hero-visual,
.about-visual {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-line);
  background: #fff;
}

.hero-visual img,
.about-visual img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.property-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 35, 63, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(16, 35, 63, 0.12);
}

.property-image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-soft);
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.property-card:hover .property-image img {
  transform: scale(1.025);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.3rem 0.62rem;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.badge-status {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  background: var(--color-blue);
  color: #fff;
}

.badge-demo {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  background: var(--color-gold-2);
  color: #654710;
}

.detail-badges .badge-demo,
.detail-badges .badge-status {
  position: static;
}

.property-body {
  padding: 18px;
}

.property-location {
  color: var(--color-gold);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

.property-body h3 {
  margin-bottom: 0.5rem;
}

.property-body p {
  min-height: 52px;
  margin-bottom: 0.85rem;
}

.property-price {
  color: var(--color-blue);
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 0.9rem;
}

.property-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 0.75rem;
}

.property-meta div {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 0.55rem;
  background: var(--color-soft);
}

.property-meta dt,
.facts-list dt,
.contact-list dt {
  color: var(--color-muted);
  font-size: 0.78rem;
}

.property-meta dd,
.facts-list dd,
.contact-list dd {
  margin: 0;
  color: var(--color-blue);
  font-weight: 800;
}

.property-extra {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.property-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
}

.feature-number {
  display: inline-block;
  color: var(--color-gold);
  font-weight: 900;
  margin-bottom: 1.2rem;
}

.countries-section {
  background: #fff;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.country-card {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border-radius: 0;
  border: 1px solid rgba(212, 168, 83, 0.22);
  background: #0a1628;
  text-decoration: none;
  transition: border-color 320ms ease, transform 320ms ease, box-shadow 320ms ease;
}

.country-card:hover {
  border-color: rgba(212, 168, 83, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(10, 22, 40, 0.35);
}

/* ── Background photo ── */
.cc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 600ms ease;
}

.country-card--israel .cc-bg {
  background-image: url('../assets/images/investment-property.webp');
}

.country-card--cyprus .cc-bg {
  background-image: url('../assets/images/luxury-apartment.webp');
}

.country-card:hover .cc-bg {
  transform: scale(1.06);
}

/* ── Gradient overlay ── */
.cc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.18) 75%,
    transparent 100%
  );
}

/* ── Content ── */
.cc-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 40px;
}

.cc-eyebrow {
  display: block;
  color: var(--premium-gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.cc-title {
  color: #fff;
  font-family: var(--premium-font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  margin: 0 0 14px;
}

.cc-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 22px;
  max-width: 420px;
}

.cc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.cc-tags span {
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(212, 168, 83, 0.4);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
}

.cc-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--premium-gold);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition: gap 220ms ease;
}

.cc-cta::after {
  content: "←";
  transition: transform 220ms ease;
}

.country-card:hover .cc-cta {
  gap: 14px;
}

.country-card:hover .cc-cta::after {
  transform: translateX(-4px);
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
  counter-reset: steps;
  padding: 0;
  margin: 0;
}

.steps-list li {
  counter-increment: steps;
  position: relative;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
}

.steps-list li::before {
  content: counter(steps);
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-blue);
  color: var(--color-gold);
  font-weight: 900;
  margin-bottom: 1rem;
}

.steps-list strong,
.steps-list span {
  display: block;
}

.steps-list strong {
  color: var(--color-blue);
  margin-bottom: 0.5rem;
}

.steps-list span {
  color: var(--color-muted);
}

.testimonial-panel,
.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(240px, 0.35fr);
  align-items: center;
  gap: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

.testimonial-panel {
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 0.5fr);
}

.final-cta {
  background: var(--color-blue);
}

.final-cta h2,
.final-cta p {
  color: #fff;
}

.final-cta .eyebrow {
  color: var(--color-gold-2);
}

.final-cta .eyebrow::before {
  background: var(--color-gold-2);
}

.page-hero {
  background:
    linear-gradient(180deg, rgba(244, 230, 199, 0.55), rgba(255, 255, 255, 0) 65%),
    #fff;
  text-align: center;
}

.page-hero .eyebrow {
  justify-content: center;
}

.page-hero .eyebrow::before {
  display: none;
}

.filters {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px;
  margin-bottom: 20px;
}

.filters label,
.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--color-blue);
  font-weight: 800;
}

.filters span,
.contact-form span {
  font-size: 0.92rem;
}

.search-label {
  grid-column: span 2;
}

.results-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.results-bar p {
  margin: 0;
  font-weight: 800;
  color: var(--color-blue);
}

.empty-state {
  margin: 30px 0 0;
  padding: 28px;
  border: 1px dashed rgba(16, 35, 63, 0.25);
  border-radius: var(--radius);
  background: #fff;
  color: var(--color-blue);
  text-align: center;
  font-weight: 800;
}

.property-detail-section {
  background: var(--color-soft);
}

.property-detail {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.property-detail-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 24px;
  align-items: start;
}

.detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.detail-price-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-soft);
  padding: 20px;
}

.detail-price-card span,
.detail-price-card strong {
  display: block;
}

.detail-price-card span {
  color: var(--color-muted);
  font-weight: 700;
}

.detail-price-card strong {
  color: var(--color-blue);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
  margin: 28px 0;
}

.gallery img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  background: var(--color-soft);
}

.gallery img:first-child {
  grid-row: span 2;
  height: 734px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 24px;
  align-items: start;
}

.detail-main,
.detail-sidebar,
.not-found-panel,
.contact-panel,
.contact-form {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
}

.detail-main ul {
  padding-inline-start: 1.3rem;
  color: var(--color-muted);
}

.detail-main li + li {
  margin-top: 0.45rem;
}

.facts-list,
.contact-list {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.2rem;
}

.facts-list div,
.contact-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--color-line);
  padding-bottom: 0.75rem;
}

.detail-sidebar {
  position: sticky;
  top: 96px;
}

.detail-sidebar .btn {
  width: 100%;
  margin-top: 0.65rem;
}

.detail-disclaimer {
  margin-top: 1rem;
  font-size: 0.86rem;
}

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 240px;
  border: 1px dashed rgba(16, 35, 63, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(16, 35, 63, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 35, 63, 0.06) 1px, transparent 1px),
    #fafafa;
  background-size: 28px 28px;
  color: var(--color-blue);
  text-align: center;
  padding: 20px;
}

.map-placeholder span {
  display: block;
  color: var(--color-muted);
  margin-top: 0.4rem;
}

.similar-section {
  padding-bottom: 0;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.content-stack {
  display: grid;
  gap: 18px;
}

.content-stack article {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  padding: 22px;
}

.contact-grid {
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 0.55fr);
}

.contact-panel {
  position: sticky;
  top: 96px;
}

.contact-panel .btn {
  width: 100%;
  margin-bottom: 1.3rem;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form button {
  width: 100%;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: #0b1729;
  color: #fff;
  padding: 58px 0 28px;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 154, 54, 0.74), transparent);
}

.site-footer p,
.site-footer a,
.site-footer small {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer a:hover {
  color: #fff;
}

.site-footer h2 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(140px, 0.65fr));
  gap: 32px;
  align-items: start;
}

.footer-brand-col {
  display: grid;
  align-content: start;
  gap: 0.75rem;
}

.footer-brand .brand-mark {
  background: #fff;
  color: var(--color-blue);
}

.footer-brand strong {
  color: #fff;
}

/* כפתור CTA בפוטר */
.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--color-gold, #c79a36), #e4c779);
  color: #101820;
  padding: 0.7rem 1.1rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(199, 154, 54, 0.22);
  transition: opacity 0.18s;
}

.footer-cta:hover {
  opacity: 0.88;
  color: #101820;
}

/* עמודות פוטר */
.footer-column {
  display: grid;
  align-content: start;
  gap: 0.5rem;
  font-style: normal;
}

.footer-column h2 {
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--color-gold, #c79a36);
}

.footer-contact a:first-of-type {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

/* פס מילות מפתח */
.footer-keywords {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  max-width: 920px;
  margin-top: 36px;
  margin-inline: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding: 16px 22px;
  font-size: 0.88rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  direction: rtl;
}

.footer-keywords span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(212, 168, 83, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  padding: 0.32rem 0.72rem;
  white-space: nowrap;
}

.footer-keywords span:hover {
  border-color: rgba(212, 168, 83, 0.34);
  color: rgba(255, 255, 255, 0.84);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 24px;
  padding-top: 20px;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--color-gold, #c79a36);
}

.disclaimer {
  font-size: 0.83rem;
  width: 100%;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 1040px) {
  .header-inner {
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    background: #fff;
    border-bottom: 2px solid var(--color-gold);
    padding: 8px 16px 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    margin: 0;
    z-index: 100;
  }

  .main-nav.is-open {
    display: grid;
    animation: navSlideDown 0.22s ease;
  }

  .main-nav a {
    padding: 0.88rem 1rem;
    border-bottom: 1px solid var(--color-line);
    font-size: 1rem;
    border-radius: 0;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav a:hover,
  .main-nav a[aria-current="page"] {
    background: var(--color-gold-2);
    border-radius: var(--radius);
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .property-detail-head,
  .detail-grid,
  .testimonial-panel,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .property-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .search-label {
    grid-column: span 2;
  }

  .detail-sidebar,
  .contact-panel {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 52px 0;
  }

  .header-inner {
    min-height: 68px;
  }

  .main-nav {
    inset-block-start: 68px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  h1 {
    font-size: 2.35rem;
  }

  .hero-actions,
  .final-cta-inner .btn {
    width: 100%;
  }

  .hero-actions .btn,
  .final-cta-inner .btn {
    width: 100%;
  }

  .hero-visual img,
  .about-visual img {
    min-height: 290px;
  }

  .property-grid,
  .feature-grid,
  .country-grid,
  .steps-list,
  .filters,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .search-label {
    grid-column: span 1;
  }

  .property-actions,
  .property-meta {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .footer-keywords {
    width: min(100% - 24px, var(--container));
    max-width: 560px;
    gap: 7px;
    padding-inline: 12px;
  }

  .footer-keywords span {
    min-height: 28px;
    padding: 0.3rem 0.62rem;
    font-size: 0.82rem;
  }

  .footer-cta {
    width: 100%;
    justify-content: center;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img,
  .gallery img:first-child {
    height: auto;
    min-height: 220px;
    grid-row: auto;
  }

  .property-detail,
  .testimonial-panel,
  .final-cta-inner,
  .contact-panel,
  .contact-form {
    padding: 20px;
  }

  .facts-list div,
  .contact-list div {
    display: grid;
    gap: 0.15rem;
  }
}

/* Premium redesign aligned with the original Afikim reference site. */
:root {
  --premium-bg: #0d0d0d;
  --premium-bg-2: #111111;
  --premium-panel: rgba(255, 255, 255, 0.045);
  --premium-panel-2: rgba(255, 255, 255, 0.075);
  --premium-border: rgba(255, 255, 255, 0.1);
  --premium-border-strong: rgba(212, 168, 83, 0.34);
  --premium-text: rgba(255, 255, 255, 0.9);
  --premium-muted: rgba(255, 255, 255, 0.58);
  --premium-dim: rgba(255, 255, 255, 0.55);
  --premium-gold: #d4a853;
  --premium-gold-2: #c49040;
  --premium-green: #25d366;
  --premium-font-display: "Playfair Display", Georgia, serif;
  --premium-font-body: "Nunito Sans", system-ui, sans-serif;
}

body {
  background: var(--premium-bg);
  color: var(--premium-text);
  font-family: var(--premium-font-body);
}

p {
  color: var(--premium-muted);
}

h1,
h2,
h3 {
  color: #fff;
  font-family: var(--premium-font-display);
  font-weight: 900;
}

.site-header {
  background: rgba(8, 8, 8, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 86px;
}

.brand-mark {
  width: 43px;
  height: 43px;
  border-radius: 0;
  background: linear-gradient(135deg, var(--premium-gold), var(--premium-gold-2));
  color: #0d0d0d;
  font-family: var(--premium-font-display);
  font-size: 1.08rem;
}

.brand strong {
  color: #fff;
  font-family: var(--premium-font-display);
  font-size: 0.98rem;
  letter-spacing: 0.12em;
}

.brand small {
  color: var(--premium-gold);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.38em;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  border-radius: 0;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: transparent;
  color: var(--premium-gold);
}

.main-nav .nav-link-accent {
  color: #fff;
  background: linear-gradient(135deg, #1f8b4c, #145c36);
  padding-inline: 0.9rem;
  box-shadow: 0 10px 22px rgba(20, 92, 54, 0.22);
}

.main-nav .nav-link-accent:hover {
  color: #fff;
  background: linear-gradient(135deg, #2c9b61, #145c36);
}

.header-cta {
  min-width: 176px;
  min-height: 48px;
  border-radius: 0;
  background: linear-gradient(135deg, var(--premium-gold), var(--premium-gold-2));
  color: #0d0d0d;
  box-shadow: none;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(212, 168, 83, 0.55);
  border-radius: 0;
  background: rgba(212, 168, 83, 0.08);
  color: var(--premium-gold);
  box-shadow: inset 0 0 0 0 rgba(212, 168, 83, 0);
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.menu-toggle:hover {
  background: rgba(212, 168, 83, 0.16);
  border-color: var(--premium-gold);
  box-shadow: 0 0 16px rgba(212, 168, 83, 0.18);
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--premium-gold);
  outline-offset: 2px;
}

.hero {
  position: relative;
  min-height: calc(100svh - 86px);
  padding: clamp(22px, 3vw, 38px) 0 clamp(42px, 5vw, 72px);
  isolation: isolate;
  overflow: hidden;
  background: #0d0d0d;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 62%, rgba(212, 168, 83, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.34) 50%, rgba(0, 0, 0, 0.6) 100%),
    linear-gradient(90deg, rgba(13, 13, 13, 0.58), rgba(13, 13, 13, 0.06), rgba(13, 13, 13, 0.58));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../assets/images/hero-cityscape.webp") center calc(100% + 80px) / cover no-repeat;
  filter: brightness(1.28) contrast(1.06);
  opacity: 0.9;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 980px;
  text-align: center;
}

.hero-content {
  display: grid;
  justify-items: center;
  padding-top: 12px;
}

.hero-monogram {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin-bottom: 26px;
  background: linear-gradient(135deg, var(--premium-gold), var(--premium-gold-2));
  color: #0d0d0d;
  font-family: var(--premium-font-display);
  font-size: 2rem;
  font-weight: 900;
}

.hero .eyebrow,
.section-heading .eyebrow,
.about-preview .eyebrow,
.page-hero .eyebrow,
.final-cta .eyebrow {
  justify-content: center;
  color: var(--premium-gold);
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.hero .eyebrow::before,
.section-heading .eyebrow::before,
.about-preview .eyebrow::before,
.page-hero .eyebrow::before,
.final-cta .eyebrow::before {
  display: none;
}

.brand-title {
  display: grid;
  gap: 0;
  margin: 0;
  font-size: clamp(4.25rem, 11vw, 7.2rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-title span:first-child {
  color: #fff;
}

.brand-title span:last-child,
.gold-text {
  color: var(--premium-gold);
  background: linear-gradient(135deg, #d4a853, #f0c96e, #c49040);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-kicker {
  margin-top: 22px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--premium-font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-text {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  line-height: 1.75;
}

.hero-actions {
  justify-content: center;
  gap: 18px;
  margin: 34px 0 120px;
}

.btn {
  min-height: 56px;
  border-radius: 0;
  padding: 0.92rem 1.65rem;
  letter-spacing: 0.07em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--premium-gold), var(--premium-gold-2));
  color: #0d0d0d;
  box-shadow: 0 18px 40px rgba(212, 168, 83, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f0c96e, var(--premium-gold-2));
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
}

.btn-secondary:hover {
  border-color: rgba(212, 168, 83, 0.48);
  box-shadow: none;
}

.hero-visual {
  display: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 960px);
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid rgba(212, 168, 83, 0.22);
  border-bottom: 1px solid rgba(212, 168, 83, 0.22);
}

.hero-stats li {
  display: grid;
  gap: 4px;
  padding: 24px 14px;
  background: rgba(255, 255, 255, 0.035);
}

.hero-stats strong {
  color: #fff;
  font-family: var(--premium-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.hero-stats small {
  color: rgba(212, 168, 83, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.section,
.page-hero {
  background: var(--premium-bg);
}

.section-muted {
  background: var(--premium-bg-2);
}

.section-heading {
  max-width: 840px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.page-hero h1,
.about-preview h2,
.final-cta h2 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
}

.section-heading p,
.page-hero p,
.about-preview p {
  color: var(--premium-muted);
}

.feature-grid,
.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.property-card,
.testimonial-panel,
.content-stack article,
.contact-panel,
.contact-form,
.detail-main,
.detail-sidebar,
.not-found-panel,
.property-detail,
.filters {
  border-color: var(--premium-border);
  background: var(--premium-panel);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.feature-card {
  min-height: 260px;
  padding: 30px;
}

.services-grid .service-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 24px;
  border-color: rgba(212, 168, 83, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    var(--premium-panel);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
}

.services-grid .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(212, 168, 83, 0.13) 42%, transparent 70%);
  opacity: 0;
  transform: translateX(42%);
  transition: opacity 260ms ease, transform 520ms ease;
  pointer-events: none;
}

.services-grid .service-card::after {
  content: "";
  position: absolute;
  inset-inline: 24px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.68), transparent);
  opacity: 0.42;
  transition: opacity 260ms ease, inset-inline 260ms ease;
}

.services-grid .service-card:hover,
.services-grid .service-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(212, 168, 83, 0.5);
  background:
    linear-gradient(145deg, rgba(212, 168, 83, 0.09), rgba(255, 255, 255, 0.035)),
    var(--premium-panel);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    0 0 42px rgba(212, 168, 83, 0.08);
}

.services-grid .service-card:hover::before,
.services-grid .service-card:focus-within::before {
  opacity: 1;
  transform: translateX(-42%);
}

.services-grid .service-card:hover::after,
.services-grid .service-card:focus-within::after {
  inset-inline: 18px;
  opacity: 0.88;
}

.feature-card h3,
.property-card h3 {
  color: #fff;
}

.feature-card p,
.property-card p {
  color: var(--premium-muted);
}

.service-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(212, 168, 83, 0.34);
  background:
    linear-gradient(135deg, rgba(212, 168, 83, 0.18), rgba(212, 168, 83, 0.05)),
    rgba(255, 255, 255, 0.02);
  color: var(--premium-gold);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease, color 260ms ease;
}

.service-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-grid .service-card:hover .service-icon,
.services-grid .service-card:focus-within .service-icon {
  transform: translateY(-2px) scale(1.06);
  border-color: rgba(212, 168, 83, 0.68);
  background:
    linear-gradient(135deg, rgba(212, 168, 83, 0.28), rgba(212, 168, 83, 0.08)),
    rgba(255, 255, 255, 0.04);
}

.services-grid .service-card h3 {
  margin-bottom: 6px;
  font-size: clamp(1.18rem, 1.7vw, 1.45rem);
}

.service-card small {
  display: block;
  color: var(--premium-gold);
  margin-bottom: 10px;
  font-size: 0.78rem;
}

.services-grid .service-card p {
  margin-bottom: 0;
  font-size: 0.96rem;
  line-height: 1.58;
}

@media (prefers-reduced-motion: reduce) {
  .services-grid .service-card,
  .services-grid .service-card::before,
  .services-grid .service-card::after,
  .service-icon {
    transition: none;
  }

  .services-grid .service-card:hover,
  .services-grid .service-card:focus-within,
  .services-grid .service-card:hover .service-icon,
  .services-grid .service-card:focus-within .service-icon {
    transform: none;
  }
}

.about-preview {
  position: relative;
  overflow: hidden;
}

.about-preview::before {
  content: "AN";
  position: absolute;
  inset-inline-start: 4vw;
  top: 28px;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--premium-font-display);
  font-size: clamp(8rem, 22vw, 18rem);
  font-weight: 900;
  line-height: 1;
}

.about-preview .about-grid {
  position: relative;
  z-index: 1;
  align-items: center;
}

.about-preview .about-visual,
.about-visual,
.hero-visual {
  border-color: var(--premium-border);
  border-radius: 0;
  background: var(--premium-panel);
}

.about-visual img {
  min-height: 520px;
  object-fit: cover;
}

/* About page */
.about-hero-page {
  position: relative;
  overflow: hidden;
  padding-block: clamp(58px, 6.5vw, 86px);
  background:
    radial-gradient(circle at 82% 18%, rgba(212, 168, 83, 0.14), transparent 28%),
    linear-gradient(135deg, #080808 0%, #101010 56%, #081018 100%);
  border-bottom: 1px solid rgba(212, 168, 83, 0.16);
}

.about-hero-page::before {
  content: "AFIKIM";
  position: absolute;
  inset-inline-start: 4vw;
  bottom: -0.22em;
  color: rgba(255, 255, 255, 0.028);
  font-family: var(--premium-font-display);
  font-size: clamp(7rem, 18vw, 18rem);
  font-weight: 900;
  line-height: 0.8;
  pointer-events: none;
}

.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: clamp(18px, 2.6vw, 34px);
  align-items: center;
}

.about-hero-copy {
  max-width: 860px;
}

.about-hero-copy h1 {
  max-width: 780px;
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(2.55rem, 5.5vw, 4.65rem);
  line-height: 0.98;
}

.about-lead {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  font-weight: 650;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 22px;
}

.about-quick-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-quick-points li {
  border: 1px solid rgba(212, 168, 83, 0.22);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.74);
  padding: 0.45rem 0.72rem;
  font-size: 0.88rem;
  font-weight: 800;
}

.about-profile-card {
  position: relative;
  max-width: 430px;
  justify-self: start;
  border: 1px solid var(--premium-border-strong);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  padding: 14px;
}

.about-profile-card img {
  width: 100%;
  aspect-ratio: 4 / 4.55;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  filter: saturate(0.92) contrast(1.04);
}

.about-profile-body {
  padding: 18px 4px 4px;
}

.about-profile-body span {
  display: block;
  color: var(--premium-gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.about-profile-body h2 {
  margin: 0.35rem 0 0.6rem;
  color: #fff;
  font-family: var(--premium-font-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.about-profile-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.about-story-page,
.about-values-section,
.about-focus-section,
.about-closing-section {
  background: var(--premium-bg);
}

.about-story-page,
.about-values-section,
.about-focus-section {
  padding-block: clamp(52px, 6vw, 78px);
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(22px, 3vw, 36px);
  align-items: start;
}

.about-story-main {
  max-width: 860px;
}

.about-story-main h2,
.about-focus-copy h2,
.about-closing-card h2 {
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 3.45rem);
}

.about-story-main p,
.about-focus-copy p,
.about-closing-card p {
  color: var(--premium-muted);
  font-size: 1.04rem;
  line-height: 1.85;
}

.about-standards-card {
  border: 1px solid var(--premium-border);
  border-right-color: var(--premium-border-strong);
  background: var(--premium-panel);
  padding: clamp(22px, 3vw, 30px);
}

.about-standards-card h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.about-standards-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-standards-card li {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.about-standards-card strong {
  color: #fff;
}

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.about-value-card {
  border: 1px solid var(--premium-border);
  background: var(--premium-panel);
  padding: 20px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.about-value-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 168, 83, 0.38);
  background: var(--premium-panel-2);
}

.about-value-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--premium-gold);
  font-family: var(--premium-font-display);
  font-size: 1.8rem;
  font-weight: 900;
}

.about-value-card h3 {
  color: #fff;
  font-size: 1.22rem;
}

.about-value-card p {
  margin: 0;
  color: var(--premium-muted);
}

.about-focus-grid {
  display: block;
}

.about-focus-copy {
  max-width: 880px;
  margin-inline: auto;
  margin-bottom: clamp(24px, 3vw, 34px);
  text-align: center;
}

.about-focus-copy h2 {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.08;
}

.about-focus-copy p {
  max-width: 690px;
  margin-inline: auto;
}

.about-focus-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.about-focus-list article {
  min-height: 176px;
  border: 1px solid var(--premium-border);
  border-top-color: rgba(212, 168, 83, 0.46);
  background:
    linear-gradient(180deg, rgba(212, 168, 83, 0.06), rgba(255, 255, 255, 0.035)),
    var(--premium-panel);
  padding: 20px;
}

.about-focus-list h3 {
  margin-bottom: 0.65rem;
  color: #fff;
  font-size: 1.16rem;
}

.about-focus-list p {
  margin: 0;
  color: var(--premium-muted);
}

.about-closing-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.28fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  border: 1px solid var(--premium-border-strong);
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.13), rgba(255, 255, 255, 0.04));
  padding: clamp(22px, 3vw, 34px);
}

.about-closing-card .btn {
  width: 100%;
}

@media (min-width: 1024px) {
  .about-hero-page > .container,
  .about-story-page > .container,
  .about-values-section > .container,
  .about-focus-section > .container,
  .about-closing-section > .container {
    width: min(var(--container), calc(100% - 180px));
  }
}

@media (max-width: 980px) {
  .about-hero-grid,
  .about-story-grid,
  .about-closing-card {
    grid-template-columns: 1fr;
  }

  .about-profile-card {
    max-width: 520px;
    justify-self: center;
  }

  .about-card-grid,
  .about-focus-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .about-hero-page {
    padding-block: 58px 46px;
  }

  .about-hero-copy h1 {
    font-size: clamp(2.2rem, 13vw, 3.4rem);
  }

  .about-hero-actions .btn,
  .about-closing-card .btn {
    width: 100%;
  }

  .about-card-grid,
  .about-focus-list {
    grid-template-columns: 1fr;
  }

  .about-value-card,
  .about-standards-card,
  .about-closing-card {
    padding: 20px;
  }
}

.property-card {
  border-radius: 0;
  overflow: hidden;
}

.property-image {
  background: #171717;
  border-bottom: 1px solid var(--premium-border);
}

.property-image img {
  filter: saturate(0.86) contrast(1.05);
}

.property-body {
  background: #111;
  padding: 22px;
}

.property-location {
  color: var(--premium-gold);
  letter-spacing: 0.06em;
}

.property-price {
  color: #fff;
  font-family: var(--premium-font-display);
}

.property-meta div {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--premium-border);
  border-radius: 0;
}

.property-meta dt,
.facts-list dt,
.contact-list dt {
  color: var(--premium-dim);
}

.property-meta dd,
.facts-list dd,
.contact-list dd {
  color: #fff;
}

.property-extra {
  color: var(--premium-muted);
}

.badge {
  border-radius: 0;
}

.badge-status {
  background: #0d0d0d;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.badge-demo {
  background: linear-gradient(135deg, #f0c96e, #c49040);
  color: #0d0d0d;
}

/* country-card premium overrides are handled in the base rules above */

.steps-list li {
  border-color: var(--premium-border);
  border-radius: 0;
  background: var(--premium-panel);
}

.steps-list li::before {
  background: linear-gradient(135deg, var(--premium-gold), var(--premium-gold-2));
  color: #0d0d0d;
}

.steps-list strong {
  color: #fff;
}

.steps-list span {
  color: var(--premium-muted);
}

.testimonial-panel {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.testimonial-panel::before {
  content: "“";
  position: absolute;
  left: 24px;
  top: -74px;
  color: rgba(255, 255, 255, 0.05);
  font-family: var(--premium-font-display);
  font-size: 18rem;
  line-height: 1;
}

/* ── Our Story Section ── */
.our-story-section {
  position: relative;
  background: #080808;
  overflow: hidden;
  padding: 100px 0;
  border-top: 1px solid rgba(212, 168, 83, 0.15);
}

.our-story-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: url('../assets/images/luxury-apartment.webp') center / cover no-repeat;
  -webkit-mask-image: linear-gradient(to right, black 40%, transparent 100%);
  mask-image: linear-gradient(to right, black 40%, transparent 100%);
  z-index: 1;
}

.our-story-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.our-story-content {
  color: rgba(255, 255, 255, 0.85);
}

.our-story-content .brand-title-inline {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-family: var(--premium-font-display);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
}

.our-story-content .brand-title-inline span {
  color: var(--premium-gold);
}

.our-story-content p {
  margin-bottom: 24px;
  line-height: 1.7;
  font-size: 1.1rem;
}

.story-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 168, 83, 0.2);
}

.story-profile img {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  object-fit: cover;
  border: 1px solid rgba(212, 168, 83, 0.5);
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.story-profile-info strong {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.story-profile-info span {
  display: block;
  color: var(--premium-gold);
  font-size: 0.95rem;
}

.story-profile-info small {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  margin-top: 4px;
}

@media (max-width: 1040px) {
  .our-story-container {
    grid-template-columns: 1fr;
  }
  
  .our-story-bg {
    width: 100%;
    opacity: 0.15;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

.final-cta {
  background: var(--premium-bg);
  padding-block: clamp(28px, 4vw, 44px);
}

.final-cta-inner {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.28fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  padding: clamp(18px, 2.5vw, 28px) clamp(22px, 3.5vw, 34px);
  border-radius: 0;
  border: 1px solid var(--premium-border-strong);
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.14), rgba(255, 255, 255, 0.04));
  box-shadow: none;
}

.final-cta .eyebrow {
  margin-bottom: 0.45rem;
  font-size: 0.66rem;
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 0.55rem;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  line-height: 1.04;
}

.final-cta p:not(.eyebrow) {
  margin-bottom: 0;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

.final-cta-inner .btn {
  width: 100%;
  min-height: 46px;
  padding-block: 0.72rem;
}

@media (max-width: 820px) {
  .final-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px;
  }

  .final-cta h2 {
    margin-inline: auto;
    font-size: clamp(1.85rem, 8vw, 2.55rem);
  }

  .final-cta-inner .btn {
    max-width: 360px;
    margin-inline: auto;
  }
}

.social-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 168, 83, 0.12), transparent 34%),
    var(--premium-bg);
}

/* ── Reels Carousel ── */
.reels-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.reels-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 24px 4px;
  scrollbar-width: none;
}

.reels-carousel::-webkit-scrollbar {
  display: none;
}

.reel-card {
  flex: 0 0 300px;
  scroll-snap-align: center;
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(212, 168, 83, 0.22);
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(212, 168, 83, 0.06);
  transition: transform 320ms ease, box-shadow 320ms ease;
  display: flex;
  flex-direction: column;
}

.reel-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.65),
    0 0 80px rgba(212, 168, 83, 0.12);
  border-color: rgba(212, 168, 83, 0.45);
}

.reel-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  overflow: hidden;
}

.native-reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #000;
  border-radius: 20px 20px 0 0;
}

.reel-info {
  padding: 20px;
  background: #0a0a0a;
  text-align: right;
  border-top: 1px solid rgba(212, 168, 83, 0.15);
}

.reel-title {
  color: var(--premium-gold);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.reel-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Premium Play Overlay */
.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 72px;
  height: 72px;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(212, 168, 83, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--premium-gold);
  cursor: pointer;
  transition: opacity 400ms ease, transform 400ms ease;
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(212, 168, 83, 0.12);
}

.video-play-overlay svg {
  margin-left: 3px;
}

.reel-frame:hover .video-play-overlay {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(212, 168, 83, 0.25);
  border-color: var(--premium-gold);
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(212, 168, 83, 0.2);
}

.reel-frame.is-playing .video-play-overlay {
  opacity: 0;
  pointer-events: none;
}

/* Hide native controls by default, show on hover */
.native-reel-video::-webkit-media-controls-panel {
  opacity: 0;
  transition: opacity 300ms ease;
}

.reel-frame:hover .native-reel-video::-webkit-media-controls-panel,
.reel-frame.is-playing .native-reel-video::-webkit-media-controls-panel {
  opacity: 1;
}

/* Navigation arrows */
.reels-nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(212, 168, 83, 0.35);
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.85);
  color: var(--premium-gold);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 220ms ease;
  z-index: 2;
}

.reels-nav:hover {
  background: rgba(212, 168, 83, 0.18);
  border-color: rgba(212, 168, 83, 0.6);
  transform: scale(1.1);
}

/* CTA under carousel */
/* ── Swipe hint (mobile only, JS-injected) ── */
.swipe-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  pointer-events: none;
  animation: swipeHintFadeIn 0.5s ease 0.8s both;
  transition: opacity 0.4s ease;
}

.swipe-hint--gone {
  opacity: 0;
}

.swipe-hint-arrow {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.55)' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='19' y1='12' x2='5' y2='12'/%3E%3Cpolyline points='12 5 5 12 12 19'/%3E%3C/svg%3E") center/contain no-repeat;
  animation: swipeArrowBounce 1.2s ease-in-out 1.2s 3;
}

@keyframes swipeHintFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes swipeArrowBounce {
  0%, 100% { transform: translateX(0); }
  40%       { transform: translateX(-8px); }
  70%       { transform: translateX(-3px); }
}

.reels-cta {
  display: flex;
  justify-content: center;
  margin-top: 18px;
  gap: 14px;
}

.reels-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.reels-cta svg {
  flex-shrink: 0;
}

.page-hero {
  min-height: 390px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55), var(--premium-bg)),
    url("../assets/images/hero-cityscape.webp") center / cover no-repeat;
}

.filters label,
.contact-form label {
  color: rgba(255, 255, 255, 0.64);
}

input,
select,
textarea {
  border-color: var(--premium-border);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

select option {
  background: #111;
  color: #fff;
}

.results-bar p,
.empty-state {
  color: #fff;
}

.empty-state {
  border-color: var(--premium-border-strong);
  border-radius: 0;
  background: var(--premium-panel);
}

.property-detail-section {
  background: var(--premium-bg);
}

.property-detail {
  border-radius: 0;
}

.detail-price-card {
  border-color: var(--premium-border);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.05);
}

.detail-price-card span {
  color: var(--premium-dim);
}

.detail-price-card strong {
  color: #fff;
}

.gallery img {
  border-color: var(--premium-border);
  border-radius: 0;
  background: #111;
}

.detail-main ul {
  color: var(--premium-muted);
}

.map-placeholder {
  border-color: var(--premium-border-strong);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(212, 168, 83, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(212, 168, 83, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.035);
  color: #fff;
}

.map-placeholder span {
  color: var(--premium-muted);
}

.contact-panel,
.contact-form {
  border-radius: 0;
}

.contact-list div,
.facts-list div {
  border-bottom-color: var(--premium-border);
}

.form-note,
.disclaimer {
  color: var(--premium-dim);
}

.site-footer {
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 12% 20%, rgba(212, 168, 83, 0.11), transparent 30%),
    linear-gradient(135deg, #080808 0%, #111111 48%, #081018 100%);
}

.footer-bottom {
  border-top-color: rgba(212, 168, 83, 0.22);
}

.floating-whatsapp {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  filter: drop-shadow(0 4px 24px rgba(37, 211, 102, 0.45));
}

.floating-whatsapp span {
  opacity: 0;
  transform: translateX(-8px);
  pointer-events: none;
  color: #fff;
  background: #1a1a1a;
  border: 1px solid var(--premium-border);
  padding: 0.55rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 800;
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-whatsapp:hover span {
  opacity: 1;
  transform: translateX(0);
}

.floating-whatsapp svg {
  width: 58px;
  height: 58px;
  padding: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  fill: #fff;
  transition: transform 180ms ease;
}

.floating-whatsapp:hover svg {
  transform: scale(1.08);
}

@media (min-width: 760px) {
  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    gap: 1.35rem;
  }

  .header-cta {
    display: inline-flex;
  }
}

@media (max-width: 759px) {
  .header-inner {
    min-height: 72px;
  }

  .main-nav {
    inset-block-start: 72px;
    background: rgba(8, 8, 8, 0.98);
    border-bottom-color: var(--premium-border);
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 1040px) and (min-width: 760px) {
  .main-nav {
    margin-inline-start: auto;
    gap: 0.45rem;
  }

  .header-inner {
    gap: 10px;
  }

  .main-nav a {
    padding-inline: 0.42rem;
    font-size: 0.84rem;
  }

  .brand {
    gap: 0.5rem;
  }

  .brand strong {
    font-size: 0.88rem;
  }

  .brand small {
    font-size: 0.55rem;
    letter-spacing: 0.32em;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 1040px) {
  .feature-grid,
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reels-nav {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: calc(100svh - 72px);
    padding-top: 28px;
  }

  .hero::after {
    background-position: center calc(100% + 34px);
  }

  .hero-content {
    padding-top: 8px;
  }

  .hero-monogram {
    width: 58px;
    height: 58px;
    font-size: 1.45rem;
    margin-bottom: 20px;
  }

  .brand-title {
    font-size: clamp(3.15rem, 18vw, 5.2rem);
  }

  .hero-actions {
    margin-bottom: 56px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats li {
    padding: 18px 10px;
  }

  .feature-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    display: flex;
    gap: 12px;
    margin-inline: -12px;
    padding: 0 12px 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 12px;
    scroll-snap-type: inline mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .services-grid::-webkit-scrollbar {
    display: none;
  }

  .services-grid .service-card {
    flex: 0 0 min(72vw, 300px);
    min-height: 218px;
    padding: 20px;
    scroll-snap-align: start;
  }

  .services-grid .service-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 15px;
  }

  .services-grid .service-icon svg {
    width: 18px;
    height: 18px;
  }

  .services-grid .service-card h3 {
    margin-bottom: 5px;
    font-size: 1.14rem;
  }

  .services-grid .service-card small {
    margin-bottom: 8px;
    font-size: 0.76rem;
  }

  .services-grid .service-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .reel-card {
    flex: 0 0 260px;
  }

  .reel-frame {
    min-height: 400px;
  }

  .reels-nav {
    display: none;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp svg {
    width: 54px;
    height: 54px;
  }

  .country-card {
    min-height: 360px;
  }

  .cc-content {
    padding: 28px 24px;
  }

  .cc-title {
    font-size: 2.4rem;
  }
}

/* ── Testimonials ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  box-shadow: 0 4px 12px rgba(16, 35, 63, 0.04);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.testimonial-quote {
  font-size: 1.1rem;
  color: var(--color-blue);
  font-style: italic;
  position: relative;
  line-height: 1.5;
}

.testimonial-quote::before {
  content: "״";
  font-size: 3rem;
  color: var(--color-gold);
  opacity: 0.2;
  position: absolute;
  top: -15px;
  right: -5px;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.author-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-ink);
}

.author-info span {
  font-size: 0.85rem;
  color: var(--color-muted);
}

@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Social Strip ── */
.social-strip {
  background: #0a1628;
  color: #fff;
}

.social-strip-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.social-strip-inner img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--color-gold);
  flex-shrink: 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.social-strip-inner h2 {
  color: #fff;
  margin-bottom: 12px;
}

.social-strip-inner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

.social-strip-actions {
  display: flex;
  gap: 16px;
  margin-inline-start: auto;
}

@media (max-width: 900px) {
  .social-strip-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .social-strip-actions {
    margin-inline-start: 0;
    margin-top: 16px;
    justify-content: center;
  }
}

/* ── UX Enhancements: Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms cubic-bezier(0.5, 0, 0, 1), transform 600ms cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Delay modifiers for stagger effect */
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }

/* ── WhatsApp Pulse Animation ── */
@keyframes pulse-ring {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.floating-whatsapp {
  animation: pulse-ring 2.5s infinite;
}
