/* =========================================================
   SINACO Real Estate — Clean Final CSS
   Replace your entire current CSS with this code.
   ========================================================= */

:root{
  --bg:#0A0A0A;
  --surface:#121212;
  --gold:#C8A96B;
  --gold-strong:#D9B97D;
  --text:#FFFFFF;
  --muted:#A7A7A7;
  --line:rgba(200,169,107,.22);
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  background:var(--bg);
}

body{
  margin:0;
  font-family:"Vazirmatn",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
  line-height:1.9;
  -webkit-font-smoothing:antialiased;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

/* =========================
   Navigation
   ========================= */

.nav{
  position:fixed;
  top:18px;
  left:50%;
  transform:translateX(-50%);
  width:min(1180px,calc(100% - 32px));
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background:rgba(10,10,10,.62);
  backdrop-filter:blur(18px);
  box-shadow:0 18px 50px rgba(0,0,0,.25);
}

.brand{
  display:flex;
  align-items:center;
  flex:0 0 auto;
}

.brand img{
  width:96px;
  height:44px;
  object-fit:contain;
  border-radius:12px;
  background:transparent;
  padding:0;
  filter:drop-shadow(0 10px 28px rgba(0,0,0,.45));
}

.nav nav{
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:flex-end;
  font-size:13px;
  color:rgba(255,255,255,.78);
  min-width:0;
}

.nav nav > a:not(.nav-cta):not(.parent-site-btn){
  white-space:nowrap;
  transition:.25s ease;
}

.nav nav > a:not(.nav-cta):not(.parent-site-btn):hover{
  color:var(--gold);
}

.nav-cta,
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:46px;
  padding:0 22px;
  border-radius:999px;
  border:1px solid rgba(200,169,107,.52);
  background:linear-gradient(135deg,rgba(200,169,107,.22),rgba(200,169,107,.06));
  color:#fff;
  font-weight:800;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.14);
  transition:.25s ease;
  white-space:nowrap;
}

.nav-cta:hover,
.btn:hover{
  transform:translateY(-2px);
  border-color:var(--gold);
  background:linear-gradient(135deg,rgba(200,169,107,.36),rgba(200,169,107,.10));
}

.btn.secondary{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.18);
}

.parent-site-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 24px;
  border-radius:999px;
  background:linear-gradient(135deg,#E6C985,#B9924D);
  color:#111!important;
  border:1px solid rgba(255,232,172,.72);
  font-size:13px;
  font-weight:900;
  letter-spacing:-.01em;
  box-shadow:0 10px 35px rgba(200,169,107,.35),inset 0 1px 0 rgba(255,255,255,.35);
  transition:.3s ease;
  white-space:nowrap;
}

