/* ============================================================
   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 SLIDER ── */
.hero-slider {
  position: relative;
  width: 100%;
  background: #1c2b4a;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background image slides */
.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
}
.hero-bg-slide.active { opacity: 1; }

/* Dark overlay so text stays readable */
.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-slider-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
}

/* Top section */
.hero-top {
  padding: 90px 0 70px;
  color: #fff;
}
.hero-tag {
  font-size: 16px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  margin-bottom: 28px;
}
.hero-words-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 40px;
}
.hero-word {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  line-height: 1.2;
}

/* About Us button */
.hero-btn {
  display: inline-block;
  padding: 16px 48px;
  background: #fff;
  color: #1c2b4a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-left: 4px solid #c8a84b;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.hero-btn:hover {
  background: #c8a84b;
  color: #fff;
  border-left-color: #fff;
}

/* Services strip */
.hero-services-strip {
  border-top: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.75);
  margin: 0 -40px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.hero-services-list {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex: 1;
}

/* Individual service item */
.hero-service-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 0 28px 0 0;
}
.hero-service-icon {
  width: 26px;
  height: 26px;
  color: #c8a84b;
  margin-bottom: 4px;
}
.hero-service-icon svg { width: 100%; height: 100%; }
.hero-service-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
}
.hero-service-desc {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

/* Vertical divider between services */
.hero-service-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
  margin: 0 28px 0 0;
  align-self: center;
}

/* View All Services button */
.hero-services-btn {
  flex-shrink: 0;
  display: inline-block;
  padding: 16px 32px;
  border: 2px solid #c8a84b;
  color: #c8a84b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.hero-services-btn:hover {
  background: #c8a84b;
  color: #fff;
}

/* ── MAIN CONTENT WRAPPER ── */
.site-content { width: 100%; }

/* ── STANDARD SECTIONS ── */
.content-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px;
}
h2.section-heading {
  font-size: 22px;
  font-weight: 400;
  color: #333;
  margin-bottom: 20px;
}
.section-text {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
}
.section-text p + p { margin-top: 14px; }

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


/* ============================================================
   HOME PAGE STYLES
   ============================================================ */

/* ── HOLISTIC SERVICE FOR SUCCESS ── */
.holistic-section {
  background: #1c2b4a;
  padding: 90px 40px;
}
.holistic-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.holistic-accent {
  width: 50px;
  height: 3px;
  background: #c8a84b;
  margin-bottom: 32px;
}
.holistic-heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 30px;
}
.holistic-heading-light {
  font-size: 42px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.1;
}
.holistic-heading-bold {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.1;
}
.holistic-text {
  font-size: 15px;
  line-height: 2;
  color: rgba(255,255,255,0.6);
  max-width: 700px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.holistic-text:last-of-type { margin-bottom: 36px; }
.holistic-link {
  display: inline-block;
  padding: 14px 36px;
  border: 2px solid #c8a84b;
  color: #c8a84b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.holistic-link:hover {
  background: #c8a84b;
  color: #fff;
}

/* ── INDUSTRIES WE SERVE ── */
.home-industries-section {
  padding: 80px 40px;
  background: #fff;
}
.home-industries-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.home-industries-heading {
  font-size: 26px;
  font-weight: 400;
  color: #333;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

/* Layout: tiles + CTA column */
.home-industries-layout {
  display: flex;
  gap: 0;
  align-items: stretch;
}

/* Tile grid */
.home-industries-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

/* CTA Column */
.home-industries-cta-col {
  width: 260px;
  flex-shrink: 0;
  background: #1c2b4a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-industries-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 30px;
  text-align: center;
}
.home-cta-col-text {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.home-cta-col-btn {
  display: block;
  width: 100%;
  padding: 16px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.home-cta-col-btn.primary {
  background: #c8a84b;
  color: #fff;
  border: 2px solid #c8a84b;
}
.home-cta-col-btn.primary:hover {
  background: transparent;
  color: #c8a84b;
}
.home-cta-col-btn.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.home-cta-col-btn.secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

/* Tile */
.ind-tile {
  position: relative;
  height: 200px;
  overflow: hidden;
  display: block;
  cursor: pointer;
}
.ind-tile-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.ind-tile:hover .ind-tile-img { transform: scale(1.06); }
.ind-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 43, 74, 0.85) 0%,
    rgba(28, 43, 74, 0.3) 50%,
    rgba(28, 43, 74, 0.1) 100%
  );
  transition: background 0.3s;
}
.ind-tile:hover .ind-tile-overlay {
  background: linear-gradient(
    to top,
    rgba(28, 43, 74, 0.95) 0%,
    rgba(28, 43, 74, 0.5) 50%,
    rgba(28, 43, 74, 0.2) 100%
  );
}
.ind-tile-title {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1.4;
  transition: bottom 0.3s ease, color 0.3s;
}
.ind-tile:hover .ind-tile-title {
  bottom: 22px;
  color: #c8a84b;
}
/* ── OUR TEAM ── */
.home-team-section {
  padding: 80px 40px;
  background: #f9f9f9;
}
.home-team-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.home-team-heading {
  font-size: 26px;
  font-weight: 400;
  color: #333;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.home-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 600px;
}
.home-team-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.home-team-card img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  object-position: center top;
}
.home-team-name {
  font-size: 17px;
  font-weight: 600;
  color: #333;
}
.home-team-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c8a84b;
}
.home-team-cta {
  margin-top: 44px;
  text-align: center;
}
.home-team-btn {
  display: inline-block;
  padding: 14px 48px;
  background: #1c2b4a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 2px solid #1c2b4a;
  transition: background 0.2s, color 0.2s;
}
.home-team-btn:hover {
  background: transparent;
  color: #1c2b4a;
}

