/*
Theme Name: Horizon Property Projects WA
Theme URI: https://horizonpropertyprojects.com.au
Author: Hassan
Author URI: https://horizonpropertyprojects.com.au
Description: A premium one-page theme for Horizon Property Projects WA — strategic property advisory and development consultancy in Western Australia.
Version: 1.0.0
License: All Rights Reserved
Text Domain: horizon
*/

/* ==================== VARIABLES ==================== */
:root {
  --navy: #0a1620;
  --navy-light: #0e1e2d;
  --cream: #f4f0ea;
  --cream-mid: #ede8e0;
  --white: #ffffff;
  --gold: #b98c44;
  --gold-bright: #d4a84f;
  --gold-muted: rgba(185, 140, 68, 0.12);
  --gold-glow: rgba(185, 140, 68, 0.15);
  --gold-glow-strong: rgba(185, 140, 68, 0.3);
  --gold-dim: rgba(185, 140, 68, 0.5);
  --glass: rgba(14, 30, 45, 0.55);
  --glass-border: rgba(185, 140, 68, 0.1);
  --glass-border-hover: rgba(185, 140, 68, 0.28);
  --text-dark: #0a1620;
  --text-body: #3a4a5a;
  --text-light: rgba(244, 240, 234, 0.9);
  --text-light-dim: rgba(244, 240, 234, 0.5);
  --rule-dark: rgba(10, 22, 32, 0.1);
  --rule-light: rgba(244, 240, 234, 0.08);
  --ff-heading: 'DM Serif Display', Georgia, serif;
  --ff-body: 'DM Sans', -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== RESET ==================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--ff-body); color: var(--text-body); background: var(--cream); overflow-x: hidden; line-height: 1.7; font-weight: 300; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--gold); color: var(--navy); }

/* ==================== UTILITIES ==================== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.section-label {
  font-family: var(--ff-body); font-size: 11px; font-weight: 600;
  letter-spacing: 4.5px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 22px; display: inline-flex; align-items: center; gap: 14px;
}
.section-label::before {
  content: ''; width: 36px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section-label.centered { justify-content: center; }
.section-label.centered::before { display: none; }

.section-heading {
  font-family: var(--ff-heading); font-size: clamp(32px, 5vw, 50px);
  font-weight: 400; line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 24px;
}
.section-heading.dark { color: var(--text-dark); }
.section-heading.light { color: var(--cream); }

/* ==================== REVEALS ==================== */
.reveal { opacity: 0; transform: translateY(44px); transition: opacity 0.95s var(--ease-out), transform 0.95s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.95s var(--ease-out), transform 0.95s var(--ease-out); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.95s var(--ease-out), transform 0.95s var(--ease-out); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000; padding: 22px 0; transition: all 0.5s var(--ease-smooth);
}
.navbar.scrolled {
  background: rgba(10, 22, 32, 0.92);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  padding: 13px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo img {
  height: 66px; border-radius: 6px;
  transition: all 0.3s var(--ease-out); filter: drop-shadow(0 0 6px var(--gold-glow));
}
.navbar.scrolled .nav-logo img { height: 52px; }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-light-dim); position: relative; padding: 4px 0; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.4s var(--ease-out);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 9px 26px !important; border: 1px solid rgba(185, 140, 68, 0.35) !important;
  color: var(--gold) !important; transition: all 0.4s var(--ease-out) !important;
}
.nav-cta:hover {
  background: var(--gold) !important; color: var(--navy) !important;
  border-color: var(--gold) !important; box-shadow: 0 0 28px var(--gold-glow-strong) !important;
}
.nav-cta::after { display: none !important; }

.mobile-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1002;
}
.mobile-toggle span {
  width: 24px; height: 1.5px; background: var(--gold);
  transition: all 0.3s var(--ease-out); transform-origin: center;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==================== HERO ==================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; background: var(--navy); overflow: hidden;
  padding: 120px 0 100px;
}

.hero-cinema { position: absolute; inset: 0; z-index: 0; }
.hero-cinema::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 140%; height: 140%;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(185, 140, 68, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(185, 140, 68, 0.04) 0%, transparent 50%);
  animation: cinematicPulse 20s ease-in-out infinite alternate;
}
@keyframes cinematicPulse {
  0% { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-50%, -50%) scale(1.06); }
}

