/* ==============================================
   UNIFIED STYLESHEET — ADAGACHE GROUP OF COMPANIES
   Covers: All Pages — Homes, Oil & Gas, Travel, Integrated, Autos, Properties
   ============================================== */

:root {
  --bg: #050505;
  --card: #101010;
  --gold: #d4af37;
  --gold-light: #f3df9b;
  --text: #ffffff;
  --muted: #9f9f9f;
  --border: rgba(212, 175, 55, 0.18);
  --glass: rgba(255, 255, 255, 0.05);
  --green: #25d366;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  /* Enhanced background pattern — visible but balanced */
  background-image:
    radial-gradient(ellipse at 10% 15%, rgba(212,175,55,0.055) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(212,175,55,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(212,175,55,0.02) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.028'%3E%3Cpath d='M40 0L80 40L40 80L0 40Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-attachment: fixed;
}

body::-webkit-scrollbar { width: 8px; }
body::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 20px; }

.gold-text {
  background: linear-gradient(135deg, #fff4c7 0%, #d4af37 50%, #8f690a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass {
  background: var(--glass);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ========== HEADER ========== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 14px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 1;
  min-width: 0;
}

.logo-text { min-width: 0; }

.site-logo {
  height: 52px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  transition: transform 0.25s;
}
.site-logo:hover { transform: scale(1.03); }

.logo-text h1 {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1;
}
.logo-text p {
  font-size: 0.55rem;
  letter-spacing: 3.5px;
  color: var(--muted);
  margin-top: 5px;
  text-transform: uppercase;
}

/* ===== UNIFIED NAV — same across ALL pages ===== */
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  transition: 0.3s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-btn {
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  color: black !important;
  padding: 10px 20px !important;
  border-radius: 40px !important;
  font-weight: 800 !important;
  border-bottom: none !important;
  white-space: nowrap;
}
.nav-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(212,175,55,0.25); }

/* Hamburger */
.mobile-btn {
  display: none;
  background: none;
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold);
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 1.2rem;
  transition: 0.25s;
}
.mobile-btn:hover { background: rgba(212,175,55,0.1); }

/* ========== SERVICE PAGE HERO ========== */
.service-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 25px 80px;
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.32); /* Was 0.18 — noticeably clearer now */
  z-index: 0;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(212,175,55,0.07) 0%, transparent 60%),
              linear-gradient(to bottom, rgba(0,0,0,0.22) 0%, rgba(5,5,5,0.82) 100%);
  z-index: 1;
}

.service-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.service-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 40px 60px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 40px;
  margin-bottom: 48px;
  box-shadow: 0 0 80px rgba(212,175,55,0.08), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: box-shadow 0.4s;
}
.service-logo-wrap:hover {
  box-shadow: 0 0 120px rgba(212,175,55,0.15), inset 0 1px 0 rgba(255,255,255,0.08);
}

.service-logo-img {
  max-width: 380px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(212,175,55,0.25));
}

.service-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid rgba(212,175,55,0.3);
  background: rgba(212,175,55,0.07);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.service-hero h2 {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
}

.service-hero p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: #c8c8c8;
  max-width: 680px;
  margin: 0 auto 44px;
}

.service-hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero Stats Bar */
.hero-stats-bar {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 70px;
  padding-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.06);
  max-width: 900px;
  width: 100%;
}

.hero-stat {
  text-align: center;
  padding: 20px 30px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 20px;
  min-width: 160px;
}
.hero-stat h3 { font-size: 2.2rem; font-weight: 900; }
.hero-stat p { font-size: 0.8rem; color: var(--muted); margin-top: 6px; }

/* ========== SHARED SECTION STYLES ========== */
.section { padding: 120px 25px; }
.container { max-width: 1300px; margin: auto; }
.section-head { text-align: center; margin-bottom: 70px; }
.section-head small {
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  display: block;
  margin-bottom: 18px;
  font-size: 0.75rem;
}
.section-head h2 {
  font-size: 3.8rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.1;
}
.section-head p {
  max-width: 700px;
  margin: auto;
  color: var(--muted);
  line-height: 1.8;
}

