
/* ========== RESET & VARIABLES ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --remax-red: #DC2626;
  --remax-red-dark: #B91C1C;
  --remax-blue: #003DA5;
  --remax-blue-dark: #00296B;
  --remax-navy: #0A1628;
  --remax-navy-light: #111D32;
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --grey-50: #F9FAFB;
  --grey-100: #F3F4F6;
  --grey-200: #E5E7EB;
  --grey-300: #D1D5DB;
  --grey-400: #9CA3AF;
  --grey-500: #6B7280;
  --grey-600: #4B5563;
  --grey-700: #374151;
  --grey-800: #1F2937;
  --grey-900: #111827;
  --gold: #D4A843;
  --gold-light: #F5E6C4;
  --green: #059669;
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --max-w: 1330px;
  --section-pad: 75px;
  --section-pad1:75px;
  --muted:#9aa4b2;   --bg-1:#0d1322; --bg-2:#0b0f1b; --card:#11182a;
        --text:#eaf0ff; --muted:#9aa4b2; --primary:#dc1c2e;
        --accent:#7f64ff; --accent-2:#9a57ff; --radius:18px;
        --shadow-md:0 10px 30px rgba(0,0,0,.35);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--grey-800);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  padding-top: 72px;
      margin: 0;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse { 
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,38,38,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(220,38,38,0); }
}
@keyframes countUp { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.reveal { opacity: 1; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}
.navbar.scrolled { background: rgba(10, 22, 40, 0.98); }
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 40px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 500;
  letter-spacing: 0.01em; transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--remax-red); color: var(--white) !important;
  padding: 10px 24px; border-radius: 6px; font-weight: 700;
  font-size: 13px; letter-spacing: 0.03em; text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--remax-red-dark); transform: translateY(-1px); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.3s; }

/* ========== HERO ========== */
.hero {
  position: relative; min-height: 100vh;
  background: var(--remax-navy);
  display: flex; align-items: center;
  /*padding-top: 72px;*/
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(0,61,165,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(220,38,38,0.08) 0%, transparent 50%);
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; padding: 40px 0; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(220,38,38,0.12);
  border: 1px solid rgba(220,38,38,0.25);
  color: #FCA5A5;
  font-size: 14px; font-weight: 600;
  padding: 8px 20px; border-radius: 100px;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
  animation: fadeUp 0.8s ease both;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.08;
  color: var(--white);
  max-width: 800px;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.15s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 18px; line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 620px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease 0.3s both;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; animation: fadeUp 0.8s ease 0.45s both; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--remax-red); color: var(--white);
  padding: 16px 36px; border-radius: 8px;
  font-weight: 700; font-size: 15px;
  letter-spacing: 0.02em;
  transition: all 0.2s; border: none; cursor: pointer;
  animation: pulse 2.5s infinite;
}
.btn-primary:hover { background: var(--remax-red-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(220,38,38,0.3); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 16px 36px; border-radius: 8px;
  font-weight: 600; font-size: 15px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.2s; cursor: pointer;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

/* ========== SECTION: PROBLEM ========== */
.section-problem {
  background: var(--grey-900);
  padding: var(--section-pad) 0;
  position: relative;
}
.section-problem::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--remax-red), transparent);
}
.section-tag {
  display: inline-block;
  font-size: 16px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--remax-red);
  margin-bottom: 16px;
}
.section-problem h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--white);
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 20px;
}
.section-problem .lead {
  font-size: 18px; color: rgba(255,255,255,0.55);
  max-width: 680px; margin-bottom: 56px; line-height: 1.7;
}
.section-problem .lead strong { color: rgba(255,255,255,0.85); }
.problem-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.problem-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.problem-card:hover { border-color: rgba(220,38,38,0.3); transform: translateY(-4px); }
.problem-icon {
  width: 48px; height: 48px;
  background: rgba(220,38,38,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 22px;
}
.problem-card h3 { color: var(--white); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.problem-card p { color: rgba(255,255,255,0.45); font-size: 14px; line-height: 1.65; }
.problem-bottom {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.problem-bottom p {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--white);
}
.problem-bottom p span { color: var(--remax-red); }

/* ========== SECTION: SOLUTION ========== */
.section-solution {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.section-header-center { text-align: center; max-width: 1000px; margin: 0 auto 64px; }
.section-header-center .section-tag { color: var(--remax-blue); }
.section-header-center h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--grey-900);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-header-center p { font-size: 17px; color: var(--grey-500); line-height: 1.7; }

.solution-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.solution-col-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--grey-200);
}
.solution-col-header .col-num {
  width: 36px; height: 36px;
  background: var(--remax-blue);
  color: var(--white);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
}
.solution-col-header h3 { font-size: 20px; color: var(--grey-900); font-weight: 700; }

