/* ═══════════════════════════════════════════════
   APTC CAPITAL REAL ESTATE — STYLESHEET
   style.css
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

:root {
  --ivory: #f8f5f0;
  --white: #ffffff;
  --black: #000000;
  --charcoal: #1a1a1a;
  --charcoal-mid: #2b2b2b;
  --biscuit: #d9b06f;
  --flat-earth: #c2a27c;
  --flat-earth-dark: #a8895f;
  --flat-earth-light: #e8d5bc;
  --text-muted: #6b6b6b;
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--biscuit); }

/* ─── HEADER ─── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s var(--transition), box-shadow 0.5s var(--transition), padding 0.4s var(--transition);
}

header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  padding: 5px 60px;
  backdrop-filter: blur(12px);
}

.header-logo {
  font-family: 'Poppins', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.5s;
}

header.scrolled .header-logo { color: var(--charcoal); }

.language,
.language a{
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  text-align: right;
  transition: color 0.5s;
  line-height: 1.7;
  text-decoration: none;
}

.header-right {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  text-align: right;
  transition: color 0.5s;
  line-height: 1.7;
}

header.scrolled .language,
header.scrolled .language a,
header.scrolled .header-right { color: #444; }

.header-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.3);
  margin: 0 32px;
  transition: background 0.5s;
}

header.scrolled .header-divider { background: rgba(0,0,0,0.12); }

header#mainHeader.scrolled img.logo-black-version,
header#mainHeader img.logo-light-version{
  display: block;
}

header#mainHeader img.logo-black-version,
header#mainHeader.scrolled img.logo-light-version{
  display: none;
}

/* ─── HERO ─── */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/14393.jpg') center/cover no-repeat;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.3) 20%,
    rgba(0,0,0,0.60) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 100px;
  max-width: 850px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1.2s 0.4s var(--transition) forwards;
}

@keyframes heroFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--biscuit);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--biscuit);
}

.hero-headline {
  font-family: 'Poppins', serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 600;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-headline em {
  font-style: normal;
  color: var(--biscuit);
}

.hero-subtext {
  font-family: 'Poppins', serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  margin-bottom: 44px;
  max-width: 570px;
  letter-spacing: 0.01em;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 42px;
  background: transparent;
  border: 1px solid var(--biscuit);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--transition);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--biscuit);
  transform: translateX(-101%);
  transition: transform 0.45s var(--transition);
  z-index: -1;
}

.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { color: var(--charcoal); }

.btn-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}

.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: heroFadeIn 1s 1.4s ease forwards;
}

.scroll-text {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
  background: var(--biscuit);
  animation: scrollLine 2s 1.8s ease infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ─── CREDIBILITY BAR ─── */
.credibility-bar {
    background: var(--charcoal);
    padding: 52px 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    border-top: 1px solid #605d5d;
}

.cred-item {
  text-align: center;
  padding: 0 40px;
  position: relative;
}

.cred-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.cred-number {
  font-family: 'Poppins', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--biscuit);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.cred-label {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ─── SECTION DEFAULTS ─── */
section { position: relative; }

.section-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--biscuit);
  margin-bottom: 18px;
}

.section-title {
  font-family: 'Poppins', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

/* ─── LOGO SLIDER ─── */
.logo-section {
  padding: 80px 0 60px;
  background: var(--ivory);
  overflow: hidden;
}

.logo-section-header {
  text-align: center;
  padding: 0 80px;
  margin-bottom: 52px;
}

.logo-section-header p {
  font-family: 'Inter', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.slider-track-wrapper {
  overflow: hidden;
  position: relative;
}

.slider-track-wrapper::before,
.slider-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
}

.slider-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--ivory), transparent);
}

.slider-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--ivory), transparent);
}

.slider-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: infiniteScroll 22s linear infinite;
}

.slider-track:hover { animation-play-state: paused; }

@keyframes infiniteScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 64px;
  border-right: 1px solid rgba(0,0,0,0.07);
}

.logo-name img{
   width: 150px;
   filter: grayscale(100%);
   opacity: 0.8;
   transition: all 0.3s;
}

.logo-name img:hover{
  opacity: 1;
}

.logo-item:hover .logo-name { color: var(--charcoal); }

/* ─── OPPORTUNITY SPLIT ─── */
.opportunity-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.opp-block {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 72px 64px;
  min-height: 560px;
}

.opp-block-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--transition);
}

.opp-block:hover .opp-block-bg { transform: scale(1.04); }

.opp-block-1 .opp-block-bg {
  background-image: url('../img/opp-ready.jpg');
}

.opp-block-2 .opp-block-bg {
  background-image: url('../img/opp-offplan.jpg');
}

