@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --navy: #111417;
  --navy-light: #1A2126;
  --slate: #7F949D;
  --slate-light: #A5B4BB;
  --slate-pale: #C5D0D5;
  --gold: #7F949D;
  --gold-hover: #90A4AD;
  --white: #FFFFFF;
  --off-white: #F7F9FA;
  --heading-light: #F5F7F8;
  --text-dark: #1A1A2E;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --max-width: 1200px;
  --section-pad: 96px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.section-pad {
  padding: var(--section-pad) 0;
}

.text-center {
  text-align: center;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--slate);
  max-width: 600px;
  line-height: 1.8;
}

.section-subtitle.centered {
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(127, 148, 157, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--slate-light);
  border: 1.5px solid var(--slate-light);
}

.btn-secondary:hover {
  background: rgba(165, 180, 187, 0.1);
  transform: translateY(-2px);
}

.btn-secondary-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-secondary-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: var(--navy);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 120px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links>a,
.nav-dropdown-toggle {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-light);
  transition: color 0.3s;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  letter-spacing: 0.2px;
}

.nav-links>a:hover,
.nav-dropdown-toggle:hover {
  color: var(--white);
}

.nav-links>a.active {
  color: var(--gold);
}

.nav-links>a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dropdown-arrow {
  font-size: 8px;
  transition: transform 0.3s;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  min-width: 220px;
  background: var(--navy-light);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 8px 8px;
  padding: 8px 0;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 400;
  color: var(--slate-light);
  transition: all 0.2s;
}

.nav-dropdown-menu a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.nav-portal-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.nav-portal-btn:hover {
  background: var(--gold-hover);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--slate-light);
  transition: all 0.3s;
}

/* ========== HOMEPAGE HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('hotel.png') center/cover no-repeat;
  opacity: 0.15;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(17, 20, 23, 0.95) 0%, rgba(17, 20, 23, 0.8) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 96px;
}

.hero-content {
  max-width: 720px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 600;
  color: var(--heading-light);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--slate-light);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 64px;
  flex-wrap: wrap;
}

.hero-stat {
  padding: 16px 24px;
  background: rgba(127, 148, 157, 0.15);
  border: 0.5px solid rgba(165, 180, 187, 0.3);
  border-radius: 4px;
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
}

.hero-stat-label {
  font-size: 12px;
  color: var(--slate-light);
  letter-spacing: 0.3px;
  margin-top: 4px;
}

/* ========== BRAND TRUST BAR ========== */
.brand-trust {
  background: var(--off-white);
  border-top: 0.5px solid var(--slate-pale);
  border-bottom: 0.5px solid var(--slate-pale);
  padding: 48px 0;
}

.brand-trust-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  text-align: center;
  margin-bottom: 32px;
}

.brand-trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.brand-trust-logo {
  padding: 16px 32px;
  background: rgba(197, 208, 213, 0.4);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
}

/* ========== ABOUT SECTION ========== */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--text-dark);
}

.about-values {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.about-value {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--off-white);
  border: 0.5px solid var(--slate-pale);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
}

.about-value-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  font-size: 18px;
}

.about-value h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.about-value p {
  font-size: 14px;
  color: var(--text-dark);
  margin: 0;
}

.about-image-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.about-image-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 8px;
}

.about-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(transparent, rgba(17, 20, 23, 0.85));
  color: var(--white);
}

.about-image-overlay span {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
}

.about-image-overlay p {
  font-size: 14px;
  color: var(--slate-light);
  margin: 0;
}

/* ========== FOUNDER SPOTLIGHT ========== */
.founder {
  background: var(--navy);
}

.founder-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: center;
}

.founder-photo {
  position: relative;
}

.founder-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  filter: grayscale(15%);
}

.founder-info .section-label {
  color: var(--slate);
}

.founder-info h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.founder-title {
  font-size: 14px;
  color: var(--slate-light);
  font-weight: 500;
  margin-bottom: 24px;
}

.founder-info p {
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--slate-light);
}

.founder-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.founder-badge {
  padding: 8px 16px;
  background: rgba(127, 148, 157, 0.15);
  border: 0.5px solid rgba(165, 180, 187, 0.25);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-light);
}

