/* ═══════════════════════════════════════════
   RAVASA — Shah Paresh & Associates
   Shared Stylesheet · All Pages
   Font: Verdana · Theme: White + #1C3170
   Layout: Fixed width 1160px centered
═══════════════════════════════════════════ */

:root {
  --navy:       #1C3170;
  --navy-dark:  #142558;
  --navy-light: #2A4494;
  --accent:     #C8A84B;
  --accent2:    #E8C96A;
  --white:      #FFFFFF;
  --offwhite:   #F7F8FC;
  --cream:      #F2F4F9;
  --border:     #D8DCE8;
  --body-text:  #3A3A4A;
  --muted:      #6B7280;
  --font:       Verdana, Geneva, Tahoma, sans-serif;
  --max-w:      1380px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--body-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font); }

/* ── CONTAINER ────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── TOPBAR ───────────────────────────── */
.topbar {
  background: var(--navy);
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-left { font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 0.08em; }
.topbar-right { display: flex; align-items: center; gap: 24px; font-size: 11px; color: rgba(255,255,255,0.6); }
.topbar-right a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.topbar-right a:hover { color: var(--accent2); }

/* ── NAVBAR ───────────────────────────── */
nav {
  background: var(--white);
  border-bottom: 2px solid var(--navy);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(28,49,112,0.08);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo .logo-img { height: 68px; width: auto; mix-blend-mode: multiply; }
.nav-logo .logo-fallback { display: none; flex-direction: column; gap: 1px; }
.nav-logo .logo-fallback .r { font-family: Georgia, serif; font-size: 22px; font-weight: 700; letter-spacing: 0.18em; color: var(--navy); }
.nav-logo .logo-fallback .s { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--navy);
  padding: 8px 14px; position: relative; transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 14px; right: 14px;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s;
}
.nav-links a:hover { color: var(--navy-light); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--navy-dark); font-weight: 700; }
.nav-cta {
  background: var(--navy); color: var(--white);
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 11px 24px; border: 2px solid var(--navy); transition: all 0.25s;
  white-space: nowrap; font-family: var(--font);
}
.nav-cta:hover { background: transparent; color: var(--navy); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); display: block; transition: all 0.3s; }
.mobile-nav {
  display: none; flex-direction: column;
  background: var(--white); border-bottom: 2px solid var(--navy);
  position: sticky; top: 92px; z-index: 199;
  box-shadow: 0 4px 16px rgba(28,49,112,0.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy); padding: 16px 24px; border-bottom: 1px solid var(--border);
}

/* ── FULL-BLEED WRAPPERS ──────────────── */
/* sections that are full-bleed background but content is contained */
.band { width: 100%; }
.band-navy { background: var(--navy); }
.band-cream { background: var(--cream); }
.band-offwhite { background: var(--offwhite); }
.band-accent { background: var(--accent); }

/* ── PAGE HERO ────────────────────────── */
.page-hero { background: var(--navy); padding: 64px 0; position: relative; overflow: hidden; }
.page-hero::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0;
  width: 35%; background: linear-gradient(135deg, rgba(200,168,75,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent2); display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.page-hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--accent2); }
.page-hero h1 {
  font-size: clamp(26px, 3.5vw, 44px); font-weight: 700; color: var(--white);
  line-height: 1.2; letter-spacing: -0.01em; max-width: 600px; margin-bottom: 16px;
}
.page-hero p { font-size: 14px; color: rgba(255,255,255,0.6); max-width: 540px; line-height: 1.8; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 20px; letter-spacing: 0.06em;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent2); }
.breadcrumb span { color: var(--accent2); }

/* ── SECTION BASE ─────────────────────── */
.section { padding: 72px 0; }
.eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent); display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.eyebrow::after { content: ''; width: 32px; height: 1px; background: var(--accent); }
.eyebrow-white { color: var(--accent2); }
.eyebrow-white::after { background: var(--accent2); }
.section-title {
  font-size: clamp(22px, 2.8vw, 36px); font-weight: 700; color: var(--navy);
  line-height: 1.25; letter-spacing: -0.01em; margin-bottom: 12px;
}
.section-title-white { color: var(--white); }
.section-sub { font-size: 13px; color: var(--muted); max-width: 560px; line-height: 1.8; margin-bottom: 40px; }

