/* ===========================
   AssetLookout — Design System
   =========================== */

/* ── Fonts & Reset ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand Colors */
  --amber:       hsl(38, 92%, 50%);
  --amber-light: hsl(38, 92%, 62%);
  --amber-dark:  hsl(38, 92%, 40%);
  --emerald:     hsl(160, 84%, 39%);
  --indigo:      hsl(239, 84%, 67%);
  --rose:        hsl(330, 81%, 60%);

  /* Dark Background Palette */
  --bg-deep:    hsl(222, 28%, 7%);
  --bg-dark:    hsl(222, 24%, 10%);
  --bg-card:    hsl(222, 22%, 13%);
  --bg-card2:   hsl(222, 20%, 16%);
  --bg-glass:   hsla(222, 24%, 16%, 0.7);

  /* Text */
  --text:       hsl(220, 20%, 96%);
  --text-muted: hsl(220, 12%, 60%);
  --text-dim:   hsl(220, 12%, 45%);

  /* Border */
  --border:     hsla(220, 24%, 100%, 0.08);
  --border-glow:hsla(38, 92%, 50%, 0.3);

  /* Gradients */
  --grad-amber: linear-gradient(135deg, hsl(38,92%,50%), hsl(38,92%,40%));
  --grad-hero:  linear-gradient(180deg, hsla(222,28%,7%,0) 0%, hsla(222,28%,7%,0.65) 50%, hsl(222,28%,7%) 100%);

  /* Typography */
  --font-body:   'Inter', system-ui, sans-serif;
  --font-display:'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-py: 7rem;
  --container:  1200px;

  /* Timing */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --shadow-sm:  0 2px 8px hsla(0,0%,0%,0.3);
  --shadow-md:  0 8px 32px hsla(0,0%,0%,0.4);
  --shadow-lg:  0 24px 64px hsla(0,0%,0%,0.5);
  --shadow-amber: 0 0 40px hsla(38,92%,50%,0.25);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 3px; }

/* ── Utilities ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

.gradient-text {
  background: linear-gradient(135deg, var(--amber-light), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid hsla(38,92%,50%,.25);
  background: hsla(38,92%,50%,.08);
  padding: .35rem .85rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.section-tag::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s ease infinite;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.18;
  text-align: center;
  margin-bottom: 1rem;
}

.section-sub {
  max-width: 600px;
  margin: 0 auto 3.5rem;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 1.05rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .25s var(--ease);
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--grad-amber);
  color: #1a0a00;
  box-shadow: 0 4px 20px hsla(38,92%,50%,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px hsla(38,92%,50%,.5);
  filter: brightness(1.08);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}

/* ── Animations ── */
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.4)} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes scrollBob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }
@keyframes shimmer { 0%{background-position:-200% center} 100%{background-position:200% center} }
@keyframes spin { to{transform:rotate(360deg)} }

.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════
   NAVBAR