.hero-arc {
  position: absolute; bottom: -340px; left: 50%; transform: translateX(-50%);
  width: 820px; height: 820px; border-radius: 50%;
  border: 1px solid rgba(185, 140, 68, 0.07);
  animation: arcPulse 6s ease-in-out infinite alternate; z-index: 0;
}
.hero-arc::before {
  content: ''; position: absolute; inset: 40px; border-radius: 50%;
  border: 1px solid rgba(185, 140, 68, 0.05); animation: arcRotate 60s linear infinite;
}
.hero-arc::after {
  content: ''; position: absolute; inset: 90px; border-radius: 50%;
  border: 1px solid rgba(185, 140, 68, 0.03); animation: arcRotate 90s linear infinite reverse;
}
@keyframes arcPulse {
  0% { border-color: rgba(185, 140, 68, 0.04); box-shadow: 0 0 40px rgba(185, 140, 68, 0.015); }
  100% { border-color: rgba(185, 140, 68, 0.1); box-shadow: 0 0 80px rgba(185, 140, 68, 0.04); }
}
@keyframes arcRotate { to { transform: rotate(360deg); } }

.hero-line {
  position: absolute; z-index: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 140, 68, 0.1), transparent);
}
.hero-line-1 { top: 28%; left: 0; right: 0; animation: lineFade 8s ease-in-out infinite alternate; }
.hero-line-2 { top: 62%; left: 8%; right: 8%; animation: lineFade 8s ease-in-out 2s infinite alternate; }
@keyframes lineFade { 0% { opacity: 0.25; } 100% { opacity: 0.7; } }

.hero-particles { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.particle {
  position: absolute; width: 2px; height: 2px;
  background: rgba(185, 140, 68, 0.25); border-radius: 50%; animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh); opacity: 0; }
  10% { opacity: 1; } 90% { opacity: 1; }
  100% { transform: translateY(-10vh); opacity: 0; }
}

.hero-orb { position: absolute; border-radius: 50%; filter: blur(60px); z-index: 0; }
.hero-orb-1 {
  width: 350px; height: 350px; top: 8%; right: -8%;
  background: rgba(185, 140, 68, 0.04); animation: orbDrift1 18s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 250px; height: 250px; bottom: 18%; left: -5%;
  background: rgba(185, 140, 68, 0.03); animation: orbDrift2 22s ease-in-out infinite alternate;
}
@keyframes orbDrift1 { 0% { transform: translate(0,0); } 100% { transform: translate(-50px, 35px); } }
@keyframes orbDrift2 { 0% { transform: translate(0,0); } 100% { transform: translate(35px, -25px); } }

.hero-content { position: relative; z-index: 1; padding: 0 32px; max-width: 860px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px; margin-bottom: 40px;
  background: rgba(14, 30, 45, 0.5); border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 40px; animation: fadeInDown 0.9s var(--ease-out) 0.2s both;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 8px var(--gold-dim); animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse { 0%,100% { box-shadow: 0 0 6px var(--gold-dim); } 50% { box-shadow: 0 0 14px var(--gold-glow-strong); } }
.hero-badge span { font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: translateY(0); } }

