/* ============================================================
   JFV HOMES – Real Estate Connector · styles.css
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: #1a1a2e;
  background-color: #f4f0eb;          /* warm sand — toda la página */
  background-image:
    radial-gradient(ellipse at 20% 10%, rgba(212,163,115,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(180,140,100,0.13) 0%, transparent 55%);
  min-height: 100vh;
  overflow-x: hidden;
}
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ---------- CSS VARIABLES ---------- */
:root {
  --gold:     #c9882a;
  --gold-lt:  #e8b060;
  --navy:     #0f2044;
  --navy-mid: #1a3566;
  --cream:    #f4f0eb;
  --warm1:    #fdf6ec;
  --warm2:    #f9ead8;
  --text:     #1a1a2e;
  --text-muted: #5a5a72;
  --white:    #ffffff;
  --shadow:   0 8px 32px rgba(15,32,68,0.10);
  --shadow-lg:0 20px 60px rgba(15,32,68,0.16);
  --radius:   18px;
  --radius-sm:10px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---------- TYPOGRAPHY ---------- */
h1,h2,h3,h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.15; }

/* ---------- UTILITIES ---------- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.accent       { color: var(--gold); }
.accent-warm  { color: var(--gold-lt); }
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,136,42,0.10);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-label.light { color: var(--gold-lt); background: rgba(232,176,96,0.15); }
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-title.light { color: var(--white); }
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin-bottom: 48px; }
.section-sub.light { color: rgba(255,255,255,0.75); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #a86e1a 100%);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(201,136,42,0.40);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(201,136,42,0.50);
}
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.20);
  transform: translateY(-3px);
}
.btn-link {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gold);
  display: inline-block;
  margin-top: 12px;
  letter-spacing: 0.02em;
  transition: var(--transition);
}
.btn-link:hover { letter-spacing: 0.06em; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15,32,68,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,136,42,0.20);
  animation: slideDown 0.6s ease both;
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  gap: 24px;
}

/* Logo */
.logo { display: flex; align-items: baseline; gap: 6px; }
.logo-jfv {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.logo-homes {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}
.logo-tag {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.50);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-left: 4px;
  display: none;
}
@media (min-width: 900px) { .logo-tag { display: inline; } }

/* Nav */
.nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
  padding: 7px 14px;
  border-radius: 50px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.10); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), #a86e1a);
  color: var(--white) !important;
  padding: 8px 20px;
  box-shadow: 0 4px 16px rgba(201,136,42,0.35);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,136,42,0.45); }

/* Mobile toggle placeholder — CSS only trick */
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav {
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(15,32,68,0.98);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  /* CSS-only "open" trick using :focus-within on header */
  .header:focus-within .nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-link { font-size: 1rem; padding: 12px 20px; width: 100%; text-align: center; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3566 55%, #0d2a5a 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
  gap: 48px;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201,136,42,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(201,136,42,0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Animated shapes */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  animation: floatShape 8s ease-in-out infinite;
}
.shape-1 {
  width: 420px; height: 420px;
  background: var(--gold);
  top: -100px; right: -80px;
  animation-delay: 0s;
}
.shape-2 {
  width: 260px; height: 260px;
  background: var(--gold-lt);
  bottom: 60px; left: -60px;
  animation-delay: 2.5s;
}
.shape-3 {
  width: 160px; height: 160px;
  background: var(--white);
  top: 40%; right: 30%;
  animation-delay: 5s;
}
@keyframes floatShape {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 600px;
  animation: fadeUp 0.9s 0.2s both;
}
.hero-image-wrap {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 480px;
  animation: fadeUp 0.9s 0.5s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,136,42,0.18);
  border: 1px solid rgba(201,136,42,0.35);
  color: var(--gold-lt);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 22px;
}
.hero-accent {
  color: var(--gold-lt);
  position: relative;
  display: inline-block;
}
.hero-accent::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  animation: lineGrow 1.2s 1.2s both;
}
@keyframes lineGrow {
  from { transform: scaleX(0); transform-origin: left; }
  to   { transform: scaleX(1); transform-origin: left; }
}

.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 4px; }
.stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.20); }