════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all .35s var(--ease);
}
#navbar.scrolled {
  background: hsla(222,28%,7%,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: .8rem 0;
  box-shadow: 0 4px 32px hsla(0,0%,0%,.3);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: hsla(38,92%,50%,.12);
  border: 1px solid hsla(38,92%,50%,.25);
  border-radius: 10px;
  transition: all .25s;
}
.logo:hover .logo-icon {
  background: hsla(38,92%,50%,.2);
  box-shadow: 0 0 20px hsla(38,92%,50%,.3);
}
.logo-text {
  font-size: 1.2rem;
  color: var(--text);
  letter-spacing: -.02em;
}
.logo-text strong { color: var(--amber); font-weight: 800; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  padding: .45rem .85rem;
  border-radius: 8px;
  transition: all .2s;
}
.nav-link:hover { color: var(--text); background: var(--border); }
.nav-cta {
  margin-left: .5rem;
  background: var(--grad-amber);
  color: #1a0a00 !important;
  font-weight: 700;
  text-decoration: none;
  padding: .55rem 1.3rem;
  border-radius: 999px;
  font-size: .9rem;
  transition: all .25s;
  box-shadow: 0 4px 16px hsla(38,92%,50%,.35);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px hsla(38,92%,50%,.5); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════
   HERO
════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: saturate(1.1);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom { from{transform:scale(1.08)} to{transform:scale(1.15)} }

.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, hsla(222,28%,7%,1) 0%, transparent 70%),
    linear-gradient(to right, hsla(222,28%,7%,.85) 0%, hsla(222,28%,7%,.4) 60%, hsla(222,28%,7%,.65) 100%),
    linear-gradient(to bottom, hsla(222,28%,7%,.5) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  padding: 0 1.5rem;
  margin-top: 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: hsla(38,92%,50%,.1);
  border: 1px solid hsla(38,92%,50%,.25);
  color: var(--amber-light);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: .4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  animation: fadeUp .8s var(--ease) both;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s ease infinite;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
  animation: fadeUp .8s .15s var(--ease) both;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: hsla(220,20%,88%,.85);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  animation: fadeUp .8s .3s var(--ease) both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeUp .8s .45s var(--ease) both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: hsla(222,24%,12%,.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  animation: fadeUp .8s .6s var(--ease) both;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
}
.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--amber);
  letter-spacing: -.04em;
  line-height: 1;
}
.stat-plus {
  font-size: 1rem;
  font-weight: 700;
  color: var(--amber);
  margin-left: 1px;
}
.stat-label {
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: .25rem;
  text-align: center;
}
.stat-divider {
  width: 1px; height: 40px;
  background: var(--border);
}

.scroll-down {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  animation: scrollBob 2s ease infinite;
  opacity: .7;
  transition: opacity .2s;
}
.scroll-down:hover { opacity: 1; }

/* ════════════════════
   ABOUT / FEATURES
════════════════════ */
#about {
  padding: var(--section-py) 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-amber);
  opacity: 0;
  transition: opacity .3s;
}
.feature-card:hover {
  border-color: hsla(38,92%,50%,.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px hsla(0,0%,0%,.4);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 56px; height: 56px;
  background: hsla(from var(--icon-color) h s l / .12);
  border: 1px solid hsla(from var(--icon-color) h s l / .2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--icon-color);
  transition: all .3s;
}
.feature-card:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 0 24px hsla(from var(--icon-color) h s l / .25);
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .6rem;
  color: var(--text);
}
.feature-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ════════════════════
   SERVICES
════════════════════ */
#services {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.services-bg-shape {
  position: absolute;
  top: -200px; right: -300px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, hsla(38,92%,50%,.06) 0%, transparent 70%);
  pointer-events: none;
}
.services-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.service-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 2rem;
  align-items: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsla(38,92%,50%,.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.service-item:hover {
  border-color: hsla(38,92%,50%,.2);
  transform: translateX(6px);
  box-shadow: -4px 0 24px hsla(38,92%,50%,.1);
}
.service-item:hover::after { opacity: 1; }

.service-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: hsla(38,92%,50%,.2);
  line-height: 1;
  transition: color .3s;
}
.service-item:hover .service-num { color: hsla(38,92%,50%,.45); }

.service-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .6rem;
}
.service-content p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: .92rem;
  margin-bottom: 1rem;
}
.service-perks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .9rem;
}
.service-perks li {
  font-size: .8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .35rem;
}
.service-perks li::before {
  content: '✓';
  color: var(--amber);
  font-weight: 700;
  font-size: .85rem;
}

.service-badge {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 999px;
  white-space: nowrap;
  align-self: flex-start;
}
.service-badge.res { background: hsla(38,92%,50%,.12); color: var(--amber); border: 1px solid hsla(38,92%,50%,.25); }
.service-badge.com { background: hsla(99,60%,50%,.1); color: hsl(99,60%,60%); border: 1px solid hsla(99,60%,50%,.2); }
.service-badge.mf  { background: hsla(239,84%,67%,.1); color: var(--indigo); border: 1px solid hsla(239,84%,67%,.2); }
.service-badge.ls  { background: hsla(330,81%,60%,.1); color: var(--rose); border: 1px solid hsla(330,81%,60%,.2); }

