/* ============================================================
   PICA – www.pica-jm.com  |  Shared Stylesheet
   ============================================================ */

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

:root {
  --green:       #006400;
  --green-dark:  #004d00;
  --green-light: #e8f5e9;
  --gold:        #c8a400;
  --dark:        #1a1a1a;
  --mid:         #444;
  --muted:       #777;
  --light:       #f5f5f5;
  --border:      #ddd;
  --white:       #fff;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── TOPBAR ── */
.topbar {
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  padding: 6px 0;
  border-bottom: 2px solid var(--gold);
}
.topbar .inner {
  max-width: 1100px; margin: 0 auto; padding: 0 16px;
  display: flex; justify-content: flex-end; align-items: center; gap: 6px;
}
.topbar a {
  color: var(--white); padding: 3px 10px;
  display: flex; align-items: center; gap: 5px;
  border-right: 1px solid rgba(255,255,255,0.3);
  transition: background 0.2s;
}
.topbar a:last-child { border-right: none; }
.topbar a:hover { background: rgba(255,255,255,0.15); }
.topbar a img { width: 16px; height: 16px; }

/* ── HEADER ── */
header {
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  padding: 10px 0;
}
header .inner {
  max-width: 1100px; margin: 0 auto; padding: 0 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo-block { display: flex; align-items: center; gap: 14px; }
.logo-block img.logo { height: 72px; width: auto; }
.logo-block .agency-name {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 16px; font-weight: 700;
  color: var(--green); line-height: 1.35;
  max-width: 280px;
}
.header-flag img { height: 38px; }

/* ── MAIN NAV ── */
nav.main-nav { background: var(--green); position: relative; }
nav.main-nav .inner {
  max-width: 1100px; margin: 0 auto; padding: 0 16px;
  display: flex;
}
nav.main-nav > .inner > a {
  display: block; color: var(--white);
  padding: 13px 20px; font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: background 0.2s;
  border-right: 1px solid rgba(255,255,255,0.15);
}
nav.main-nav > .inner > a:first-child { border-left: 1px solid rgba(255,255,255,0.15); }
nav.main-nav > .inner > a:hover,
nav.main-nav > .inner > a.active { background: var(--green-dark); }

/* ── HERO SLIDER ── */
.hero-outer {
  background: #111;
  overflow: hidden;
}
.slider-container {
  max-width: 1100px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.slider-track { display: flex; transition: transform 0.55s ease; }
.slide { min-width: 100%; position: relative; }
.slide img { width: 100%; height: 400px; object-fit: cover; display: block; }
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.5); color: var(--white);
  border: none; cursor: pointer; font-size: 28px;
  width: 42px; height: 64px; display: flex; align-items: center; justify-content: center;
  z-index: 20; transition: background 0.2s;
}
.slider-btn:hover { background: rgba(0,0,0,0.8); }
.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }
.slider-dots { text-align: center; padding: 8px 0; background: #111; }
.dot {
  display: inline-block; width: 11px; height: 11px; border-radius: 50%;
  background: #555; margin: 0 4px; cursor: pointer; transition: background 0.2s;
}
.dot.active { background: var(--gold); }

/* ── QUICK LINKS BAR ── */
.quick-links-bar {
  background: var(--light);
  border-bottom: 2px solid var(--border);
}
.quick-links-bar .inner {
  max-width: 1100px; margin: 0 auto; padding: 0 16px;
  display: flex; gap: 0;
}
.quick-links-bar a {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 14px 22px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; color: var(--mid); letter-spacing: 0.04em;
  border-right: 1px solid var(--border);
  transition: background 0.2s, color 0.2s;
}
.quick-links-bar a:first-child { border-left: 1px solid var(--border); }
.quick-links-bar a img { width: 24px; height: 24px; }
.quick-links-bar a:hover { background: var(--green); color: var(--white); }

/* ── APPOINTMENT BANNER ── */
.apt-banner {
  max-width: 1100px; margin: 18px auto 0; padding: 0 16px;
}
.apt-banner img { width: 100%; height: auto; cursor: pointer; }

/* ── REL BANNER ── */
.rel-banner {
  max-width: 1100px; margin: 12px auto 0; padding: 0 16px;
}
.rel-banner img { width: 100%; height: auto; }

/* ── 2-COL LAYOUT ── */
.page-body {
  max-width: 1100px; margin: 24px auto 36px; padding: 0 16px;
  display: grid; grid-template-columns: 1fr 300px; gap: 28px;
}
.page-body.full-width {
  grid-template-columns: 1fr;
}

/* ── SECTION TITLES ── */
.section-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--white); background: var(--green);
  padding: 9px 14px; margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.section-title::before,
.section-title::after {
  content: '';
  display: inline-block;
  width: 20px; height: 20px;
  background: url('images/44_h5_after_new.png') center/contain no-repeat;
  flex-shrink: 0;
}