/* ========== SERVICE CARDS ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: linear-gradient(160deg, #111111 0%, #080808 100%);
  border: 1px solid rgba(212,175,55,0.08);
  padding: 44px 36px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: 0.4s;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212,175,55,0.2);
  box-shadow: 0 30px 70px rgba(212,175,55,0.1);
}
.service-card:hover::before { opacity: 1; }

.service-card-icon {
  width: 76px; height: 76px;
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.12);
  margin-bottom: 26px;
  transition: 0.3s;
}
.service-card:hover .service-card-icon {
  background: rgba(212,175,55,0.15);
  transform: scale(1.05);
}
.service-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 14px; }
.service-card p { color: var(--muted); line-height: 1.75; font-size: 0.92rem; }

/* ========== WHY CHOOSE US ========== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-content h2 { font-size: 3.2rem; font-weight: 900; line-height: 1.1; margin-bottom: 24px; }
.why-content p { color: var(--muted); line-height: 1.85; margin-bottom: 36px; }
.why-list { display: flex; flex-direction: column; gap: 18px; }
.why-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212,175,55,0.08);
  border-radius: 18px; transition: 0.3s;
}
.why-item:hover { background: rgba(212,175,55,0.04); border-color: rgba(212,175,55,0.18); }
.why-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(212,175,55,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.2rem; flex-shrink: 0;
}
.why-item h4 { font-weight: 700; margin-bottom: 6px; }
.why-item p { color: var(--muted); font-size: 0.88rem; margin: 0; }
.why-visual { position: relative; }
.why-stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.why-stat-card {
  padding: 32px 24px; border-radius: 26px;
  background: linear-gradient(145deg, #111 0%, #080808 100%);
  border: 1px solid rgba(212,175,55,0.1); text-align: center;
}
.why-stat-card:nth-child(1) { border-color: rgba(212,175,55,0.2); }
.why-stat-card h3 { font-size: 2.8rem; font-weight: 900; margin-bottom: 10px; }
.why-stat-card p { color: var(--muted); font-size: 0.82rem; }

/* ========== FEATURES GRID ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.feature-card {
  padding: 38px 28px; text-align: center; border-radius: 26px;
  background: var(--glass);
  border: 1px solid rgba(255,255,255,0.05); transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-8px); }
.feature-icon { font-size: 2.8rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--gold-light); }

/* ========== CONTACT / CTA ========== */
.cta-section {
  text-align: center; padding: 90px 50px;
  border-radius: 44px; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-actions {
  display: flex; justify-content: center; gap: 20px;
  flex-wrap: wrap; margin-top: 36px;
}

/* ========== BUTTONS ========== */
.primary-btn, .secondary-btn {
  text-decoration: none; padding: 17px 34px;
  border-radius: 60px; font-weight: 800; font-size: 0.95rem;
  transition: 0.4s; display: inline-flex; align-items: center;
  gap: 12px; border: none; cursor: pointer;
}
.primary-btn { background: var(--green); color: black; }
.primary-btn:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(37,211,102,0.25); }
.secondary-btn { border: 1px solid rgba(212,175,55,0.3) !important; color: white; background: transparent; }
.secondary-btn:hover { background: rgba(212,175,55,0.08); border-color: var(--gold) !important; }
.gold-btn {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: black; text-decoration: none; padding: 17px 34px;
  border-radius: 60px; font-weight: 800; font-size: 0.95rem;
  transition: 0.4s; display: inline-flex; align-items: center; gap: 12px;
}
.gold-btn:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(212,175,55,0.25); }

