@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

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

:root {
  --red: #D4610A;
  --red-dark: #B04D08;
  --red-light: #fdebd0;
  --gold: #D4A017;
  --gold-light: #fdf8ec;
  --navy: #480968;
  --navy-mid: #5c0d82;
  --teal: #1a7a6e;
  --teal-light: #e5f4f2;
  --text: #1a1a2e;
  --text-muted: #5a6072;
  --border: #e4e8f0;
  --white: #ffffff;
  --bg: #f7f9fc;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; width: 100%; max-width: 100vw; position: relative; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--navy);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  width: 100%;
  box-sizing: border-box;
  left: 0;
  right: 0;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: white; letter-spacing: -0.3px; line-height: 1; }
.logo-sub { font-size: 0.6rem; color: rgba(255,255,255,0.55); letter-spacing: 1px; text-transform: uppercase; }
.logo-badge { background: var(--red); color: white; font-size: 0.6rem; font-weight: 800; padding: 3px 7px; border-radius: 4px; letter-spacing: 1px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a { display: block; padding: 0 1rem; height: 70px; line-height: 70px; color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.88rem; font-weight: 600; transition: color 0.2s, background 0.2s; white-space: nowrap; }
.nav-links > li > a:hover, .nav-links > li > a.active { color: white; background: rgba(255,255,255,0.07); }
.nav-links > li > a.active { border-bottom: 3px solid var(--red); }

.dropdown { position: absolute; top: 100%; left: 0; background: white; border-radius: 10px; box-shadow: 0 12px 40px rgba(0,0,0,0.14); padding: 0.5rem 0; min-width: 210px; opacity: 0; pointer-events: none; transform: translateY(8px); transition: all 0.2s; z-index: 300; }
.nav-links > li:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown a { display: flex; align-items: center; gap: 8px; padding: 0.6rem 1.2rem; color: var(--text-muted); font-size: 0.85rem; font-weight: 600; text-decoration: none; transition: all 0.15s; }
.dropdown a:hover { color: var(--red); background: var(--red-light); padding-left: 1.5rem; }
.dropdown a.active { color: var(--red); background: var(--red-light); font-weight: 700; }

.nav-cta { background: var(--red); color: white !important; padding: 0 1.4rem !important; border-radius: 8px; margin-left: 0.5rem; font-weight: 700 !important; transition: background 0.2s !important; height: 40px !important; line-height: 40px !important; display: flex !important; align-items: center !important; }
.nav-cta:hover { background: var(--red-dark) !important; }

/* ── BUTTONS ── */
.btn-primary { background: var(--red); color: white; padding: 0.8rem 1.8rem; border-radius: 8px; font-weight: 700; font-size: 0.95rem; text-decoration: none; border: none; cursor: pointer; display: inline-block; transition: all 0.2s; box-shadow: 0 4px 16px rgba(233,124,36,0.3); font-family: 'Plus Jakarta Sans', sans-serif; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--red); padding: 0.8rem 1.8rem; border-radius: 8px; font-weight: 700; font-size: 0.95rem; text-decoration: none; border: 2px solid var(--red); display: inline-block; transition: all 0.2s; }
.btn-outline:hover { background: var(--red-light); }
.btn-white { background: white; color: var(--red-dark); padding: 0.85rem 2rem; border-radius: 8px; font-weight: 800; font-size: 0.95rem; text-decoration: none; display: inline-block; transition: all 0.2s; box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ── PAGE HERO (sub pages) ── */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 60px 5%; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(233,124,36,0.15) 0%, transparent 60%); }
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.page-hero .section-tag { color: #e87c6a; margin-bottom: 0.6rem; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: white; margin-bottom: 0.8rem; line-height: 1.2; letter-spacing: -0.5px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.7; max-width: 540px; }

/* ── BREADCRUMB ── */
.breadcrumb { background: var(--bg); border-bottom: 1px solid var(--border); padding: 0.65rem 5%; font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.breadcrumb a { color: var(--red); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { opacity: 0.4; }

/* ── PAGE BODY ── */
.page-body { padding: 60px 5%; }
.page-body-narrow { padding: 60px 5%; max-width: 900px; margin: 0 auto; }

/* ── SECTION LABELS ── */
.section-tag { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--red); margin-bottom: 0.7rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; line-height: 1.2; color: var(--text); margin-bottom: 1rem; letter-spacing: -0.5px; }
.section-sub { font-size: 1rem; color: var(--text-muted); line-height: 1.75; max-width: 520px; margin-bottom: 2.5rem; }

/* ── PERSON CARDS ── */
.people-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.person-card { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 1.8rem; text-align: center; transition: all 0.25s; }
.person-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); border-color: var(--red); }
.person-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--red-light); display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 1rem; border: 3px solid var(--border); }
.person-card h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; }
.person-role { font-size: 0.8rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.6rem; }
.person-bio { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ── NEWS CARDS ── */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.news-card { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 1.6rem; transition: all 0.25s; }
.news-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.news-img { width: 100%; height: 160px; background: var(--bg); border-radius: 10px; margin-bottom: 1rem; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: var(--border); border: 2px dashed var(--border); }
.news-date { font-size: 0.75rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.news-card h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; line-height: 1.4; }
.news-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 0.8rem; }
.news-card a { font-size: 0.85rem; font-weight: 700; color: var(--red); text-decoration: none; }
.news-card a:hover { text-decoration: underline; }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.gallery-thumb { background: var(--bg); border-radius: 12px; aspect-ratio: 4/3; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; border: 2px dashed var(--border); font-size: 2.5rem; text-align: center; padding: 1rem; transition: all 0.2s; cursor: pointer; }
.gallery-thumb:hover { border-color: var(--red); background: var(--red-light); }
.gallery-thumb span { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }
.gallery-thumb p { font-size: 0.72rem; color: var(--red); font-weight: 700; }

