/* ═══════════════════════════════════════════════════════
   TWIN LAKES AT FLOYDS FORK — style.css
   ═══════════════════════════════════════════════════════ */

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

:root {
  --navy:         #1B4B7A;
  --navy-dark:    #0f2d4a;
  --navy-mid:     #1a3f68;
  --navy-light:   #EEF3F8;
  --navy-soft:    #dce8f2;
  --gold:         #C9A84C;
  --gold-dark:    #8B6914;
  --gold-light:   #F5EDD6;
  --gold-border:  #dfc07a;
  --cream:        #FAF7F2;
  --cream-dark:   #F0EBE1;
  --cream-border: #DDD5C4;
  --text:         #12202e;
  --text-s:       #2c3e50;
  --text-m:       #5a6a7a;
  --white:        #ffffff;
  --bg-soft:      #F7F5F0;
  --green-dark:   #1a4a1a;
  --green-mid:    #2d6a2d;
  --green-light:  #e8f5e8;
  --red-dark:     #6b1a1a;
  --red-light:    #fdf0f0;
}

body { font-family: Georgia, 'Times New Roman', serif; font-size: 18px; color: var(--text); background: var(--white); line-height: 1.8; }

.script-font { font-family: 'Great Vibes', cursive; font-size: 1.35em; font-style: normal; color: var(--gold); }

/* ── NAV ── */
nav { background: var(--navy-dark); padding: 0 2.5rem; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; border-bottom: 2px solid var(--gold); }
.nav-brand { display: flex; align-items: center; padding: 10px 0; text-decoration: none; }
.nav-logo-img { height: 52px; width: auto; display: block; }
.nav-links { display: flex; align-items: stretch; }
.nav-links a { color: rgba(250,247,242,0.78); text-decoration: none; padding: 24px 20px; font-size: 14px; font-family: sans-serif; letter-spacing: 1.5px; text-transform: uppercase; transition: color 0.2s, background 0.2s; display: block; }
/* Top-level direct links (Home, Contact) center vertically to match dropdown buttons */
.nav-links > a { display: flex; align-items: center; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: rgba(201,168,76,0.08); }
.nav-links a.active { border-bottom: 2px solid var(--gold); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--cream); border-radius: 2px; }
/* ── NAV DROPDOWNS ── */
.nav-group { position: relative; }
.nav-group-label { color: rgba(250,247,242,0.78); background: none; border: none; cursor: pointer; padding: 24px 20px; font-size: 14px; font-family: sans-serif; letter-spacing: 1.5px; text-transform: uppercase; display: flex; align-items: center; gap: 6px; transition: color 0.2s, background 0.2s; }
.nav-group:hover .nav-group-label, .nav-group-label.active { color: var(--gold); background: rgba(201,168,76,0.08); }
.nav-caret { font-size: 9px; transition: transform 0.2s; }
.nav-group:hover .nav-caret { transform: rotate(180deg); }
.nav-dropdown { display: none; position: absolute; top: 100%; left: 0; min-width: 220px; background: var(--navy-dark); border: 1px solid rgba(201,168,76,0.2); border-top: 2px solid var(--gold); box-shadow: 0 10px 28px rgba(0,0,0,0.28); z-index: 101; }
.nav-group:hover .nav-dropdown { display: block; }
.nav-dropdown a { padding: 14px 22px; border-bottom: 1px solid rgba(201,168,76,0.08); white-space: nowrap; letter-spacing: 1px; }
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a.active { border-bottom: 1px solid rgba(201,168,76,0.08); }
.nav-links a.nav-portal { color: var(--navy-dark); background: var(--gold); border-radius: 3px; padding: 9px 18px; margin-left: 14px; align-self: center; font-weight: bold; }
.nav-links a.nav-portal:hover { background: var(--gold-border); color: var(--navy-dark); }

.page { display: none; } .page.active { display: block; }

/* ── HERO ── */
.hero-wrap { display: grid; grid-template-columns: 52% 48%; min-height: 580px; }
.hero-left { background: var(--navy-dark); padding: 88px 56px 88px 48px; display: flex; flex-direction: column; justify-content: center; position: relative; }
.hero-left::after { content: ''; position: absolute; right: 0; top: 12%; bottom: 12%; width: 1px; background: linear-gradient(to bottom, transparent, var(--gold), transparent); opacity: 0.3; }
.hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 36px; }
.hero-line { flex: 1; height: 1px; background: var(--gold); opacity: 0.4; max-width: 40px; }
.hero-eyebrow span { font-size: 11px; font-family: sans-serif; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.hero-left h1 { font-size: clamp(30px, 3.5vw, 48px); color: var(--cream); line-height: 1.2; font-weight: normal; margin-bottom: 8px; }
.hero-sub { display: block; font-size: clamp(16px, 1.8vw, 22px); color: rgba(250,247,242,0.6); font-style: italic; margin-bottom: 16px; }
.hero-left p { font-size: 17px; color: rgba(250,247,242,0.7); margin-bottom: 44px; font-style: italic; line-height: 1.8; max-width: 400px; padding-left: 20px; border-left: 2px solid rgba(201,168,76,0.35); }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-gold { background: var(--gold); color: var(--navy-dark); padding: 15px 32px; border-radius: 2px; font-family: sans-serif; font-weight: bold; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.15s; }
.btn-gold:hover { background: var(--gold-border); }
.btn-ghost { background: transparent; color: var(--cream); padding: 14px 32px; border-radius: 2px; font-family: sans-serif; font-weight: bold; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; border: 1px solid rgba(201,168,76,0.45); cursor: pointer; transition: background 0.2s; }
.btn-ghost:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); }
.hero-right { overflow: hidden; }
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; min-height: 480px; }