/* ========== ORIGINAL INDEX.HTML HERO ========== */
.hero {
  min-height: 100vh;
  background: linear-gradient(to bottom, rgba(0,0,0,0.42), rgba(0,0,0,0.88)),
    url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?q=80&w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hero-content {
  max-width: 1300px; margin: auto; padding: 140px 25px 80px;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 70px; align-items: center;
}
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 50px;
  border: 1px solid rgba(212,175,55,0.3);
  background: rgba(212,175,55,0.08);
  color: var(--gold-light); font-weight: 700; font-size: 0.8rem; margin-bottom: 30px;
}
.hero h2 { font-size: 6rem; line-height: 0.95; font-weight: 900; margin-bottom: 30px; }
.hero p { font-size: 1.1rem; line-height: 2; color: #d0d0d0; margin-bottom: 35px; }
.hero-stats, .hero-actions { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.stat-box { padding: 24px; border-radius: 24px; min-width: 170px; }
.stat-box h3 { font-size: 2.5rem; font-weight: 900; }
.offer-card { padding: 40px; border-radius: 32px; }
.offer-top { display: flex; justify-content: space-between; margin-bottom: 30px; }
.offer-top h3 { font-size: 2.3rem; font-weight: 900; }
.offer-icon {
  width: 75px; height: 75px; border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; background: rgba(212,175,55,0.08);
}
.offer-item {
  display: flex; justify-content: space-between;
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.plot-btn {
  display: block; text-align: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: black; padding: 18px; font-weight: 900;
  border-radius: 18px; text-decoration: none;
  border: none; cursor: pointer; width: 100%;
}

/* PLOTS */
.plot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.plot-card {
  background: linear-gradient(to bottom, #111111, #080808);
  border: 1px solid rgba(212,175,55,0.08);
  border-radius: 30px; position: relative; transition: 0.5s;
  overflow: hidden;
}
.plot-card:hover { transform: translateY(-12px); box-shadow: 0 25px 60px rgba(212,175,55,0.18); border-color: rgba(212,175,55,0.25); }
.plot-badge {
  position: absolute; top: 0; right: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: black; padding: 12px 20px;
  border-bottom-left-radius: 22px; font-weight: 800; font-size: 0.8rem;
  z-index: 3;
}

/* Plot card image area */
.plot-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.plot-card-body {
  padding: 32px;
}
.plot-icon {
  width: 80px; height: 80px; border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; background: rgba(212,175,55,0.08); margin-bottom: 25px;
}
.plot-card h3 { font-size: 2rem; font-weight: 900; }
.price { font-size: 2rem; font-weight: 900; margin: 20px 0; }
.prototype-link {
  display: inline-block; color: var(--gold-light);
  text-decoration: none; font-size: 0.85rem; margin-bottom: 15px;
}

/* CALCULATOR */
.calc-container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px; padding: 50px; border-radius: 30px;
  width: 100%; max-width: 1100px; margin: 0 auto;
}
.calc-inputs { display: flex; flex-direction: column; gap: 25px; }
.calc-results {
  background: rgba(0,0,0,0.5); padding: 35px;
  border-radius: 24px; border: 1px solid rgba(212,175,55,0.15);
  display: flex; flex-direction: column; justify-content: center;
}
.input-group { display: flex; flex-direction: column; gap: 12px; }
.input-group label { font-weight: 700; color: var(--gold-light); font-size: 0.95rem; }
.input-group select, .input-group input {
  background: #151515; color: white; border: 1px solid var(--border);
  padding: 14px 18px; border-radius: 14px; font-size: 1rem;
  cursor: pointer; transition: 0.3s; font-family: inherit;
}
.input-group select:hover, .input-group input:hover { border-color: var(--gold); }
.range-labels {
  display: flex; justify-content: space-between;
  font-size: 0.75rem; color: var(--muted); padding: 0 5px;
}
.result-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.result-row span:first-child { color: var(--muted); font-size: 0.95rem; }
.result-row span:last-child { font-weight: 700; font-size: 1.1rem; }
.result-row.execution { border-bottom: none; margin-top: 5px; }
.result-row.execution span:last-child { font-size: 2rem; font-weight: 900; }

/* LOCATION */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.map-box { position: relative; height: 450px; border-radius: 36px; overflow: hidden; }
.map-box iframe { width: 100%; height: 100%; border: none; }
.direction-btn {
  position: absolute; bottom: 25px; left: 25px; right: 25px;
  background: var(--green); color: black; padding: 18px;
  border-radius: 22px; text-decoration: none; text-align: center;
  font-weight: 900; transition: 0.3s;
}
.location-box {
  padding: 25px; border-radius: 24px;
  display: inline-block; margin-right: 15px; margin-top: 20px; min-width: 160px;
}
.location-box h3 { font-size: 2rem; font-weight: 900; }

/* READ MORE */
.read-more-container { display: flex; justify-content: flex-start; margin-top: 20px; }
.read-more-btn {
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold-light); padding: 10px 28px; border-radius: 40px;
  cursor: pointer; font-weight: 600; font-size: 0.85rem;
  transition: 0.3s; display: inline-flex; align-items: center;
  gap: 10px; font-family: inherit;
}
.read-more-btn:hover { background: rgba(212,175,55,0.25); transform: translateY(-2px); }

/* CEO SECTION */
.ceo-tag {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(212,175,55,0.12); border: 1px solid rgba(212,175,55,0.25);
  border-radius: 60px; padding: 8px 24px; margin-bottom: 30px; font-weight: 600;
}
.ceo-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.ceo-image-card {
  position: relative; border-radius: 40px; overflow: hidden;
  background: #111; border: 1px solid rgba(212,175,55,0.2); transition: transform 0.3s;
}
.ceo-image-card:hover { transform: translateY(-5px); }
.ceo-image-card img { width: 100%; height: auto; display: block; }
.image-accent {
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent); pointer-events: none;
}
.img-caption {
  position: absolute; bottom: 20px; left: 24px;
  color: rgba(255,255,255,0.8); font-size: 0.85rem; z-index: 2;
}
.ceo-name { font-size: 3rem; font-weight: 800; margin-bottom: 10px; }
.ceo-title {
  font-size: 1.1rem; font-weight: 600; color: var(--gold-light);
  border-left: 4px solid var(--gold); padding-left: 20px; margin: 8px 0 20px;
}
.ceo-bio { color: #ddd; line-height: 1.75; }
.ceo-bio p { margin-bottom: 18px; }
.pillars { display: flex; flex-wrap: wrap; gap: 12px; margin: 20px 0; }
.pillar-item {
  background: rgba(212,175,55,0.05); border: 1px solid rgba(212,175,55,0.15);
  border-radius: 100px; padding: 8px 18px; font-size: 0.8rem;
  display: inline-flex; align-items: center; gap: 8px;
}
.pillar-item i { color: var(--gold); }
.brand-badges { display: flex; flex-wrap: wrap; gap: 12px; margin: 20px 0; }
.brand-badge {
  background: rgba(0,0,0,0.5); border-radius: 30px;
  padding: 6px 15px; font-size: 0.75rem; border: 0.5px solid rgba(212,175,55,0.3);
}
.social-quote {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(212,175,55,0.2);
}
.ceo-social-links { display: flex; gap: 15px; }
.ceo-social-links a {
  color: #ccc; background: rgba(255,255,255,0.05); width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 1.1rem; transition: 0.25s; text-decoration: none;
}
.ceo-social-links a:hover { background: var(--gold); color: black; transform: translateY(-3px); }
.connect-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: black; font-weight: 800; padding: 12px 28px;
  border-radius: 50px; text-decoration: none; margin-top: 20px; transition: 0.3s;
}
.connect-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(212,175,55,0.2); }