.parent-site-btn:hover{
  transform:translateY(-2px);
  background:linear-gradient(135deg,#F0D99A,#C8A96B);
  box-shadow:0 18px 50px rgba(200,169,107,.55),inset 0 1px 0 rgba(255,255,255,.4);
}

/* =========================
   Hero — Static Background
   ========================= */

.hero,
.sinaco-hero{
  position:relative;
  height:100vh;
  min-height:720px;
  background:#0A0A0A;
  overflow:hidden;
  padding:0;
}

.hero-sticky{
  position:relative;
  top:auto;
  height:100%;
  width:100%;
  overflow:hidden;
  display:grid;
  place-items:center;
  background:#0A0A0A;
  isolation:isolate;
}

.parallax-wrap,
.hero-parallax{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  overflow:hidden;
  transform:none!important;
  opacity:1!important;
  will-change:auto!important;
  z-index:1;
}

.hero-layer{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  background-image:var(--hero-img);
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center center;
  transform:none!important;
  clip-path:none!important;
  will-change:auto!important;
  backface-visibility:hidden;
}

.hero-base{
  display:block;
  z-index:1;
  filter:saturate(1.08) contrast(1.04);
}

.hero-sky,
.hero-mountain,
.hero-city-back,
.hero-city-mid,
.hero-front,
.hero-layer.p1,
.hero-layer.p2,
.hero-layer.p3,
.hero-layer.p4,
.hero-layer.p5,
.hero-layer.p6,
.hero-layer.p7,
.hero-layer.p8{
  display:none!important;
}

.hero-vignette{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:8;
  background:
    linear-gradient(90deg,rgba(10,10,10,.82),rgba(10,10,10,.34) 38%,rgba(10,10,10,.18) 70%,rgba(10,10,10,.68)),
    linear-gradient(180deg,rgba(10,10,10,.06),rgba(10,10,10,.18) 52%,rgba(10,10,10,.88)),
    radial-gradient(circle at 50% 16%,rgba(200,169,107,.14),transparent 42%);
}

.hero-content{
  position:relative;
  z-index:12;
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:0 20px;
  padding-top: 5px;
  transform:none!important;
  opacity:1!important;
  will-change:auto!important;
  pointer-events:none;
}

.hero-card{
  width:min(80%,1600px);
  max-width:1600px;
  margin:0 auto;
  padding:48px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:32px;
  background:linear-gradient(135deg,rgba(10,10,10,.66),rgba(10,10,10,.34));
  backdrop-filter:blur(2px);
  box-shadow:0 30px 80px rgba(0,0,0,.48);
  text-align:center;
  pointer-events:auto;
}

.hero-logo{
  width:220px;
  max-width:70%;
  height:auto;
  display:block;
  margin:0 auto 22px;
  object-fit:contain;
  filter:drop-shadow(0 16px 35px rgba(0,0,0,.45));
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--gold);
  font-weight:800;
  letter-spacing:.16em;
  font-size:12px;
  text-transform:uppercase;
  direction:ltr;
}

.kicker:before{
  content:"";
  width:42px;
  height:1px;
  background:var(--gold);
  display:inline-block;
}

h1,h2,h3,p{margin:0}

h1{
  margin-top:18px;
  font-size:clamp(32px,3.8vw,46px);
  line-height:1.2;
  letter-spacing:-0.03em;
  font-weight:900;
}

.hero-card p{
  margin:20px auto 0;
  color:rgba(255,255,255,.78);
  font-size:clamp(15px,1.5vw,19px);
  max-width:720px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
  margin-top:28px;
}

.scroll-note{
  position:absolute;
  right:50%;
  bottom:30px;
  transform:translateX(50%);
  z-index:12;
  color:rgba(255,255,255,.64);
  font-size:12px;
  letter-spacing:.08em;
  direction:ltr;
}

.scroll-note:after{
  content:"";
  display:block;
  width:1px;
  height:46px;
  margin:12px auto 0;
  background:linear-gradient(var(--gold),transparent);
}

/* =========================
   General Sections
   ========================= */

section{
  position:relative;
  padding:110px 24px;
}

.container{
  width:min(1180px,100%);
  margin-inline:auto;
}

.section-head{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:56px;
  align-items:end;
  margin-bottom:44px;
}

.section-head h2{
  font-size:clamp(28px,3vw,36px);
  line-height:1.25;
  letter-spacing:-0.02em;
  font-weight:900;
}

.section-head p,
.lead{
  color:var(--muted);
  font-size:17px;
  line-height:2.1;
}

.split{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:46px;
  align-items:center;
}

.glass{
  padding:34px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(135deg,rgba(255,255,255,.075),rgba(255,255,255,.025));
  box-shadow:0 30px 80px rgba(0,0,0,.48);
}

.glass h3{
  font-size:28px;
  margin-bottom:14px;
}

.glass p,
.glass li{
  color:rgba(255,255,255,.74);
}

.image-panel{
  overflow:hidden;
  border-radius:34px;
  border:1px solid rgba(255,255,255,.12);
  background:#111;
  box-shadow:0 30px 80px rgba(0,0,0,.48);
}