/* ── GOLD STRIP ── */
.gold-strip { background: var(--navy-dark); border-top: 1px solid rgba(201,168,76,0.2); border-bottom: 1px solid rgba(201,168,76,0.2); }
.gold-strip-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: center; padding: 0 2rem; }
.gs-item { display: flex; align-items: center; gap: 14px; padding: 28px 40px; flex: 1; justify-content: center; }
.gs-icon { width: 36px; height: 36px; flex-shrink: 0; }
.gs-icon svg { width: 36px; height: 36px; }
.gs-text strong { display: block; font-size: 15px; font-family: sans-serif; color: var(--cream); font-weight: 600; margin-bottom: 2px; }
.gs-text span { font-size: 13px; font-family: sans-serif; color: rgba(201,168,76,0.7); }
.gs-divider { width: 1px; height: 48px; background: rgba(201,168,76,0.2); flex-shrink: 0; }

/* ── SPLIT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; padding: 88px 2.5rem; max-width: 1100px; margin: 0 auto; }
.split-vis { background: var(--navy-light); border-radius: 4px; padding: 44px; display: flex; align-items: center; justify-content: center; min-height: 300px; border: 1px solid var(--navy-soft); }
.split-vis svg { width: 100%; height: auto; display: block; }
.split-text h2 { font-size: clamp(24px, 2.8vw, 34px); margin-bottom: 18px; line-height: 1.25; font-weight: normal; color: var(--navy); }
.split-text p { font-size: 17px; color: var(--text-s); line-height: 1.8; margin-bottom: 16px; }
.feature-list { list-style: none; margin-top: 22px; }
.feature-list li { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; font-size: 16px; color: var(--text-s); font-family: sans-serif; line-height: 1.6; }
.feat-diamond { width: 10px; height: 10px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; margin-top: 5px; }

/* ── SHARED ── */
.divider { height: 1px; background: var(--cream-border); max-width: 1100px; margin: 0 auto; }
section { padding: 80px 2.5rem; max-width: 1100px; margin: 0 auto; }
.page-header { padding-bottom: 24px; }
.sec-label { font-size: 11px; font-family: sans-serif; font-weight: bold; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 14px; }
.sec-title { font-size: clamp(26px, 3vw, 38px); color: var(--navy); margin-bottom: 14px; font-weight: normal; }
.sec-sub { font-size: 17px; color: var(--text-m); max-width: 580px; line-height: 1.8; }

/* ── CARDS ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 44px; }
.card { background: var(--white); border: 1px solid var(--cream-border); border-top: 3px solid var(--navy); border-radius: 2px; padding: 36px 28px; }
.card-num { font-size: 42px; font-family: Georgia, serif; color: var(--gold-border); line-height: 1; margin-bottom: 16px; opacity: 0.6; }
.card h3 { font-size: 20px; margin-bottom: 10px; color: var(--navy); font-weight: normal; }
.card p { font-size: 15px; color: var(--text-m); line-height: 1.7; }

/* ── CTA BAND ── */
.cta-band { background: var(--navy-dark); padding: 88px 2.5rem; text-align: center; border-top: 1px solid rgba(201,168,76,0.2); border-bottom: 1px solid rgba(201,168,76,0.2); }
.cta-logo-mark { width: 56px; height: 56px; border-radius: 50%; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; font-family: Georgia, serif; font-size: 20px; font-style: italic; color: var(--gold); }
.cta-band h2 { font-size: clamp(24px, 3vw, 36px); color: var(--cream); margin-bottom: 14px; font-weight: normal; }
.cta-band p { font-size: 17px; color: rgba(250,247,242,0.65); margin-bottom: 36px; font-style: italic; }

/* ── BOARD ── */
.board-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 40px; }
.board-card { background: var(--white); border: 1px solid var(--cream-border); border-radius: 2px; padding: 28px; display: flex; align-items: center; gap: 20px; transition: border-color 0.2s; }
.board-card:hover { border-color: var(--gold-border); }
.avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--navy-light); display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: bold; color: var(--navy); font-family: sans-serif; flex-shrink: 0; border: 2px solid var(--gold-border); }
.board-role { font-size: 11px; font-family: sans-serif; font-weight: bold; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 4px; }
.board-name { font-size: 19px; color: var(--navy); }
.board-note { margin-top: 40px; background: var(--navy-light); border-radius: 2px; padding: 28px; border: 1px solid var(--navy-soft); border-left: 3px solid var(--navy); font-family: sans-serif; font-size: 16px; color: var(--text-s); line-height: 1.7; }
.board-note a { color: var(--navy); font-weight: bold; }