/* MODAL */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px); z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: 0.3s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-window {
  background: #0f0f0f; border: 1px solid var(--border);
  border-radius: 28px; max-width: 480px; width: 90%; padding: 35px; position: relative;
}
.modal-close {
  position: absolute; top: 15px; right: 20px; background: none;
  border: none; color: var(--muted); font-size: 1.5rem; cursor: pointer;
}
.modal-options { margin-top: 20px; }
.modal-opt-btn {
  background: #161616; border: 1px solid rgba(255,255,255,0.06); padding: 18px;
  border-radius: 16px; display: flex; align-items: center; gap: 15px;
  width: 100%; cursor: pointer; color: white; margin-bottom: 12px; transition: 0.2s;
  font-family: inherit; text-align: left;
}
.modal-opt-btn:hover { border-color: var(--gold); background: rgba(212,175,55,0.05); }
.modal-opt-btn i { color: var(--gold); font-size: 1.3rem; }
.modal-opt-btn strong { display: block; font-weight: 700; }
.modal-opt-btn span { font-size: 0.8rem; color: var(--muted); }

/* ========== PROPERTIES PAGE ========== */
.prop-company-section {
  margin-bottom: 90px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(212,175,55,0.1);
}
.prop-company-section:last-child { border-bottom: none; margin-bottom: 0; }
.prop-company-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.prop-company-icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; flex-shrink: 0;
}
.prop-company-meta small {
  display: block; color: var(--gold);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; margin-bottom: 6px;
}
.prop-company-meta h3 { font-size: 1.9rem; font-weight: 900; }

