/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Helvetica, Arial, sans-serif; font-size: 15px; color: #333; background: #fff; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ============ NAV ============ */
#site-header {
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.12);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 30px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }

/* FIXED: Changed to support rectangular logo images cleanly without circular clipping */
.nav-logo img { 
  height: 44px; 
  width: auto; 
  border-radius: 0; 
  object-fit: contain; 
}

.nav-logo-text { font-size: 16px; font-weight: 700; color: #1a2a4a; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li { position: relative; }
.nav-links a {
  font-size: 13px; font-weight: 700; color: #1a2a4a;
  letter-spacing: 0.06em; padding: 6px 12px;
  transition: color 0.2s; display: block;
}
.nav-links a:hover { color: #4a7cbe; }

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: #fff; min-width: 200px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  border-top: 2px solid #1a2a4a;
  z-index: 999;
}
.dropdown-menu li a {
  padding: 10px 18px;
  font-size: 12px;
  border-bottom: 1px solid #f0f0f0;
  white-space: nowrap;
}
.has-dropdown.active .dropdown-menu { display: block; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #1a2a4a; border-radius: 2px; }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 12px 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 10px 16px; font-size: 14px; border-bottom: 1px solid #f0f0f0; }
  .dropdown-menu { position: static; box-shadow: none; border-top: none; border-left: 3px solid #1a2a4a; margin-left: 16px; }
  .has-dropdown.active .dropdown-menu { display: block; }
}

/* ============ PAGE COMMON ============ */
.page-section { padding: 70px 30px; }
.page-section.alt-bg { background: #f4f6fb; }
.section-inner { max-width: 980px; margin: 0 auto; }
.section-header { margin-bottom: 40px; }
.section-header h2 {
  font-size: 1.9rem; font-weight: 900; color: #1a2a4a;
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 12px;
}
.lbi-list { list-style: disc; padding-left: 20px; margin: 16px 0; }
.lbi-list li { font-size: 0.9rem; color: #333; padding: 2px 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }
.section-img { border-radius: 4px; overflow: hidden; box-shadow: 0 3px 14px rgba(0,0,0,0.13); }
.section-img img { width: 100%; height: 260px; object-fit: cover; }
.section-text h3 { font-size: 1.05rem; font-weight: 700; color: #1a2a4a; margin: 20px 0 8px; }
.section-text h3:first-child { margin-top: 0; }
.section-text p { font-size: 0.88rem; line-height: 1.75; color: #444; margin-bottom: 10px; }
.section-text strong { color: #222; }
.bullet-list { list-style: disc; padding-left: 20px; }
.bullet-list li { font-size: 0.87rem; color: #444; padding: 3px 0; line-height: 1.55; }
.two-col-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.two-col-list li {
  font-size: 0.87rem; color: #444; padding: 5px 0;
  border-bottom: 1px solid #eee; line-height: 1.45;
  list-style: disc; margin-left: 18px;
}
@media (max-width: 600px) { .two-col-list { grid-template-columns: 1fr; } }
.cta-strip {
  background: #1a2a4a; color: #fff;
  text-align: right; padding: 22px 40px;
  font-size: 1rem; font-weight: 500;
}
.cta-strip a { color: #a8c8f0; font-weight: 700; font-size: 1.05rem; }
.cta-strip a:hover { color: #fff; }
.icon-row { display: flex; gap: 32px; margin-bottom: 28px; flex-wrap: wrap; }
.icon-item { text-align: center; }
.icon-item img { height: 70px; width: auto; margin: 0 auto 8px; }
.icon-item p { font-size: 0.75rem; font-weight: 700; color: #1a2a4a; text-transform: uppercase; letter-spacing: 0.06em; }

/* ============ LOCATION PAGE ============ */
.location-hero {
  background: linear-gradient(135deg, #1a2a4a 0%, #2a4a8a 100%);
  color: #fff; padding: 70px 30px; text-align: center;
}
.location-hero h1 { font-size: 2.4rem; font-weight: 900; margin-bottom: 12px; }
.location-hero p { font-size: 1rem; color: #c8d4ea; max-width: 600px; margin: 0 auto 24px; }
.location-hero a.cta-btn {
  display: inline-block; background: #fff; color: #1a2a4a;
  font-weight: 700; padding: 12px 28px; border-radius: 3px; font-size: 0.95rem;
  transition: background 0.2s;
}
.location-hero a.cta-btn:hover { background: #a8c8f0; }
.location-hero be { max-width: 820px; margin: 0 auto; padding: 60px 30px; }
.location-body h2 { font-size: 1.4rem; font-weight: 800; color: #1a2a4a; margin: 32px 0 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.location-body p { font-size: 0.92rem; line-height: 1.8; color: #444; margin-bottom: 14px; }
.location-body ul { list-style: disc; padding-left: 22px; margin-bottom: 20px; }
.location-body ul li { font-size: 0.9rem; color: #444; padding: 4px 0; }
.service-links { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.service-links a {
  background: #1a2a4a; color: #fff; padding: 8px 18px;
  border-radius: 3px; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.05em; transition: background 0.2s;
}
.service-links a:hover { background: #4a7cbe; }
.area-links { margin: 28px 0; border-top: 1px solid #e0e4ee; padding-top: 22px; }
.area-links p { font-size: 0.85rem; font-weight: 700; color: #1a2a4a; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.06em; }
.area-links a { font-size: 0.88rem; color: #1a4fa8; margin-right: 12px; }
.area-links a:hover { text-decoration: underline; }

/* ============ CONTACT PAGE ============ */
.contact-page { max-width: 980px; margin: 0 auto; padding: 60px 30px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info p { font-size: 0.9rem; color: #444; line-height: 1.7; margin-bottom: 8px; }
.contact-info .address { font-size: 0.87rem; color: #666; margin-top: 12px; }
.contact-form label { display: block; font-size: 0.82rem; font-weight: 600; color: #1a2a4a; margin-bottom: 4px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 9px 12px;
  border: 1px solid #ccc; border-radius: 3px;
  font-size: 0.88rem; font-family: inherit;
  margin-bottom: 12px; transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: #1a4fa8; }
.contact-form textarea { height: 120px; resize: vertical; }
.contact-form button {
  background: #1a2a4a; color: #fff; border: none;
  padding: 11px 28px; border-radius: 3px;
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover { background: #1a4fa8; }
.social-bar { display: flex; gap: 10px; align-items: center; margin-top: 14px; }
.social-bar a {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: #e4e9f4; transition: background 0.2s;
}
.social-bar a:hover { background: #1a4fa8; }

/* ============ FOOTER ============ */
#site-footer {
  background: #111827; color: #607090;
  text-align: center; padding: 26px 24px;
  font-size: 0.82rem;
}
#site-footer a { color: #7aa8d8; }
.back-to-top {
  display: inline-block; margin-top: 12px;
  font-size: 0.78rem; color: #405060; cursor: pointer; letter-spacing: 0.06em;
}
.back-to-top:hover { color: #7aa8d8; }

/* ============ SERVICES INDEX PAGE ============ */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
@media (max-width: 860px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  border: 1.5px solid #dde2ee; border-radius: 4px;
  padding: 28px 22px; transition: box-shadow 0.2s, border-color 0.2s;
}
.service-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.1); border-color: #1a2a4a; }
.service-card h3 { font-size: 1.05rem; font-weight: 800; color: #1a2a4a; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.service-card p { font-size: 0.86rem; color: #555; line-height: 1.65; margin-bottom: 16px; }
.service-card a.read-more {
  font-size: 0.82rem; font-weight: 700; color: #1a4fa8;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.service-card a.read-more:hover { text-decoration: underline; }