.solution-item { margin-bottom: 28px; }
.solution-item h4 {
  font-size: 16px; font-weight: 700; color: var(--grey-900);
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 8px;
}
.solution-item h4::before {
  content: ''; width: 6px; height: 6px;
  background: var(--remax-red);
  border-radius: 50%;
  flex-shrink: 0;
}
.solution-item p { font-size: 14px; color: var(--grey-500); line-height: 1.65; padding-left: 14px; }

.callout-box {
  background: linear-gradient(135deg, var(--remax-navy) 0%, var(--remax-blue-dark) 100%);
  border-radius: 16px;
  padding: 40px;
  color: var(--white);
  margin-bottom: 64px;
  position: relative;
  overflow: hidden;
}
.callout-box::before {
  content: '"'; position: absolute; top: -20px; right: 30px;
  font-family: var(--font-display); font-size: 200px;
  color: rgba(255,255,255,0.04);
}
.callout-box p {
  font-size: 18px; line-height: 1.7;
  position: relative; z-index: 1;
}
.callout-box p strong { color: var(--gold); }

/* Developer Logos */
.developer-logos {
  padding: 40px 0;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}
.developer-logos h4 {
  text-align: center;
  font-size: 25px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: black;
  margin-bottom: 24px;
}
.logo-marquee { overflow: hidden; position: relative; }
.logo-marquee::before, .logo-marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
.logo-marquee::before { left: 0; background: linear-gradient(90deg, var(--white), transparent); }
.logo-marquee::after { right: 0; background: linear-gradient(270deg, var(--white), transparent); }
.logo-track {
  display: flex; gap: 48px; align-items: center;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.logo-track .dev-logo {
  height: 36px; opacity: 0.35;
  filter: grayscale(100%);
  transition: all 0.3s;
  flex-shrink: 0;
}
.logo-track .dev-logo:hover { opacity: 0.8; filter: grayscale(0); }

/* ========== SECTION: ECONOMICS ========== */
.section-economics {
  padding: var(--section-pad) 0;
  background: var(--grey-50);
}
.econ-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.econ-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--grey-200);
}
.econ-card h3 {
  font-size: 22px; font-weight: 700; color: var(--grey-900);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--grey-100);
}
.econ-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--grey-100);
}
.econ-row:last-child { border-bottom: none; }
.econ-label { font-size: 14px; color: var(--grey-500); }
.econ-value { font-size: 16px; font-weight: 700; color: var(--grey-900); }
.econ-value.highlight { color: var(--remax-red); font-size: 18px; }