.opp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 60%);
}

.opp-content { position: relative; z-index: 2; }

.opp-tag {
    display: inline-block;
    padding: 5px 14px;
    border: 1px solid rgba(214,180,138,0.6);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 22px;
    background: rgba(214,180,138,0.7);
}

.opp-title {
  font-family: 'Poppins', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.opp-text {
    font-family: 'Inter', serif;
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 560px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color 0.4s, border-color 0.4s;
}

.btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-101%);
  transition: transform 0.45s var(--transition);
}

.btn-ghost:hover::before { transform: translateX(0); }

/* ─── ASSET QUALIFICATION ─── */
.asset-qualification {
  padding: 0;
  background: var(--charcoal);
  overflow: hidden;
  position: relative;
}

.aq-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
}

.aq-top-left {
  padding: 80px 72px 72px;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.aq-top-left::after {
  content: '';
  position: absolute;
  bottom: 0; left: 72px; right: 72px;
  height: 1px;
  background: rgba(255,255,255,0.07);
}

.aq-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--biscuit);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.aq-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--biscuit);
}

.aq-hero-line {
  font-family: 'Poppins', serif;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
}

.aq-hero-line .aq-italic {
  font-style: normal;
  color: var(--biscuit);
}

.aq-hero-line .aq-outline {
  -webkit-text-stroke: 1px rgba(255,255,255,0.8);
  color: transparent;
}

.aq-top-right {
  padding: 80px 72px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.aq-statement {
  font-family: 'Inter', serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.01em;
  max-width: 500px;
  margin-bottom: 40px;
}

.aq-statement strong {
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  font-style: italic;
}

.aq-number-row {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.aq-mini-num {
  font-family: 'Poppins', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--biscuit);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.aq-mini-label {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.aq-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.aq-pillar {
  padding: 60px 52px 64px;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.5s var(--transition);
}

.aq-pillar:last-child { border-right: none; }

.aq-pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(214,180,138,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
}

.aq-pillar:hover::before { opacity: 1; }

.aq-pillar-num {
  font-family: 'Poppins', serif;
  font-size: 72px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.02);
  margin-bottom: -20px;
  margin-left: -4px;
  transition: color 0.5s;
  user-select: none;
}

.aq-pillar:hover .aq-pillar-num { color: rgba(214,180,138,0.03); }

.aq-pillar-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  position: relative;
}

.aq-pillar-line {
  width: 24px;
  height: 1px;
  background: var(--biscuit);
  flex-shrink: 0;
}

.aq-pillar-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--biscuit);
}

.aq-pillar-title {
  font-family: 'Poppins', serif;
  font-size: 25px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  position: relative;
}

.aq-pillar-text {
    padding-right: 80px;
    font-family: 'Inter', serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    letter-spacing: 0.01em;
    position: relative;
}

.aq-pillar-icon {
  position: absolute;
  bottom: 52px;
  right: 44px;
  width: 50px;
  height: 50px;
  stroke: rgba(214,180,138,0.3);
  transition: stroke 0.5s;
}

.aq-pillar:hover .aq-pillar-icon { stroke: rgba(214,180,138,0.45); }

/* ─── ENCLAVES ─── */
.enclaves {
  padding: 120px 80px;
  background: var(--ivory);
}

.enclaves-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}


.enclaves-subtitle {
  font-family: 'Inter', serif;
  font-size: 17px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 450px;
  text-align: right;
  line-height: 1.6;
}

.enclaves-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.enclave-card {
  position: relative;
  height: 500px;
  overflow: hidden;
  cursor: pointer;
}

.enclave-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--transition);
}

.enclave-card:hover .enclave-img { transform: scale(1.06); }

.enclave-card:nth-child(1) .enclave-img { background-image: url('../img/2151963026.jpg'); }
.enclave-card:nth-child(2) .enclave-img { background-image: url('../img/5.Premiumvillas.png'); }
.enclave-card:nth-child(3) .enclave-img { background-image: url('../img/17975.jpg'); }
.enclave-card:nth-child(4) .enclave-img { background-image: url('../img/02.png'); }

.enclave-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 55%);
  transition: opacity 0.4s;
}

.enclave-card:hover .enclave-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.18) 100%);
}

.enclave-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  z-index: 2;
}

.enclave-location {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--biscuit);
  margin-bottom: 8px;
}

.enclave-name {
  font-family: 'Poppins', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.25;
}

.enclave-cta {
  margin-top: 16px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
  text-decoration: none;
}

.enclave-cta::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--biscuit);
}