/* ── BUTTONS ──────────────────────────── */
.btn {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 13px 28px; transition: all 0.25s;
  border: 2px solid transparent; font-family: var(--font);
}
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: transparent; color: var(--navy); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: transparent; color: var(--white); }
.btn-accent { background: var(--accent); color: var(--navy); border-color: var(--accent); }
.btn-accent:hover { background: var(--accent2); border-color: var(--accent2); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { border-color: var(--white); }

/* ── STAT BAND ────────────────────────── */
.stat-band { background: var(--navy); border-top: 3px solid var(--accent); }
.stat-band .container { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; padding-top: 0; padding-bottom: 0; }
.stat-item { text-align: center; padding: 48px 16px; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 38px; font-weight: 700; color: var(--accent2); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.stat-sub { font-size: 11px; color: rgba(255,255,255,0.28); margin-top: 4px; font-style: italic; }

/* ── TICKER ───────────────────────────── */
.ticker { background: var(--accent); padding: 13px 0; overflow: hidden; display: flex; }
.ticker-track {
  display: flex; gap: 44px; white-space: nowrap;
  animation: ticker 32s linear infinite;
}
.ticker-track span { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy); flex-shrink: 0; }
.ticker-track .dot { opacity: 0.35; font-size: 16px; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── CTA BAND ─────────────────────────── */
.cta-band { background: var(--navy); border-top: 3px solid var(--accent); padding: 56px 0; }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band h2 { font-size: clamp(18px,2.5vw,28px); font-weight: 700; color: var(--white); line-height: 1.3; }
.cta-band h2 span { color: var(--accent2); }
.cta-band p { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 6px; }

/* ── NOTICE BOX ───────────────────────── */
.notice-box { background: var(--cream); border: 1px solid var(--border); border-left: 4px solid var(--navy); padding: 22px 26px; }
.notice-box p { font-size: 13px; color: var(--body-text); line-height: 1.75; }
.notice-box p + p { margin-top: 10px; }
.notice-box strong { color: var(--navy); }

/* ── QUOTE BLOCK ──────────────────────── */
.quote-block { border-left: 3px solid var(--accent); padding: 18px 24px; margin: 28px 0; background: var(--cream); }
.quote-block p { font-size: 14px; font-style: italic; color: var(--navy); line-height: 1.7; }

/* ── INFO TABLE ───────────────────────── */
.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table td { padding: 13px 16px; font-size: 13px; vertical-align: top; }
.info-table td:first-child { font-weight: 700; color: var(--navy); width: 36%; background: var(--offwhite); }

/* ── HIGHLIGHT LIST ───────────────────── */
.highlight-list { display: flex; flex-direction: column; gap: 0; }
.highlight-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.highlight-item:first-child { border-top: 1px solid var(--border); }
.highlight-icon { width: 32px; height: 32px; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; margin-top: 2px; }
.highlight-title { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.highlight-text { font-size: 12px; color: var(--muted); line-height: 1.65; }

/* ── DIVIDER ──────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 40px 0; }

/* ── FORM ELEMENTS ────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--navy); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 11px 14px; border: 1px solid var(--border); background: var(--white);
  font-family: var(--font); font-size: 13px; color: var(--body-text);
  outline: none; transition: border-color 0.2s; -webkit-appearance: none; border-radius: 0;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── FOOTER ───────────────────────────── */
footer { background: var(--navy-dark); border-top: 3px solid var(--accent); }
.footer-main { padding: 52px 0 36px; }
.footer-main .container { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 52px; }
.footer-brand .logo-img { height: 40px; width: auto; filter: brightness(0) invert(1); margin-bottom: 12px; }
.footer-brand p { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 260px; margin-top: 10px; }
.footer-col h4 { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent2); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 12px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; flex-direction: column; gap: 2px; margin-bottom: 14px; }
.footer-contact-item .label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent2); font-weight: 700; }
.footer-contact-item .val { font-size: 12px; color: rgba(255,255,255,0.55); }
.footer-contact-item .val a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-contact-item .val a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.28); }

/* ── RESPONSIVE ───────────────────────── */

/* Tablet — 1024px and below */
@media(max-width:1024px) {
  .nav-inner { padding: 0 24px; }
  .container { padding: 0 24px; }
  .section { padding: 60px 0; }
  .stat-band .container { grid-template-columns: repeat(2,1fr); }
  .footer-main .container { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cta-band .container { flex-direction: column; align-items: flex-start; gap: 24px; }
  .page-hero { padding: 52px 0; }
}

/* Mobile — 768px and below */
@media(max-width:768px) {
  .topbar { display: none; }
  .nav-inner { height: 72px; padding: 0 16px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { top: 72px; }
  .mobile-nav a { padding: 14px 20px; }
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .page-hero { padding: 40px 0; }
  .page-hero h1 { font-size: 26px; }
  .stat-band .container { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 28px 10px; }
  .stat-num { font-size: 28px; }
  .footer-main .container { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .container { flex-direction: column; gap: 6px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 0; }
  .cta-band h2 { font-size: 20px; }
  .section-title { font-size: 22px; }
}

/* Small mobile — 480px and below */
@media(max-width:480px) {
  .nav-inner { height: 64px; }
  .mobile-nav { top: 64px; }
  .nav-logo .logo-img { height: 46px; }
  .container { padding: 0 14px; }
  .section { padding: 40px 0; }
  .page-hero { padding: 36px 0; }
  .page-hero h1 { font-size: 22px; line-height: 1.3; }
  .stat-band .container { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 24px; }
  .stat-label { font-size: 9px; }
  .section-title { font-size: 20px; }
  .btn { font-size: 11px; padding: 11px 20px; }
  .ticker-track span { font-size: 9px; letter-spacing: 0.14em; }
}

@media(prefers-reduced-motion:reduce) { * { transition: none !important; animation: none !important; } }