/* ── SERVICES TICKER ── */
.services-ticker {
  background: #1c2b4a;
  padding: 40px;
  overflow: hidden;
}
.services-ticker-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.ticker-item {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  white-space: nowrap;
}

/* ── BOTTOM CTA BAND ── */
.cta-band {
  background: #f0f0f0;
  padding: 60px 40px;
}
.cta-band-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.cta-band-icon img { width: 90px; height: auto; }
.cta-band-text h3 {
  font-size: 20px;
  font-weight: 300;
  color: #333;
  line-height: 1.3;
  margin-bottom: 16px;
}
.cta-band-text p {
  font-size: 14px;
  line-height: 1.85;
  color: #555;
  max-width: 680px;
  margin-bottom: 16px;
}
.cta-band-text a {
  font-size: 13px;
  font-weight: 600;
  color: #c8a84b;
  text-decoration: underline;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .hero-services-strip {
    padding: 28px 24px;
    gap: 12px;
  }
  .hero-service-item {
    padding: 0 16px 0 0;
    gap: 6px;
  }
  .hero-service-divider {
    margin: 0 16px 0 0;
  }
  .hero-service-label {
    font-size: 11px;
    letter-spacing: 1px;
  }
  .hero-service-desc {
    font-size: 11px;
    line-height: 1.6;
  }
  .hero-service-icon {
    width: 22px;
    height: 22px;
  }
  .hero-services-btn {
    padding: 14px 18px;
    font-size: 10px;
    letter-spacing: 1px;
  }
}

@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 { height: 260px; }
  .hero-title { font-size: 24px; }
  .services-two-col { grid-template-columns: 1fr; }
  .team-row { grid-template-columns: 1fr; }

  /* Services strip — horizontal scroll on mobile */
  .hero-services-strip {
    flex-direction: row !important;
    align-items: center !important;
    padding: 20px 0 20px 20px !important;
    margin: 0 -40px !important;
    gap: 0 !important;
    overflow: hidden !important;
  }
  .hero-services-list {
    display: flex !important;
    flex-direction: row !important;
    flex: 1 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 0 !important;
    padding-right: 20px !important;
  }
  .hero-services-list::-webkit-scrollbar { display: none !important; }
  .hero-service-item {
    flex: 0 0 160px !important;
    padding: 0 20px 0 0 !important;
    gap: 6px !important;
  }
  .hero-service-divider {
    display: flex !important;
    flex-shrink: 0 !important;
    height: 60px !important;
    margin: 0 20px 0 0 !important;
  }
  .hero-service-label { font-size: 11px !important; }
  .hero-service-desc { font-size: 10px !important; line-height: 1.5 !important; }
  .hero-service-icon { width: 20px !important; height: 20px !important; }

  /* View All Services button — fixed to right, always visible */
  .hero-services-btn {
    flex-shrink: 0 !important;
    width: auto !important;
    text-align: center !important;
    padding: 14px 16px !important;
    font-size: 10px !important;
    letter-spacing: 1px !important;
    margin-right: 20px !important;
    white-space: nowrap !important;
  }
}