/* Hero Showcase Module styling */
.home-hero {
  background: linear-gradient(135deg, #0B3C5D 0%, #062337 100%); /* Deep, premium corporate blue gradient */
  padding: 90px 40px;
  border-radius: 8px;
  color: #ffffff;
  margin-bottom: 50px;
  box-shadow: 0 10px 30px rgba(11, 60, 93, 0.1);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.company-badge-light {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #f8fbc3; /* Using your soft accent yellow for high-contrast visibility */
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.hero-main-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 20px;
}

.hero-subtitle-text {
  font-size: 20px;
  line-height: 1.65;
  color: #e2e8f0;
  margin-bottom: 35px;
}

/* Secondary Button Component for Split Action */
.hero-action-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #ffffff !important;
  border: 2px solid #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: #0B3C5D !important;
}

/* Three-Column Capabilities Hub Grid Layout */
.hub-section-container {
  margin-bottom: 50px;
}

.hub-header-block {
  text-align: center;
}

.hub-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1A252C;
  margin-bottom: 15px;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.hub-card {
  background: #ffffff;
  border: 1px solid #eef2f5;
  border-radius: 8px;
  padding: 35px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

.highlighted-hub-card {
  background-color: #f8fbc3; /* Links seamlessly to your other highlighted blocks */
  border-color: #e2e8f0;
}

.hub-card-icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.hub-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #0B3C5D;
  margin-top: 0;
  margin-bottom: 15px;
}

.hub-card-text {
  font-size: 17px !important;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1; /* Pushes links to the absolute bottom line uniformly */
}

.hub-card-link {
  font-size: 16px;
  font-weight: 700;
  color: #0B3C5D;
  text-decoration: none;
}

.hub-card-link:hover {
  text-decoration: underline;
}

/* Trust Banner Block Layout */
.home-trust-bar {
  background-color: #ffffff;
  border: 1px solid #eef2f5;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.trust-title {
  font-size: 22px;
  font-weight: 800;
  color: #0B3C5D;
  margin-top: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.trust-desc {
  margin: 0;
  line-height: 1.7;
}

/* ==========================================================================
   FINAL CALL TO ACTION (CTA) STYLES
   ========================================================================== */

.home-cta-block {
  background: linear-gradient(135deg, #0B3C5D 0%, #082D46 100%); /* Premium matching deep blue gradient */
  border-radius: 8px;
  padding: 60px 40px;
  margin-top: 50px;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(11, 60, 93, 0.08);
  box-sizing: border-box;
}

.cta-content-wrapper {
  max-width: 750px;
  margin: 0 auto;
}

.cta-main-title {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.cta-desc-text {
  font-size: 19px !important; /* Elegant base layout weight matching your 20px framework */
  line-height: 1.65;
  color: #e2e8f0; /* Soft off-white to reduce eye strain */
  margin-bottom: 30px;
  margin-top: 0;
}

/* Premium High-Contrast Contact Button */
.btn-cta-contact {
  display: inline-block;
  background-color: #f8fbc3; /* High-contrast signature soft accent tone */
  color: #0B3C5D !important; /* Flips text cleanly to corporate blue */
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  padding: 15px 38px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

/* Contact Button Hover Transitions */
.btn-cta-contact:hover {
  background-color: #f3f7a1; /* Slightly richer yellow shift on cursor hover */
  transform: translateY(-2px); /* Smooth layout lift */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.btn-cta-contact:active {
  transform: translateY(0); /* Drops back into placement when physically clicked */
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .home-cta-block {
    padding: 45px 20px;
  }
  .cta-main-title {
    font-size: 26px;
  }
  .btn-cta-contact {
    width: 100%;
    max-width: 280px;
    box-sizing: border-box;
  }
}

/* Clean Responsiveness Breakpoints for Smaller Frameworks */
@media (max-width: 900px) {
  .hub-grid {
    grid-template-columns: 1fr; /* Stacks the three modules vertically on tablets/phones */
    gap: 25px;
  }
  .hero-action-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
    text-align: center;
  }
}