.image-panel img{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
  transition:transform 1s cubic-bezier(.2,.8,.2,1);
}

.image-panel:hover img{
  transform:scale(1.045);
}

/* =========================
   Cards / Districts / Services
   ========================= */

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.card{
  padding:28px;
  min-height:235px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.11);
  background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.025));
  transition:.25s ease;
}

.card:hover{
  transform:translateY(-6px);
  border-color:rgba(200,169,107,.48);
  background:linear-gradient(180deg,rgba(200,169,107,.13),rgba(255,255,255,.025));
}

.card span{
  color:var(--gold);
  font-weight:900;
  font-size:13px;
  letter-spacing:.08em;
}

.card h3{
  margin:10px 0 12px;
  font-size:24px;
}

.card p{
  color:rgba(255,255,255,.72);
}

.dark-band{
  background:
    radial-gradient(circle at 15% 10%,rgba(200,169,107,.12),transparent 34%),
    linear-gradient(180deg,#0A0A0A,#101010);
  border-block:1px solid rgba(255,255,255,.08);
}

.district-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:24px;
  align-items:stretch;
}

.district-photo{
  min-height:620px;
}

.district-list{
  display:grid;
  gap:14px;
}

.district{
  padding:22px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.045);
}

.district h3{
  color:var(--gold);
  font-size:23px;
  margin-bottom:6px;
}

.district p{
  color:rgba(255,255,255,.73);
}

.ownership{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.note{
  border:1px solid rgba(200,169,107,.42);
  background:linear-gradient(135deg,rgba(200,169,107,.14),rgba(255,255,255,.04));
  border-radius:34px;
  padding:42px;
}

.note h2{
  color:var(--gold);
  font-size:clamp(30px,4vw,54px);
  margin-bottom:18px;
}

.process{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  counter-reset:step;
}

.step{
  counter-increment:step;
  padding:28px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.12);
  background:#111;
  position:relative;
  overflow:hidden;
}

.step:before{
  content:"0" counter(step);
  display:block;
  color:var(--gold);
  font-size:13px;
  font-weight:900;
  margin-bottom:42px;
}

.step h3{
  font-size:22px;
  margin-bottom:10px;
}

.step p{
  color:rgba(255,255,255,.70);
}

/* =========================
   Rent / Daily Rent Slider
   ========================= */

.rent-layout{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:46px;
  align-items:center;
  direction:rtl;
}

.daily-rent-grid{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:46px;
  align-items:start;
}

.daily-slider{
  position:relative;
  width:100%;
  overflow:hidden;
  border-radius:34px;
  border:1px solid rgba(255,255,255,.12);
  background:#111;
  box-shadow:0 30px 80px rgba(0,0,0,.48);
  direction:ltr;
}

.daily-track{
  display:flex;
  flex-wrap:nowrap;
  gap:0;
  width:100%;
  transition:transform .55s cubic-bezier(.2,.8,.2,1);
  will-change:transform;
  transform:translate3d(0,0,0);
}

.daily-slide{
  flex:0 0 100%;
  min-width:100%;
  width:100%;
  overflow:hidden;
  background:#111;
}

.daily-slide img{
  width:100%;
  height:540px;
  object-fit:cover;
  display:block;
  user-select:none;
  pointer-events:none;
}

.slider-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:52px;
  height:52px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.18);
  cursor:pointer;
  background:rgba(0,0,0,.56);
  color:#fff;
  font-size:26px;
  line-height:1;
  backdrop-filter:blur(10px);
  z-index:5;
  display:grid;
  place-items:center;
  transition:.25s ease;
}

.slider-prev{left:18px}
.slider-next{right:18px}

.slider-nav:hover{
  background:rgba(200,169,107,.86);
  color:#111;
  border-color:rgba(200,169,107,.8);
}

.daily-dots{
  position:absolute;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  z-index:6;
  display:flex;
  gap:8px;
  direction:ltr;
}