.hero-title {
  font-family: var(--ff-heading); font-size: clamp(40px, 6.5vw, 64px);
  font-weight: 400; line-height: 1.12; letter-spacing: -0.01em;
  color: var(--cream); margin-bottom: 24px;
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: 6px; }
.hero-title .line span { display: inline-block; animation: heroSlide 1.1s var(--ease-out) both; }
.hero-title .line:nth-child(1) span { animation-delay: 0.4s; }
.hero-title .line:nth-child(2) span { animation-delay: 0.6s; }
.hero-title .gold-em { color: var(--gold); font-style: italic; }
@keyframes heroSlide { from { transform: translateY(110%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.hero-subtitle {
  font-size: 18px; font-weight: 300; line-height: 1.75;
  color: var(--text-light); max-width: 620px; margin: 0 auto 20px;
  animation: fadeInUp 1s var(--ease-out) 0.9s both;
}

.hero-supporting {
  font-family: var(--ff-heading); font-size: 17px; font-style: italic;
  color: var(--gold); margin-bottom: 40px; letter-spacing: 0.01em;
  animation: fadeInUp 1s var(--ease-out) 1.05s both;
}

@keyframes fadeInUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.hero-actions {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  animation: fadeInUp 1s var(--ease-out) 1.2s both;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 36px; background: var(--gold); color: var(--navy);
  font-size: 12px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  transition: all 0.5s var(--ease-out); position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0; background: var(--gold-bright);
  transform: translateX(-100%); transition: transform 0.5s var(--ease-out);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { box-shadow: 0 0 36px var(--gold-glow-strong); }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease-out); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border: 1px solid var(--glass-border);
  color: var(--text-light-dim); font-size: 12px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase;
  transition: all 0.4s var(--ease-out);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 1; animation: fadeInUp 1s var(--ease-out) 2s both;
}
.scroll-indicator span { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-light-dim); }
.scroll-line { width: 1px; height: 40px; background: rgba(185, 140, 68, 0.15); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--gold); animation: scrollPulse 2s var(--ease-smooth) infinite;
}
@keyframes scrollPulse { 0% { top: -100%; } 50% { top: 100%; } 100% { top: 100%; } }

/* ==================== TRUST STRIP ==================== */
.trust-strip {
  padding: 40px 0; background: var(--navy-light);
  border-top: 1px solid var(--rule-light); border-bottom: 1px solid var(--rule-light);
  position: relative; overflow: hidden;
}
.trust-strip::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(185, 140, 68, 0.02), transparent);
}
.trust-strip .container { position: relative; z-index: 1; }
.trust-top { display: flex; align-items: center; justify-content: center; gap: 24px; margin-bottom: 20px; }
.trust-years { font-family: var(--ff-heading); font-size: 22px; font-weight: 400; color: var(--gold); white-space: nowrap; }
.trust-divider { width: 1px; height: 22px; background: rgba(244, 240, 234, 0.15); }
.trust-fields { font-size: 15px; font-weight: 300; color: var(--text-light); letter-spacing: 0.5px; text-align:center; }
.trust-bottom { text-align: center; font-size: 14px; font-weight: 300; color: var(--text-light); letter-spacing: 0.5px; }
.trust-bottom strong { font-weight: 600; color: var(--cream); }