/* ── COMMITTEES ── */
.committees-section { margin-top: 56px; padding-top: 48px; border-top: 1px solid var(--cream-border); }
.committees-coming-soon { display: flex; align-items: flex-start; gap: 20px; background: var(--gold-light); border: 1px solid var(--gold-border); border-left: 3px solid var(--gold); border-radius: 2px; padding: 28px; margin-top: 20px; }
.committees-icon { width: 48px; height: 48px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid var(--gold-border); }
.committees-icon svg { width: 22px; height: 22px; }
.committees-coming-soon h3 { font-size: 19px; color: var(--navy); font-weight: normal; margin-bottom: 8px; }
.committees-coming-soon p { font-size: 15px; color: var(--text-s); font-family: sans-serif; line-height: 1.7; }
.committees-coming-soon a { color: var(--navy); font-weight: bold; }

/* ── UPDATES — NOTICES ── */
.updates-bg { background: var(--bg-soft); }
.notices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-bottom: 56px; }

.notice-card { background: var(--white); border-radius: 4px; padding: 28px; border: 1px solid var(--cream-border); border-top: 4px solid var(--navy); }
.notice-card.notice-warning { border-top-color: #c0392b; }
.notice-card.notice-info    { border-top-color: var(--navy); }
.notice-card.notice-gold    { border-top-color: var(--gold); }

.notice-badge { display: inline-block; font-size: 11px; font-family: sans-serif; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; margin-bottom: 12px; background: var(--navy-light); color: var(--navy); }
.notice-warning .notice-badge { background: #fdf0f0; color: #c0392b; }
.notice-gold    .notice-badge { background: var(--gold-light); color: var(--gold-dark); }

.notice-card h3 { font-size: 18px; color: var(--navy); font-weight: normal; margin-bottom: 12px; }
.notice-card p  { font-size: 15px; color: var(--text-s); font-family: sans-serif; line-height: 1.7; }

.notice-detail { margin-top: 12px; }
.notice-detail-row { display: flex; gap: 12px; margin-bottom: 10px; font-family: sans-serif; font-size: 14px; line-height: 1.5; }
.nd-label { font-weight: 700; color: var(--navy); min-width: 120px; flex-shrink: 0; }

/* ── DOS & DONTS ── */
.dos-donts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.dos-header, .donts-header { display: flex; align-items: center; gap: 8px; font-size: 13px; font-family: sans-serif; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 8px 12px; border-radius: 2px; margin-bottom: 10px; }
.dos-header { background: var(--green-light); color: var(--green-dark); }
.dos-header svg { width: 14px; height: 14px; stroke: var(--green-dark); }
.donts-header { background: var(--red-light); color: var(--red-dark); }
.donts-header svg { width: 14px; height: 14px; stroke: var(--red-dark); }
.dos-col ul, .donts-col ul { list-style: none; }
.dos-col ul li, .donts-col ul li { font-size: 13px; font-family: sans-serif; color: var(--text-s); line-height: 1.5; margin-bottom: 8px; padding-left: 16px; position: relative; }
.dos-col ul li::before   { content: '✓'; position: absolute; left: 0; color: var(--green-mid); font-weight: bold; }
.donts-col ul li::before { content: '✕'; position: absolute; left: 0; color: var(--red-dark); font-weight: bold; }

/* ── SCHEDULE ── */
.schedule-section { margin-bottom: 56px; }
.schedule-header { margin-bottom: 24px; }
.schedule-title { font-size: clamp(22px, 2.5vw, 30px); color: var(--navy); font-weight: normal; margin-bottom: 8px; }
.schedule-sub { font-size: 15px; color: var(--text-m); font-family: sans-serif; }
table { width: 100%; border-collapse: collapse; font-family: sans-serif; }
th { background: var(--navy); color: var(--cream); padding: 15px 18px; text-align: left; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; }
th:first-child { border-radius: 2px 0 0 0; } th:last-child { border-radius: 0 2px 0 0; }
td { padding: 15px 18px; border-bottom: 1px solid var(--cream-border); font-size: 15px; color: var(--text-s); }
tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: var(--cream); }
.badge { display: inline-block; padding: 4px 12px; border-radius: 2px; font-size: 12px; font-weight: 600; font-family: sans-serif; letter-spacing: 0.5px; }
.badge-blue  { background: var(--navy-light); color: var(--navy); }
.badge-gold  { background: var(--gold-light); color: var(--gold-dark); }
.badge-muted { background: var(--cream-dark); color: var(--text-m); }
.table-note { font-size: 14px; color: var(--text-m); font-family: sans-serif; margin-top: 18px; }
.table-note a { color: var(--navy); }

/* ── LAWN CALENDAR ── */
.lawn-calendar { background: var(--white); border: 1px solid var(--cream-border); border-radius: 4px; padding: 40px; border-top: 4px solid var(--navy); }
.lawn-cal-header { margin-bottom: 32px; }
.lawn-cal-title { font-size: clamp(22px, 2.5vw, 30px); color: var(--navy); font-weight: normal; margin-bottom: 8px; }
.lawn-cal-sub { font-size: 15px; color: var(--text-m); font-family: sans-serif; }
.lawn-provider { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.provider-badge { font-size: 13px; font-family: sans-serif; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 6px 14px; border-radius: 2px; }
.provider-green { background: var(--green-light); color: var(--green-dark); border: 1px solid #b8dcb8; }
.provider-blue  { background: var(--navy-light); color: var(--navy); border: 1px solid var(--navy-soft); }
.provider-desc { font-size: 15px; font-family: sans-serif; color: var(--text-s); }
.lawn-table-wrap { overflow-x: auto; margin-bottom: 8px; }
.lawn-table { width: 100%; border-collapse: collapse; font-family: sans-serif; font-size: 13px; }
.lawn-table th { background: var(--navy-dark); color: var(--cream); padding: 12px 14px; text-align: center; font-size: 12px; font-weight: 600; letter-spacing: 0.5px; line-height: 1.4; border-right: 1px solid rgba(255,255,255,0.1); }
.lawn-table th span { display: block; font-size: 11px; opacity: 0.7; font-weight: 400; margin-top: 2px; }
.lawn-table td { padding: 12px 14px; border-bottom: 1px solid var(--cream-border); border-right: 1px solid var(--cream-border); font-size: 13px; color: var(--text-s); vertical-align: top; line-height: 1.5; }
.lawn-table td:last-child { border-right: none; }
.lawn-table tr:last-child td { border-bottom: none; }
.lawn-table tr:nth-child(even) td { background: var(--bg-soft); }
.lawn-check { color: var(--green-mid); font-weight: bold; margin-right: 4px; }
.lawn-special { display: inline-block; background: var(--gold-light); color: var(--gold-dark); padding: 2px 8px; border-radius: 2px; font-size: 12px; font-weight: 600; }
.lawn-table small { display: block; font-size: 11px; color: var(--text-m); margin-top: 2px; }

.lawn-mowing-card { display: flex; align-items: center; gap: 24px; background: var(--navy-light); border-radius: 4px; padding: 24px 28px; margin-top: 28px; border: 1px solid var(--navy-soft); border-left: 4px solid var(--navy); }
.mowing-num { font-size: 56px; font-weight: bold; color: var(--navy); font-family: sans-serif; line-height: 1; flex-shrink: 0; }
.mowing-info strong { display: block; font-size: 17px; color: var(--navy); margin-bottom: 6px; }
.mowing-info p { font-size: 14px; color: var(--text-s); font-family: sans-serif; line-height: 1.6; }

/* ── DOCUMENTS ── */
.docs-body { padding-top: 8px; }
.doc-section { margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--cream-border); }
.doc-section:last-of-type { border-bottom: none; }
.doc-section-header { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 28px; }
.doc-section-icon { width: 48px; height: 48px; background: var(--navy-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid var(--navy-soft); }
.doc-section-icon svg { width: 22px; height: 22px; }
.doc-section-header h2 { font-size: 22px; color: var(--navy); font-weight: normal; margin-bottom: 4px; }
.doc-section-header p  { font-size: 15px; color: var(--text-m); font-family: sans-serif; line-height: 1.6; }
.doc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 16px; }
.doc-card { background: var(--white); border: 1px solid var(--cream-border); border-radius: 2px; padding: 24px; display: flex; align-items: flex-start; gap: 18px; transition: border-color 0.2s; }
.doc-card:hover { border-color: var(--gold-border); }
.doc-card-featured { border-left: 3px solid var(--gold); background: var(--gold-light); }
.doc-icon { width: 44px; height: 44px; background: var(--navy-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid var(--navy-soft); }
.doc-card-featured .doc-icon { background: var(--white); }
.doc-icon svg { width: 20px; height: 20px; }
.doc-info { flex: 1; }
.doc-info h3 { font-size: 17px; color: var(--navy); margin-bottom: 6px; font-weight: normal; }
.doc-info p  { font-size: 14px; color: var(--text-m); font-family: sans-serif; line-height: 1.6; }
.doc-steps  { display: flex; align-items: center; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.doc-step   { font-size: 12px; font-family: sans-serif; font-weight: 600; color: var(--navy); background: var(--navy-light); padding: 4px 10px; border-radius: 2px; }
.doc-arrow  { font-size: 12px; color: var(--gold-dark); }
.doc-btn { display: inline-block; background: var(--navy); color: var(--cream); padding: 10px 18px; border-radius: 2px; font-family: sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; text-decoration: none; white-space: nowrap; flex-shrink: 0; align-self: center; transition: background 0.2s; }
.doc-btn:hover { background: var(--navy-mid); }
.doc-btn-gold { background: var(--gold); color: var(--navy-dark); }
.doc-btn-gold:hover { background: var(--gold-border); }
.arc-note { display: flex; align-items: flex-start; gap: 12px; margin-top: 16px; background: var(--navy-light); border-radius: 2px; padding: 16px 20px; border: 1px solid var(--navy-soft); border-left: 3px solid var(--navy); }
.arc-note p { font-size: 14px; font-family: sans-serif; color: var(--text-s); line-height: 1.6; }
.arc-note strong { color: var(--navy); }
.doc-missing { display: flex; align-items: flex-start; gap: 18px; background: var(--bg-soft); border-radius: 2px; padding: 28px; border: 1px dashed var(--cream-border); margin-top: 8px; }
.doc-missing-icon { width: 44px; height: 44px; background: var(--cream-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.doc-missing-icon svg { width: 20px; height: 20px; stroke: var(--gold-dark); }
.doc-missing h3 { font-size: 17px; color: var(--text-s); margin-bottom: 6px; font-weight: normal; }
.doc-missing p  { font-size: 14px; color: var(--text-m); font-family: sans-serif; line-height: 1.6; }
.doc-missing a  { color: var(--navy); }

/* ── COMMUNICATION FLOW ── */
.comm-flow { background: var(--navy-dark); border-radius: 4px; padding: 36px 40px; border: 1px solid rgba(201,168,76,0.2); }
.comm-flow .sec-label { color: var(--gold-border); }
.flow-wrap { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; margin-bottom: 24px; }
.flow-node { display: flex; flex-direction: column; align-items: center; text-align: center; min-width: 160px; }
.flow-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; flex-shrink: 0; }
.flow-residents .flow-icon { background: var(--navy-light); border: 2px solid var(--navy-soft); }
.flow-residents .flow-icon svg { stroke: var(--navy); }
.flow-manager .flow-icon, .flow-board .flow-icon { background: var(--navy-mid); border: 2px solid rgba(201,168,76,0.4); }
.flow-label { font-size: 16px; color: var(--cream); font-family: sans-serif; font-weight: 600; margin-bottom: 4px; }
.flow-sub { font-size: 12px; color: rgba(201,168,76,0.8); font-family: sans-serif; line-height: 1.4; }
.flow-arrow-wrap { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 0 16px; min-width: 80px; }
.flow-arrow-line { width: 60px; height: 2px; background: rgba(201,168,76,0.4); position: relative; }
.flow-arrow-line::after { content: ''; position: absolute; right: -6px; top: -4px; border-left: 8px solid rgba(201,168,76,0.4); border-top: 5px solid transparent; border-bottom: 5px solid transparent; }
.flow-arrow-double::before { content: ''; position: absolute; left: -6px; top: -4px; border-right: 8px solid rgba(201,168,76,0.4); border-top: 5px solid transparent; border-bottom: 5px solid transparent; }
.flow-arrow-label { font-size: 11px; color: rgba(250,247,242,0.5); font-family: sans-serif; text-align: center; letter-spacing: 0.5px; }
.flow-note { display: flex; align-items: flex-start; gap: 10px; background: rgba(201,168,76,0.08); border-radius: 2px; padding: 14px 18px; border: 1px solid rgba(201,168,76,0.2); }
.flow-note p { font-size: 14px; font-family: sans-serif; color: rgba(250,247,242,0.75); line-height: 1.6; }
.flow-note strong { color: var(--gold-border); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 0; }
.contact-person-card { display: flex; align-items: center; gap: 18px; background: var(--navy-dark); border-radius: 2px; padding: 24px; margin-bottom: 28px; border: 1px solid rgba(201,168,76,0.2); }
.contact-person-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--gold-light); border: 2px solid var(--gold-border); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: bold; color: var(--gold-dark); font-family: sans-serif; flex-shrink: 0; }
.contact-person-role    { font-size: 11px; font-family: sans-serif; font-weight: bold; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.contact-person-name    { font-size: 20px; color: var(--cream); margin-bottom: 2px; }
.contact-person-company { font-size: 14px; color: rgba(250,247,242,0.6); font-family: sans-serif; }
.contact-details { margin-bottom: 24px; }
.citem { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.citem-icon { width: 40px; height: 40px; background: var(--navy-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid var(--navy-soft); }
.citem-icon svg { width: 18px; height: 18px; }
.citem strong { display: block; font-size: 14px; font-family: sans-serif; font-weight: 600; margin-bottom: 3px; color: var(--navy); }
.citem span   { font-size: 15px; color: var(--text-m); font-family: sans-serif; line-height: 1.6; }
.citem a      { color: var(--navy); text-decoration: none; }
.citem a:hover { text-decoration: underline; }
.urgent-box { background: var(--gold-light); border-radius: 2px; padding: 20px 22px; border: 1px solid var(--gold-border); border-left: 3px solid var(--gold); font-family: sans-serif; font-size: 15px; color: var(--text-s); line-height: 1.6; margin-bottom: 16px; }
.urgent-box strong { display: block; margin-bottom: 4px; color: var(--gold-dark); }
.board-contact-note { background: var(--navy-light); border-radius: 2px; padding: 18px 20px; border: 1px solid var(--navy-soft); border-left: 3px solid var(--navy); font-family: sans-serif; font-size: 15px; color: var(--text-s); line-height: 1.6; margin-bottom: 16px; }
.board-contact-note strong { display: block; color: var(--navy); margin-bottom: 4px; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; }

/* ── FACEBOOK CARD ── */
.facebook-card { display: flex; align-items: flex-start; gap: 16px; background: var(--white); border: 1px solid var(--cream-border); border-radius: 2px; padding: 22px; margin-bottom: 16px; border-left: 3px solid #1B4B7A; }
.fb-icon { width: 40px; height: 40px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.fb-icon svg { width: 32px; height: 32px; }
.fb-info strong { display: block; font-size: 15px; font-family: sans-serif; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.fb-info p { font-size: 14px; color: var(--text-m); font-family: sans-serif; line-height: 1.6; margin-bottom: 12px; }
.fb-btn { display: inline-block; background: var(--navy); color: var(--cream); padding: 9px 18px; border-radius: 2px; font-size: 13px; font-family: sans-serif; font-weight: 700; text-decoration: none; letter-spacing: 0.5px; text-transform: uppercase; transition: background 0.2s; }
.fb-btn:hover { background: var(--navy-mid); }

/* ── ARC SHORTCUT ── */
.arc-shortcut { display: flex; align-items: flex-start; gap: 16px; background: var(--gold-light); border: 1px solid var(--gold-border); border-left: 3px solid var(--gold); border-radius: 2px; padding: 22px; }
.arc-sc-icon { width: 40px; height: 40px; flex-shrink: 0; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid var(--gold-border); }
.arc-sc-icon svg { width: 20px; height: 20px; }
.arc-shortcut strong { display: block; font-size: 15px; font-family: sans-serif; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.arc-shortcut p { font-size: 14px; color: var(--text-s); font-family: sans-serif; line-height: 1.6; margin-bottom: 12px; }
.arc-sc-btn { background: var(--navy); color: var(--cream); border: none; padding: 9px 18px; border-radius: 2px; font-size: 13px; font-family: sans-serif; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
.arc-sc-btn:hover { background: var(--navy-mid); }

/* ── FORM ── */
.form-card { background: var(--bg-soft); border: 1px solid var(--cream-border); border-radius: 2px; padding: 36px 30px; }
.form-card h3 { font-size: 22px; margin-bottom: 26px; color: var(--navy); font-weight: normal; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; font-family: sans-serif; font-weight: 700; margin-bottom: 7px; color: var(--text-s); letter-spacing: 1px; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--cream-border); border-radius: 2px; font-size: 15px; font-family: sans-serif; background: white; color: var(--text); transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { background: var(--navy); color: var(--cream); border: none; padding: 15px 24px; border-radius: 2px; font-size: 14px; font-family: sans-serif; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; width: 100%; transition: background 0.2s; }
.form-submit:hover { background: var(--navy-mid); }
.form-note { font-size: 13px; color: var(--text-m); font-family: sans-serif; margin-top: 10px; text-align: center; }
.success-msg { display: none; background: #e8f5ee; border: 1px solid #9FE1CB; border-radius: 2px; padding: 20px; text-align: center; font-family: sans-serif; color: #085041; font-size: 15px; margin-top: 16px; }
.success-msg strong { display: block; font-size: 16px; margin-bottom: 4px; }

/* ── FOOTER ── */
footer { background: var(--navy-dark); color: rgba(250,247,242,0.6); text-align: center; padding: 48px 2rem 36px; font-size: 14px; font-family: sans-serif; margin-top: 40px; border-top: 2px solid var(--gold); }
.footer-logo    { height: 56px; width: auto; display: block; margin: 0 auto 16px; opacity: 0.92; }
.footer-divider { width: 48px; height: 1px; background: var(--gold); margin: 16px auto; opacity: 0.5; }
.footer-tagline { font-style: italic; margin-top: 4px; opacity: 0.55; }
.footer-copy    { margin-top: 12px; font-size: 12px; opacity: 0.35; }

/* ── RESPONSIVE ── */
/* Switch nav to the hamburger menu earlier than the rest of the layout,
   since the full horizontal nav (incl. the Board Portal button) needs ~950px. */
@media (max-width: 960px) {
  nav               { position: relative; }
  .nav-links        { display: none; flex-direction: column; position: absolute; top: 74px; left: 0; right: 0; background: var(--navy-dark); border-top: 1px solid rgba(201,168,76,0.2); z-index: 99; }
  .nav-links.open   { display: flex; }
  .nav-links a      { padding: 18px 24px; border-bottom: 1px solid rgba(201,168,76,0.1); }
  .nav-links a.active { border-bottom: 1px solid rgba(201,168,76,0.1); }
  .nav-links a.nav-portal { margin: 0; border-radius: 0; text-align: center; padding: 18px 24px; display: block; align-self: stretch; }
  .nav-toggle       { display: flex; }
  .nav-group        { width: 100%; }
  .nav-group-label  { width: 100%; padding: 18px 24px; justify-content: space-between; border-bottom: 1px solid rgba(201,168,76,0.1); }
  .nav-group:hover .nav-dropdown { display: none; }
  .nav-group.open .nav-dropdown  { display: block; }
  .nav-group:hover .nav-caret    { transform: none; }
  .nav-group.open .nav-caret     { transform: rotate(180deg); }
  .nav-dropdown     { position: static; min-width: 0; box-shadow: none; border: none; border-top: none; background: rgba(0,0,0,0.22); }
  .nav-dropdown a   { padding-left: 40px; }
}
@media (max-width: 768px) {
  .hero-wrap        { grid-template-columns: 1fr; }
  .hero-right       { min-height: 280px; }
  .hero-photo       { min-height: 280px; }
  .hero-left        { padding: 56px 1.5rem; }
  .hero-left::after { display: none; }
  .split            { grid-template-columns: 1fr; gap: 36px; padding: 56px 1.5rem; }
  .gold-strip-inner { flex-direction: column; }
  .gs-item          { padding: 20px 24px; width: 100%; }
  .gs-divider       { width: 80%; height: 1px; }
  .contact-grid     { grid-template-columns: 1fr; }
  .dos-donts        { grid-template-columns: 1fr; }
  .flow-wrap        { flex-direction: column; gap: 16px; }
  .flow-arrow-wrap  { flex-direction: row; padding: 0; }
  .flow-arrow-line  { width: 40px; }
  section           { padding: 56px 1.5rem; }
  nav               { position: relative; }
  .nav-links        { display: none; flex-direction: column; position: absolute; top: 74px; left: 0; right: 0; background: var(--navy-dark); border-top: 1px solid rgba(201,168,76,0.2); z-index: 99; }
  .nav-links.open   { display: flex; }
  .nav-links a      { padding: 18px 24px; border-bottom: 1px solid rgba(201,168,76,0.1); }
  .nav-links a.active { border-bottom: 1px solid rgba(201,168,76,0.1); }
  .nav-toggle       { display: flex; }
  /* Nav dropdowns become click-accordions on mobile */
  .nav-group        { width: 100%; }
  .nav-group-label  { width: 100%; padding: 18px 24px; justify-content: space-between; border-bottom: 1px solid rgba(201,168,76,0.1); }
  .nav-group:hover .nav-dropdown { display: none; }
  .nav-group.open .nav-dropdown  { display: block; }
  .nav-group:hover .nav-caret    { transform: none; }
  .nav-group.open .nav-caret     { transform: rotate(180deg); }
  .nav-dropdown     { position: static; min-width: 0; box-shadow: none; border: none; border-top: none; background: rgba(0,0,0,0.22); }
  .nav-dropdown a   { padding-left: 40px; }
  .lawn-calendar    { padding: 24px 16px; }
  .comm-flow        { padding: 24px 20px; }
}
@media (max-width: 480px) {
  .hero-btns    { flex-direction: column; }
  .board-grid   { grid-template-columns: 1fr; }
  .nav-logo-img { height: 40px; }
  .doc-card     { flex-direction: column; }
  .doc-btn      { align-self: flex-start; }
  .notices-grid { grid-template-columns: 1fr; }
  .mowing-num   { font-size: 40px; }
}
/* ============================================
   CHAT WIDGET â€” Twin Lakes Theme
   Add this to the bottom of style.css
   ============================================ */

#chat-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  font-family: Georgia, 'Times New Roman', serif;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Toggle Button */
#chat-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1B4B7A 0%, #18408A 100%);
  color: #C9A84C;
  border: 2px solid #C9A84C;
  padding: 12px 22px;
  border-radius: 50px;
  cursor: pointer;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(27, 75, 122, 0.4);
  transition: all 0.25s ease;
}

#chat-toggle:hover {
  background: linear-gradient(135deg, #C9A84C 0%, #B8973E 100%);
  color: #1B4B7A;
  border-color: #1B4B7A;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.4);
}

/* Chat Box */
#chat-box {
  display: none;
  flex-direction: column;
  width: 340px;
  height: 480px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(27, 75, 122, 0.25);
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

/* Header */
#chat-header {
  background: linear-gradient(135deg, #1B4B7A 0%, #0F2D4A 100%) ;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #C9A84C;
}

#chat-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

#chat-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #C9A84C, #B8973E);
  color: #1B4B7A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

#chat-title {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

#chat-subtitle {
  color: #C9A84C;
  font-size: 11px;
  letter-spacing: 0.5px;
  margin-top: 1px;
  font-style: italic;
}

#chat-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
}

#chat-close:hover {
  color: #C9A84C;
}

/* Messages Area */
#chat-messages {
  flex: 1;
  padding: 14px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #F8F7F4;
  scroll-behavior: smooth;
}

#chat-messages::-webkit-scrollbar {
  width: 4px;
}
#chat-messages::-webkit-scrollbar-track {
  background: transparent;
}
#chat-messages::-webkit-scrollbar-thumb {
  background: #C9A84C;
  border-radius: 2px;
}

/* Chat Bubbles */
.chat-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13.5px;
  max-width: 88%;
  line-height: 1.5;
}

.chat-bubble.you {
  background: linear-gradient(135deg, #1B4B7A, #18408A);
  color: #FFFFFF;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  box-shadow: 0 2px 8px rgba(27, 75, 122, 0.2);
}

.chat-bubble.assistant {
  background: #FFFFFF;
  color: #1a1a1a;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.chat-bubble.welcome-bubble {
  background: linear-gradient(135deg, #FBF8F0, #F5EDD8);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: #1a1a1a;
}

/* Markdown inside bubbles */
.chat-bubble p { margin: 0 0 6px 0; }
.chat-bubble p:last-child { margin-bottom: 0; }
.chat-bubble strong { font-weight: 700; color: #1B4B7A; }
.chat-bubble.you strong { color: #C9A84C; }
.chat-bubble ul, .chat-bubble ol { margin: 6px 0; padding-left: 18px; }
.chat-bubble li { margin-bottom: 3px; }
.chat-bubble a {
  color: #1B4B7A;
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-word;
}
.chat-bubble a:hover { color: #C9A84C; }
.chat-bubble h1, .chat-bubble h2, .chat-bubble h3 {
  font-size: 14px;
  margin: 6px 0 4px;
  color: #1B4B7A;
}

/* Typing indicator */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
}

.typing-indicator span {
  width: 7px;
  height: 7px;
  background: #C9A84C;
  border-radius: 50%;
  animation: typing-bounce 1.2s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* Input Area */
#chat-input-area {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  padding: 10px 12px;
  gap: 8px;
  background: #FFFFFF;
}

#chat-input {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 13.5px;
  font-family: Georgia, 'Times New Roman', serif;
  outline: none;
  color: #1a1a1a;
  background: #F8F7F4;
  transition: border-color 0.2s;
}

#chat-input:focus {
  border-color: #C9A84C;
  background: #FFFFFF;
}

#chat-send {
  background: linear-gradient(135deg, #1B4B7A, #18408A);
  color: #C9A84C;
  border: none;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
}

#chat-send:hover {
  background: linear-gradient(135deg, #C9A84C, #B8973E);
  color: #1B4B7A;
  transform: translateY(-1px);
}

/* Mobile responsive */
@media (max-width: 480px) {
  #chat-widget {
    bottom: 16px;
    right: 16px;
  }
  #chat-box {
    width: calc(100vw - 32px);
    height: 420px;
  }
}
/* ═══════════════════════════════════════════════════════
   CHAT WIDGET OVERRIDE — paste at very bottom of style.css
   This overrides any conflicting chat styles above
   ═══════════════════════════════════════════════════════ */

#chat-widget {
  position: fixed !important;
  bottom: 28px !important;
  right: 28px !important;
  z-index: 1000 !important;
  font-family: Georgia, 'Times New Roman', serif !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
}

#chat-toggle {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: linear-gradient(135deg, #1B4B7A 0%, #0F2D4A 100%) !important;
  color: #C9A84C !important;
  border: 2px solid #C9A84C !important;
  padding: 12px 22px !important;
  border-radius: 50px !important;
  cursor: pointer !important;
  font-family: Georgia, 'Times New Roman', serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 4px 20px rgba(27, 75, 122, 0.4) !important;
  transition: all 0.25s ease !important;
}

#chat-toggle:hover {
  background: linear-gradient(135deg, #C9A84C 0%, #B8973E 100%) !important;
  color: #1B4B7A !important;
  border-color: #1B4B7A !important;
}

#chat-box {
  flex-direction: column !important;
  width: 340px !important;
  height: 480px !important;
  background: #FFFFFF !important;
  border-radius: 16px !important;
  box-shadow: 0 12px 48px rgba(27, 75, 122, 0.25) !important;
  overflow: hidden !important;
  margin-bottom: 14px !important;
  border: 1px solid rgba(201, 168, 76, 0.3) !important;
}

