/* =========================================================
   سفیرسازان — استایل اصلی
   نسخه: ۲.۰ — آماده استقرار روی هاست
   ========================================================= */

@font-face{
  font-family:'Vazirmatn';
  src:url('../assets/fonts/vazirmatn-variable.woff2') format('woff2-variations'),
      url('../assets/fonts/vazirmatn-variable.woff2') format('woff2');
  font-weight:100 900;
  font-style:normal;
  font-display:swap;
}

:root{
  --cream-1:#fdfbf6;
  --cream-2:#f6efdf;
  --gold:#c9a25c;
  --gold-dark:#a9803f;
  --gold-light:#f3d9a4;
  --dark:#191a1e;
  --dark-2:#24252b;
  --text:#20222a;
  --text-muted:#6b7078;
  --text-soft:#8a8e96;
  --white:#ffffff;
  --border:#ece5d4;

  --radius-xl:24px;
  --radius-lg:18px;
  --radius-md:14px;
  --radius-sm:10px;
  --radius-pill:999px;

  --shadow-sm:0 4px 14px rgba(30,25,10,.06);
  --shadow-md:0 14px 34px rgba(30,25,10,.10);
  --shadow-lg:0 24px 60px rgba(20,18,10,.14);

  --container:1220px;
  --font:'Vazirmatn', 'Tahoma', sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:var(--cream-1);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul,ol{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; color:inherit; }
select{ font-family:inherit; }
h1,h2,h3,h4,p{ margin:0; overflow-wrap:break-word; }
:focus-visible{ outline:2px solid var(--gold-dark); outline-offset:3px; }

/* ---------- scroll progress bar ---------- */
.scroll-progress{
  position:fixed;
  top:0; right:0; left:0;
  height:3px;
  background:linear-gradient(90deg,var(--gold-dark),var(--gold),var(--gold-light));
  transform:scaleX(0);
  transform-origin:right center;
  z-index:200;
  will-change:transform;
}

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

/* ---------- buttons ---------- */
.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:15px 28px;
  border-radius:var(--radius-pill);
  font-size:15px;
  font-weight:600;
  white-space:nowrap;
  overflow:hidden;
  transition:transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease, background .2s ease, color .2s ease;
}
.btn::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(115deg, transparent 20%, rgba(255,255,255,.35) 40%, transparent 60%);
  transform:translateX(-120%);
  transition:transform .6s ease;
  pointer-events:none;
}
.btn:hover::before{ transform:translateX(120%); }
.btn:hover{ transform:translateY(-2px); }
.btn:active{ transform:translateY(0) scale(.98); }
.btn-dark{ background:var(--dark); color:#fff; }
.btn-dark:hover{ background:#000; box-shadow:var(--shadow-md); }
.btn-outline{ background:#fff; color:var(--text); border:1px solid var(--border); }
.btn-outline:hover{ border-color:var(--gold); color:var(--gold-dark); box-shadow:var(--shadow-sm); }
.btn-gold{ background:linear-gradient(135deg,var(--gold),var(--gold-dark)); color:#241a08; }
.btn-gold:hover{ box-shadow:var(--shadow-md); }
.btn-block{ width:100%; }
.btn-sm{ padding:11px 18px; font-size:13.5px; }

.text-gold{ color:var(--gold-dark); background:linear-gradient(135deg,var(--gold),#e3bd75); -webkit-background-clip:text; background-clip:text; color:transparent; }

.badge{
  display:inline-block;
  padding:5px 14px;
  border-radius:var(--radius-pill);
  font-size:12px;
  font-weight:700;
}
.badge-gold{ background:linear-gradient(135deg,var(--gold),var(--gold-dark)); color:#2b2007; animation:badgePulse 2.6s ease-in-out infinite; }
@keyframes badgePulse{
  0%,100%{ box-shadow:0 0 0 0 rgba(201,162,92,.45); }
  50%{ box-shadow:0 0 0 6px rgba(201,162,92,0); }
}
.badge-dark{ background:var(--dark); color:#fff; }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:var(--gold-dark);
  font-weight:700;
  font-size:13.5px;
  margin-bottom:14px;
}
.eyebrow-center{ display:flex; justify-content:center; width:100%; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(253,251,246,.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
  transition:box-shadow .3s ease;
}
.site-header.scrolled{
  box-shadow:0 8px 24px rgba(20,18,10,.08);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  height:82px;
  transition:height .3s ease;
}
.site-header.scrolled .header-inner{ height:66px; }
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}
.brand-mark{ width:40px; height:40px; object-fit:contain; }
.brand-text{ display:flex; flex-direction:column; line-height:1.5; }
.brand-text strong{ font-size:16px; font-weight:800; color:var(--text); }
.brand-text small{ font-size:11px; color:var(--text-muted); }

.main-nav{
  display:flex;
  align-items:center;
  gap:34px;
  font-size:14.5px;
  font-weight:600;
  color:var(--text);
}
.main-nav a{ position:relative; padding:8px 2px; transition:color .2s ease; }
.main-nav a:hover{ color:var(--gold-dark); }
.main-nav a::after{
  content:"";
  position:absolute;
  right:0; left:0; bottom:-4px;
  height:2px;
  background:var(--gold);
  border-radius:2px;
  transform:scaleX(0);
  transition:transform .25s ease;
}
.main-nav a:hover::after{ transform:scaleX(0.6); }
.main-nav a.active{ color:var(--gold-dark); }
.main-nav a.active::after{ transform:scaleX(1); }

.header-actions{ display:flex; align-items:center; gap:14px; }
.phone-pill{
  display:flex;
  align-items:center;
  gap:8px;
  background:var(--dark);
  color:#fff;
  padding:11px 18px;
  border-radius:var(--radius-pill);
  font-size:14px;
  font-weight:600;
  white-space:nowrap;
  transition:background .2s ease;
}
.phone-pill:hover{ background:var(--gold-dark); }
.phone-icon{ display:flex; color:var(--gold-light); }

.hamburger{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:34px;
  height:34px;
}
.hamburger span{
  display:block;
  height:2px;
  background:var(--text);
  border-radius:2px;
  transition:transform .25s ease, opacity .25s ease;
}
.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;
  padding:44px 0 0;
  background:
    radial-gradient(900px 420px at 78% -10%, #fbeccb55, transparent 60%),
    linear-gradient(180deg, var(--cream-1), var(--cream-2) 60%, var(--cream-1));
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:56px;
  align-items:center;
  padding-bottom:56px;
}
.hero-media{ position:relative; order:1; }
.hero-img{
  width:100%;
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow-lg);
  aspect-ratio:4/3.15;
  object-fit:cover;
}
.hero-float-card{
  position:absolute;
  top:24px;
  right:24px;
  width:230px;
  background:#fff;
  border-radius:var(--radius-lg);
  padding:18px;
  box-shadow:var(--shadow-lg);
  animation:heroFloat 5s ease-in-out infinite;
}
@keyframes heroFloat{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}
.hero-float-card h3{ font-size:16px; font-weight:800; margin:10px 0 8px; }
.float-meta{ display:flex; gap:12px; margin-bottom:10px; }
.meta-item{ display:flex; align-items:center; gap:5px; font-size:12px; color:var(--text-muted); }
.float-specs{
  display:flex;
  gap:14px;
  padding:10px 0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  margin-bottom:12px;
}
.float-specs span{ display:flex; align-items:center; gap:5px; font-size:13px; color:var(--text-muted); }
.float-specs svg{ color:var(--gold-dark); }
.float-price{ font-size:14.5px; font-weight:800; margin-bottom:12px; }
.float-price span{ color:var(--gold-dark); }

.hero-copy{ order:2; }
.hero-copy h1{
  font-size:clamp(30px, 6vw, 52px);
  line-height:1.25;
  font-weight:800;
  color:var(--text);
  margin-bottom:20px;
}
.hero-desc{
  font-size:16.5px;
  line-height:1.9;
  color:var(--text-muted);
  max-width:480px;
  margin-bottom:32px;
}
.hero-btns{ display:flex; gap:14px; margin-bottom:40px; flex-wrap:wrap; }

.hero-social-proof{ display:flex; align-items:center; gap:14px; }
.avatar-stack{ display:flex; }
.avatar-stack span{
  width:42px; height:42px;
  border-radius:50%;
  border:3px solid var(--cream-1);
  background:var(--c,#ccc);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:14px; font-weight:700;
  margin-inline-start:-12px;
}
.avatar-stack span:first-child{ margin-inline-start:0; }
.hero-social-proof p{ font-size:13.5px; color:var(--text-muted); line-height:1.6; }
.hero-social-proof strong{ color:var(--text); }

/* search bar */
.search-bar{
  display:grid;
  grid-template-columns:auto repeat(5,1fr);
  gap:10px;
  align-items:stretch;
  background:#fff;
  border-radius:var(--radius-lg);
  padding:12px;
  box-shadow:var(--shadow-lg);
  margin-top:8px;
  position:relative;
  z-index:5;
}
.search-field{
  display:flex;
  flex-direction:column;
  gap:4px;
  padding:8px 16px;
  border-right:1px solid var(--border);
}
.search-field:last-of-type{ border-right:none; }
.search-field span{ font-size:12px; color:var(--text-soft); font-weight:600; }
.search-field select{
  border:none;
  background:transparent;
  font-size:16px;
  font-weight:700;
  color:var(--text);
  padding:0;
}
.search-submit{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:var(--dark);
  color:#fff;
  border-radius:var(--radius-md);
  padding:0 26px;
  font-size:14.5px;
  font-weight:700;
  transition:background .2s ease;
}
.search-submit:hover{ background:var(--gold-dark); }

/* stats */
.stats-row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:52px;
  padding-bottom:64px;
}
.stats-row li{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}
.stat-icon{
  flex-shrink:0;
  width:58px; height:58px;
  border-radius:50%;
  background:#fff;
  display:flex; align-items:center; justify-content:center;
  color:var(--gold-dark);
  box-shadow:var(--shadow-sm);
}
.stat-num{ display:block; font-size:24px; font-weight:800; color:var(--text); }
.stat-label{ font-size:12.5px; color:var(--text-muted); line-height:1.6; overflow-wrap:break-word; min-width:0; }

/* =========================================================
   SERVICES
   ========================================================= */
.services{ padding:20px 0 84px; }
.section-head{ text-align:center; margin-bottom:48px; display:flex; flex-direction:column; align-items:center; }
.section-head h2{ font-size:clamp(24px, 3.6vw, 34px); font-weight:800; max-width:640px; }

.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.service-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:30px 26px;
  transition:transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .3s ease;
}
.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(201,162,92,.18), var(--shadow-md);
  border-color:transparent;
}
.service-icon{
  width:58px; height:58px;
  border-radius:16px;
  background:linear-gradient(135deg,#f6e6c4,#eecf94);
  display:flex; align-items:center; justify-content:center;
  color:var(--gold-dark);
  margin-bottom:20px;
  transition:transform .35s cubic-bezier(.34,1.56,.64,1);
}
.service-card:hover .service-icon{ transform:scale(1.1) rotate(-6deg); }
.service-card h3{ font-size:18px; font-weight:800; margin-bottom:10px; }
.service-card p{ font-size:14px; color:var(--text-muted); line-height:1.9; margin-bottom:18px; }
.card-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:13.5px;
  font-weight:700;
  color:var(--gold-dark);
  transition:gap .2s ease;
}
.card-link:hover{ gap:10px; }
.card-link svg{ transform:scaleX(-1); }

/* =========================================================
   PROPERTIES
   ========================================================= */
.properties{ padding:20px 0 90px; }
.properties .section-head{ text-align:center; }
.properties .section-head h2{ font-size:clamp(22px, 3.4vw, 32px); font-weight:800; margin:0 auto; }

.carousel{
  position:relative;
  display:flex;
  align-items:center;
  gap:14px;
}

.carousel-arrow > svg { rotate: 180deg; }

.carousel-track{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:calc(25% - 12px);
  gap:22px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding:6px 2px 18px;
  flex:1;
  scrollbar-width:none;
}
.carousel-track::-webkit-scrollbar{ display:none; }

.property-card{
  scroll-snap-align:start;
  background:#fff;
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
  transition:transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
}
.property-card:hover{ transform:translateY(-8px); box-shadow:0 22px 44px rgba(201,162,92,.2), var(--shadow-md); }
.property-media{ position:relative; aspect-ratio:4/3; overflow:hidden; }
.property-media img{ width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.property-card:hover .property-media img{ transform:scale(1.06); }
.prop-tag{ position:absolute; top:12px; right:12px; }
.fav-btn{
  position:absolute; top:10px; left:10px;
  width:34px; height:34px;
  border-radius:50%;
  background:rgba(255,255,255,.9);
  color:var(--text);
  display:flex; align-items:center; justify-content:center;
  transition:color .2s ease, transform .2s ease;
}
.fav-btn:hover{ color:#d9534f; transform:scale(1.08); }
.fav-btn.is-active{ color:#d9534f; }
.fav-btn.is-active svg path{ fill:#d9534f; }

.property-body{ padding:18px; }
.property-body h3{ font-size:16px; font-weight:800; margin-bottom:4px; }
.property-loc{ font-size:12.5px; color:var(--text-muted); margin-bottom:14px; }
.property-specs{
  display:flex;
  justify-content:space-between;
  padding:12px 0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  margin-bottom:14px;
}
.property-specs li{ display:flex; align-items:center; gap:5px; font-size:12px; color:var(--text-muted); min-width:0; }
.property-specs svg{ color:var(--gold-dark); }
.property-price{ font-size:16px; font-weight:800; color:var(--text); }
.property-price span{ font-size:12px; font-weight:600; color:var(--text-muted); }

.carousel-arrow{
  flex-shrink:0;
  width:44px; height:44px;
  border-radius:50%;
  background:#fff;
  border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-sm);
  transition:background .2s ease, color .2s ease, transform .2s ease;
}
.carousel-arrow:hover{ background:var(--dark); color:#fff; transform:scale(1.05); }

.properties-cta{ display:flex; justify-content:center; margin-top:36px; }

.carousel-progress{
  height:3px;
  background:var(--border);
  border-radius:var(--radius-pill);
  margin:0 54px 0;
  overflow:hidden;
}
.carousel-progress-bar{
  height:100%;
  width:25%;
  background:linear-gradient(90deg,var(--gold-dark),var(--gold));
  border-radius:var(--radius-pill);
  transition:transform .25s ease, width .25s ease;
  transform-origin:right center;
}

/* =========================================================
   WHY US + PROCESS
   ========================================================= */
.why-process{ padding:20px 0 90px; }
.why-process-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}
.why-col h2, .process-col h2{ font-size:clamp(21px, 2.8vw, 28px); font-weight:800; margin-bottom:26px; }

.check-list{ display:flex; flex-direction:column; gap:16px; margin-bottom:32px; }
.check-list li{ display:flex; align-items:center; gap:12px; font-size:15px; font-weight:600; }
.check-ico{
  flex-shrink:0;
  width:26px; height:26px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  color:#2b2007;
  display:flex; align-items:center; justify-content:center;
}
.skyline{
  background:var(--dark);
  border-radius:var(--radius-lg);
  padding:20px 20px 0;
  overflow:hidden;
}

.process-steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  position:relative;
}
.process-steps::before{
  content:"";
  position:absolute;
  top:26px;
  right:12%;
  left:12%;
  border-top:2px dashed var(--border);
  z-index:0;
}
.step{ position:relative; z-index:1; text-align:center; }
.step-num{
  display:flex;
  align-items:center;
  justify-content:center;
  width:52px; height:52px;
  margin:0 auto 16px;
  border-radius:50%;
  background:#fff;
  border:2px solid var(--gold);
  color:var(--gold-dark);
  font-weight:800;
  font-size:17px;
  box-shadow:var(--shadow-sm);
}
.step h4{ font-size:14.5px; font-weight:800; margin-bottom:8px; }
.step p{ font-size:12px; color:var(--text-muted); line-height:1.7; }

/* =========================================================
   REVIEWS + FAQ
   ========================================================= */
.reviews-faq{ padding:20px 0 100px; }
.reviews-faq-grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:60px;
}
.reviews-col h2, .faq-col h2{ font-size:clamp(21px, 2.8vw, 28px); font-weight:800; margin-bottom:26px; }

.testimonial-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:30px;
  box-shadow:var(--shadow-sm);
  transition:transform .3s ease, opacity .3s ease;
}
.testimonial-card.dir-next{ transform:translateX(-22px); opacity:0; }
.testimonial-card.dir-prev{ transform:translateX(22px); opacity:0; }
.quote-mark{ color:var(--gold); margin-bottom:14px; display:inline-flex; }
.testimonial-text{ font-size:15px; line-height:2; color:var(--text-muted); margin-bottom:22px; }
.testimonial-author{ display:flex; align-items:center; gap:12px; }
.avatar-circle{
  width:46px; height:46px;
  border-radius:50%;
  background:var(--c,#ccc);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-weight:700;
  flex-shrink:0;
}
.testimonial-author strong{ display:block; font-size:14px; font-weight:800; }
.testimonial-author small{ font-size:12px; color:var(--text-muted); }

.testimonial-dots{ display:flex; gap:2px; margin-top:14px; margin-inline-start:-7px; }
.dot{
  position:relative;
  width:32px; height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:transparent;
  flex-shrink:0;
}
.dot::after{
  content:"";
  width:8px; height:8px;
  border-radius:50%;
  background:var(--border);
  transition:background .2s ease, width .2s ease, border-radius .2s ease;
}
.dot.active::after{ background:var(--gold-dark); width:22px; border-radius:6px; }

.accordion{ display:flex; flex-direction:column; gap:12px; }
.acc-item{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  overflow:hidden;
}
.acc-trigger{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 20px;
  font-size:14.5px;
  font-weight:700;
  text-align:right;
  list-style:none;
  cursor:pointer;
}
.acc-trigger::-webkit-details-marker{ display:none; }
.acc-icon{
  flex-shrink:0;
  width:26px; height:26px;
  border-radius:50%;
  background:var(--cream-2);
  color:var(--gold-dark);
  display:flex; align-items:center; justify-content:center;
  font-size:16px;
  font-weight:700;
  margin-inline-start:14px;
  transition:transform .25s ease, background .25s ease, color .25s ease;
}
.acc-panel{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease, padding .3s ease;
  padding:0 20px;
}
.acc-panel p{ font-size:13.5px; color:var(--text-muted); line-height:1.9; padding-bottom:18px; }
.acc-item[open] .acc-panel{ max-height:220px; }
.acc-item[open] .acc-trigger{ color:var(--gold-dark); }
.acc-item[open] .acc-icon{ background:var(--gold); color:#2b2007; transform:rotate(180deg); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background:var(--dark); color:#c9cad0; padding:64px 0 0; }
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 0.8fr 1fr 1fr;
  gap:40px;
  padding-bottom:48px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-col h4{ color:#fff; font-size:15px; font-weight:800; margin-bottom:20px; }
.brand-footer{ margin-bottom:16px; }
.brand-footer .brand-text strong{ color:#fff; }
.brand-footer .brand-text small{ color:#9a9ba3; }
.footer-about p{ font-size:13.5px; line-height:1.9; color:#9a9ba3; margin-bottom:20px; max-width:280px; }
.social-row{ display:flex; gap:10px; }
.social-row a{
  width:36px; height:36px;
  border-radius:50%;
  background:rgba(255,255,255,.06);
  display:flex; align-items:center; justify-content:center;
  color:#c9cad0;
  transition:background .2s ease, color .2s ease;
}
.social-row a:hover{ background:var(--gold); color:#241a08; }

.footer-links{ display:flex; flex-direction:column; gap:13px; font-size:13.5px; }
.footer-links a{ color:#9a9ba3; transition:color .2s ease; width:fit-content; }
.footer-links a:hover{ color:var(--gold); }

.map-box{ position:relative; border-radius:var(--radius-md); overflow:hidden; }
.map-pin{
  position:absolute; top:38%; left:50%;
  transform:translate(-50%,-100%);
  filter:drop-shadow(0 4px 6px rgba(0,0,0,.3));
}
.map-btn{
  position:absolute;
  bottom:12px;
  left:12px;
  /* transform:translateX(-50%); */
  width:calc(100% - 24px);
}

.footer-contact{ display:flex; flex-direction:column; gap:14px; font-size:13.5px; }
.contact-line{ display:flex; align-items:center; gap:10px; color:#c9cad0; transition:color .2s ease; }
.contact-line:hover{ color:var(--gold); }
.contact-line svg{ flex-shrink:0; color:var(--gold); }
.contact-address{ align-items:flex-start; line-height:1.8; }
.contact-address svg{ margin-top:2px; }

.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:22px 100px;
  font-size:12.5px;
  color:#83848c;
}
.footer-bottom span{ color:#d9534f; }
.footer-bottom .developers{
  color:var(--gold);
  font-weight:600;
  transition:color .2s ease;
}
.footer-bottom .developers:hover{ color:var(--gold-light); text-decoration:underline; }

/* =========================================================
   SCROLL TOP
   ========================================================= */
.scroll-top{
  position:fixed;
  bottom:26px;
  left:26px;
  width:46px; height:46px;
  border-radius:50%;
  background:var(--dark);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-md);
  opacity:0;
  visibility:hidden;
  transform:translateY(12px);
  transition:opacity .25s ease, transform .25s ease, background .2s ease;
  z-index:90;
}
.scroll-top.show{ opacity:1; visibility:visible; transform:translateY(0); }
.scroll-top:hover{ background:var(--gold-dark); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:1180px){
  .container{ padding:0 20px; }
  .services-grid{ grid-template-columns:repeat(2,1fr); }
  .carousel-track{ grid-auto-columns:calc(50% - 11px); }
  .footer-grid{ grid-template-columns:1fr 1fr; padding-bottom: 15px;}
}

@media (max-width:992px){
  .hero-media , .hero-media > * { display: none; }
  .main-nav{ display:none; }
  .hamburger{ display:flex; width:44px; height:44px; }

  .main-nav.open{
    display:flex;
    position:absolute;
    top:82px; right:0; left:0;
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    gap:2px;
    padding:12px 24px 20px;
    border-bottom:1px solid var(--border);
    box-shadow:var(--shadow-md);
    max-height:calc(100vh - 82px);
    overflow-y:auto;
  }
  .main-nav.open a{ width:100%; padding:14px 2px; border-bottom:1px solid var(--border); font-size:15px; }
  .main-nav.open a:last-child{ border-bottom:none; }
  .site-header.scrolled .main-nav.open{ top:66px; }

  .hero-grid{ grid-template-columns:1fr; gap:32px; }
  .hero-media{ order:1; max-width:560px; margin:0 auto; }
  .hero-copy{ order:2; text-align:center; }
  .hero-desc{ margin-inline:auto; }
  .hero-btns{ justify-content:center; }
  .hero-social-proof{ justify-content:center; }
  .hero-float-card{ width:210px; padding:14px; }

  .search-bar{ grid-template-columns:repeat(3,1fr); }
  .search-submit{ grid-column:1 / -1; padding:14px; }
  .search-field{ border-right:none; border-bottom:1px solid var(--border); padding:10px 12px; }

  .stats-row{ grid-template-columns:repeat(2,1fr); row-gap:28px; column-gap:14px; }

  .why-process-grid{ grid-template-columns:1fr; gap:48px; }
  .reviews-faq-grid{ grid-template-columns:1fr; gap:48px; }

  .footer-grid{ grid-template-columns:1fr 1fr; row-gap:36px; }
}

/* ---------- Tablet portrait fine-tuning (iPad mini/Air/Pro-11 portrait, ~740-830px) ---------- */
@media (max-width:820px){
  .hero-float-card{ width:190px; }
  .float-specs{ gap:10px; }
  .process-steps{ grid-template-columns:repeat(2,1fr); row-gap:32px; column-gap:16px; }
  .process-steps::before{ display:none; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .footer-bottom {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }
}

/* ---------- Large phones / small tablets ---------- */
@media (max-width:680px){
  .container{ padding:0 16px; }
  .header-inner{ height:70px; }
  .brand-text strong{ font-size:14px; }
  .brand-text small{ font-size:10.5px; }
  .phone-pill span:first-child{ display:none; }
  .phone-pill{ padding:11px; }

  .hero{ padding-top:24px; }
  .hero-desc{ font-size:15px; }
  .hero-btns{ flex-direction:column; width:100%; }
  .hero-btns .btn{ width:100%; }
  .hero-float-card{ position:static; width:100%; margin-top:14px; animation:none; }

  .search-bar{ grid-template-columns:1fr 1fr; gap:8px; }

  .carousel-track{ grid-auto-columns:86%; }
  .carousel-arrow{ display:none; }
  .carousel-progress{ margin:0; }

  .footer-grid{ grid-template-columns:1fr; text-align:right; row-gap:32px; padding-bottom: 15px; }
  .footer-about p{ max-width:none; }
  .footer-bottom{
    flex-direction:column;
    gap:8px;
    text-align:center;
    padding-right: 0;
    padding-left: 0;
    padding-bottom:26px;
    }
}

/* ---------- Standard phones ---------- */
@media (max-width:480px){
  .container{ padding:0 14px; }
  .eyebrow{ font-size:12.5px; }
  .hero-social-proof{ flex-direction:column; gap:8px; }
  .hero-social-proof p{ text-align:center; }

  .search-bar{ grid-template-columns:1fr; padding:10px; gap:0; }
  .search-field{ padding:12px 4px; }
  .search-submit{ order:-1; margin-bottom:4px; }

  .stat-icon{ width:46px; height:46px; flex-shrink:0; }
  .stat-num{ font-size:19px; }
  .stat-label{ font-size:11.5px; }

  .services-grid{ grid-template-columns:1fr; }
  .service-card{ padding:26px 22px; }

  .process-steps{ grid-template-columns:1fr 1fr; gap:28px 14px; }
  .step-num{ width:46px; height:46px; font-size:15px; }

  .testimonial-card{ padding:22px; }
  .acc-trigger{ padding:16px; font-size:13.5px; }
  .acc-trigger span:first-child{ line-height:1.6; }

  .footer-links,.footer-contact{ gap:12px; }
  .map-box{ max-width:360px; }
}

/* ---------- Small / narrow phones (iPhone SE, older Android, ~360px and below) ---------- */
@media (max-width:400px){
  .hero-copy h1{ letter-spacing:-0.2px; }
  .btn{ padding:14px 20px; font-size:14px; }

  .stats-row{
    grid-template-columns:1fr;
    row-gap:16px;
  }
  .stats-row li{
    justify-content:flex-start;
  }

  .float-specs{ flex-wrap:wrap; row-gap:8px; }
  .hero-float-card h3{ font-size:15px; }

  .process-steps{ grid-template-columns:1fr 1fr; gap:24px 10px; }
  .step h4{ font-size:13.5px; }
  .step p{ font-size:11.5px; }

  .property-body{ padding:16px; }
  .property-specs{ flex-wrap:wrap; gap:8px 0; }

  .testimonial-author strong{ font-size:13.5px; }
}

/* =========================================================
   SKIP LINK & MISC A11Y
   ========================================================= */
.skip-link{
  position:absolute;
  right:16px;
  top:-60px;
  background:var(--dark);
  color:#fff;
  padding:12px 20px;
  border-radius:var(--radius-sm);
  z-index:1000;
  font-weight:700;
  font-size:14px;
  transition:top .2s ease;
}
.skip-link:focus{ top:16px; }

img{ background:var(--cream-2); }
.property-media img,
.hero-img{
  animation:imgFadeIn .5s ease both;
}
@keyframes imgFadeIn{
  from{ opacity:0; }
  to{ opacity:1; }
}

/* =========================================================
   PRINT
   ========================================================= */
@media print{
  .site-header,.hero-btns,.search-bar,.carousel-arrow,.scroll-top,
  .hamburger,.fav-btn,.site-footer .social-row,.properties-cta{ display:none !important; }
  body{ background:#fff; }
  .property-card,.service-card{ break-inside:avoid; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; scroll-behavior:auto !important; }
}