/* ── PLACEHOLDER BLOCKS ── */
.placeholder-block { background: var(--bg); border: 1px solid var(--border); border-left: 4px solid var(--red); border-radius: 10px; padding: 1.4rem 1.6rem; margin-bottom: 1.2rem; }
.placeholder-block h3 { font-size: 0.97rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.placeholder-block p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ── DOWNLOAD ROWS ── */
.download-row { display: flex; align-items: center; gap: 1rem; background: white; border: 1px solid var(--border); border-radius: 12px; padding: 1.2rem 1.4rem; margin-bottom: 0.9rem; transition: all 0.2s; }
.download-row:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); border-color: var(--red); }
.download-icon { font-size: 1.8rem; flex-shrink: 0; }
.download-row h4 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 0.2rem; }
.download-row p { font-size: 0.82rem; color: var(--text-muted); }
.download-btn { margin-left: auto; flex-shrink: 0; background: var(--red); color: white; padding: 7px 16px; border-radius: 7px; font-size: 0.8rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.download-btn:hover { background: var(--red-dark); }

/* ── NOTICE CARDS ── */
.notice-card { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 1.8rem; margin-bottom: 1.2rem; border-top: 4px solid var(--red); }
.notice-label { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--red); margin-bottom: 0.5rem; }
.notice-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
.notice-date { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; margin-bottom: 0.8rem; }
.notice-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ── BRANCH CARDS ── */
.branch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.4rem; }
.branch-card { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; transition: all 0.25s; }
.branch-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); border-color: var(--red); }
.branch-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.branch-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; border-bottom: 1px solid var(--border); padding-bottom: 0.6rem; }
.branch-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.3rem; line-height: 1.5; }

/* ── VALUES ── */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 1.5rem; }
.value-chip { display: flex; align-items: center; gap: 8px; background: var(--red-light); border-radius: 8px; padding: 0.6rem 1rem; font-size: 0.85rem; font-weight: 700; color: var(--red-dark); }

/* ── MAP PLACEHOLDER ── */
.map-placeholder { background: var(--bg); border-radius: 14px; border: 2px dashed var(--border); height: 320px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.map-placeholder .icon { font-size: 3rem; }
.map-placeholder p { font-size: 0.88rem; color: var(--text-muted); font-weight: 600; text-align: center; max-width: 220px; line-height: 1.5; }

/* ── CONTACT INFO ── */
.contact-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--red); padding: 70px 5%; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.08); top: -250px; right: -100px; }
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: white; margin-bottom: 0.8rem; position: relative; z-index: 1; }
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; position: relative; z-index: 1; }