.enclave-card:hover .enclave-cta { opacity: 1; transform: translateY(0);color:#fff; }

.hero-bg02{
  background: url('../img/2151963026.jpg') center/cover no-repeat;
}
section#home.hero.hero02 {
    padding: 250px 50px;
    min-height: auto;
    height: 100%;
}
.hero02 .hero-content {
    margin: 0 auto;
    text-align: center;
    max-width: 1100px;
    padding: 0;
}
.hero02 h1.hero-headline {
    font-size: 50px;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 18px;
}
.hero-subtext{
  max-width: 100%;
  color: #fff;
  margin-bottom: 30px;
}




/* ─── LEAD FORM ─── */
.lead-form-section {
  padding: 120px 80px;
  background: #f6ebd5;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.form-left { padding-top: 8px; }

.form-left .section-eyebrow { color: var(--flat-earth-dark); }

.form-title {
  font-family: 'Poppins', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.form-desc {
    font-family: 'Inter', serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--charcoal-mid);
    line-height: 1.7;
    margin-bottom: 40px;
    letter-spacing: 0.01em;
}

.form-trust {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--charcoal-mid);
}

.trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--flat-earth-dark);
  flex-shrink: 0;
}

.luxury-form { display: flex; flex-direction: column; gap: 0; }

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

.form-field {
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.14);
  border-right: 1px solid transparent;
}

.form-row .form-field:first-child { border-right: 1px solid rgba(0,0,0,0.1); }
.form-field:last-child.full-width { border-right: none; }

.form-field label {
  display: block;
  padding: 20px 28px 0;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--flat-earth-dark);
  transition: color 0.3s;
}

.form-field input,
.form-field select {
  display: block;
  width: 100%;
  padding: 8px 28px 20px;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Inter', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  appearance: none;
  cursor: pointer;
}

.form-field input::placeholder { color: rgba(0,0,0,0.3); }

.form-field select { cursor: pointer; }

.form-field:focus-within { background: rgba(255,255,255,0.5); }

.form-field:focus-within label { color: var(--charcoal); }

.form-field:focus-within::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 1px;
  background: var(--flat-earth-dark);
}

.form-error {
  font-size: 10px;
  color: #c0392b;
  padding: 4px 28px 0;
  letter-spacing: 0.05em;
  display: none;
  margin-bottom: 4px;
}

.form-field.has-error .form-error { display: block; }
.form-field.has-error { border-bottom-color: rgba(192,57,43,0.4); }

.select-arrow {
  position: absolute;
  right: 28px;
  bottom: 22px;
  pointer-events: none;
  color: var(--flat-earth-dark);
}

.btn-submit {
  width: 100%;
  padding: 22px 40px;
  background: var(--charcoal);
  border: none;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--biscuit);
  transform: translateX(-101%);
  transition: transform 0.5s var(--transition);
}

.btn-submit:hover::before { transform: translateX(0); }

.btn-submit span { position: relative; z-index: 1; transition: color 0.4s; }
.btn-submit:hover span { color: var(--charcoal); }

.form-disclaimer {
  padding: 16px 28px;
  font-size: 10px;
  color: rgba(0,0,0,0.38);
  letter-spacing: 0.04em;
  line-height: 1.6;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
  background: var(--white);
}

.form-success.visible { display: block; }
.luxury-form.hidden { display: none; }

.success-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  stroke: var(--biscuit);
}

.success-title {
  font-family: 'Poppins', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.success-text {
  font-family: 'Inter', serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Privacy Policy ─── */
section#page-header {
    height: 100%;
    min-height: 350px;
}
section#page-header .hero-content {
    margin: 0 auto;
}
section#page-header .hero-headline {
    font-size: 58px;
    margin-bottom: 0;
}
section#privacy-policy{
  padding: 80px 0;
  font-size: 16px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
section#privacy-policy .section__title {
    font-weight: 600;
    font-size: 32px;
    letter-spacing: -1px;
    margin-top:25px;
    margin-bottom: 3px;
}
#privacy-policy ul {
    margin-left: 20px;
}
#privacy-policy ul li {
    list-style: disc;
    margin-top: 5px;
}
#privacy-policy ul li a{
  color: var(--charcoal);
}

/* ─── Thanks You ─── */
body.thank-you-page header#mainHeader{
  background: var(--charcoal);
}
body.thank-you-page header#mainHeader.scrolled {
    background: #fff;
}
section.thank-you{
  padding: 110px 0 0;
  height: 90vh;
  text-align: center;
  display: flex;
  justify-content: center;
}
.thank-you-content{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
section.thank-you .hero-headline{
  color: #333;
}
section.thank-you .hero-subtext{
  color:var(--charcoal);
}
section.thank-you .btn-primary{
  color:var(--charcoal);
}
section.thank-you .hero-eyebrow {
    justify-content: center;
}

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal);
  padding: 60px 80px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  font-family: 'Poppins', serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-tagline {
  font-family: 'Inter', serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--biscuit); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-dld {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
}