/* ── NEWS ── */
.news-grid { display: flex; flex-direction: column; gap: 0; }
.news-item {
  display: flex; gap: 14px;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.news-item img { width: 130px; height: 80px; object-fit: cover; flex-shrink: 0; }
.news-item .text h4 { font-size: 13px; font-weight: 700; color: var(--green); margin-bottom: 4px; line-height: 1.4; }
.news-item .text .date { font-size: 11px; color: var(--muted); margin-bottom: 5px; }
.news-item .text p { font-size: 12px; color: var(--mid); line-height: 1.5; }
.news-item .text .read-more {
  display: inline-block; margin-top: 6px;
  font-size: 12px; color: var(--green); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.03em;
}
.news-item .text .read-more:hover { text-decoration: underline; }

/* ── FORMS LIST ── */
.forms-list { list-style: none; padding: 0; margin: 0; }
.forms-list li { border-bottom: 1px solid var(--border); }
.forms-list li a {
  display: block; padding: 9px 10px 9px 26px;
  font-size: 12px; color: var(--dark);
  background: url('images/31_bullets.png') left center no-repeat;
  background-size: 14px;
  transition: background-color 0.15s, color 0.15s;
  line-height: 1.5;
}
.forms-list li a:hover { background-color: var(--green-light); color: var(--green); }
.forms-list li a .label {
  font-size: 10px; font-weight: 700; color: var(--gold);
  text-transform: uppercase; margin-right: 4px;
}
.see-more-link {
  display: inline-block; margin-top: 10px;
  font-size: 12px; color: var(--green); font-weight: 700;
}
.see-more-link:hover { text-decoration: underline; }

/* ── SIDEBAR ── */
.sidebar {}

/* FAQ Accordion */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item h4 {
  font-size: 12px; font-weight: 700; color: var(--green);
  padding: 11px 28px 11px 10px; cursor: pointer; line-height: 1.5;
  position: relative; user-select: none;
}
.faq-item h4::after {
  content: '+';
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  font-size: 18px; color: var(--gold); font-weight: 400;
}
.faq-item.open h4::after { content: '−'; }
.faq-item h4 small { display: block; font-size: 10px; color: var(--muted); font-weight: 400; margin-top: 2px; }
.faq-answer {
  font-size: 12px; color: var(--mid); line-height: 1.7;
  padding: 0 10px 12px; display: none;
}
.faq-item.open .faq-answer { display: block; }
.view-all-link {
  display: inline-block; margin-top: 12px;
  font-size: 12px; color: var(--green); font-weight: 700;
}
.view-all-link:hover { text-decoration: underline; }

/* ── PAGE CONTENT (inner pages) ── */
.page-content h2 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 20px; color: var(--green);
  margin-bottom: 14px; padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
}
.page-content h3 {
  font-size: 15px; font-weight: 700; color: var(--green-dark);
  margin: 20px 0 8px;
}
.page-content p { font-size: 13px; line-height: 1.8; color: var(--mid); margin-bottom: 12px; }
.page-content ul { padding-left: 20px; margin-bottom: 14px; }
.page-content ul li { font-size: 13px; color: var(--mid); margin-bottom: 6px; line-height: 1.6; }
.page-content strong { color: var(--dark); }
.page-content .info-box {
  background: var(--green-light); border-left: 4px solid var(--green);
  padding: 14px 16px; margin: 16px 0; font-size: 13px; line-height: 1.7;
}
.page-content .info-box a { color: var(--green); font-weight: 600; }

/* ── CONTACT FORM ── */
.contact-form { max-width: 600px; }
.contact-form .form-group { margin-bottom: 16px; }
.contact-form label { display: block; font-size: 12px; font-weight: 700; margin-bottom: 5px; color: var(--dark); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 9px 11px;
  border: 1px solid var(--border); font-size: 13px;
  font-family: inherit; color: var(--dark);
  outline: none; transition: border-color 0.2s;
  border-radius: 2px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--green); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  background: var(--green); color: var(--white);
  border: none; padding: 11px 28px; font-size: 13px; font-weight: 700;
  cursor: pointer; letter-spacing: 0.04em; text-transform: uppercase;
  transition: background 0.2s; border-radius: 2px;
}
.btn-submit:hover { background: var(--green-dark); }
.form-success {
  background: #e8f5e9; border: 1px solid var(--green);
  padding: 14px 16px; font-size: 13px; color: var(--green);
  display: none; margin-top: 16px; border-radius: 2px;
}

/* ── CONTACT INFO ── */
.contact-info-block { margin-bottom: 20px; }
.contact-info-block h4 { font-size: 13px; font-weight: 700; color: var(--green); margin-bottom: 8px; }
.contact-info-block p { font-size: 12px; line-height: 1.8; color: var(--mid); }
.contact-info-block a { color: var(--green); }
.contact-info-block a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer {
  background: #1a1a1a url('images/48_footer_bg.png') center top / cover no-repeat;
  color: #ccc;
}
.footer-top {
  max-width: 1100px; margin: 0 auto; padding: 30px 16px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.footer-col h4 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 12px; color: var(--white);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 14px;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--gold);
  display: flex; align-items: center; gap: 8px;
}
.footer-col h4::before {
  content: '';
  display: inline-block;
  width: 16px; height: 16px;
  background: url('images/44_h5_after_new.png') center/contain no-repeat;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: url('images/19_footer_li_bg.png') left center no-repeat;
  background-size: 12px;
}
.footer-col ul li a {
  display: block; padding: 6px 6px 6px 18px;
  font-size: 12px; color: #bbb;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-col ul li a:hover { color: var(--white); padding-left: 22px; }
.footer-col p { font-size: 12px; line-height: 1.8; color: #aaa; }
.footer-col .contact-line { font-size: 12px; margin-top: 8px; color: #aaa; }
.footer-col .contact-line a { color: #9ecf9e; }
.footer-col .contact-line a:hover { color: var(--white); }
.footer-fb img { margin-top: 14px; max-width: 180px; }

.footer-bottom {
  background: #111;
  border-top: 2px solid var(--gold);
  color: #777; font-size: 11px;
  text-align: center; padding: 12px 16px;
}
.footer-bottom a { color: #999; margin: 0 8px; }
.footer-bottom a:hover { color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .page-body { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .quick-links-bar a { padding: 12px 14px; font-size: 10px; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  nav.main-nav > .inner > a { padding: 11px 12px; font-size: 11px; }
  .logo-block .agency-name { font-size: 13px; }
  .slide img { height: 200px; }
}