.income-streams { margin-bottom: 48px; }
.income-streams h3 {
  font-family: var(--font-display);
  font-size: 28px; color: var(--grey-900);
  margin-bottom: 32px;
}
.stream-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stream-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s;
}
.stream-card:hover { border-color: var(--remax-blue); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.stream-num {
  width: 40px; height: 40px;
  background: var(--remax-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
  margin: 0 auto 16px;
}
.stream-card h4 { font-size: 15px; color: var(--grey-900); margin-bottom: 8px; }
.stream-card .stream-amount {
  font-family: var(--font-display);
  font-size: 28px; color: var(--remax-red);
  margin-bottom: 8px;
}
.stream-card p { font-size: 13px; color: var(--grey-500); line-height: 1.5; }

.roi-box {
  background: var(--remax-navy);
  border-radius: 16px;
  padding: 48px;
  display: flex; align-items: center; gap: 48px;
  color: var(--white);
}
.roi-left { flex: 1; }
.roi-left h3 {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 16px;
}
.roi-left p { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.7; }
.roi-right {
  flex-shrink: 0;
  text-align: center;
  padding: 32px 40px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}
.roi-right .roi-arrow { font-size: 28px; margin: 8px 0; color: var(--gold); }
.roi-invest { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.roi-amount { font-family: var(--font-display); font-size: 36px; color: var(--gold); }
.roi-period { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 4px; }
.econ-disclaimer {
  text-align: center; margin-top: 32px;
  font-size: 12px; color: var(--grey-400);
  font-style: italic;
}

/* ========== SECTION: PROOF / TESTIMONIALS ========== */
.section-proof {
  padding: var(--section-pad1) 0;
  background: var(--white);
}
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--grey-50);
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid var(--grey-200);
  transition: all 0.3s;
}
.testimonial-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.06); transform: translateY(-4px); }
.testimonial-photo {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--grey-300);
  margin-bottom: 20px;
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--grey-400); text-align: center;
}
.testimonial-name { font-size: 16px; font-weight: 700; color: var(--grey-900); }
.testimonial-role { font-size: 13px; color: var(--grey-500); margin-bottom: 4px; }
.testimonial-before {
  font-size: 12px; color: var(--remax-blue);
  font-weight: 600; margin-bottom: 16px;
  padding: 4px 10px;
  background: rgba(0,61,165,0.06);
  border-radius: 4px;
  display: inline-block;
}
.testimonial-quote {
  font-size: 14px; color: var(--grey-600);
  line-height: 1.65; font-style: italic;
  margin-bottom: 20px;
}
.testimonial-stat {
  font-size: 14px; font-weight: 700;
  color: var(--green);
  padding-top: 16px;
  border-top: 1px solid var(--grey-200);
}
.placeholder-note {
  display: flex; align-items: center; gap: 8px;
  background: #FEF3C7; border: 1px dashed #D97706;
  color: #92400E; font-size: 13px;
  padding: 12px 16px; border-radius: 8px;
  margin-top: 8px;
}
.placeholder-note::before { content: '⚠️'; }

/* ========== SECTION: CITY REPORTS ========== */
.section-cities {
  padding: var(--section-pad) 0;
  background: var(--remax-navy);
  position: relative;
}
.section-cities h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 8px;
}
.section-cities .section-tag { color: var(--gold); }
.section-cities > .container > p { color: rgba(255,255,255,0.5); font-size: 16px; max-width: 600px; margin-bottom: 48px; }
.city-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 32px; }
.city-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s;
  cursor: pointer;
}
.city-card:hover { border-color: rgba(212,168,67,0.4); transform: translateY(-4px); background: rgba(255,255,255,0.06); }
.city-card h3 { color: var(--white); font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.city-stats { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.city-stat {
  font-size: 13px; color: rgba(255,255,255,0.5);
  display: flex; align-items: center; gap: 8px;
}
.city-stat::before {
  content: ''; width: 5px; height: 5px;
  background: var(--gold); border-radius: 50%;
  flex-shrink: 0;
}
.city-stat strong { color: rgba(255,255,255,0.85); }
.city-unlock {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); font-size: 14px; font-weight: 600;
  transition: gap 0.2s;
}
.city-card:hover .city-unlock { gap: 10px; }
.more-cities {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.more-city-tag {
  padding: 8px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}
.more-city-tag:hover { background: rgba(255,255,255,0.08); color: var(--white); }

/* ========== SECTION: FAQ ========== */
.section-faq {
  padding: var(--section-pad1) 0;
  background: var(--grey-50);
}
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--grey-300); }
.faq-question {
  padding: 24px 28px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-size: 16px; font-weight: 600; color: var(--grey-900);
}
.faq-question::after {
  content: '+';
  font-size: 24px; font-weight: 300;
  color: var(--grey-400);
  transition: transform 0.3s;
  flex-shrink: 0; margin-left: 16px;
}
.faq-item.active .faq-question::after { transform: rotate(45deg); color: var(--remax-red); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 15px; color: var(--grey-600);
  line-height: 1.7;
}

/* ========== SECTION: TERRITORY MAP ========== */
.section-territory {
  padding: var(--section-pad1) 0;
  background: var(--white);
}
.territory-content { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.india-map-wrap { position: relative; width: 100%; aspect-ratio: 1/1; }
.india-map-base {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}
.india-map {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  overflow: visible;
}
.india-map .city { cursor: pointer; }
.india-map .city circle.dot {
  fill: var(--green);
  stroke: #fff;
  stroke-width: 2.5;
  transition: fill 0.2s;
}
.india-map .city:hover circle.dot { fill: #047857; }
.india-map .city circle.pulse {
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
  opacity: 0;
  animation: mapPulse 2.4s ease-out infinite;
}
.india-map .city:nth-child(3n+1) circle.pulse { animation-delay: 0s; }
.india-map .city:nth-child(3n+2) circle.pulse { animation-delay: 0.8s; }
.india-map .city:nth-child(3n)   circle.pulse { animation-delay: 1.6s; }
@keyframes mapPulse {
  0%   { r: 9;  opacity: 0.65; }
  100% { r: 26; opacity: 0; }
}
.india-map-credit {
  position: absolute; bottom: 4px; right: 8px;
  font-size: 10px;
  color: var(--grey-400);
  letter-spacing: 0.02em;
}
.india-map-credit a { color: inherit; text-decoration: none; border-bottom: 1px dotted currentColor; }
.india-map-credit a:hover { color: var(--grey-600); }
#Eligibility-form.city-prefilled {
  animation: cityPrefillFlash 1.6s ease-out 1;
  border-radius: 10px;
}
@keyframes cityPrefillFlash {
  0%   { box-shadow: 0 0 0 0 rgba(220,38,38,0); }
  30%  { box-shadow: 0 0 0 6px rgba(220,38,38,0.35); }
  100% { box-shadow: 0 0 0 0 rgba(220,38,38,0); }
}
#map-tooltip {
  position: fixed;
  background: var(--remax-navy);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
  z-index: 9999;
  white-space: nowrap;
  line-height: 1.6;
}
#map-tooltip .tt-state   { display: block; font-size: 11px; font-weight: 400; opacity: 0.7; }
#map-tooltip .tt-offices { display: block; font-size: 11px; font-weight: 500; opacity: 0.85; color: #86efac; margin-top: 2px; }
.territory-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--grey-900);
  margin-bottom: 16px;
}
.territory-text > p { color: var(--grey-500); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.territory-stats { display: flex; gap: 32px; margin-bottom: 32px; }
.terr-stat { text-align: center; }
.terr-stat .num {
  font-family: var(--font-display);
  font-size: 36px; color: var(--remax-red);
}
.terr-stat .label { font-size: 12px; color: var(--grey-400); text-transform: uppercase; letter-spacing: 0.08em; }

/* ========== SECTION: FINAL CTA ========== */
.section-final-cta {
  padding: var(--section-pad) 0 120px;
  background: var(--remax-navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(220,38,38,0.1) 0%, transparent 60%);
}
.section-final-cta .container { position: relative; z-index: 2; }
.section-final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  color: var(--white);
  line-height: 1.12;
  max-width: 800px;
  margin: 0 auto 24px;
}
.section-final-cta h2 em { font-style: italic; color: var(--gold); }
.section-final-cta > .container > p {
  color: rgba(255,255,255,0.5);
  font-size: 17px; line-height: 1.7;
  max-width: 620px; margin: 0 auto 48px;
}
.final-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========== FORM SECTION ========== */
.section-form {
  padding: 80px 0 var(--section-pad);
  background: var(--grey-50);
}
.form-container {
  max-width: 640px; margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  border: 1px solid var(--grey-200);
}
.form-progress { display: flex; gap: 6px; margin-bottom: 32px; }
.form-progress-bar {
  flex: 1; height: 4px;
  background: var(--grey-200);
  border-radius: 2px;
  overflow: hidden;
}
.form-progress-bar.active { background: var(--remax-blue); }
.form-progress-bar.done { background: var(--green); }
.form-step-label {
  font-size: 12px; font-weight: 600;
  color: var(--grey-400);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 24px;
}
.form-question {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--grey-900);
  margin-bottom: 8px;
}
.form-subtext { font-size: 14px; color: var(--grey-500); margin-bottom: 32px; }
.form-options { display: flex; gap: 12px; }
.form-option {
  flex: 1; padding: 16px 24px;
  border: 2px solid var(--grey-200);
  border-radius: 10px;
  text-align: center;
  font-weight: 600; font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--grey-700);
}
.form-option:hover { border-color: var(--remax-blue); background: rgba(0,61,165,0.02); }
.form-option.selected {
  border-color: var(--remax-blue); background: rgba(0,61,165,0.06);
  color: var(--remax-blue);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--grey-900);
  color: rgba(255,255,255,0.5);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; }
.footer-brand img { height: 36px; margin-bottom: 8px;}
.footer h4 {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { font-size: 14px; transition: color 0.2s; }
.footer ul a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 12px; }
.footer-social { display: flex; gap: 16px;
    margin-top: 20px; }
.footer-social a {
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  font-size: 14px;
}
.footer-social a:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); }

/* ========== FLOATING CTA ========== */
.floating-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  display: flex; gap: 12px;
}
.float-btn {
  padding: 14px 28px; border-radius: 50px;
  font-weight: 700; font-size: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: all 0.2s; border: none; cursor: pointer;
}
.float-btn-red { background: var(--remax-red); color: var(--white); }
.float-btn-red:hover { background: var(--remax-red-dark); transform: translateY(-2px); }
.float-btn-green { background: #25D366; color: var(--white); border-radius: 50%; width: 56px; height: 56px; padding: 0; font-size: 24px; display: flex; align-items: center; justify-content: center; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .solution-columns { grid-template-columns: 1fr; }
  .econ-grid { grid-template-columns: 1fr; }
  .roi-box { flex-direction: column; text-align: center; }
  .territory-content { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
 .stats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:24px;margin-top:25px}
    .stat-card{ position:relative;background:linear-gradient(180deg,#0f1629 0%,#0b1120 100%);border:1px solid rgba(255,255,255,.06);border-radius:var(--radius); padding:16px;box-shadow:var(--shadow-md);overflow:hidden;isolation:isolate; transform:translateY(30px);display: flex;align-items: center;}
    .stat-card::after{ content:"";position:absolute;inset:auto -30% -40% -30%;height:120%; background:radial-gradient(500px 140px at 50% 100%,rgba(127,100,255,.15),transparent 60%); filter:blur(8px);z-index:-1 }
    .stat-top{width: 35px;display: inline;align-items:center;gap:12px;color:var(--primary);font-weight:800;font-size:clamp(28px,4vw,28px)}
    .stat-top img{width:30px;height:30px}
    .stat-label{color:var(--muted);margin:0 0 0 8px;font-weight:600;letter-spacing:.2px;font-size:14px;display: flex;flex-direction: column;}
    .parallax-wrap{position:absolute;inset:-20% -10% -20% -10%;pointer-events:none;z-index:0}
    .blob{ position:absolute; border-radius:50%; filter:blur(42px); width:clamp(200px,28vw,560px); aspect-ratio:1/1; opacity:.65; mix-blend-mode:screen; will-change:transform; background:radial-gradient(circle at 30% 30%,rgba(127,100,255,.65),rgba(30,45,140,.25) 60%,transparent 70%); }
    .blob.b1{ top:10%; left:8%; }
    .blob.b2{ bottom:6%; right:10%; background:radial-gradient(circle at 30% 30%,rgba(220,28,46,.55),rgba(120,20,35,.2) 60%,transparent 70%); }
    .blob.b3{ top:55%; left:48%; width:clamp(260px,34vw,640px); background:radial-gradient(circle at 30% 30%,rgba(122,109,255,.6),rgba(15,22,41,.2) 60%,transparent 70%); }
    .blob.follow{ width:clamp(160px,22vw,420px); filter:blur(36px); background:radial-gradient(circle at 40% 40%,rgba(151,127,255,.55),rgba(30,45,140,.18) 60%,transparent 70%); }
     .franchise-state{display: flex; width: 90%;margin-top: 25px;}
    .franchise-stat-images{width: 20%;display: flex;align-items: center;justify-content: flex-start;}
    .franchise-stat-images img{width: 60%;}
    @media (max-width:1024px){.stats{grid-template-columns:repeat(2,minmax(0,1fr))} .remaxeveryonesec1 {width: 100%;}.remaxsec2 {width: 100%;}}
        @media (max-width: 900px) {
        .franchise-state {width: 100%;}
        .franchise-stat-images {width: 25%;}
        .franchise-stat-images img {width: 100%;}
}
    
/*horizontal-scroll-section    */

.horizontal-scroll-section {padding-top: 7rem;overflow-x: hidden; background: var(--bg-2);}
.horizontal-scroll-section .section-title {color: var(--text);text-align: center;margin-bottom: 3rem;font-size: clamp(2rem, 4vw, 3rem);font-weight: 400;}
.pin-wrapper {display: flex;flex-direction: column;justify-content: center;}
.scroll-container {display: flex;flex-wrap: nowrap;width: max-content;padding-left: 34vw;gap: 4rem;height: 35vh;margin-top: 6rem;}
.Journeycta-row{margin-top: 100px;margin-bottom: 5rem;text-align: center;}
.pin-spacer{background: #0b0f1b;}
.horizontal-scroll-section-card {flex-shrink: 0;width: 450px;max-width: 80vw;background: #1a1f35;border: 1px solid rgba(255, 255, 255, 0.06);border-radius: 20px;padding: 2.5rem;margin-right: 2rem;box-shadow: var(--shadow-md);color: var(--muted);position: relative;}
.horizontal-scroll-section-card::before {content: attr(data-number);position: absolute;top: -50px;left: -40px;font-size: 125px;font-weight: 900;color: rgba(167, 139, 250, 0.15);line-height: 1;z-index: 0;}
.horizontal-scroll-section-card h3 {font-size: 1.4rem;font-weight: 700;color: var(--text);margin: 0 0 0.5rem 0;position: relative;z-index: 1;}
.horizontal-scroll-section-card .duration {font-size: 0.9rem;color: rgba(255, 255, 255, 0.5);margin-bottom: 1rem;display: block;}
.horizontal-scroll-section-card p {font-size: 1.5rem;line-height: 1.7;margin-bottom: 0;color: rgba(255, 255, 255, 0.8);position: relative;z-index: 1;}
.horizontal-scroll-section-card strong {font-size: 1rem;font-weight: 600;color: var(--primary);}
.imgmobview {display: none;}
 @media (max-width: 768px) {
  :root { --section-pad: 64px; }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  .hero-ctas { flex-direction: column; }
  .stats {grid-template-columns: repeat(1, minmax(0, 1fr));}
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .trust-strip { flex-direction: column; gap: 12px; }
  .trust-divider { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .stream-cards { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .steps-timeline { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-timeline::before { display: none; }
  .city-grid { grid-template-columns: 1fr; }
  .territory-stats { justify-content: space-evenly; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-container { padding: 32px 24px; }
  .floating-cta { bottom: 16px; right: 16px; }
  .remaxeveryonesec1 {width: 100%;}
  .remaxsec2 {width: 100%;}
  .remaxsec2text{width: 100%;display: flex;flex-direction: column;align-items: center;}
  .remaxsec2textline{width: 90%;font-size: 18px;}
  .remaxsec2video{width: 100%; justify-content: center;}
  .roi-right { padding: 31px 25%;}
    
  /* Horizontal scroll section on Mobile */
 .horizontal-scroll-section {padding: 2rem 1rem;}
 .pin-wrapper {height: auto !important; }
 .horizontal-scroll-section .section-title {margin-bottom: 2rem;font-size: clamp(1.5rem, 6vw, 2rem);}
 .scroll-container {flex-direction: column; width: 100%;padding-left: 0; height: auto; margin-top: 1rem;gap: 2rem; }
 .horizontal-scroll-section-card {width: 90%; max-width: 90%;margin: 0 auto; padding: 1.5rem; }
 .horizontal-scroll-section-card::before {font-size: 80px; top: -20px;left: -15px;}
 .horizontal-scroll-section-card h3 {font-size: 1.2rem; }
 .horizontal-scroll-section-card p {font-size: 1rem; line-height: 1.6;}
 .app-video-iframe {height: 80%;border: 0;top: 11%;border-radius: 14px;}
     .remaxagent-head {
        text-align: left;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 75px 5% 1rem 5%;
    }
     .remaxagent-head h3 {
        font-size: clamp(1.2rem, 6vw, 2rem);
    }
     .remaxagent-head p {
        font-size: clamp(0.7rem, 4vw, .7rem);
        margin-top: 0;
        text-align: start;
        width: 100%;
    }
    .imgdskview {display: none;} .imgdskview {display: block;}
}
.city-pills-container {
    margin-top: 50px;
    text-align: center;
}

.city-pill {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #4b5563;
}

.city-pill:hover {
    background: #003da5;
    color: #ffffff;
    border-color: #003da5;
    transform: scale(1.05);
}

/* --- Lead Modal & Form Styling --- */
.city-modal { 
    display: none; 
    position: fixed; 
    z-index: 10000; /* Higher than header */
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(15, 23, 42, 0.85); 
    backdrop-filter: blur(8px);
}

.modal-content { 
    background: #ffffff; 
    margin: 8% auto; 
    padding: 40px; 
    width: 90%; 
    max-width: 480px; 
    border-radius: 24px; 
    position: relative; 
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.close-modal { 
    position: absolute; 
    right: 25px; 
    top: 20px; 
    font-size: 30px; 
    color: #64748b;
    cursor: pointer; 
    transition: color 0.2s;
}

.close-modal:hover {
    color: #0f172a;
}

.modal-body h3 { 
    color: #0f172a; 
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px; 
    text-align: center; 
}

.modal-body p {
    text-align: center;
    color: #64748b;
    margin-bottom: 25px;
}

.city-modal input, 
.city-modal select {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    color: #0f172a;
    background: #f8fafc;
    transition: all 0.2s;
}

.city-modal input:focus, 
.city-modal select:focus { 
    border-color: #003da5; 
    background: #fff;
    outline: none; 
    box-shadow: 0 0 0 4px rgba(0, 61, 165, 0.1);
}

.btn-submit-report { 
    width: 100%; 
    padding: 16px; 
    background: #003da5; 
    color: #ffffff; 
    border: none; 
    border-radius: 12px; 
    font-weight: 700; 
    font-size: 16px;
    margin-top: 10px; 
    cursor: pointer; 
    transition: background 0.3s;
}

.btn-submit-report:hover {
    background: #002d7a;
}

.btn-submit-report i {
    margin-left: 8px;
}.city-modal input[readonly] {
    background-color: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
    color: #64748b !important;
    font-weight: 600;
    pointer-events: none; /* Prevents mobile keyboard from popping up */
}

/* Flex wrapper for City/State row in modal */
.city-modal div[style*="display: flex"] {
    margin-top: 5px;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1200px) {
    .city-module-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .city-module-grid { grid-template-columns: repeat(1, 1fr); }
    .city-opportunity-section { padding: 60px 0; }
    .modal-content { margin: 20% auto; padding: 30px; }
}
/* ========== REDESIGNED FORM SECTION ========== */
.form-section-remax {
  padding: var(--section-pad) 24px;
  background: var(--remax-navy);
  position: relative; overflow: hidden;
}
.form-section-remax::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(0,61,165,0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 30%, rgba(220,38,38,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.form-inner-wrap {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  position: relative; z-index: 2;
}
.form-left-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.1; color: var(--white);
  margin-bottom: 20px;
}
.form-left-heading sup { font-size: 55%; color: rgba(255,255,255,0.35); vertical-align: super; }
.form-left-heading em { font-style: italic; color: var(--gold); }
.form-left-sub {
  font-size: 16px; line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 480px; margin-bottom: 36px;
}
.form-tags-wrap { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.form-tag-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 500;
  transition: all .2s;
}
.form-tag-pill:hover { border-color: rgba(212,168,67,.4); color: var(--gold); }
.form-trust-row {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.07);
}
.form-trust-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--remax-red); flex-shrink: 0;
}
.form-trust-row span { font-size: 13px; color: rgba(255,255,255,0.42); }
.form-trust-row strong { color: rgba(255,255,255,0.8); font-weight: 600; }

.form-card-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px; padding: 40px 36px;
  position: relative; overflow: hidden;
}
.form-card-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--remax-blue), var(--remax-red));
}
.form-card-badge {
  display: inline-block;
  background: rgba(220,38,38,0.12);
  border: 1px solid rgba(220,38,38,0.25);
  color: #FCA5A5; font-size: 12px; font-weight: 600;
  padding: 5px 14px; border-radius: 100px;
  letter-spacing: .04em; margin-bottom: 12px;
}
.form-card-header h3 {
  font-family: var(--font-display);
  font-size: 22px; color: var(--white); font-weight: 400;
  margin-bottom: 5px;
}
.form-card-header p { font-size: 13px; color: rgba(255,255,255,0.38); margin-bottom: 28px; }
.form-fields { display: flex; flex-direction: column; gap: 14px; }
.form-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-card-wrap input,
.form-card-wrap select,
.form-card-wrap textarea {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--white); font-size: 14px; font-family: var(--font-body);
  transition: border-color .2s, background .2s, box-shadow .2s;
  outline: none; -webkit-appearance: none; appearance: none;
}
.form-card-wrap input::placeholder,
.form-card-wrap textarea::placeholder { color: rgba(255,255,255,0.28); }
.form-card-wrap select { color: rgba(255,255,255,0.55); }
.form-card-wrap select option { background: #0A1628; color: var(--white); }
.form-card-wrap input:focus,
.form-card-wrap select:focus,
.form-card-wrap textarea:focus {
  border-color: rgba(0,61,165,0.7);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(0,61,165,0.15);
}
.form-card-wrap textarea { resize: none; min-height: 78px; }
.form-submit-btn {
  width: 100%; padding: 16px;
  border-radius: 10px;
  background: var(--remax-red); color: var(--white);
  border: none; cursor: pointer; font-family: var(--font-body);
  font-size: 15px; font-weight: 700; letter-spacing: .02em;
  transition: background .2s, transform .15s;
}
.form-submit-btn:hover { background: var(--remax-red-dark); transform: translateY(-1px); }
.form-card-footer {
  margin-top: 16px; font-size: 12px;
  color: rgba(255,255,255,0.25);
  text-align: center; line-height: 1.6;
}
.section-solution,.section-economics {padding-bottom:0;}.section-proof {padding-bottom: 0;} .section-proof .Journeycta-row {margin-top: 60px;margin-bottom: 4rem;} .section-proof .btn-primary{animation: none;}
@media (max-width: 768px) {
  .form-inner-wrap { grid-template-columns: 1fr; gap: 40px; }
  .form-field-row { grid-template-columns: 1fr; }
  .form-card-wrap { padding: 28px 20px; }
  .problem-bottom p { font-size: 30px;}
  .section-header-center p {font-size: 15px;}
  .solution-columns { margin-bottom: 25px;}
  .developer-logos h4 {font-size: 19px;}.territory-content {gap: 3px;} .Journeycta-row { margin: 50px 0 20px 0;}.section-final-cta h2 {font-size: clamp(29px, 4.5vw, 56px);} .form-section-remax {padding-top: 30px;} .form-tags-wrap {display: none;}.section-final-cta {padding: var(--section-pad) 0 50px} 
}
/* ===== OFF-CANVAS MENU ===== */
@media (max-width: 768px) {

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;

    background: #0A1628;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;

    transform: translateX(100%);
    transition: transform 0.4s ease;

    z-index: 999;
  }

  .nav-links.mobile-open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
  }

  /* Prevent background scroll */
  body.menu-open {
    overflow: hidden;
  }
}

/* ===== HAMBURGER ===== */
.mobile-toggle {
  display: none;
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
    z-index: 1000;
    background: none;
    border: none;
    cursor: pointer;
  }

  .mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    margin: 6px 0;
    transition: 0.3s;
  }

  /* X Animation */
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}
.social-wrapper {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 15px;
}

.social-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 6%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text);
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icon .tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.social-icon:hover .tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 140%;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.facebook:hover { background: #3b5998; }
.social-icon.instagram:hover { background: #e1306c; }
.social-icon.envelope:hover { background: #aaaaaa; }
.social-icon.youtube:hover { background: #ff0000; }
.social-icon.linkedin:hover { background: #0077b5; }


.footer-disclaimer {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(234, 240, 255, 0.1);
    font-size: 0.8rem;
    line-height: 1.6;
}