/* ==================== THE PROBLEM (light) ==================== */
.the-problem { padding: 140px 0; background: var(--cream); overflow: hidden; }
.problem-top { max-width: 700px; margin-bottom: 56px; }
.problem-top .section-heading { color: var(--text-dark); }
.problem-intro { font-size: 18px; font-weight: 300; line-height: 1.85; color: var(--text-body); }
.problem-intro strong { font-weight: 600; color: var(--text-dark); }
.problem-callout { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.problem-card {
  padding: 36px 28px; background: var(--navy); position: relative;
  box-shadow: 0 16px 48px rgba(10, 22, 32, 0.12); transition: all 0.4s var(--ease-out);
}
.problem-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold); opacity: 0; transition: opacity 0.4s var(--ease-out);
}
.problem-card:hover { transform: translateY(-4px); }
.problem-card:hover::before { opacity: 1; }
.problem-card-icon {
  width: 30px; height: 30px; border: 1px solid rgba(185, 140, 68, 0.25);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.problem-card-icon svg { width: 12px; height: 12px; stroke: var(--gold); }
.problem-card span { font-size: 15px; color: var(--text-light); font-weight: 300; line-height: 1.5; }
.problem-closing { font-family: var(--ff-heading); font-style: italic; font-size: 20px; color: var(--gold); line-height: 1.5; }

/* ==================== YOUR VALUE (dark) ==================== */
.your-value { padding: 140px 0; background: var(--navy); position: relative; overflow: hidden; }
.your-value::before {
  content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 100%;
  background: radial-gradient(ellipse at right center, rgba(185, 140, 68, 0.03) 0%, transparent 70%);
}
.value-content { max-width: 720px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.value-content .section-heading { color: var(--cream); }
.value-text { font-size: 18px; font-weight: 300; line-height: 1.85; color: var(--text-light); margin-bottom: 20px; }
.value-text strong { font-weight: 500; color: var(--cream); }
.value-role {
  margin-top: 40px; padding: 40px 48px;
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.value-role-label { font-family: var(--ff-heading); font-size: 19px; font-weight: 400; color: var(--cream); margin-bottom: 10px; }
.value-role p { font-size: 16px; font-weight: 300; color: var(--text-light); line-height: 1.75; }

/* ==================== HOW WE WORK (light) ==================== */
.how-we-work { padding: 140px 0; background: var(--cream); }
.how-header { max-width: 600px; margin-bottom: 72px; }
.how-header .section-heading { color: var(--text-dark); }
.how-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.how-card {
  padding: 48px 40px; background: var(--white);
  border: 1px solid rgba(10, 22, 32, 0.05);
  transition: all 0.5s var(--ease-out); position: relative; overflow: hidden;
}
.how-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.6s var(--ease-out);
}
.how-card:hover { box-shadow: 0 20px 60px rgba(10, 22, 32, 0.08); transform: translateY(-5px); }
.how-card:hover::after { transform: scaleX(1); }
.how-card-num { font-family: var(--ff-heading); font-size: 48px; font-weight: 400; color: var(--gold-muted); line-height: 1; margin-bottom: 20px; }
.how-card h3 { font-family: var(--ff-heading); font-size: 23px; font-weight: 400; color: var(--text-dark); margin-bottom: 14px; line-height: 1.3; }
.how-card p { font-size: 15px; font-weight: 300; color: var(--text-body); line-height: 1.75; }

/* ==================== WHO WE WORK WITH (dark) ==================== */
.who-we-work { padding: 140px 0; background: var(--navy); position: relative; overflow: hidden; }
.who-header { text-align: center; max-width: 600px; margin: 0 auto 72px; }
.who-header .section-heading { color: var(--cream); }
.who-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.who-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 44px 36px; transition: all 0.5s var(--ease-out);
  position: relative; overflow: hidden;
}
.who-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.5s var(--ease-out);
}
.who-card::after {
  content: ''; position: absolute; top: -80%; left: -80%;
  width: 260%; height: 260%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.5s var(--ease-out); pointer-events: none;
}
.who-card:hover {
  border-color: var(--glass-border-hover); transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25), 0 0 36px var(--gold-glow);
}
.who-card:hover::before { opacity: 1; }
.who-card:hover::after { opacity: 0.12; }
.who-card h3 { font-family: var(--ff-heading); font-size: 23px; font-weight: 400; color: var(--cream); margin-bottom: 14px; line-height: 1.3; }
.who-card p { font-size: 15px; font-weight: 300; color: var(--text-light); line-height: 1.75; }
.how-extra {
  margin-top: 40px; padding-top: 32px;
  border-top: 1px solid var(--rule-dark);
  font-family: var(--ff-heading); font-size: 17px; font-style: italic;
  color: var(--text-body); line-height: 1.6;
}

/* ==================== ADVISORY FIRST (light) ==================== */
.advisory-first { padding: 140px 0; background: var(--cream); }
.advisory-top { max-width: 700px; margin-bottom: 48px; }
.advisory-top .section-heading { color: var(--text-dark); }
.advisory-intro { font-size: 18px; font-weight: 300; line-height: 1.85; color: var(--text-body); margin-bottom: 20px; }
.advisory-focus {
  font-family: var(--ff-heading); font-size: 20px; font-style: italic;
  color: var(--text-dark); line-height: 1.6; padding-left: 24px;
  border-left: 2px solid var(--gold);
}
.advisory-focus strong { font-weight: 400; }
.advisory-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.advisory-point {
  padding: 32px 24px; background: var(--white);
  border: 1px solid rgba(10, 22, 32, 0.05);
  transition: all 0.4s var(--ease-out); text-align: center;
}
.advisory-point:hover { box-shadow: 0 12px 36px rgba(10, 22, 32, 0.06); transform: translateY(-4px); }
.advisory-point-icon {
  width: 40px; height: 40px; border: 1px solid var(--gold-muted);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; transition: all 0.4s var(--ease-out);
}
.advisory-point:hover .advisory-point-icon { border-color: var(--gold); background: var(--gold-muted); }
.advisory-point-icon svg { width: 16px; height: 16px; stroke: var(--gold); }
.advisory-point span { font-size: 16px; font-weight: 400; color: var(--text-dark); }
.advisory-outcome { font-family: var(--ff-heading); font-style: italic; font-size: 20px; color: var(--gold); line-height: 1.5; }