.founder-cta {
  margin-top: 32px;
}

/* ========== FEATURED INVESTMENT ========== */
.investment {
  background: var(--off-white);
}

.investment-header {
  margin-bottom: 48px;
}

.investment-card {
  background: var(--white);
  border: 0.5px solid var(--slate-pale);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(17, 20, 23, 0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.investment-card-image {
  position: relative;
}

.investment-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.investment-status {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.investment-card-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.investment-card-content h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.investment-location {
  font-size: 14px;
  color: var(--slate);
  font-weight: 500;
  margin-bottom: 16px;
}

.investment-card-content>p {
  margin-bottom: 24px;
  font-size: 15px;
  color: var(--text-dark);
}

.investment-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.investment-metric {
  padding: 16px;
  background: var(--off-white);
  border: 0.5px solid var(--slate-pale);
  border-radius: 8px;
}

.investment-metric-value {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
}

.investment-metric-label {
  font-size: 12px;
  color: var(--slate);
  margin-top: 2px;
  font-weight: 500;
}

/* ========== WHY INVEST (homepage) ========== */
.why-invest {
  background: var(--navy);
}

.why-invest .section-label {
  color: var(--slate);
}

.why-invest .section-title {
  color: var(--white);
}

.why-invest .section-subtitle {
  color: var(--slate-light);
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  padding: 32px 24px;
  background: rgba(127, 148, 157, 0.08);
  border: 0.5px solid rgba(165, 180, 187, 0.2);
  border-radius: 8px;
  transition: all 0.4s;
}

.why-card:hover {
  background: rgba(127, 148, 157, 0.14);
  transform: translateY(-4px);
}

.why-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(127, 148, 157, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 18px;
}

.why-card h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.7;
}

/* ========== INVESTOR MODEL ========== */
.investor-model {
  background: var(--white);
}

.model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.model-card {
  padding: 40px;
  background: var(--white);
  border-radius: 8px;
  border: 0.5px solid var(--slate-pale);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.model-card:hover {
  box-shadow: 0 2px 16px rgba(17, 20, 23, 0.08);
  transform: translateY(-2px);
}

.model-card.featured {
  border: 2px solid var(--gold);
}

.model-card-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--navy);
  color: var(--white);
  padding: 6px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0 8px 0 8px;
}

.model-card.featured .model-card-badge {
  background: var(--gold);
  color: var(--white);
}

.model-card h4 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}

.model-card-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 0.5px solid var(--slate-pale);
  font-size: 15px;
}

.model-card-row:last-child {
  border: none;
}

.model-card-row span:first-child {
  color: var(--slate);
}

.model-card-row span:last-child {
  font-weight: 600;
  color: var(--navy);
}

.model-card-row .highlight {
  color: var(--gold);
}

/* ========== MARKET TEASER ========== */
.market-teaser {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

.market-teaser-bg {
  position: absolute;
  inset: 0;
  background: url('columbus.png') center/cover no-repeat;
  opacity: 0.1;
}

.market-teaser .container {
  position: relative;
  z-index: 2;
}

.market-teaser .section-label {
  color: var(--slate);
}

.market-teaser .section-title {
  color: var(--white);
}

.market-teaser .section-subtitle {
  color: var(--slate-light);
}

.market-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0 40px;
}

.market-stat-pill {
  text-align: center;
  padding: 24px 16px;
  background: rgba(127, 148, 157, 0.12);
  border: 0.5px solid rgba(165, 180, 187, 0.2);
  border-radius: 8px;
}

.market-stat-pill .stat-value {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
}

.market-stat-pill .stat-label {
  font-size: 12px;
  color: var(--slate-light);
  margin-top: 4px;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: var(--navy);
  border-top: 0.5px solid rgba(165, 180, 187, 0.15);
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--slate-light);
  max-width: 500px;
  margin: 0 auto 32px;
  font-size: 16px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy);
  color: var(--slate);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 0.5px solid rgba(165, 180, 187, 0.2);
}

.footer-brand .nav-logo {
  color: var(--gold);
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  max-width: 300px;
  line-height: 1.8;
  color: var(--slate-light);
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--slate);
  transition: color 0.3s;
}

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

