/* ============================================================
   GLOBAL STYLES  (shared across all pages)
   ============================================================ */

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

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  color: #444;
  background: #fff;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: disc; padding-left: 20px; }

/* ── HEADER ── */
#site-header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
.site-logo img { height: 82px; width: auto; }

/* ── NAV ── */
#site-nav { display: flex; gap: 0; }
#site-nav a {
  display: block;
  padding: 0 18px;
  height: 90px;
  line-height: 90px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
#site-nav a:hover,
#site-nav a.active {
  border-bottom-color: #c8a84b;
  color: #c8a84b;
}

/* ── HERO ── */
.hero-slider {
  position: relative;
  width: 100%;
  background: #1c2b4a;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slider-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 20px;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(28, 43, 74, 0.85) 0%,
    rgba(28, 43, 74, 0.55) 60%,
    rgba(28, 43, 74, 0.3) 100%
  );
  z-index: 1;
}
.hero-title {
  font-size: 38px;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  line-height: 1.2;
}

/* Minimal hero height for contact page */
.hero-slider.hero-minimal {
  height: 250px;
}
.hero-slider.hero-minimal .hero-title {
  font-size: 22px;
  letter-spacing: 10px;
}

/* ── FOOTER ── */
#site-footer {
  background: #1c2b4a;
  border-top: 3px solid #c8a84b;
  padding: 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.footer-logo img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-nav {
  display: flex;
  gap: 0;
}
.footer-nav a {
  display: block;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.65);
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.footer-nav a:hover {
  color: #c8a84b;
  border-bottom-color: #c8a84b;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
}


/* ============================================================
   CONTACT FORM SECTION
   ============================================================ */

.form-section {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 40px 50px;
}

.form-section-heading {
  font-size: 24px;
  font-weight: 400;
  color: #333;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.form-intro {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.form-section-subhead {
  font-size: 13px;
  color: #888;
  margin-bottom: 32px;
}

.required-star {
  color: #c8a84b;
}

.contact-form { display: flex; flex-direction: column; gap: 0; }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-field label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #555;
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ccc;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 13px;
  color: #333;
  outline: none;
  background: #fff;
  transition: border-color 0.15s;
  appearance: none;
  -webkit-appearance: none;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: #1c2b4a; }

.form-field textarea {
  height: 140px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: #bbb; }

.btn-send {
  align-self: flex-start;
  background: #1c2b4a;
  color: #fff;
  border: none;
  padding: 13px 40px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 6px;
}
.btn-send:hover { background: #2a3e6a; }


/* ============================================================
   CONTACT INFO SECTION
   ============================================================ */

.contact-info-section {
  background: #f9f9f9;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 40px;
}

.contact-info-inner {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  justify-content: center;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.contact-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #999;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
}

.contact-email {
  color: #c8a84b;
  text-decoration: underline;
}
.contact-email:hover { color: #a8882b; }


/* ============================================================
   LOCATIONS SECTION
   ============================================================ */

.locations-section {
  padding: 50px 40px 70px;
  background: #f9f9f9;
}

.locations-inner {
  max-width: 900px;
  margin: 0 auto;
}

.locations-heading {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 24px;
}

/* ── SEARCH BAR ── */
.locations-search-wrap { margin-bottom: 36px; }
.locations-search-wrap input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  background: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 13px;
  color: #333;
  outline: none;
  transition: border-color 0.15s;
  border-radius: 4px;
}
.locations-search-wrap input:focus { border-color: #1c2b4a; }
.locations-search-wrap input::placeholder { color: #bbb; }

/* ── STATE GROUP ── */
.location-state-group { margin-bottom: 32px; }
.state-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #999;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e5e5;
}

/* ── PILL ── */
.location-pill {
  display: flex;
  align-items: stretch;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  margin-bottom: 14px;
  transition: box-shadow 0.2s;
}
.location-pill:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.11); }

.pill-info {
  flex: 0 0 220px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid #f0f0f0;
}
.pill-office-name {
  font-size: 13px;
  font-weight: 600;
  color: #1c2b4a;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pill-address {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}

.pill-map {
  flex: 1;
  height: 200px;
  border: none;
  display: block;
}

/* ── NO RESULTS ── */
.no-results {
  font-size: 13px;
  color: #aaa;
  text-align: center;
  padding: 30px 0;
  letter-spacing: 1px;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  #site-header {
    padding: 16px 20px;
    height: auto;
    flex-direction: column;
  }
  #site-nav a { padding: 0 10px; height: 44px; line-height: 44px; font-size: 12px; }
  .hero-slider.hero-minimal { height: 90px; }
  .hero-slider.hero-minimal .hero-title { font-size: 18px; }
  .form-section { padding: 40px 20px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .contact-info-section { padding: 30px 20px; }
  .contact-info-inner { flex-direction: column; gap: 24px; }
  .locations-section { padding: 40px 20px; }
  .location-pill { flex-direction: column; }
  .pill-info { flex: none; border-right: none; border-bottom: 1px solid #f0f0f0; }
  .pill-map { height: 180px; }
}