#chat-header {
  background: linear-gradient(135deg, #1B4B7A 0%, #0F2D4A 100%) !important;
  padding: 14px 16px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  border-bottom: 2px solid #C9A84C !important;
}

#chat-header-left {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

#chat-avatar {
  display: none !important;
}

#chat-title {
  color: #FFFFFF !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
}

#chat-subtitle {
  color: #C9A84C !important;
  font-size: 11px !important;
  letter-spacing: 0.5px !important;
  margin-top: 2px !important;
  font-style: italic !important;
}

#chat-close {
  background: none !important;
  border: none !important;
  color: rgba(255,255,255,0.6) !important;
  cursor: pointer !important;
  font-size: 18px !important;
  padding: 4px !important;
  line-height: 1 !important;
}

#chat-close:hover {
  color: #C9A84C !important;
}

#chat-messages {
  flex: 1 !important;
  padding: 14px !important;
  overflow-y: auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  background: #F8F7F4 !important;
}

.chat-bubble {
  padding: 10px 14px !important;
  border-radius: 14px !important;
  font-size: 13.5px !important;
  max-width: 88% !important;
  line-height: 1.5 !important;
}

.chat-bubble.you {
  background: linear-gradient(135deg, #1B4B7A, #0F2D4A) !important;
  color: #FFFFFF !important;
  align-self: flex-end !important;
  border-bottom-right-radius: 4px !important;
}

.chat-bubble.assistant {
  background: #FFFFFF !important;
  color: #1a1a1a !important;
  align-self: flex-start !important;
  border-bottom-left-radius: 4px !important;
  border: 1px solid rgba(201, 168, 76, 0.25) !important;
}

.chat-bubble.welcome-bubble {
  background: linear-gradient(135deg, #FBF8F0, #F5EDD8) !important;
  border: 1px solid rgba(201, 168, 76, 0.4) !important;
  color: #1a1a1a !important;
}

.chat-bubble strong { color: #1B4B7A !important; font-weight: 700 !important; }
.chat-bubble.you strong { color: #C9A84C !important; }
.chat-bubble a { color: #1B4B7A !important; }
.chat-bubble a:hover { color: #C9A84C !important; }

#chat-input-area {
  display: flex !important;
  align-items: center !important;
  border-top: 1px solid rgba(201, 168, 76, 0.3) !important;
  padding: 10px 12px !important;
  gap: 8px !important;
  background: #FFFFFF !important;
}

#chat-input {
  flex: 1 !important;
  border: 1px solid #ddd !important;
  border-radius: 8px !important;
  padding: 9px 12px !important;
  font-size: 13.5px !important;
  font-family: Georgia, 'Times New Roman', serif !important;
  outline: none !important;
  background: #F8F7F4 !important;
}

#chat-input:focus {
  border-color: #C9A84C !important;
  background: #FFFFFF !important;
}

#chat-send {
  background: linear-gradient(135deg, #1B4B7A, #0F2D4A) !important;
  color: #C9A84C !important;
  border: none !important;
  border-radius: 8px !important;
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
}

#chat-send:hover {
  background: linear-gradient(135deg, #C9A84C, #B8973E) !important;
  color: #1B4B7A !important;
}

.typing-indicator {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  padding: 4px 2px !important;
}

.typing-indicator span {
  width: 7px !important;
  height: 7px !important;
  background: #C9A84C !important;
  border-radius: 50% !important;
  animation: typing-bounce 1.2s infinite !important;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s !important; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s !important; }

@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

@media (max-width: 480px) {
  #chat-box { width: calc(100vw - 32px) !important; height: 420px !important; }
  #chat-widget { bottom: 16px !important; right: 16px !important; }
}