.footer-legal {
  padding-top: 32px;
}

.footer-disclaimer {
  font-size: 12px;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 24px;
}

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

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--slate);
  transition: color 0.3s;
}

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

.footer-copyright {
  font-size: 13px;
  color: var(--slate);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  :root {
    --section-pad: 72px;
  }

  .about-grid,
  .founder-grid,
  .market-stats {
    grid-template-columns: 1fr 1fr;
  }

  .investment-card {
    grid-template-columns: 1fr;
  }

  .why-cards {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .model-grid {
    grid-template-columns: 1fr;
  }

  .founder-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 56px;
  }

  .nav-links,
  .nav-portal-btn {
    display: none;
  }

  .nav-links.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 999;
  }

  .nav-links.active>a,
  .nav-links.active .nav-dropdown-toggle {
    font-size: 18px;
    color: var(--slate-light);
  }

  .nav-links.active .nav-dropdown-menu {
    position: static;
    display: block;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 8px 0 0;
    min-width: auto;
    text-align: center;
  }

  .nav-links.active .nav-portal-btn-mobile {
    display: inline-flex;
    margin-top: 16px;
    padding: 12px 32px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 500;
    border-radius: 4px;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .why-cards {
    grid-template-columns: 1fr;
  }

  .investment-metrics {
    grid-template-columns: 1fr;
  }

  .market-stats {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    text-align: center;
    justify-content: center;
  }

  .brand-trust-logos {
    gap: 24px;
  }
}
/* ========================================= */
/* ENHANCEMENTS AND OVERRIDES */
/* ========================================= */

/* Mobile Nav Enhancements */
@media(max-width:1024px) {
  .nav-links {
    gap: 36px !important;
  }
  .nav-links.active .mobile-nav-logo {
    display: block !important;
  }
}

/* Hero Noise Texture */
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.03;
  pointer-events: none;
  background-image: url('data:image/svg+xml,%3Csvg viewBox=%220 0 200 200%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cfilter id=%22noiseFilter%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.65%22 numOctaves=%223%22 stitchTiles=%22stitch%22/%3E%3C/filter%3E%3Crect width=%22100%25%22 height=%22100%25%22 filter=%22url(%23noiseFilter)%22/%3E%3C/svg%3E');
}

/* Floating Geometric Element */
.hero-floating-element {
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(196,163,90,0.1), transparent);
  border: 1px solid rgba(196,163,90,0.15);
  transform: rotate(45deg);
  top: 10%;
  right: -5%;
  z-index: 1;
  animation: drift 20s infinite alternate ease-in-out;
  pointer-events: none;
}

@keyframes drift {
  0% { transform: rotate(45deg) translate(0, 0); }
  100% { transform: rotate(45deg) translate(-30px, 40px); }
}

/* Hover States Variety */
.hover-scale {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}
.hover-scale:hover {
  transform: scale(1.02) !important;
  box-shadow: 0 12px 24px rgba(17, 20, 23, 0.1) !important;
}

.hover-border {
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.hover-border:hover {
  border-color: var(--gold) !important;
  transform: translateY(0) !important;
}

.hover-bg-shift {
  transition: background-color 0.4s ease, transform 0.4s ease;
}
.hover-bg-shift:hover {
  background-color: var(--off-white) !important;
  transform: translateY(-4px) !important;
}

/* Grid for 4 Why Invest cards */
.why-cards-4 {
  grid-template-columns: repeat(2, 1fr) !important;
}
@media(max-width:768px){
  .why-cards-4 {
    grid-template-columns: 1fr !important;
  }
}

/* Contact Form Mobile Padding */
@media(max-width:768px){
  .form-input, .form-textarea, .form-select {
    padding: 16px 20px !important;
    font-size: 16px !important; /* Prevents iOS zoom */
  }
}

/* Professionals Section */
.professionals {
  background: var(--navy);
}

/* Parallax Divider */
.parallax-divider {
  min-height: 400px;
  background: url('columbus.png') center/cover no-repeat fixed;
}
@media(max-width:768px){
  .parallax-divider {
    background-attachment: scroll;
    min-height: 250px;
  }
}