/* ════════════════════
   PROPERTIES
════════════════════ */
#properties {
  padding: var(--section-py) 0;
}
.property-filters {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: .5rem 1.2rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover { border-color: var(--amber); color: var(--amber); }
.filter-btn.active { background: var(--amber); color: #1a0a00; border-color: var(--amber); font-weight: 700; }

.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.property-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: all .35s var(--ease);
}
.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: hsla(38,92%,50%,.2);
}
.property-card.featured {
  border-color: hsla(38,92%,50%,.25);
  box-shadow: 0 0 0 1px hsla(38,92%,50%,.15), var(--shadow-amber);
}

.property-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.property-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.property-card:hover .property-img-wrap img { transform: scale(1.06); }
.property-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(222,28%,7%,.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.prop-status {
  font-size: .72rem;
  font-weight: 700;
  padding: .28rem .7rem;
  border-radius: 999px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.prop-status.occupied { background: hsla(160,84%,39%,.25); color: #34d399; border: 1px solid hsla(160,84%,39%,.4); }

.prop-type-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: .7rem;
  font-weight: 700;
  padding: .28rem .7rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: hsla(222,28%,7%,.7);
  color: var(--amber);
  border: 1px solid hsla(38,92%,50%,.3);
  backdrop-filter: blur(8px);
}
.prop-type-badge.multi { color: var(--indigo); border-color: hsla(239,84%,67%,.35); }
.prop-type-badge.com   { color: hsl(99,60%,60%); border-color: hsla(99,60%,50%,.3); }

.featured-ribbon {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--grad-amber);
  color: #1a0a00;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .28rem .7rem;
  border-radius: 999px;
}

.property-info { padding: 1.5rem; }

.prop-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .6rem;
}
.prop-location {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .8rem;
  color: var(--text-muted);
}
.prop-yield {
  font-size: .78rem;
  font-weight: 700;
  color: var(--emerald);
  background: hsla(160,84%,39%,.1);
  border: 1px solid hsla(160,84%,39%,.2);
  padding: .2rem .5rem;
  border-radius: 999px;
}
.property-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.property-info p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.prop-details {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: .85rem;
  margin-bottom: .85rem;
}
.prop-details span {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .78rem;
  color: var(--text-dim);
}
.prop-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.prop-rent {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
}
.prop-rent small { font-size: .72rem; font-weight: 400; color: var(--text-muted); }
.prop-cta {
  text-decoration: none;
  background: hsla(38,92%,50%,.1);
  color: var(--amber);
  border: 1px solid hsla(38,92%,50%,.25);
  padding: .4rem 1rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  transition: all .2s;
}
.prop-cta:hover { background: var(--amber); color: #1a0a00; }

.property-card.hide { display: none; }

.properties-cta {
  text-align: center;
  padding: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.properties-cta p {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ════════════════════
   HOW IT WORKS
════════════════════ */
#how-it-works {
  padding: var(--section-py) 0;
  background: var(--bg-dark);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}
.step-connector {
  display: none;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}
.step-circle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--grad-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px hsla(38,92%,50%,.12), 0 0 0 12px hsla(38,92%,50%,.06);
  position: relative;
  flex-shrink: 0;
}
.step-num {
  font-weight: 900;
  font-size: 1.3rem;
  color: #1a0a00;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  transition: all .3s var(--ease);
  width: 100%;
}
.step-card:hover {
  border-color: hsla(38,92%,50%,.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-icon {
  width: 48px; height: 48px;
  background: hsla(38,92%,50%,.1);
  border: 1px solid hsla(38,92%,50%,.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--amber);
}
.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.step-card p {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ════════════════════
   TESTIMONIALS
════════════════════ */
#testimonials {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.test-bg-shape {
  position: absolute;
  top: -200px; left: -300px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, hsla(239,84%,67%,.06) 0%, transparent 70%);
  pointer-events: none;
}
.testimonials-track-wrap {
  overflow: hidden;
  border-radius: 24px;
  margin-bottom: 1.5rem;
}
.testimonials-track {
  display: flex;
  transition: transform .5s var(--ease);
}
.testimonial-card {
  min-width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
}
.stars {
  font-size: 1.2rem;
  color: var(--amber);
  margin-bottom: 1rem;
  letter-spacing: .1em;
}
.review-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.75rem;
  position: relative;
}
.review-text::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--amber);
  opacity: .15;
  position: absolute;
  top: -2.5rem; left: -1rem;
  line-height: 1;
  pointer-events: none;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.reviewer-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .9rem;
  color: white;
  flex-shrink: 0;
}
.reviewer-info strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
}
.reviewer-info span {
  font-size: .8rem;
  color: var(--text-muted);
}
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.tc-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
}
.tc-btn:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: hsla(38,92%,50%,.08);
}
.tc-dots { display: flex; gap: .5rem; align-items: center; }
.tc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all .2s;
}
.tc-dot.active {
  background: var(--amber);
  width: 24px;
  border-radius: 999px;
}

