/* #region Start Page Hero */
.page-hero {
  background-color: var(--secondary-color, #1a2a5e);
  color: #ffffff;
  padding: 60px 0;
  border-bottom: 4px solid var(--main-color, #e2231a);
}

.page-hero-content {
  max-width: 850px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #94a3b8;
}

.breadcrumb a {
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.breadcrumb .divider {
  color: var(--main-color, #e2231a);
}

.breadcrumb .current {
  color: #ffffff;
}

.page-hero h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.page-hero h1 span {
  color: var(--main-color, #e2231a);
}

.page-hero p {
  font-size: 16px;
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 40px 0;
  }

  .page-hero h1 {
    font-size: 30px;
  }

  .page-hero p {
    font-size: 14px;
  }
}
/* #endregion End Page Hero */

/* #region Start Project Detail Layout */
.project-detail-section {
  padding-block: var(--section-padding, 80px);
  background-color: #ffffff;
}

.detail-container {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: flex-start;
}

.detail-main-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.project-hero-image {
  width: 100%;
  height: 380px;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--light-border, #e5e5e5);
}

.project-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overview-box .section-sub {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--main-color, #e2231a);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.overview-box h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--secondary-color, #1a2a5e);
  line-height: 1.3;
  margin-bottom: 16px;
}

.overview-box p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* Quick Specs Row */
.project-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background-color: var(--light-gray, #f5f6f8);
  border: 1.5px solid var(--light-border, #e5e5e5);
  border-radius: 12px;
  padding: 20px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec-item .spec-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

.spec-item strong {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--secondary-color, #1a2a5e);
}

/* Pillars Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pillar-card {
  background-color: var(--light-gray, #f5f6f8);
  border: 1.5px solid var(--light-border, #e5e5e5);
  border-radius: 12px;
  padding: 26px 20px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--secondary-color, #1a2a5e);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}

.pillar-icon.blue {
  color: var(--secondary-color, #1a2a5e);
}

.pillar-icon.red {
  color: var(--main-color, #e2231a);
}

.pillar-icon svg {
  width: 100%;
  height: 100%;
}

.pillar-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--secondary-color, #1a2a5e);
  margin-bottom: 10px;
  line-height: 1.3;
}

.pillar-card p {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
}

/* Feature List */
.capabilities-section h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--secondary-color, #1a2a5e);
  margin-bottom: 18px;
}

.detail-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-feature-list li {
  font-size: 14.5px;
  color: #334155;
  line-height: 1.6;
  position: relative;
  padding-left: 24px;
}

.detail-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--main-color, #e2231a);
  font-weight: 900;
  font-size: 14px;
}

.detail-feature-list li strong {
  color: var(--secondary-color, #1a2a5e);
}
/* #endregion End Project Detail Layout */

/* #region Start Sidebar */
.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 120px;
}

.sidebar-widget {
  background-color: var(--light-gray, #f5f6f8);
  border: 1.5px solid var(--light-border, #e5e5e5);
  border-radius: 12px;
  padding: 24px 20px;
}

.sidebar-widget h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--secondary-color, #1a2a5e);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 8px;
}

.sidebar-widget h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 3px;
  background-color: var(--main-color, #e2231a);
  border-radius: 2px;
}

.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-links li a {
  display: block;
  padding: 10px 12px;
  font-size: 13.5px;
  font-weight: 700;
  color: #475569;
  border-radius: 6px;
  transition: all 0.2s ease;
  background-color: #ffffff;
  border: 1px solid var(--light-border, #e5e5e5);
}

.sidebar-links li a:hover,
.sidebar-links li a.active {
  background-color: var(--secondary-color, #1a2a5e);
  color: #ffffff;
  border-color: var(--secondary-color, #1a2a5e);
}

.download-widget p,
.contact-widget p {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 16px;
}

.btn-widget-download {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: var(--secondary-color, #1a2a5e);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.25s ease;
}

.btn-widget-download:hover {
  background-color: var(--main-color, #e2231a);
}

.widget-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--secondary-color, #1a2a5e);
  margin-bottom: 10px;
}

.widget-contact-row:last-child {
  margin-bottom: 0;
}

.widget-contact-row svg {
  color: var(--main-color, #e2231a);
  flex-shrink: 0;
}

.widget-contact-row a {
  color: var(--secondary-color, #1a2a5e);
  transition: color 0.2s ease;
}

.widget-contact-row a:hover {
  color: var(--main-color, #e2231a);
}

/* Responsive */
@media (max-width: 991px) {
  .detail-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .detail-sidebar {
    position: static;
  }
}

@media (max-width: 600px) {
  .project-specs-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .project-hero-image {
    height: 240px;
  }

  .overview-box h2 {
    font-size: 24px;
  }
}
/* #endregion End Sidebar */