/* ==================== EXPERIENCE (dark) ==================== */
.experience { padding: 140px 0; background: var(--navy); position: relative; overflow: hidden; }
.experience::before {
  content: ''; position: absolute; bottom: -280px; left: 50%; transform: translateX(-50%);
  width: 650px; height: 650px; border-radius: 50%; border: 1px solid rgba(185, 140, 68, 0.03);
}
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.exp-left .section-heading { color: var(--cream); }
.exp-text { font-size: 17px; font-weight: 300; color: var(--text-light); line-height: 1.85; margin-bottom: 20px; }
.exp-points { display: flex; flex-direction: column; gap: 16px; }
.exp-point {
  display: flex; align-items: center; gap: 20px;
  padding: 24px 28px; background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s var(--ease-out);
}
.exp-point:hover {
  border-color: var(--glass-border-hover);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15), 0 0 18px var(--gold-glow);
  transform: translateX(8px);
}
.exp-point-icon {
  width: 36px; height: 36px; border: 1px solid rgba(185, 140, 68, 0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.4s var(--ease-out);
}
.exp-point:hover .exp-point-icon { border-color: var(--gold); box-shadow: 0 0 12px var(--gold-glow); }
.exp-point-icon svg { width: 15px; height: 15px; stroke: var(--gold); }
.exp-point span { font-size: 15px; font-weight: 400; color: var(--text-light); }
.exp-closing {
  grid-column: 1 / -1; text-align: center; margin-top: 48px;
  padding: 40px; background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.exp-closing p { font-family: var(--ff-heading); font-size: 20px; font-style: italic; color: var(--gold); line-height: 1.5; }

/* ==================== CONNECTING (light) ==================== */
.connecting { padding: 140px 0; background: var(--cream); }
.connecting-content { max-width: 800px; margin: 0 auto; text-align: center; }
.connecting-content .section-heading { color: var(--text-dark); }
.connecting-intro { font-size: 17px; font-weight: 300; line-height: 1.85; color: var(--text-body); margin-bottom: 48px; }
.connecting-visual { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: center; margin-bottom: 48px; }
.connecting-box { padding: 36px 28px; background: var(--white); border: 1px solid rgba(10, 22, 32, 0.06); box-shadow: 0 12px 40px rgba(10, 22, 32, 0.06); }
.connecting-box-label { font-family: var(--ff-body); font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.connecting-box h3 { font-family: var(--ff-heading); font-size: 22px; font-weight: 400; color: var(--text-dark); margin-bottom: 6px; }
.connecting-box p { font-size: 14px; font-weight: 300; color: var(--text-body); }
.connecting-bridge { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.connecting-bridge-icon { width: 48px; height: 48px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.connecting-bridge-icon svg { width: 20px; height: 20px; stroke: var(--gold); }
.connecting-bridge span { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.connecting-outcomes { display: flex; flex-direction: column; gap: 14px; max-width: 420px; margin: 0 auto; }
.connecting-outcome { display: flex; align-items: center; gap: 14px; font-size: 15px; font-weight: 300; color: var(--text-body); justify-content: center; }
.connecting-outcome svg { width: 16px; height: 16px; stroke: var(--gold); flex-shrink: 0; }

/* ==================== CTA / CONTACT (dark) ==================== */
.cta-section { padding: 140px 0; background: var(--navy); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(185, 140, 68, 0.03) 0%, transparent 60%); }
.cta-header { text-align: center; max-width: 640px; margin: 0 auto 64px; position: relative; z-index: 1; }
.cta-header .section-heading { color: var(--cream); }
.cta-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; position: relative; z-index: 1; }
.cta-scenarios { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.cta-intro { font-size: 16px; font-weight: 300; color: var(--text-light); margin-bottom: 16px; }
.cta-scenario { display: flex; align-items: center; gap: 14px; font-size: 15px; font-weight: 300; color: var(--text-light); }
.cta-scenario svg { width: 16px; height: 16px; stroke: var(--gold); flex-shrink: 0; }
.cta-closing { font-size: 16px; font-weight: 300; color: var(--text-light); line-height: 1.75; margin-bottom: 36px; }
.cta-direct { padding-top: 28px; border-top: 1px solid var(--rule-light); display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.cta-direct-item { display: flex; align-items: center; gap: 16px; }
.cta-direct-icon {
  width: 44px; height: 44px; background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.4s var(--ease-out);
}
.cta-direct-item:hover .cta-direct-icon { border-color: var(--gold); box-shadow: 0 0 16px var(--gold-glow); }
.cta-direct-icon svg { width: 18px; height: 18px; stroke: var(--gold); }
.cta-direct-item a { font-size: 15px; font-weight: 400; color: var(--text-light); transition: color 0.3s; }
.cta-direct-item a:hover { color: var(--gold); }
.btn-strategy {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 18px 36px; width: 100%; border: 1px solid var(--gold); color: var(--gold);
  font-size: 12px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  transition: all 0.5s var(--ease-out); position: relative; overflow: hidden;
}
.btn-strategy::before { content: ''; position: absolute; inset: 0; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease-out); z-index: 0; }
.btn-strategy:hover::before { transform: scaleX(1); }
.btn-strategy:hover { color: var(--navy); box-shadow: 0 0 36px var(--gold-glow-strong); }
.btn-strategy span, .btn-strategy svg { position: relative; z-index: 1; }
.btn-strategy svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease-out); }
.btn-strategy:hover svg { transform: translateX(4px); }

/* Form */
.cta-form-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 52px; position: relative; overflow: hidden;
}
.cta-form-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-dim), transparent); }
.cta-form-card::after { content: ''; position: absolute; top: -60%; right: -60%; width: 120%; height: 120%; background: radial-gradient(circle, var(--gold-glow) 0%, transparent 60%); opacity: 0.12; pointer-events: none; }
.form-title { font-family: var(--ff-heading); font-size: 24px; font-weight: 400; color: var(--cream); margin-bottom: 6px; position: relative; z-index: 1; }
.form-sub { font-size: 14px; font-weight: 300; color: var(--text-light-dim); margin-bottom: 36px; position: relative; z-index: 1; }
.form-group { margin-bottom: 24px; position: relative; z-index: 1; }
.form-group label { display: block; font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 9px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px; background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border); color: var(--cream);
  font-family: var(--ff-body); font-size: 15px; font-weight: 300;
  transition: all 0.3s var(--ease-out); outline: none; border-radius: 0; -webkit-appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light-dim); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); box-shadow: 0 0 18px var(--gold-glow); background: rgba(185, 140, 68, 0.03); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy); color: var(--cream); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-submit {
  width: 100%; padding: 17px; background: var(--gold); border: 1px solid var(--gold);
  color: var(--navy); font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  cursor: pointer; transition: all 0.5s var(--ease-out); position: relative; overflow: hidden; margin-top: 8px; z-index: 1;
}
.form-submit:hover { background: var(--gold-bright); box-shadow: 0 0 36px var(--gold-glow-strong); }