.daily-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  border:0;
  background:rgba(255,255,255,.38);
  cursor:pointer;
  padding:0;
  transition:.25s ease;
}

.daily-dot.active{
  width:28px;
  background:var(--gold);
}

/* =========================
   Map / CTA / Footer
   ========================= */

.map-panel{
  padding:0!important;
  overflow:hidden;
  border-radius:34px;
}

.map-panel iframe{
  display:block;
  width:100%;
  height:520px;
  border:0;
  filter:saturate(.85) contrast(1.08) brightness(.82);
}

.cta{
  min-height:76vh;
  display:grid;
  place-items:center;
  background:
    linear-gradient(90deg,rgba(10,10,10,.88),rgba(10,10,10,.34),rgba(10,10,10,.90)),
    url("assets/yerevan-hero4.jpg") center/cover no-repeat;
  text-align:center;
}

.cta-box{
  width:min(820px,100%);
  padding:46px;
  border-radius:36px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(10,10,10,.58);
  backdrop-filter:blur(14px);
  box-shadow:0 30px 80px rgba(0,0,0,.48);
}

.cta h2{
  font-size:clamp(34px,5vw,72px);
  line-height:1.2;
  margin:16px 0;
}

.cta p{
  color:rgba(255,255,255,.75);
  font-size:18px;
}

.footer,
footer{
  padding:40px 20px;
  border-top:1px solid rgba(200,169,107,.15);
  background:#0a0a0a;
  color:rgba(255,255,255,.58);
  text-align:center;
}

.footer a,
footer a{
  color:var(--gold);
}

/* =========================
   Reveal Animation
   ========================= */

.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:900ms cubic-bezier(.2,.8,.2,1);
}

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

/* =========================
   Responsive
   ========================= */

@media(max-width:980px){
  .nav{
    top:12px;
    width:calc(100% - 20px);
    gap:10px;
    padding:9px 10px;
  }

  .nav nav{gap:8px}

  .nav nav > a:not(.nav-cta):not(.parent-site-btn){
    display:none;
  }

  .parent-site-btn,
  .nav-cta{
    min-height:40px;
    padding:0 14px;
    font-size:12px;
  }

  .hero,
  .sinaco-hero{
    height:100vh;
    min-height:720px;
  }

  .hero-card{
    width:min(92%,980px);
  }

  .hero-content,
  .section-head,
  .split,
  .district-grid,
  .rent-layout,
  .daily-rent-grid{
    grid-template-columns:1fr;
  }

  .cards,
  .ownership,
  .process{
    grid-template-columns:1fr 1fr;
  }

  .district-photo{min-height:420px}
  .daily-slide img{height:420px}
}

@media(max-width:640px){
  .brand img{
    width:78px;
    height:38px;
  }

  .nav{
    border-radius:28px;
  }

  .nav nav{gap:6px}

  .parent-site-btn,
  .nav-cta{
    min-height:36px;
    padding:0 10px;
    font-size:11px;
  }

  .hero,
  .sinaco-hero{
    height:100vh;
    min-height:680px;
  }

  .hero-card{
    width:94%;
    padding:24px;
    border-radius:26px;
  }

  .hero-logo{
    width:170px;
    margin-bottom:18px;
  }

  h1{font-size:20px}

  section{
    padding:76px 18px;
  }

  .cards,
  .ownership,
  .process{
    grid-template-columns:1fr;
  }

  .daily-slide img{height:320px}

  .slider-nav{
    width:42px;
    height:42px;
    font-size:22px;
  }

  .slider-prev{left:12px}
  .slider-next{right:12px}

  .image-panel img{min-height:300px}

  .cta-box,
  .note{
    padding:26px;
  }
}

@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}

  .parallax-wrap,
  .hero-layer,
  .hero-content,
  .reveal{
    transform:none!important;
    opacity:1!important;
  }
}