.prop-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.prop-card {
  background: linear-gradient(160deg, #111 0%, #080808 100%);
  border: 1px solid rgba(212,175,55,0.08);
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s;
  position: relative;
}
.prop-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 25px 55px rgba(212,175,55,0.15);
}
.prop-card-img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.prop-card:hover .prop-card-img { transform: scale(1.04); }
.prop-card-body { padding: 20px; }
.prop-card-tag {
  font-size: 0.65rem; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 8px; display: block;
}
.prop-card-body h4 { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; }
.prop-card-body p { color: var(--muted); font-size: 0.82rem; line-height: 1.55; margin-bottom: 12px; }
.prop-card-price { font-size: 1.25rem; font-weight: 900; }
.prop-card-price.gold-text { font-size: 1.1rem; }

/* Property Detail Modal */
.prop-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px); z-index: 3000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none; transition: 0.35s;
}
.prop-modal-overlay.active { opacity: 1; pointer-events: all; }
.prop-modal-window {
  background: #0c0c0c; border: 1px solid rgba(212,175,55,0.2);
  border-radius: 32px; max-width: 680px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.prop-modal-window::-webkit-scrollbar { width: 4px; }
.prop-modal-window::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }
.prop-modal-img {
  width: 100%; height: 280px; object-fit: cover;
  border-radius: 32px 32px 0 0; display: block;
}
.prop-modal-body { padding: 36px; }
.prop-modal-company {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.prop-modal-title { font-size: 1.8rem; font-weight: 900; margin-bottom: 6px; }
.prop-modal-location { color: var(--muted); font-size: 0.88rem; margin-bottom: 22px; display: flex; align-items: center; gap: 8px; }
.prop-modal-desc { color: #ccc; line-height: 1.8; font-size: 0.93rem; margin-bottom: 24px; }
.prop-modal-features {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px;
}
.prop-feat-tag {
  background: rgba(212,175,55,0.07); border: 1px solid rgba(212,175,55,0.18);
  padding: 7px 16px; border-radius: 40px; font-size: 0.78rem;
  font-weight: 600; color: var(--gold-light);
}
.prop-modal-price { font-size: 2.2rem; font-weight: 900; margin-bottom: 28px; }
.prop-modal-close {
  position: absolute; top: 18px; right: 22px;
  background: rgba(0,0,0,0.7); border: 1px solid rgba(255,255,255,0.1);
  color: white; width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; transition: 0.25s; z-index: 2;
}
.prop-modal-close:hover { background: rgba(212,175,55,0.2); border-color: var(--gold); }
.prop-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  width: 100%; padding: 18px;
  background: var(--green); color: black;
  font-weight: 900; font-size: 1rem; border-radius: 18px;
  text-decoration: none; transition: 0.3s;
}
.prop-wa-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(37,211,102,0.3); }

/* FOOTER */
footer {
  padding: 60px 25px;
  border-top: 1px solid rgba(212,175,55,0.1);
  background: #020202;
}
.footer-container {
  max-width: 1300px; margin: auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 40px; align-items: center;
}
.footer-brand h2 { font-size: 1.8rem; font-weight: 900; margin-bottom: 8px; }
.footer-brand p { color: var(--muted); font-size: 0.78rem; letter-spacing: 3px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; transition: 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact { text-align: right; }
.footer-contact a { display: block; text-decoration: none; margin-bottom: 10px; }
.footer-contact .instagram { color: var(--gold); font-size: 0.9rem; }
.footer-contact .phone { font-size: 1.6rem; font-weight: 900; color: white; }

/* FLOATING WA */
.floating-wa {
  position: fixed; bottom: 25px; right: 25px;
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--green); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem; text-decoration: none; z-index: 999;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 20px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 0.8rem; }
}

@media (max-width: 992px) {
  .hero-content, .ceo-grid, .location-grid, .why-grid { grid-template-columns: 1fr; }
  .calc-container { grid-template-columns: 1fr; gap: 35px; padding: 30px; }
  .hero h2 { font-size: 3.5rem; }
  .section-head h2 { font-size: 2.8rem; }
  .service-hero h2 { font-size: 3rem; }
  .ceo-name { font-size: 2.5rem; }
  .footer-container { grid-template-columns: 1fr; text-align: center; }
  .footer-contact { text-align: center; }
  .why-visual { display: none; }
}