/* --- WPForms Horizon Branding Match --- */



/* Updated css */
/* =========================
   1. RESET CONTAINER
========================= */
.wpforms-container {
    margin: 0 !important;
    padding: 0 !important;
}

/* =========================
   2. REMOVE WPFORMS FLOAT SYSTEM (CRITICAL FIX)
========================= */
.wpforms-one-half,
.wpforms-first {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
}

/* =========================
   3. GRID LAYOUT (STABLE VERSION)
========================= */
.wpforms-field-container {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

/* =========================
   4. FIX HIDDEN / HONEYPOT FIELDS (PREVENT BREAKING GRID)
========================= */
.wpforms-field[style*="position: absolute"],
.wpforms-field[aria-hidden="true"] {
    display: none !important;
}

/* =========================
   5. ENSURE FIELDS STRETCH PROPERLY
========================= */
.wpforms-field {
    width: 100% !important;
    margin: 0 !important;
}

/* =========================
   6. FULL WIDTH FIELDS
========================= */
.wpforms-field-select,
.wpforms-field-textarea,
.wpforms-submit-container {
    grid-column: 1 / -1;
}

.wpforms-container .wpforms-field, .wp-core-ui div.wpforms-container .wpforms-field {
    padding: 2px 0 !important;
}

/* =========================
   7. INPUT / SELECT / TEXTAREA FIX
========================= */
.wpforms-field input, 
.wpforms-field textarea, 
.wpforms-field select {
    width: 100% !important;
    max-width: 100% !important; /* CRITICAL FIX */
    padding: 14px 18px !important;
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid var(--glass-border) !important;
    color: var(--cream) !important;
    font-family: var(--ff-body) !important;
    font-size: 15px !important;
    font-weight: 300 !important;
    border-radius: 0 !important;
    box-sizing: border-box !important; /* PREVENT OVERFLOW */
    transition: all 0.3s ease !important;
}

/* =========================
   PLACEHOLDER COLOR FIX
========================= */

/* Standard */
.wpforms-field input::placeholder,
.wpforms-field textarea::placeholder {
    color: rgba(255,255,255,0.5) !important;
    opacity: 0.7 !important; /* adjust visibility */
}

/* Chrome / Safari */
.wpforms-field input::-webkit-input-placeholder,
.wpforms-field textarea::-webkit-input-placeholder {
    color: rgba(255,255,255,0.5) !important;
}

/* Firefox */
.wpforms-field input::-moz-placeholder,
.wpforms-field textarea::-moz-placeholder {
    color: var(--cream) !important;
    opacity: 0.7 !important;
}

/* Internet Explorer */
.wpforms-field input:-ms-input-placeholder,
.wpforms-field textarea:-ms-input-placeholder {
    color: var(--cream) !important;
}

/* Edge */
.wpforms-field input::-ms-input-placeholder,
.wpforms-field textarea::-ms-input-placeholder {
    color: var(--cream) !important;
}

/* =========================
   8. LABEL STYLING
========================= */
.wpforms-field-label {
    display: block !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 2.5px !important;
    text-transform: uppercase !important;
    color: var(--gold) !important;
    margin-bottom: 9px !important;
}

div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-select-style-classic select { height:auto !important; padding:9px 18px !important;}

/* =========================
   9. FOCUS STATES
========================= */
.wpforms-field input:focus, 
.wpforms-field textarea:focus, 
.wpforms-field select:focus {
    outline: none !important;
    border-color: var(--gold) !important;
    box-shadow: 0 0 18px var(--gold-glow) !important;
    background: rgba(185, 140, 68, 0.03) !important;
}

/* =========================
   10. CUSTOM SELECT ARROW
========================= */
.wpforms-field select {
    appearance: none !important;
    -webkit-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23b98c44' stroke-width='2'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 18px center !important;
    cursor: pointer;
}

/* =========================
   11. SUBMIT BUTTON
========================= */
.wpforms-submit {
    width: 100% !important;
    padding: 17px !important;
    background: var(--gold) !important;
    border: 1px solid var(--gold) !important;
    color: var(--navy) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.5s ease !important;
    margin-top: 8px;
	height:auto !important;
}

.wpforms-submit:hover {
    background: var(--gold-bright) !important;
    box-shadow: 0 0 36px var(--gold-glow-strong) !important;
}

/* =========================
   12. RESPONSIVE (TABLET + MOBILE)
========================= */
@media (max-width: 768px) {
    .wpforms-field-container {
        grid-template-columns: 1fr;
    }

    .wpforms-field-select,
    .wpforms-field-textarea,
    .wpforms-submit-container {
        grid-column: 1 / -1;
    }
}
/* ==================== FOOTER ==================== */
.footer { padding: 44px 0; background: var(--navy); border-top: 1px solid var(--rule-light); }
.footer .container { display: flex; justify-content: space-between; align-items: center; }
.footer-left { display: flex; align-items: center; gap: 20px; }
.footer-logo img { height: 46px; width: 46px; border-radius: 4px; filter: drop-shadow(0 0 5px var(--gold-glow)); }
.footer-info { display: flex; flex-direction: column; gap: 2px; }
.footer-copy { font-size: 12px; font-weight: 300; color: var(--text-light-dim); }
.footer-tagline { font-size: 11px; font-weight: 400; color: var(--text-light-dim); letter-spacing: 1px; }
.footer-right { display: flex; align-items: center; gap: 28px; }
.footer-right a { font-size: 11px; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light-dim); transition: color 0.3s; }
.footer-right a:hover { color: var(--gold); }
.back-to-top { width: 40px; height: 40px; border: 1px solid rgba(185, 140, 68, 0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.4s var(--ease-out); cursor: pointer; }
.back-to-top:hover { border-color: var(--gold); box-shadow: 0 0 14px var(--gold-glow); }
.back-to-top svg { width: 16px; height: 16px; stroke: var(--gold); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .how-grid, .who-grid { gap: 16px; }
  .problem-callout { grid-template-columns: repeat(2, 1fr); }
  .advisory-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid, .cta-grid, .connecting-visual { gap: 48px; }
}

@media (max-width:950px){
	.nav-links { display: none; }
	.nav-links.active {
		display: flex; flex-direction: column;
		position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
		background: rgba(10, 22, 32, 0.98);
		backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
		justify-content: center; align-items: center;
		gap: 24px; z-index: 1001;
	 }
	 .nav-links.active a { font-size: 14px; letter-spacing: 3px; color: var(--text-light) !important; }
	 .mobile-toggle { display: flex; }
}

@media (max-height: 800px) {
  .hero { padding: 100px 0 80px; }
  .hero-badge { margin-bottom: 28px; }
  .hero-title { font-size: clamp(36px, 6vw, 64px); }
  .hero-subtitle { margin-bottom: 12px; }
  .hero-supporting { margin-bottom: 28px; }
  .scroll-indicator { display: none; }
}

@media (max-width:880px) {
	.cta-grid { grid-template-columns: 1fr;}
}
@media (max-height: 650px) {
  .hero { padding: 90px 0 60px; }
  .hero-badge { margin-bottom: 20px; padding: 6px 16px; }
  .hero-title { font-size: clamp(30px, 5.5vw, 52px); }
  .hero-subtitle { font-size: 16px; }
  .hero-supporting { margin-bottom: 22px; }
}
@media (max-width: 768px) {

  .hero-title { font-size: clamp(34px, 9vw, 52px); }
  .hero-actions { flex-direction: column; gap: 14px; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .problem-callout { grid-template-columns: 1fr; }
  .advisory-grid { grid-template-columns: 1fr 1fr; }
  .exp-grid, .cta-grid, .how-grid, .who-grid { grid-template-columns: 1fr; }
  .connecting-visual { grid-template-columns: 1fr; }
  .connecting-bridge { flex-direction: row; padding: 12px 0; }
  .trust-top { flex-direction: column; gap: 8px; }
  .trust-divider { width: 40px; height: 1px; }
  .how-card, .who-card { padding: 36px 28px; }
  .cta-form-card { padding: 36px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer .container { flex-direction: column; gap: 20px; text-align: center; }
  .footer-left { flex-direction: column; gap: 10px; }
  .footer-right { gap: 18px; }
  .scroll-indicator { display: none; }
  .hero-arc { width: 550px; height: 550px; bottom: -240px; }
  .connecting-bridge { justify-content:center;}
}
@media (max-width: 480px) {
	.nav-links a { letter-spacing:0; }
	.nav-links.active a { letter-spacing:0; }
  .container { padding: 0 20px; }
  .hero-title { font-size: clamp(28px, 10vw, 40px); }
  .section-heading { font-size: clamp(28px, 6vw, 40px); }
  .advisory-grid { grid-template-columns: 1fr; }
  .the-problem, .your-value, .how-we-work, .who-we-work,
  .advisory-first, .experience, .connecting, .cta-section { padding: 100px 0; }
	
	.cta-direct-icon {width:30px; height:30px;}
	.cta-direct-item {gap:10px;}
	.cta-direct-item a { font-size:12px;}
	.cta-form-card { padding: 30px 15px;}
	.btn-strategy { padding:18px 28px;}
	.btn-ghost, .btn-primary {
		padding:16px;
	}
}