.footer-dld strong {
    color: rgba(255,255,255,0.7);
    font-weight: 400;
    font-size: 11px;
}

.footer-copy {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

/* ─── FADE-IN REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── STICKY SIDE ACTIONS ─── */
.sticky-side-actions {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sticky-action-btn {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--charcoal);
  color: var(--white);
  text-decoration: none;
  padding: 16px 14px;
  position: relative;
  overflow: hidden;
  transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.35s ease,
              gap 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.sticky-action-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--biscuit);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.sticky-action-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.sticky-action-btn::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--biscuit);
    z-index: 2;
    transition: background 0.3s;
}

.sticky-action-btn:hover::after {
    background: transparent;
}

.sticky-action-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: stroke 0.3s ease;
}

.sticky-action-btn:hover svg {
  stroke: var(--charcoal);
}

.sticky-action-label {
  position: relative;
  z-index: 1;
  font-family: 'Google Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              margin-left 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.3s ease;
  margin-left: 0;
  color: var(--white);
}

.call-btn:hover .sticky-action-label,
.email-btn:hover .sticky-action-label {
  max-width: 100px;
  opacity: 1;
  margin-left: 10px;
  color: var(--charcoal);
}

.call-btn:hover,
.email-btn:hover {
  padding: 16px 20px 16px 18px;
}


/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .enclaves-grid { grid-template-columns: repeat(2, 1fr); }
  .enclave-card { height: 400px; }
  .lead-form-section { grid-template-columns: 1fr; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-row .form-field:first-child { border-right: none; }
}

@media (max-width: 900px) {
  header { padding: 10px 20px 10px 10px; }
  header.scrolled { padding: 5px 30px; }
  .header-logo img {width: 120px;}
  .header-right { display: none; }
  .header-divider { display: none; }
  .hero-content { padding: 0 32px 80px; }
  .credibility-bar { padding: 44px 32px; grid-template-columns: 1fr; gap: 40px; }
  .cred-item:not(:last-child)::after { display: none; }
  .opportunity-split { grid-template-columns: 1fr; }
  .opp-block { min-height: 420px; padding: 48px 32px; }
  .aq-top { grid-template-columns: 1fr; }
  .aq-top-left::after { display: none; }
  .aq-top-left, .aq-top-right { padding: 52px 32px; border: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .aq-pillars { grid-template-columns: 1fr; }
  .aq-pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 48px 32px; }
  .enclaves { padding: 80px 32px; }
  .enclaves-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .enclaves-subtitle { text-align: left; }
  .enclaves-grid { grid-template-columns: 1fr 1fr; }
  .lead-form-section { padding: 80px 32px; }
  footer { padding: 48px 32px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero-scroll-indicator { display: none; }
}

@media (max-width: 600px) {
  .enclaves-grid { grid-template-columns: 1fr; }
  section#home.hero.hero02{padding: 80px 15px}
  .hero {height: 70vh;min-height: 600px;}
  .hero02 h1.hero-headline {font-size: 30px;letter-spacing: 0px;}
  .hero02 .hero-subtext {font-size: 16px;line-height: 1.5;letter-spacing: 0.01em;}
  .hero-subtext {font-size: 18px;}
  .hero-headline {font-size: clamp(40px, 7vw, 88px);}
  .enclave-card { height: 320px; }
  .logo-item { padding: 20px 40px; }
  .cred-number { font-size: 34px; }
  .logo-section {padding: 40px 0;}
  .logo-section-header {padding: 0 10px;margin-bottom: 10px;}
  .opp-title { font-size: 32px; }
  .opp-block { padding: 40px 24px; }
  .aq-top-left, .aq-top-right { padding: 52px 24px; }
  .aq-pillar { padding: 44px 24px; }
  .enclaves { padding: 60px 24px; }
  .lead-form-section { padding: 60px 24px; }
  p.form-desc {margin: 0;}
  .btn-primary {padding: 15px 20px;font-size: 10px;letter-spacing: 1px;}
  footer { padding: 40px 24px; }
  .footer-links { gap: 10px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  section.thank-you {padding: 60px 0 0;height: 70vh;}
  section#page-header {min-height: 250px;}
  section#page-header .hero-headline {font-size: 35px;}
  section#privacy-policy .section__title { font-size: 25px;letter-spacing: -1px;margin-top: 20px;margin-bottom: 0;}
}