@media (max-width: 768px) {
  .mobile-btn { display: block; z-index: 1100; }
  .nav-links {
    position: absolute; top: 100%; left: 0; width: 100%; right: 0;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    background: rgba(0,0,0,0.97); padding: 24px 30px;
    display: none; flex-direction: column; gap: 16px;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
    z-index: 1050;
  }
  .nav-links.active { display: flex; }
  .nav-links a { font-size: 1rem; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .nav-links a:last-child { border-bottom: none; }
  .hero h2 { font-size: 2.5rem; }
  .service-hero h2 { font-size: 2.2rem; }
  .service-logo-img { max-width: 260px; }
  .service-logo-wrap { padding: 28px 36px; }
  .section { padding: 80px 20px; }
  .section-head h2 { font-size: 2.2rem; }
  .ceo-name { font-size: 2rem; }
  .stat-box, .location-box { min-width: auto; width: 100%; }
  .hero-stats { flex-direction: column; }
  .hero-stats-bar { flex-direction: column; align-items: center; }
  .social-quote { flex-direction: column; align-items: flex-start; gap: 15px; }
  .calc-container { padding: 20px; }
  .why-stat-cards { grid-template-columns: 1fr; }
  .prop-company-header { flex-direction: column; align-items: flex-start; }
  .prop-cards-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .prop-modal-title { font-size: 1.4rem; }
  .prop-modal-price { font-size: 1.7rem; }
  .cta-section { padding: 60px 25px; }
}

@media (max-width: 480px) {
  .service-hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; }
  .prop-cards-grid { grid-template-columns: 1fr; }
  .prop-modal-body { padding: 24px; }
  .prop-modal-img { height: 210px; }
}

/* ==============================================
   PLOT CARD FIXES — Works with your current script.js
   ============================================== */

/* Make the card a flex column so the button stays at the bottom */
.plot-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Allow the body to grow and push the button down */
.plot-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Push the Secure Plot button to the bottom */
.plot-btn {
  margin-top: auto;
  transition: all 0.3s ease;
}

/* Hover effect for the button */
.plot-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* When the image fails, show the placeholder icon */
.plot-icon {
  display: none; /* default hidden, shown via JS on error */
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: rgba(212, 175, 55, 0.08);
  margin: 20px auto 0;
  font-size: 2rem;
}

/* Override inline display:none when the icon should show */
.plot-card-image[style*="display: none"] + .plot-icon {
  display: flex !important;
}

/* Polish the "View Prototype Layout" link */
.prototype-link {
  transition: color 0.2s, border-bottom 0.2s;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  display: inline-block;
}

.prototype-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Ensure the price has consistent spacing */
.price {
  margin: 10px 0 18px;
}
/* ==============================================
   INTERNATIONAL UPGRADE — CSS ENHANCEMENTS
   Layered on top of existing styles, zero breaking changes
   ============================================== */

/* ── CSS Custom Properties Additions ── */
:root {
  --transition-fast:   0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base:   0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:   0.55s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold-sm:    0 4px 18px rgba(212,175,55,0.12);
  --shadow-gold-md:    0 12px 40px rgba(212,175,55,0.18);
  --shadow-gold-lg:    0 30px 80px rgba(212,175,55,0.22);
  --radius-card:       30px;
  --radius-btn:        60px;
  --radius-input:      14px;
}

/* ── Reduced-motion safety ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Page load fade-in ── */
body {
  opacity: 0;
  animation: pageReveal 0.7s var(--transition-base) forwards;
}
@keyframes pageReveal {
  to { opacity: 1; }
}

/* ── Header scroll-shrink state ── */
header {
  transition: padding var(--transition-base),
              background var(--transition-base),
              box-shadow var(--transition-base);
  will-change: transform;
}
header.scrolled {
  background: rgba(0,0,0,0.97);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
header.scrolled .nav-container { padding-top: 10px; padding-bottom: 10px; }
header.scrolled .site-logo { height: 42px; }

/* ── Focus rings (accessibility) ── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ── Gold shimmer animation (used on hero badge, section labels) ── */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.gold-text {
  background-size: 200% auto;
  animation: shimmer 5s linear infinite;
}

/* ── Enhanced scrollbar ── */
body::-webkit-scrollbar { width: 6px; }
body::-webkit-scrollbar-track { background: #080808; }
body::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold), var(--gold-light));
  border-radius: 20px;
}