/* ── HOURS BAR ── */
.hours-bar { background: var(--gold-light); border-top: 3px solid var(--gold); padding: 1.2rem 5%; text-align: center; }
.hours-bar p { font-size: 0.95rem; color: var(--navy); font-weight: 700; }
.hours-bar span { color: var(--red); }

/* ── TRUST BAR ── */
.trust-bar { background: var(--red); padding: 1rem 5%; display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.trust-item { color: rgba(255,255,255,0.9); font-size: 0.82rem; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.trust-item::before { content: '✓'; font-weight: 900; }

/* ── FOOTER ── */
footer { background: var(--navy); color: rgba(255,255,255,0.65); padding: 60px 5% 30px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo-text { color: white; font-size: 1.3rem; display: block; margin-bottom: 0.8rem; font-family: 'Playfair Display', serif; }
.footer-brand p { font-size: 0.85rem; line-height: 1.75; max-width: 260px; }
.footer-hours { margin-top: 1rem; font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.5); }
.footer-hours span { color: var(--gold); }
.footer-col h5 { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: white; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul a { color: rgba(255,255,255,0.55); font-size: 0.85rem; text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: #e87c6a; }
.footer-social { display: flex; gap: 10px; margin-top: 1.2rem; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 0.75rem; font-weight: 700; text-decoration: none; transition: all 0.2s; }
.social-btn:hover { background: var(--red); border-color: var(--red); color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; }
.footer-lic { display: flex; align-items: center; gap: 8px; }
.bog-badge { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 4px 10px; font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.5); letter-spacing: 0.5px; }

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── HAMBURGER BUTTON ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  z-index: 210;
}
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: white; border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU PANEL ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--navy);
  z-index: 205;
  overflow-y: auto;
  max-height: calc(100vh - 70px);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  width: 100%;
  box-sizing: border-box;
}
.mobile-menu.open { display: block; }

.mobile-nav-item { border-bottom: 1px solid rgba(255,255,255,0.07); }

.mobile-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.4rem;
  color: rgba(255,255,255,0.85); font-size: 0.95rem;
  font-weight: 700; text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: background 0.2s;
  cursor: pointer;
}
.mobile-nav-link:hover { background: rgba(255,255,255,0.05); color: white; }
.mobile-nav-link.active { color: var(--red); }

.mobile-arrow {
  font-size: 0.75rem;
  transition: transform 0.25s;
  color: rgba(255,255,255,0.4);
}
.mobile-nav-item.open .mobile-arrow { transform: rotate(180deg); color: var(--red); }

/* Mobile dropdown submenu */
.mobile-dropdown {
  display: none;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav-item.open .mobile-dropdown { display: block; }

.mobile-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 0.75rem 1.4rem 0.75rem 2rem;
  color: rgba(255,255,255,0.65); font-size: 0.88rem;
  font-weight: 600; text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all 0.2s;
}
.mobile-dropdown a:last-child { border-bottom: none; }
.mobile-dropdown a:hover { color: white; background: rgba(255,255,255,0.05); padding-left: 2.4rem; }
.mobile-dropdown a.active { color: var(--red); }

/* Mobile CTA button */
.mobile-cta-wrap {
  padding: 1.2rem 1.4rem;
  background: rgba(0,0,0,0.15);
}
.mobile-cta-wrap a {
  display: block; text-align: center;
  background: var(--red); color: white;
  padding: 0.85rem; border-radius: 8px;
  font-weight: 800; font-size: 0.95rem;
  text-decoration: none; font-family: 'Plus Jakarta Sans', sans-serif;
  transition: background 0.2s;
}
.mobile-cta-wrap a:hover { background: var(--red-dark); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 800px) {
  .hamburger { display: flex; }
  .nav-links { display: none !important; }
}
@media (max-width: 650px) {
  .footer-top { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
