/* ============================================================
   GLOBAL STYLES
   ============================================================ */

*, *::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: none; padding: 0; }

/* ── 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;
  text-align: center;
}
.hero-slider-inner {
  position: relative;
  z-index: 2;
  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: 30px;
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
}
.hero-slider.hero-short { height: 250px; }

/* ── 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;
}


/* ============================================================
   SERVICES PAGE
   ============================================================ */

/* ── INTRO ── */
.services-intro {
  padding: 60px 40px 40px;
  border-bottom: 1px solid #e5e5e5;
}
.services-intro-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.services-intro p {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
}

/* ── SERVICE BLOCKS ── */
.service-block {
  display: flex;
  align-items: stretch;
  min-height: 420px;
  border-bottom: 1px solid #e5e5e5;
}
.service-block.reverse { flex-direction: row-reverse; }

.service-block-image {
  flex: 0 0 45%;
  overflow: hidden;
}
.service-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
  display: block;
}
.service-block:hover .service-block-image img {
  transform: scale(1.03);
}

.service-block-content {
  flex: 1;
  padding: 60px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background: #fff;
}

.service-block-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #c8a84b;
  text-transform: uppercase;
}

.service-block-title {
  font-size: 28px;
  font-weight: 700;
  color: #1c2b4a;
  letter-spacing: 1px;
  line-height: 1.2;
}

.service-block-desc {
  font-size: 14px;
  line-height: 1.95;
  color: #666;
}

.service-block-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-block-list li {
  font-size: 13px;
  color: #444;
  font-weight: 600;
  padding-left: 16px;
  position: relative;
}
.service-block-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 2px;
  background: #c8a84b;
}

.service-block-btn {
  display: inline-block;
  padding: 13px 36px;
  background: #1c2b4a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid #1c2b4a;
  transition: background 0.2s, color 0.2s;
  align-self: flex-start;
  margin-top: 6px;
}
.service-block-btn:hover {
  background: transparent;
  color: #1c2b4a;
}

/* ── BOTTOM CTA ── */
.services-cta {
  background: #f9f9f9;
  padding: 60px 40px;
}
.services-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.services-cta-inner p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}
.services-cta-btn {
  flex-shrink: 0;
  display: inline-block;
  padding: 14px 40px;
  background: #1c2b4a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid #1c2b4a;
  transition: background 0.2s, color 0.2s;
}
.services-cta-btn:hover {
  background: transparent;
  color: #1c2b4a;
}


/* ============================================================
   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-short { height: 120px; }
  .hero-title { font-size: 20px; letter-spacing: 5px; }
  .service-block,
  .service-block.reverse { flex-direction: column; }
  .service-block-image { flex: none; height: 260px; }
  .service-block-content { padding: 40px 24px; }
  .services-cta-inner { flex-direction: column; align-items: flex-start; }
}