/* ── Floating WA — enhanced pulse ── */
.floating-wa {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  will-change: transform;
}
.floating-wa:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 16px 40px rgba(37,211,102,0.4);
}

/* ── Hero section ── */
.hero {
  background-attachment: fixed;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}
.hero h2 {
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

/* ── Hero content entrance ── */
.hero-content > div {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--transition-base),
              transform 0.9s var(--transition-base);
}
.hero-content > div.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-content > .offer-card {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 0.9s 0.25s var(--transition-base),
              transform 0.9s 0.25s var(--transition-base);
}
.hero-content > .offer-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Badge refinement ── */
.badge {
  backdrop-filter: blur(8px);
  letter-spacing: 1.5px;
  font-size: 0.75rem;
}

/* ── Offer card hover ── */
.offer-card {
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  will-change: transform;
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold-md);
}
.offer-item {
  transition: background var(--transition-fast);
  border-radius: 10px;
  padding-left: 10px; padding-right: 10px;
}
.offer-item:hover { background: rgba(212,175,55,0.05); }

/* ── Scroll-reveal base state ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--transition-base),
              transform 0.7s var(--transition-base);
}
.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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Plot cards ── */
.plot-card {
  transition: transform var(--transition-slow),
              box-shadow var(--transition-slow),
              border-color var(--transition-slow);
  will-change: transform;
}
.plot-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(212,175,55,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}
.plot-card:hover::after { opacity: 1; }

.plot-card-image {
  transition: transform 0.7s var(--transition-slow);
}
.plot-card:hover .plot-card-image {
  transform: scale(1.05);
}

/* ── Section head eyebrow line ── */
.section-head small::before,
.section-head small::after {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 12px;
  opacity: 0.5;
}

/* ── Service cards ── */
.service-card {
  transition: transform var(--transition-slow),
              box-shadow var(--transition-slow),
              border-color var(--transition-slow);
  will-change: transform;
}

/* ── Feature cards ── */
.feature-card {
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212,175,55,0.06), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold-sm);
  border-color: rgba(212,175,55,0.18);
}
.feature-card:hover::before { opacity: 1; }

/* ── Buttons — richer interactions ── */
.primary-btn, .secondary-btn, .gold-btn, .plot-btn, .nav-btn, .connect-btn {
  position: relative;
  overflow: hidden;
}
.primary-btn::after, .gold-btn::after, .plot-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.primary-btn:hover::after,
.gold-btn:hover::after,
.plot-btn:hover::after { opacity: 1; }

.primary-btn:active,
.secondary-btn:active,
.gold-btn:active { transform: translateY(-1px) scale(0.98); }

/* ── Input / select refinements ── */
.input-group select,
.input-group input[type="text"],
.input-group input[type="number"] {
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast),
              background var(--transition-fast);
}
.input-group select:focus,
.input-group input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
  outline: none;
  background: #1a1a1a;
}

/* ── Range slider — custom gold fill track ── */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 10px;
  background: #252525;
  cursor: pointer;
  outline: none;
  transition: background var(--transition-fast);
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 2px 12px rgba(212,175,55,0.4);
  cursor: grab;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
input[type="range"]::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.2);
  box-shadow: 0 4px 20px rgba(212,175,55,0.6);
}
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 2px 12px rgba(212,175,55,0.4);
  cursor: grab;
  border: none;
  transition: transform var(--transition-fast);
}