/* Hero image */
.hero-img-frame {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.40);
  border: 3px solid rgba(201,136,42,0.35);
  aspect-ratio: 4/3;
  animation: pulseFrame 4s ease-in-out infinite;
}
@keyframes pulseFrame {
  0%,100% { box-shadow: 0 32px 80px rgba(0,0,0,0.40), 0 0 0 0 rgba(201,136,42,0); }
  50%      { box-shadow: 0 32px 80px rgba(0,0,0,0.40), 0 0 0 8px rgba(201,136,42,0); }
}
.hero-img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s ease; }
.hero-img-frame:hover .hero-img { transform: scale(1.05); }
.img-badge {
  position: absolute;
  bottom: 18px; left: 18px;
  background: rgba(15,32,68,0.88);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(201,136,42,0.30);
}

@media (max-width: 900px) {
  .hero { flex-direction: column; padding-top: 100px; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-wrap { max-width: 100%; }
  .hero-content { max-width: 100%; }
}

/* ============================================================
   CONNECTOR SECTION
   ============================================================ */
.connector-section {
  padding: 100px 0;
  background: var(--warm1);
  position: relative;
  overflow: hidden;
}
.connector-section::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,136,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.connector-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 16px;
}
@media (max-width: 900px) { .connector-grid { grid-template-columns: 1fr; } }

.connector-visual { position: relative; }
.connector-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--transition);
}
.connector-img:hover { transform: scale(1.02); }
.connector-badge-wrap {
  position: absolute;
  bottom: -20px; right: -20px;
}
.connector-badge {
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  border: 2px solid rgba(201,136,42,0.30);
  animation: bounceIn 0.8s 0.6s both;
}
.cb-icon { font-size: 1.5rem; }
@keyframes bounceIn {
  0%   { transform: scale(0.5) translateY(30px); opacity: 0; }
  80%  { transform: scale(1.05) translateY(-5px); opacity: 1; }
  100% { transform: scale(1) translateY(0); }
}

.connector-intro {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.connector-intro strong { color: var(--navy); }

.connector-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .connector-cards { grid-template-columns: 1fr; } }

.c-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: 0 4px 16px rgba(15,32,68,0.07);
  border: 1px solid rgba(201,136,42,0.12);
  transition: var(--transition);
}
.c-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15,32,68,0.12);
  border-color: rgba(201,136,42,0.30);
}
.c-card-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.c-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; font-family: 'DM Sans', sans-serif; }
.c-card p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }

/* ============================================================
   OPPORTUNITIES
   ============================================================ */
.opportunities {
  padding: 100px 0;
  background: var(--cream);
}
.opp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .opp-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px)  { .opp-grid { grid-template-columns: 1fr; } }

.opp-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(201,136,42,0.10);
  animation: cardReveal 0.6s both;
}
@keyframes cardReveal {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.opp-card:nth-child(1) { animation-delay: 0.05s; }
.opp-card:nth-child(2) { animation-delay: 0.15s; }
.opp-card:nth-child(3) { animation-delay: 0.25s; }
.opp-card:nth-child(4) { animation-delay: 0.35s; }
.opp-card:nth-child(5) { animation-delay: 0.45s; }
.opp-card:nth-child(6) { animation-delay: 0.55s; }

.opp-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,136,42,0.30);
}
.featured-card {
  border: 2px solid var(--gold);
  box-shadow: 0 8px 32px rgba(201,136,42,0.18);
}

.opp-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.opp-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.opp-card:hover .opp-img-wrap img { transform: scale(1.08); }

.opp-tag {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 50px;
}
.opp-tag.hot {
  background: linear-gradient(135deg, #e55b1f, #c0392b);
  animation: pulseTag 2s ease-in-out infinite;
}
@keyframes pulseTag {
  0%,100% { box-shadow: 0 0 0 0 rgba(229,91,31,0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(229,91,31,0); }
}

.opp-body { padding: 22px; }
.opp-icon { font-size: 2rem; margin-bottom: 10px; }
.opp-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.opp-body p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   LOANS
   ============================================================ */
.loans {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0d2a5a 100%);
  position: relative;
  overflow: hidden;
}
.loans::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201,136,42,0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(201,136,42,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.loans-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  position: relative;
}
@media (max-width: 900px) { .loans-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .loans-grid { grid-template-columns: 1fr; } }

.loan-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 28px 24px;
  color: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.loan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(201,136,42,0.50), transparent);
  opacity: 0;
  transition: var(--transition);
}
.loan-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(201,136,42,0.40);
}
.loan-card:hover::before { opacity: 1; }