/* ════════════════════
   TRUST
════════════════════ */
#trust {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-label {
  text-align: center;
  font-size: .82rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.75rem;
}
.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  opacity: .45;
  transition: opacity .25s;
  cursor: default;
}
.trust-logo:hover { opacity: .8; }
.trust-logo span {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .05em;
  color: var(--text);
}
.trust-logo small {
  font-size: .65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ════════════════════
   CONTACT
════════════════════ */
#contact {
  padding: var(--section-py) 0;
  background: var(--bg-dark);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-details { margin-bottom: 2rem; }
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.cd-icon {
  width: 42px; height: 42px;
  background: hsla(38,92%,50%,.1);
  border: 1px solid hsla(38,92%,50%,.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}
.contact-detail-item strong {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .2rem;
}
.contact-detail-item span {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.5;
}
.contact-social {
  display: flex;
  gap: .75rem;
}
.social-link {
  width: 40px; height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all .2s;
}
.social-link:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: hsla(38,92%,50%,.08);
  transform: translateY(-2px);
}

/* Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
}
.contact-form h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.1rem;
}
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: .4rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-card2);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: .75rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .92rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='hsl(220 12%% 60%%)' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px hsla(38,92%,50%,.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group textarea { resize: vertical; min-height: 110px; }

.submit-btn {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
}
.btn-arrow { transition: transform .25s; }
.submit-btn:hover .btn-arrow { transform: translateX(4px); }

.form-success {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: hsla(160,84%,39%,.12);
  border: 1px solid hsla(160,84%,39%,.3);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  color: #34d399;
  margin-top: 1rem;
}
.form-success[hidden] { display: none; }

/* ════════════════════
   FOOTER
════════════════════ */
#footer {
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .88rem;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p {
  font-size: .8rem;
  color: var(--text-dim);
}

/* ── Back to top ── */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  width: 46px; height: 46px;
  background: var(--grad-amber);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1a0a00;
  box-shadow: 0 4px 20px hsla(38,92%,50%,.4);
  opacity: 0;
  transform: translateY(12px);
  transition: all .35s var(--ease);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { transform: translateY(-3px); }

/* ════════════════════
   RESPONSIVE
════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  :root { --section-py: 4.5rem; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: hsla(222,28%,7%,.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    gap: 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.2rem; padding: .75rem 1.5rem; }
  .nav-cta { font-size: 1rem; padding: .75rem 2rem; }
  .hamburger { display: flex; z-index: 1000; }

  .hero-stats { gap: .5rem; }
  .stat-item { padding: 0 1rem; }

  .service-item { grid-template-columns: 1fr; gap: 1rem; }
  .service-num { font-size: 2rem; }
  .service-badge { align-self: flex-start; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand p { max-width: none; }

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

  .features-grid { grid-template-columns: 1fr; }
  .properties-cta { text-align: center; justify-content: center; }

  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 1.25rem; }
  .stat-divider { width: 60px; height: 1px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .steps-container { grid-template-columns: 1fr; }
}