/* ── Calculator result card ── */
.calc-results {
  position: relative;
  overflow: hidden;
}
.calc-results::before {
  content: '';
  position: absolute;
  top: -40%; left: -40%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.result-row {
  transition: background var(--transition-fast);
  border-radius: 8px;
  padding-left: 8px; padding-right: 8px;
}
.result-row:hover { background: rgba(212,175,55,0.04); }

/* ── Stat boxes — animated number pop ── */
.stat-box h3,
.why-stat-card h3,
.hero-stat h3 {
  display: inline-block;
  transition: transform var(--transition-base);
}
.stat-box:hover h3,
.why-stat-card:hover h3 {
  transform: scale(1.08);
}

/* ── Modal entrance — scale up from center ── */
.modal-overlay {
  transition: opacity var(--transition-base);
}
.modal-window {
  transform: scale(0.92) translateY(20px);
  transition: transform var(--transition-base);
}
.modal-overlay.active .modal-window {
  transform: scale(1) translateY(0);
}

.prop-modal-overlay {
  transition: opacity var(--transition-base);
}
.prop-modal-window {
  transform: scale(0.93) translateY(24px);
  transition: transform var(--transition-base);
}
.prop-modal-overlay.active .prop-modal-window {
  transform: scale(1) translateY(0);
}

/* ── Modal option buttons ── */
.modal-opt-btn {
  transition: border-color var(--transition-fast),
              background var(--transition-fast),
              transform var(--transition-fast);
}
.modal-opt-btn:hover { transform: translateX(6px); }
.modal-opt-btn:active { transform: translateX(3px) scale(0.98); }

/* ── CEO image card ── */
.ceo-image-card {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.ceo-image-card:hover {
  transform: translateY(-8px) rotate(0.5deg);
  box-shadow: var(--shadow-gold-md);
}

/* ── Social links ── */
.ceo-social-links a {
  transition: background var(--transition-fast),
              color var(--transition-fast),
              transform var(--transition-fast);
}

/* ── Property cards ── */
.prop-card {
  transition: transform var(--transition-slow),
              box-shadow var(--transition-slow),
              border-color var(--transition-slow);
  will-change: transform;
}

/* ── Footer links ── */
.footer-links a {
  position: relative;
  transition: color var(--transition-fast);
}
.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition-base);
}
.footer-links a:hover::after { width: 100%; }

/* ── Toast notification ── */
.toast {
  position: fixed;
  bottom: 110px; right: 25px;
  background: #111;
  border: 1px solid rgba(212,175,55,0.3);
  color: white;
  padding: 14px 22px;
  border-radius: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  box-shadow: var(--shadow-gold-sm);
  transform: translateY(20px);
  opacity: 0;
  transition: transform var(--transition-base), opacity var(--transition-base);
  pointer-events: none;
  max-width: 300px;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast i { color: var(--gold); font-size: 1rem; }

/* ── Back-to-top button ── */
.back-to-top {
  position: fixed;
  bottom: 110px; left: 25px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-base),
              transform var(--transition-base),
              background var(--transition-fast);
  pointer-events: none;
  text-decoration: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover {
  background: rgba(212,175,55,0.25);
  transform: translateY(-4px);
}

/* ── Progress bar (page scroll indicator) ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 10000;
  transition: width 0.1s linear;
  will-change: width;
}

/* ── Section divider pulse ── */
.section-head small {
  position: relative;
}

/* ── Number counter animation ── */
.count-up {
  display: inline-block;
  will-change: contents;
}

/* ── Image lazy load fade ── */
img.lazy {
  opacity: 0;
  transition: opacity 0.5s var(--transition-base);
}
img.lazy.loaded { opacity: 1; }

/* ── Direction button enhanced ── */
.direction-btn {
  transition: background var(--transition-fast),
              transform var(--transition-fast),
              box-shadow var(--transition-fast);
  letter-spacing: 0.3px;
}
.direction-btn:hover {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* ── Prototype link refined ── */
.prototype-link {
  transition: color var(--transition-fast), letter-spacing var(--transition-fast);
}
.prototype-link:hover {
  letter-spacing: 0.3px;
}

/* ── Read-more button ── */
.read-more-btn {
  transition: background var(--transition-fast),
              transform var(--transition-fast),
              letter-spacing var(--transition-fast);
}

/* ── Location stats box refined ── */
.location-box {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.location-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold-sm);
}

/* ── Why items ── */
.why-item {
  transition: background var(--transition-fast),
              border-color var(--transition-fast),
              transform var(--transition-fast);
}
.why-item:hover { transform: translateX(6px); }

/* ── Performance containment ── */
.plot-card, .service-card, .feature-card, .prop-card {
  contain: layout style;
}