.highlight-loan {
  background: rgba(201,136,42,0.12);
  border-color: rgba(201,136,42,0.35);
}
.loan-icon { font-size: 2.4rem; margin-bottom: 14px; }
.loan-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
}
.loan-card p { font-size: 0.87rem; color: rgba(255,255,255,0.68); line-height: 1.65; margin-bottom: 16px; }
.loan-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.10);
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.20);
}
.loan-tag.warm {
  color: var(--gold-lt);
  background: rgba(201,136,42,0.15);
  border-color: rgba(201,136,42,0.35);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 100px 0;
  background: var(--warm2);
  position: relative;
  overflow: hidden;
}
.testimonials::after {
  content: '"';
  position: absolute;
  top: -30px; right: 5%;
  font-family: 'Playfair Display', serif;
  font-size: 22rem;
  font-weight: 900;
  color: rgba(201,136,42,0.06);
  line-height: 1;
  pointer-events: none;
}

.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 16px; }
@media (max-width: 700px) { .testi-grid { grid-template-columns: 1fr; } }

.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201,136,42,0.12);
  transition: var(--transition);
  position: relative;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.testi-featured {
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, #fffbf5 0%, #fff8ee 100%);
}

.testi-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 18px; }
.testi-text {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testi-avatar.warm { background: linear-gradient(135deg, var(--gold), #a86e1a); }
.testi-author strong { display: block; font-size: 0.95rem; color: var(--navy); }
.testi-author span  { font-size: 0.80rem; color: var(--text-muted); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 100px 0;
  background: var(--warm1);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  bottom: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,136,42,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } }

.contact-text p { font-size: 1rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 32px; }

.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201,136,42,0.12);
  transition: var(--transition);
  color: var(--text);
}
.contact-card:hover {
  transform: translateX(6px);
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(201,136,42,0.16);
}
.contact-card.no-link { cursor: default; }
.contact-card.no-link:hover { transform: none; }
.cc-icon { font-size: 1.8rem; flex-shrink: 0; }
.cc-label { display: block; font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px; }
.contact-card strong { font-size: 1rem; color: var(--navy); }

/* Contact image */
.contact-visual { position: relative; }
.contact-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 3px solid rgba(201,136,42,0.25);
  transition: transform var(--transition);
}
.contact-img:hover { transform: scale(1.02); }
.contact-img-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(15,32,68,0.90);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 50px;
  border: 1px solid rgba(201,136,42,0.35);
  display: flex;
  gap: 8px;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.75; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: 48px 0 32px;
  border-top: 1px solid rgba(201,136,42,0.20);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.footer-brand p { font-size: 0.78rem; color: rgba(255,255,255,0.40); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.12em; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.60);
  padding: 6px 12px;
  border-radius: 50px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.footer-copy { text-align: right; }
.footer-copy p { font-size: 0.78rem; color: rgba(255,255,255,0.40); line-height: 1.7; }

@media (max-width: 700px) {
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-copy { text-align: center; }
}

/* ============================================================
   GLOBAL SCROLL ANIMATION (CSS only — @keyframes on load)
   Sections fade in via animation when painted
   ============================================================ */
.connector-section,
.opportunities,
.loans,
.testimonials,
.contact {
  animation: sectionFade 0.8s ease both;
}
@keyframes sectionFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   FLOATING GOLD DOT DECORATION
   ============================================================ */
.opportunities::before,
.testimonials::before {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  top: 40px; left: 50%;
  animation: floatDot 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes floatDot {
  0%,100% { transform: translateY(0); opacity: 0.5; }
  50%      { transform: translateY(-12px); opacity: 1; }
}

/* ============================================================
   SCROLLBAR (webkit)
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }