/* ===== Global Reset & Variables ===== */
/* Serhant: Montserrat headings | Hormozi: Poppins for authority | Inter for body */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Montserrat:wght@700;800;900&display=swap');

:root {
  --primary: #001A47;
  --primary-light: #1a3a6c;
  --primary-dark: #000d24;
  --font-heading: 'Montserrat', var(--font), sans-serif;
  --accent: #e67e22;
  --accent-hover: #cf6d17;
  --accent-light: #f5a623;
  --bg: #f8fafc;
  --bg-alt: #f1f5f9;
  --card-bg: #ffffff;
  --text: #1e293b;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --success: #16a34a;
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.04), 0 10px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.06), 0 20px 48px rgba(0,0,0,0.08);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --venmo: #008CFF;
  --cashapp: #00C853;
  --paypal: #0070E0;
  --airbnb: #FF385C;
  --facebook: #1877F2;
  --max-w: 1200px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: var(--font); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.15; }

/* Serhant: animated underline on nav links */
.nav-links a { position: relative; }
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px;
  background: var(--accent); transition: width 0.3s ease, left 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 60%; left: 20%; }

/* Serhant: property image hover zoom */
.property-img img, .property-img { transition: transform 0.5s ease; }
.property-card:hover .property-img { transform: scale(1.05); }

/* Hormozi: selection color */
::selection { background: var(--accent); color: #fff; }

/* ===== Language Toggle (v3 premium style) ===== */
.lang-toggle-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 14px; background: rgba(230,126,34,0.12);
  border: 1px solid rgba(230,126,34,0.3); border-radius: 50px;
  color: var(--accent-light); font-size: 0.78rem; font-weight: 700;
  cursor: pointer; transition: all 0.3s; font-family: var(--font);
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-left: 0.5rem; white-space: nowrap;
  text-decoration: none;
}
.lang-toggle-btn:hover {
  background: rgba(230,126,34,0.22); border-color: var(--accent);
  color: #fff;
}
.lang-toggle-btn svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.lang-toggle-label { display: none; }
@media (min-width: 900px) { .lang-toggle-label { display: inline; } }
@media (max-width: 768px) {
  .lang-toggle-btn { padding: 5px 10px; font-size: 0.72rem; margin-left: 0; margin-top: 0.5rem; }
}

/* ===== Focus States (A11y) ===== */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ===== Skip to Content ===== */
.skip-link {
  position: absolute; top: -60px; left: 1rem;
  background: var(--accent); color: #fff;
  padding: 0.6rem 1.25rem; border-radius: 0 0 8px 8px;
  z-index: 9999; font-weight: 600; font-size: 0.88rem;
  transition: top 0.3s;
}
.skip-link:focus { top: 0; }

/* ===== Trust Bar ===== */
.trust-bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  padding: 0.6rem 2rem;
  border-bottom: 2px solid var(--accent);
}
.trust-bar-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;
  font-size: 0.78rem; color: rgba(255,255,255,0.85); font-weight: 500;
}
.trust-bar-inner span { display: flex; align-items: center; gap: 0.4rem; white-space: nowrap; }
.trust-bar-inner .check {
  color: #4ade80; font-weight: 800; font-size: 0.9rem;
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(74, 222, 128, 0.15);
}

/* ===== Breadcrumbs ===== */
.breadcrumbs {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0.85rem 2rem;
  font-size: 0.8rem; color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  background: var(--card-bg);
}
.breadcrumbs a { color: var(--primary-light); font-weight: 500; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { margin: 0 0.5rem; opacity: 0.5; }

/* ===== Navigation ===== */
.navbar {
  background: var(--primary);
  padding: 0 2rem;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.2); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  height: 68px;
}
.nav-brand { display: flex; align-items: center; gap: 0.75rem; }
.nav-brand .logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #fff; font-weight: 900;
  letter-spacing: -0.5px;
  box-shadow: 0 2px 8px rgba(230,126,34,0.3);
}
.nav-brand h1 {
  color: #fff; font-size: 1.1rem; font-weight: 700;
  line-height: 1.15; letter-spacing: -0.2px;
}
.nav-brand small {
  display: block; color: rgba(255,255,255,0.45);
  font-size: 0.62rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  margin-top: 1px;
}
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.nav-links { display: flex; gap: 2px; }
.nav-links a {
  color: rgba(255,255,255,0.72);
  padding: 0.4rem 0.85rem; border-radius: var(--radius-xs);
  font-size: 0.84rem; font-weight: 500;
  transition: var(--transition); white-space: nowrap;
  letter-spacing: 0.1px;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-links a.active {
  color: #fff; background: rgba(255,255,255,0.12);
  font-weight: 600;
}
.nav-phone {
  display: flex; align-items: center; gap: 0.4rem;
  color: #fff; font-weight: 600; font-size: 0.84rem;
  margin-left: 0.75rem; white-space: nowrap;
  padding: 0.4rem 1rem; border-radius: 50px;
  background: var(--accent); transition: var(--transition);
}
.nav-phone:hover { background: var(--accent-hover); color: #fff; }
.hamburger {
  display: none; flex-direction: column; cursor: pointer; gap: 5px; padding: 6px;
  border-radius: 6px; transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,0.1); }
.hamburger span {
  width: 22px; height: 2.5px; background: #fff; border-radius: 3px;
  transition: var(--transition); transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 35%, var(--primary-light) 65%, #3b82f6 100%);
  color: #fff; padding: 5.5rem 2rem 5rem; text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(230,126,34,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(59,130,246,0.06) 0%, transparent 50%);
  animation: heroShimmer 20s ease-in-out infinite alternate;
}
@keyframes heroShimmer {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-2%, 1%) scale(1.02); }
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.hero h2 {
  font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 900; margin-bottom: 1rem;
  line-height: 1.08; letter-spacing: -1.5px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero p {
  font-size: 1.1rem; opacity: 0.88; margin-bottom: 2.25rem;
  line-height: 1.7; font-weight: 400;
  font-family: var(--font);
}
.hero-badges { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; }
.hero-badge {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.5rem 1.2rem; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600;
  transition: var(--transition);
}
.hero-badge:hover { background: rgba(255,255,255,0.18); }
.hero-stats {
  display: flex; gap: 3rem; justify-content: center; margin-top: 2.75rem; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-size: 2.25rem; font-weight: 900; display: block;
  letter-spacing: -1px; line-height: 1;
}
.hero-stat .label {
  font-size: 0.72rem; opacity: 0.6; text-transform: uppercase;
  letter-spacing: 1.5px; font-weight: 600; margin-top: 0.3rem;
}

/* ===== Section & Titles ===== */
.section { padding: 4.5rem 2rem; max-width: var(--max-w); margin: 0 auto; }
.section-alt { background: var(--bg-alt); }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem); color: var(--primary); margin-bottom: 0.4rem;
  font-weight: 800; letter-spacing: -0.5px;
}
.section-title p { color: var(--text-light); font-size: 1rem; font-weight: 400; }
.section-title .divider {
  width: 48px; height: 3px; background: var(--accent);
  margin: 0.85rem auto 0; border-radius: 2px;
}

/* ===== Payment Portal ===== */
.payment-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.payment-card {
  background: var(--card-bg); border-radius: var(--radius); padding: 1.75rem 1.5rem;
  text-align: center; box-shadow: var(--shadow); transition: var(--transition);
  border: 1px solid var(--border); position: relative; overflow: hidden;
}
.payment-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.payment-card.venmo::before { background: var(--venmo); }
.payment-card.cashapp::before { background: var(--cashapp); }
.payment-card.paypal::before { background: var(--paypal); }
.payment-card.check::before { background: var(--primary); }
.payment-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-6px);
  border-color: transparent;
}
.payment-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; font-size: 1.5rem; color: #fff;
  font-weight: 800;
}
.payment-card.venmo .payment-icon { background: linear-gradient(135deg, #008CFF, #00A6FF); }
.payment-card.cashapp .payment-icon { background: linear-gradient(135deg, #00C853, #69F0AE); }
.payment-card.paypal .payment-icon { background: linear-gradient(135deg, #0070E0, #003087); }
.payment-card.check .payment-icon { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.payment-card h3 {
  font-size: 1.05rem; margin-bottom: 0.25rem; color: var(--text);
  font-weight: 700; letter-spacing: -0.2px;
}
.payment-card .handle {
  font-size: 0.95rem; font-weight: 700; color: var(--primary);
  margin-bottom: 0.6rem; word-break: break-all;
  font-family: 'SF Mono', 'Consolas', monospace;
}
.payment-card .instructions {
  font-size: 0.82rem; color: var(--text-light); line-height: 1.55;
}
.payment-btn {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1rem; padding: 0.55rem 1.5rem;
  border-radius: 8px; color: #fff; font-weight: 600; font-size: 0.82rem;
  transition: var(--transition); cursor: pointer; border: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  letter-spacing: 0.2px;
}
.payment-card.venmo .payment-btn { background: var(--venmo); }
.payment-card.cashapp .payment-btn { background: var(--cashapp); }
.payment-card.paypal .payment-btn { background: var(--paypal); }
.payment-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
.check-address {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 0.85rem 1rem; margin-top: 0.6rem; font-size: 0.88rem;
  line-height: 1.6; text-align: left;
}

/* ===== Property Cards ===== */
.property-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 1.75rem; }
.property-card {
  background: var(--card-bg); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
  border: 1px solid var(--border);
}
.property-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-6px);
  border-color: transparent;
}
.property-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 3.5rem; position: relative;
}
.property-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px; background: linear-gradient(to top, rgba(0,0,0,0.25), transparent);
}
.property-badge {
  position: absolute; top: 0.85rem; right: 0.85rem; z-index: 2;
  background: var(--accent); color: #fff;
  padding: 0.25rem 0.65rem; border-radius: var(--radius-xs);
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.property-badge.airbnb-badge { background: var(--airbnb); }
.channel-badges {
  position: absolute; bottom: 0.85rem; left: 0.85rem; z-index: 2;
  display: flex; gap: 0.35rem;
}
.channel-badge {
  background: rgba(0,0,0,0.55); backdrop-filter: blur(6px);
  color: #fff; padding: 0.2rem 0.55rem; border-radius: 4px;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.3px;
}
.property-info { padding: 1.35rem 1.5rem 1.5rem; }
.property-info h3 {
  font-size: 1.1rem; color: var(--text); margin-bottom: 0.3rem;
  font-weight: 700; letter-spacing: -0.3px;
}
.property-info .location {
  color: var(--text-light); font-size: 0.82rem; margin-bottom: 0.6rem;
  display: flex; align-items: center; gap: 0.3rem;
}
.property-details {
  display: flex; gap: 1rem; margin-bottom: 0.6rem;
  font-size: 0.78rem; color: var(--text-muted); flex-wrap: wrap; font-weight: 500;
}
.property-details span { display: flex; align-items: center; gap: 0.2rem; }
.property-info .description {
  font-size: 0.86rem; color: var(--text-light); margin-bottom: 0.85rem; line-height: 1.55;
}
.property-info .price {
  font-size: 1.2rem; font-weight: 800; color: var(--accent); letter-spacing: -0.3px;
}
.property-info .price small {
  font-size: 0.75rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0;
}
.property-actions { display: flex; gap: 0.6rem; margin-top: 1rem; flex-wrap: wrap; }
.property-actions .btn { font-size: 0.78rem; padding: 0.45rem 1rem; }

/* ===== Star Rating ===== */
.stars { color: #facc15; font-size: 0.88rem; margin-bottom: 0.4rem; letter-spacing: 1px; }
.stars .count { color: var(--text-muted); font-size: 0.75rem; margin-left: 0.3rem; letter-spacing: 0; }
.review-snippet {
  background: var(--bg-alt); border-left: 3px solid var(--accent);
  padding: 0.7rem 1rem; margin-top: 0.85rem; border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  font-size: 0.8rem; color: var(--text-light); font-style: italic; line-height: 1.5;
}
.review-snippet .reviewer {
  font-style: normal; font-weight: 600; color: var(--text);
  margin-top: 0.35rem; display: block; font-size: 0.72rem;
  letter-spacing: 0.2px;
}

/* ===== Features Grid ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.25rem; }
.feature-card {
  background: var(--card-bg); padding: 2rem 1.5rem; border-radius: var(--radius);
  box-shadow: var(--shadow); text-align: center; transition: var(--transition);
  border: 1px solid var(--border);
}
.feature-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
  border-color: transparent;
}
.feature-card .icon {
  font-size: 2.25rem; margin-bottom: 0.85rem;
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(26,58,92,0.06), rgba(44,82,130,0.08));
}
.feature-card h3 {
  font-size: 1rem; color: var(--text); margin-bottom: 0.4rem;
  font-weight: 700; letter-spacing: -0.2px;
}
.feature-card p { color: var(--text-light); font-size: 0.84rem; line-height: 1.55; }

/* ===== FAQ Accordion (AEO) ===== */
.faq-section { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--card-bg); border-radius: var(--radius-sm);
  margin-bottom: 0.6rem; box-shadow: var(--shadow-xs); overflow: hidden;
  border: 1px solid var(--border); transition: var(--transition);
}
.faq-item:hover { border-color: #cbd5e1; }
.faq-item.open { border-color: var(--accent); box-shadow: var(--shadow); }
.faq-question {
  width: 100%; padding: 1.1rem 1.35rem; border: none; background: none;
  text-align: left; cursor: pointer; font-size: 0.92rem; font-weight: 600;
  color: var(--text); display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font); transition: var(--transition);
  gap: 1rem; line-height: 1.4;
}
.faq-question:hover { color: var(--primary); }
.faq-item.open .faq-question { color: var(--primary); }
.faq-question .arrow {
  transition: transform 0.3s; font-size: 0.65rem; color: var(--text-muted);
  flex-shrink: 0; width: 28px; height: 28px; display: flex;
  align-items: center; justify-content: center;
  background: var(--bg-alt); border-radius: 50%;
}
.faq-item.open .faq-question .arrow {
  transform: rotate(180deg); background: rgba(230,126,34,0.1); color: var(--accent);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.35rem;
}
.faq-item.open .faq-answer { max-height: 600px; padding: 0 1.35rem 1.25rem; }
.faq-answer p, .faq-answer li {
  color: var(--text-light); font-size: 0.88rem; line-height: 1.7;
}
.faq-answer ul { padding-left: 1.25rem; list-style: disc; margin-top: 0.5rem; }
.faq-answer li { margin-bottom: 0.3rem; }

/* ===== Calendly Embed ===== */
.calendly-section {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem; text-align: center;
  box-shadow: var(--shadow);
}
.calendly-section h3 {
  color: var(--text); margin-bottom: 0.4rem; font-size: 1.3rem; font-weight: 700;
}
.calendly-section p { color: var(--text-light); margin-bottom: 1.5rem; font-size: 0.92rem; }
.calendly-inline-widget { min-width: 280px; border-radius: var(--radius-sm); overflow: hidden; }
.calendly-placeholder {
  background: var(--bg-alt); border: 2px dashed var(--border); border-radius: var(--radius-sm);
  padding: 3rem 2rem; text-align: center;
}
.calendly-placeholder p { color: var(--text-muted); font-size: 0.88rem; }

/* ===== Facebook Feed ===== */
.social-feed-section {
  background: var(--card-bg); border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.social-feed-section h3 { color: var(--text); margin-bottom: 0.75rem; font-size: 1.15rem; font-weight: 700; }
.fb-feed-container { display: flex; justify-content: center; }

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(160deg, var(--primary-dark), var(--primary), var(--primary-light));
  color: #fff; text-align: center; padding: 5rem 2rem;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(230,126,34,0.12), transparent 60%);
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: 2rem; margin-bottom: 0.6rem; font-weight: 800; letter-spacing: -0.5px;
}
.cta-section p { opacity: 0.8; margin-bottom: 2rem; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.65rem 1.6rem; border-radius: 8px; font-weight: 600; font-size: 0.88rem;
  cursor: pointer; transition: var(--transition); border: 2px solid transparent;
  white-space: nowrap; letter-spacing: 0.1px;
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 2px 8px rgba(230,126,34,0.25);
}
.btn-primary:hover {
  background: var(--accent-hover); transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(230,126,34,0.3);
}
.btn-outline {
  border-color: rgba(255,255,255,0.4); color: #fff; background: transparent;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6);
}
.btn-outline-dark {
  border-color: var(--border); color: var(--text); background: transparent;
}
.btn-outline-dark:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-airbnb { background: var(--airbnb); color: #fff; box-shadow: 0 2px 8px rgba(255,56,92,0.25); }
.btn-airbnb:hover { background: #e0334f; transform: translateY(-2px); }
.btn-sm { padding: 0.4rem 0.9rem; font-size: 0.78rem; }

/* ===== Info Block ===== */
.info-block {
  background: var(--card-bg); border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow); margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
}
.info-block h3 {
  color: var(--text); margin-bottom: 0.85rem; font-size: 1.15rem;
  font-weight: 700; letter-spacing: -0.2px;
}
.info-block p, .info-block li {
  color: var(--text-light); font-size: 0.88rem; line-height: 1.75;
}
.info-block ul { padding-left: 1.25rem; list-style: disc; }
.info-block li { margin-bottom: 0.35rem; }

/* ===== Page Header ===== */
.page-header {
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 70%, var(--primary-light) 100%);
  color: #fff; padding: 4rem 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 60% 100%, rgba(230,126,34,0.08), transparent 60%);
}
.page-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px; background: linear-gradient(to top, var(--bg), transparent);
}
.page-header > * { position: relative; z-index: 1; }
.page-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 0.5rem;
  font-weight: 900; letter-spacing: -1px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.15);
}
.page-header p {
  opacity: 0.85; font-size: 1.05rem; max-width: 560px; margin: 0 auto;
  font-weight: 400;
}

/* ===== Amenity Tags ===== */
.amenities { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 0.75rem; }
.amenity-tag {
  background: var(--bg-alt); padding: 0.3rem 0.7rem; border-radius: 6px;
  font-size: 0.72rem; color: var(--text-light); font-weight: 600;
  border: 1px solid var(--border); letter-spacing: 0.2px;
}

/* ===== Social Links ===== */
.social-links { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.social-links a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.88rem;
  transition: var(--transition); font-weight: 700;
}
.social-links a:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }

/* ===== Footer ===== */
.footer {
  background: var(--primary-dark); color: rgba(255,255,255,0.55);
  padding: 3.5rem 2rem 1.5rem;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 2rem;
}
.footer h4 {
  color: #fff; margin-bottom: 0.85rem;
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.3px;
  text-transform: uppercase;
}
.footer p { font-size: 0.84rem; line-height: 1.6; }
.footer ul li { margin-bottom: 0.35rem; }
.footer ul a {
  color: rgba(255,255,255,0.55); transition: var(--transition); font-size: 0.84rem;
}
.footer ul a:hover { color: var(--accent); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06); text-align: center;
  font-size: 0.78rem;
}
.footer-legal {
  display: flex; gap: 1.25rem; justify-content: center; margin-top: 0.5rem; flex-wrap: wrap;
}
.footer-legal a { color: rgba(255,255,255,0.35); font-size: 0.75rem; }
.footer-legal a:hover { color: var(--accent); }

/* ===== Direct Save Banner (Airbnb) ===== */
.direct-save {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1px solid #86efac; border-radius: var(--radius);
  padding: 1.35rem 2rem; text-align: center;
  margin-bottom: 1.5rem;
}
.direct-save h3 { color: #166534; margin-bottom: 0.25rem; font-size: 1.05rem; font-weight: 700; }
.direct-save p { color: #15803d; font-size: 0.88rem; }

/* ===== Floating Button Stack (bottom-right) ===== */
.floating-stack {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 991;
  display: flex; flex-direction: column-reverse; gap: 0.6rem;
  align-items: center;
}

/* ===== Contrast Toggle ===== */
.contrast-toggle {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--card-bg); border: 2px solid var(--border);
  color: var(--primary); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; box-shadow: var(--shadow-md);
  padding: 0; font-family: var(--font);
}
.contrast-toggle:hover {
  border-color: var(--accent); background: var(--accent); color: #fff;
  transform: scale(1.08);
}
.contrast-toggle svg {
  width: 20px; height: 20px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.contrast-toggle .icon-on { display: none; }
body.high-contrast .contrast-toggle .icon-off { display: none; }
body.high-contrast .contrast-toggle .icon-on { display: block; }
body.high-contrast .contrast-toggle {
  background: var(--accent); border-color: var(--accent); color: #fff;
}

/* ===== Font Size Toggle ===== */
.fontsize-toggle {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--card-bg); border: 2px solid var(--border);
  color: var(--primary); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; box-shadow: var(--shadow-md);
  padding: 0; font-family: var(--font);
  font-size: 0.8rem; font-weight: 800; letter-spacing: -0.5px;
}
.fontsize-toggle:hover {
  border-color: var(--accent); background: var(--accent); color: #fff;
  transform: scale(1.08);
}

/* ===== Back to Top ===== */
.back-to-top {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; border: none;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--accent); transform: translateY(-3px); }

/* ===== Other Businesses / Cross-Promo ===== */
.biz-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.biz-card {
  background: var(--card-bg); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border); transition: var(--transition);
  display: flex; flex-direction: column;
}
.biz-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: transparent; }
.biz-header {
  padding: 1.75rem 1.5rem 1.25rem; position: relative;
}
.biz-header .biz-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff; margin-bottom: 0.85rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.biz-header h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); letter-spacing: -0.2px; margin-bottom: 0.15rem; }
.biz-header .biz-location { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
.biz-body { padding: 0 1.5rem; flex: 1; }
.biz-body p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 0.75rem; }
.biz-details { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.85rem; }
.biz-detail-tag {
  background: var(--bg-alt); padding: 0.3rem 0.65rem; border-radius: 6px;
  font-size: 0.7rem; color: var(--text-light); font-weight: 600;
  border: 1px solid var(--border);
}
.biz-footer {
  padding: 1rem 1.5rem 1.5rem; display: flex; gap: 0.6rem; flex-wrap: wrap;
}
.biz-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.72rem; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.5px;
  padding: 0.2rem 0; margin-bottom: 0.5rem;
}

/* ===== High Contrast Mode ===== */
body.high-contrast {
  --bg: #ffffff; --bg-alt: #f5f5f5; --card-bg: #ffffff;
  --text: #000000; --text-light: #1a1a1a; --text-muted: #333333;
  --primary: #00008B; --primary-light: #00008B; --primary-dark: #000050;
  --accent: #8B0000; --accent-hover: #6B0000;
  --border: #000000; --shadow: 0 0 0 1px #000;
}
body.high-contrast .navbar { background: #000; }
body.high-contrast .trust-bar { background: #000; border-bottom-color: #fff; }
body.high-contrast .trust-bar-inner { color: #fff; }
body.high-contrast .hero { background: #000; }
body.high-contrast .cta-section { background: #000; }
body.high-contrast .footer { background: #000; }
body.high-contrast .page-header { background: #000; }
body.high-contrast .payment-card, body.high-contrast .property-card,
body.high-contrast .feature-card, body.high-contrast .faq-item,
body.high-contrast .info-block { border: 2px solid #000; }
body.high-contrast a { text-decoration: underline; }
body.high-contrast .nav-links a { text-decoration: none; }
body.high-contrast .btn { border-width: 2px; }

/* ===== Reduce Motion ===== */
body.reduce-motion *, body.reduce-motion *::before, body.reduce-motion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}
body.reduce-motion .fade-in { opacity: 1; transform: none; }
body.reduce-motion .hero::before { animation: none; }

/* ===== Link Highlighting ===== */
body.highlight-links a {
  outline: 2px solid var(--accent) !important;
  outline-offset: 2px !important;
  text-decoration: underline !important;
}
body.highlight-links .nav-links a,
body.highlight-links .nav-brand,
body.highlight-links .social-links a { outline: none !important; }

/* ===== Reading Guide ===== */
.reading-guide {
  position: fixed; left: 0; right: 0;
  height: 40px; pointer-events: none; z-index: 9998;
  border-top: 2px solid rgba(230,126,34,0.5);
  border-bottom: 2px solid rgba(230,126,34,0.5);
  background: rgba(230,126,34,0.06);
  display: none;
}
body.reading-guide-active .reading-guide { display: block; }

/* ===== Floating A11y Button ===== */
.a11y-floating-btn {
  position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 991;
  width: 48px; height: 48px;
  background: var(--card-bg); border: 2px solid var(--border);
  border-radius: 50%; color: var(--primary);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; box-shadow: var(--shadow-md); padding: 0;
  font-family: var(--font);
}
.a11y-floating-btn:hover {
  border-color: var(--accent); background: var(--accent); color: #fff;
  transform: scale(1.08);
}
.a11y-floating-btn svg {
  width: 22px; height: 22px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ===== A11y Dialog ===== */
.a11y-dialog {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%; z-index: 9999;
  border: none; background: transparent; padding: 0;
  max-width: 100%; max-height: 100%;
}
.a11y-dialog::backdrop { background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); }
.a11y-dialog-inner {
  position: absolute; right: 0; top: 0;
  width: 400px; max-width: 100%; height: 100%;
  background: var(--bg); border-left: 1px solid var(--border);
  overflow-y: auto; padding: 2rem 1.5rem; color: var(--text);
}
.a11y-dialog-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.75rem;
}
.a11y-dialog-header h2 {
  font-family: var(--font); font-size: 1.25rem;
  font-weight: 800; color: var(--primary);
}
.a11y-dialog-close {
  width: 38px; height: 38px; background: transparent;
  border: 1px solid var(--border); color: var(--text-light);
  font-size: 1.3rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: all 0.3s; border-radius: 50%; font-family: var(--font);
}
.a11y-dialog-close:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.a11y-control-group {
  margin-bottom: 1.25rem; padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.a11y-control-group:last-child { border-bottom: none; }
.a11y-control-label {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.75rem; display: block;
}
.a11y-size-btns { display: flex; gap: 6px; flex-wrap: wrap; }
.a11y-size-btn {
  padding: 0.5rem 1rem; min-height: 44px; min-width: 44px;
  background: transparent; border: 1px solid var(--border);
  color: var(--text-light); font-family: var(--font);
  font-size: 0.8rem; font-weight: 600; cursor: pointer;
  transition: all 0.3s; border-radius: 8px;
}
.a11y-size-btn.active, .a11y-size-btn:hover {
  border-color: var(--accent); color: var(--accent);
  background: rgba(230,126,34,0.06);
}
.a11y-toggle-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 0;
}
.a11y-toggle-row span { font-size: 0.88rem; color: var(--text); font-weight: 500; }
.a11y-toggle {
  width: 50px; height: 28px; min-width: 50px;
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 14px; position: relative; cursor: pointer;
  transition: all 0.3s; padding: 0; font-family: var(--font);
}
.a11y-toggle::after {
  content: ''; position: absolute;
  width: 22px; height: 22px;
  background: var(--text-muted); border-radius: 50%;
  top: 2px; left: 2px; transition: all 0.3s;
}
.a11y-toggle[aria-checked="true"] {
  background: var(--accent); border-color: var(--accent);
}
.a11y-toggle[aria-checked="true"]::after {
  left: 24px; background: #fff;
}
.a11y-statement-block { margin-top: 0.5rem; }
.a11y-statement-block h3 {
  font-size: 0.95rem; font-weight: 700; color: var(--text);
  margin: 1rem 0 0.35rem;
}
.a11y-statement-block p {
  font-size: 0.82rem; color: var(--text-light); line-height: 1.65;
  margin-bottom: 0.5rem;
}
.a11y-statement-block ul { list-style: none; padding: 0; margin-bottom: 0.5rem; }
.a11y-statement-block li {
  position: relative; padding-left: 14px;
  font-size: 0.78rem; color: var(--text-light); line-height: 1.55;
  margin-bottom: 2px;
}
.a11y-statement-block li::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 4px; height: 4px; border: 1px solid var(--accent);
  transform: rotate(45deg);
}
.a11y-statement-block a { color: var(--accent); text-decoration: underline; }

/* Footer a11y button */
.a11y-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0.45rem 0.9rem; background: rgba(230,126,34,0.1);
  border: 1px solid rgba(230,126,34,0.25); border-radius: 50px;
  color: var(--accent); font-size: 0.75rem; font-weight: 700;
  cursor: pointer; transition: all 0.3s; font-family: var(--font);
}
.a11y-btn:hover { background: rgba(230,126,34,0.2); border-color: var(--accent); }
.a11y-btn svg { width: 14px; height: 14px; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .payment-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--primary-dark); flex-direction: column; padding: 0.75rem;
    gap: 2px; box-shadow: 0 12px 32px rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 1rem; border-radius: 8px; font-size: 0.9rem; }
  .hamburger { display: flex; }
  .nav-phone { display: none; }
  .hero h2 { font-size: 1.85rem; }
  .hero p { font-size: 0.95rem; }
  .hero-stats { gap: 1.75rem; }
  .hero-stat .num { font-size: 1.75rem; }
  .payment-grid { grid-template-columns: 1fr; }
  .property-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 1.25rem; }
  .section-title h2 { font-size: 1.55rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .trust-bar-inner { gap: 0.75rem; font-size: 0.7rem; }
  .cta-section { padding: 3.5rem 1.25rem; }
  .cta-section h2 { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .hero { padding: 3.5rem 1.25rem 3rem; }
  .hero h2 { font-size: 1.5rem; letter-spacing: -0.5px; }
  .hero-badges { gap: 0.4rem; }
  .hero-badge { font-size: 0.75rem; padding: 0.4rem 0.9rem; }
  .page-header { padding: 3rem 1.25rem; }
  .page-header h2 { font-size: 1.55rem; }
  .property-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .breadcrumbs { padding: 0.65rem 1.25rem; }
  .a11y-dialog-inner { width: 100%; }
  .a11y-floating-btn { width: 42px; height: 42px; bottom: 1rem; left: 1rem; }
  .floating-stack { bottom: 1rem; right: 1rem; }
  .contrast-toggle, .fontsize-toggle { width: 42px; height: 42px; }
  .back-to-top { width: 40px; height: 40px; }
}
