/* ===== PAGE HERO (inner page style) ===== */
#page-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--iron);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  filter: saturate(0.3);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    108deg,
    rgba(10, 10, 12, 0.96) 0%,
    rgba(10, 10, 12, 0.7) 55%,
    rgba(10, 10, 12, 0.4) 100%
  );
}
[data-theme="light"] .page-hero-overlay {
  background: linear-gradient(
    108deg,
    rgba(242, 240, 236, 0.97) 0%,
    rgba(242, 240, 236, 0.7) 55%,
    rgba(242, 240, 236, 0.2) 100%
  );
}
.page-hero-slash {
  position: absolute;
  top: 0;
  right: 28%;
  bottom: 0;
  z-index: 2;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(201, 162, 39, 0.25) 30%,
    rgba(201, 162, 39, 0.25) 70%,
    transparent
  );
  transform: skewX(-12deg);
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 3;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 80px;
  width: 100%;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Mono", monospace;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.1s forwards;
}
.breadcrumb a {
  color: var(--gold);
  transition: opacity 0.2s;
}
.breadcrumb a:hover {
  opacity: 0.7;
}
.breadcrumb-sep {
  color: var(--silver3);
}

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.page-hero-eyebrow .eline {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.page-hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(42px, 5.5vw, 90px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.3s forwards;
}
.page-hero-title .gold {
  color: var(--gold);
}
.page-hero-title .outline {
  -webkit-text-stroke: 1px var(--text3);
  color: transparent;
}
.page-hero-desc {
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.7;
  color: var(--text2);
  max-width: 480px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}

/* Hero bottom ticker */
.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
  background: rgba(201, 162, 39, 0.07);
  border-top: 1px solid rgba(201, 162, 39, 0.18);
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 32s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  padding: 0 28px;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text3);
  font-family: "Space Mono", monospace;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ticker-sep {
  color: var(--gold);
  font-size: 13px;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SECTION BASE ===== */
section {
  width: 100%;
}
.sec {
  max-width: 1920px;
  margin: 0 auto;
  padding: 100px 80px;
}

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Mono", monospace;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 14px;
}
.sec-tag .tline {
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.sec-tag .tnum {
  opacity: 0.5;
}

.sec-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(30px, 3.2vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 12px;
}
.sec-title .gold {
  color: var(--gold);
}
.sec-title .outline {
  -webkit-text-stroke: 1px var(--text3);
  color: transparent;
}

.sec-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text2);
  max-width: 580px;
  font-weight: 400;
}

/* ===== SERVICE CAPABILITY TABS ===== */
#capabilities {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.cap-tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.cap-tab {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 24px;
  cursor: pointer;
  font-family: "Rajdhani", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text3);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition:
    color 0.2s,
    border-color 0.2s;
  white-space: nowrap;
}
.cap-tab:hover {
  color: var(--text);
}
.cap-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.cap-tab-num {
  font-family: "Orbitron", sans-serif;
  font-size: 9px;
  font-weight: 800;
  color: var(--text3);
  transition: color 0.2s;
}
.cap-tab.active .cap-tab-num {
  color: var(--gold2);
}

.cap-panel {
  display: none;
}
.cap-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.cap-panel-left {
}
.cap-desc {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text2);
  margin-bottom: 36px;
}

.cap-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cap-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px 18px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  position: relative;
  transition: padding-left 0.25s;
}
.cap-item:hover {
  padding-left: 8px;
}
.cap-item:last-child {
  border-bottom: none;
}

.cap-item-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 162, 39, 0.12),
    rgba(201, 162, 39, 0.03)
  );
  border: 1px solid rgba(201, 162, 39, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(
    0 0,
    calc(100% - 7px) 0,
    100% 7px,
    100% 100%,
    7px 100%,
    0 calc(100% - 7px)
  );
  transition:
    border-color 0.2s,
    background 0.2s;
}
.cap-item:hover .cap-item-icon {
  border-color: rgba(201, 162, 39, 0.5);
  background: linear-gradient(
    135deg,
    rgba(201, 162, 39, 0.2),
    rgba(201, 162, 39, 0.06)
  );
}
.cap-item-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  opacity: 0.8;
}

.cap-item-text {
}
.cap-item-name {
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.cap-item-sub {
  font-size: 12px;
  color: var(--text3);
  line-height: 1.55;
}

.cap-item-arr {
  margin-left: auto;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.2s;
  flex-shrink: 0;
  padding-top: 4px;
}
.cap-item:hover .cap-item-arr {
  opacity: 1;
}

/* Cap right — visual */
.cap-panel-right {
  position: sticky;
  top: 90px;
}

.cap-img-frame {
  position: relative;
  overflow: hidden;
  clip-path: polygon(
    0 0,
    calc(100% - 28px) 0,
    100% 28px,
    100% 100%,
    28px 100%,
    0 calc(100% - 28px)
  );
}
.cap-img-frame img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.65);
  transition:
    transform 0.5s ease,
    filter 0.4s ease;
}
.cap-img-frame:hover img {
  transform: scale(1.04);
  filter: brightness(0.82) saturate(0.85);
}

.cap-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 12, 0.65) 0%,
    transparent 55%
  );
}
.cap-img-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--gold);
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  padding: 16px 32px 16px 22px;
}
.cap-img-badge-label {
  font-family: "Space Mono", monospace;
  font-size: 8px;
  letter-spacing: 2.5px;
  color: rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.cap-img-badge-name {
  font-family: "Orbitron", sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: #000;
  letter-spacing: 1px;
}

.cap-corner-tl,
.cap-corner-br {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid var(--gold);
  z-index: 3;
}
.cap-corner-tl {
  top: -5px;
  left: -5px;
  border-right: none;
  border-bottom: none;
}
.cap-corner-br {
  bottom: -5px;
  right: -5px;
  border-left: none;
  border-top: none;
}

.cap-stat-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 16px;
}
.cap-stat-cell {
  padding: 18px 22px;
  background: var(--card-bg);
  border: 1px solid var(--border);
}
.cap-stat-num {
  font-family: "Orbitron", sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.cap-stat-lbl {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text3);
  font-weight: 600;
}

/* ===== SERVICE CARDS GRID ===== */
#services-overview {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.svc-cards-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 24px;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.svc-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 36px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.svc-card:hover {
  border-color: var(--border-gold);
  background: var(--card-hover);
  transform: translateY(-5px);
  box-shadow:
    0 20px 52px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(201, 162, 39, 0.1) inset;
}
.svc-card:hover::before {
  transform: scaleX(1);
}

.svc-card-icon-wrap {
  width: 54px;
  height: 54px;
  background: linear-gradient(
    135deg,
    rgba(201, 162, 39, 0.14),
    rgba(201, 162, 39, 0.03)
  );
  border: 1px solid rgba(201, 162, 39, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% 100%,
    10px 100%,
    0 calc(100% - 10px)
  );
  transition:
    border-color 0.2s,
    background 0.2s;
}
.svc-card:hover .svc-card-icon-wrap {
  border-color: rgba(201, 162, 39, 0.55);
  background: linear-gradient(
    135deg,
    rgba(201, 162, 39, 0.22),
    rgba(201, 162, 39, 0.06)
  );
}
.svc-card-icon-wrap svg {
  width: 26px;
  height: 26px;
  fill: var(--gold);
}

.svc-card-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: "Orbitron", sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--text3);
  letter-spacing: 2px;
  opacity: 0.4;
}
.svc-card-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.5px;
  line-height: 1.25;
}
.svc-card-desc {
  font-size: 12.5px;
  color: var(--text2);
  line-height: 1.65;
  flex: 1;
}
.svc-card-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "Space Mono", monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  transition: gap 0.2s;
}
.svc-card:hover .svc-card-link {
  gap: 11px;
}
.svc-card-link svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.5;
}

/* Featured card (span 2) */
.svc-card.featured {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding: 36px 36px;
}
.svc-card.featured .svc-card-icon-wrap {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}
.svc-card.featured .svc-card-icon-wrap svg {
  width: 34px;
  height: 34px;
}
.svc-card.featured .svc-card-body {
  flex: 1;
}
.svc-card.featured .svc-card-title {
  font-size: 22px;
  margin-bottom: 8px;
}

/* ===== FACILITIES GALLERY ===== */
#facilities {
  background: var(--bg3);
  position: relative;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 12px;
  margin-top: 52px;
}

.fac-cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  clip-path: polygon(
    0 0,
    calc(100% - 16px) 0,
    100% 16px,
    100% 100%,
    16px 100%,
    0 calc(100% - 16px)
  );
  background: var(--iron3);
}
.fac-cell.span2 {
  grid-column: span 2;
}
.fac-cell.row2 {
  grid-row: span 2;
}

.fac-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.62) saturate(0.6);
  transition:
    transform 0.6s ease,
    filter 0.4s ease;
}
.fac-cell:hover img {
  transform: scale(1.07);
  filter: brightness(0.8) saturate(0.85);
}

.fac-cell-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 20px 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, transparent 100%);
}
.fac-cell-cat {
  font-family: "Space Mono", monospace;
  font-size: 8px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.fac-cell-name {
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.fac-cell-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold);
  clip-path: polygon(16px 0%, 100% 0%, 100% 100%, 0% 100%);
  padding: 5px 14px 5px 24px;
  font-family: "Space Mono", monospace;
  font-size: 8px;
  letter-spacing: 2px;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
}

/* Placeholder for missing images */
.fac-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.06), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fac-placeholder svg {
  width: 48px;
  height: 48px;
  fill: rgba(201, 162, 39, 0.15);
}

/* ===== PROCESS SECTION ===== */
#process {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border-gold) 20%,
    var(--border-gold) 80%,
    transparent
  );
  z-index: 0;
}

.proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.proc-step-num-wrap {
  width: 80px;
  height: 80px;
  position: relative;
  margin-bottom: 24px;
}
.proc-step-ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-gold);
  border-radius: 0;
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% 100%,
    10px 100%,
    0 calc(100% - 10px)
  );
  background: var(--card-bg);
  transition:
    border-color 0.3s,
    background 0.3s;
}
.proc-step:hover .proc-step-ring {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
}
.proc-step-num-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Orbitron", sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
}

.proc-step-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.proc-step-desc {
  font-size: 12px;
  color: var(--text3);
  line-height: 1.6;
}

/* ===== SUSTENANCE SUPPORT ===== */
#sustenance {
  background: var(--bg);
  position: relative;
}

.sus-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 52px;
}

.sus-visual {
  position: relative;
}
.sus-img-frame {
  position: relative;
  overflow: hidden;
  clip-path: polygon(
    0 0,
    calc(100% - 28px) 0,
    100% 28px,
    100% 100%,
    28px 100%,
    0 calc(100% - 28px)
  );
}
.sus-img-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.65);
}
.sus-corner-tl,
.sus-corner-br {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid var(--gold);
}
.sus-corner-tl {
  top: -6px;
  left: -6px;
  border-right: none;
  border-bottom: none;
}
.sus-corner-br {
  bottom: -6px;
  right: -6px;
  border-left: none;
  border-top: none;
}

.sus-badge {
  position: absolute;
  bottom: -1px;
  right: -1px;
  background: var(--gold);
  clip-path: polygon(16px 0%, 100% 0%, 100% 100%, 0% 100%);
  padding: 16px 22px 16px 32px;
}
.sus-badge-num {
  font-family: "Orbitron", sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: #000;
  line-height: 1;
}
.sus-badge-lbl {
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(0, 0, 0, 0.65);
  text-transform: uppercase;
  font-weight: 700;
}

.sus-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text2);
  margin-bottom: 28px;
}

.sus-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sus-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.sus-item:hover {
  border-color: var(--border-gold);
  transform: translateX(4px);
}
.sus-item-dot {
  width: 3px;
  align-self: stretch;
  background: var(--gold);
  flex-shrink: 0;
  border-radius: 2px;
  opacity: 0.4;
  transition: opacity 0.2s;
}
.sus-item:hover .sus-item-dot {
  opacity: 1;
}
.sus-item-text {
}
.sus-item-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.sus-item-desc {
  font-size: 12px;
  color: var(--text3);
  line-height: 1.55;
}

/* ===== CTA BAND ===== */
#cta-band {
  background: var(--iron);
  border-top: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    90deg,
    rgba(201, 162, 39, 0.06) 0%,
    rgba(201, 162, 39, 0.02) 50%,
    transparent 100%
  );
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 1920px;
  margin: 0 auto;
  padding: 72px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.cta-h {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(26px, 2.5vw, 44px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.cta-h .gold {
  color: var(--gold);
}
.cta-p {
  font-size: 16px;
  color: var(--text2);
  font-weight: 400;
}
.cta-btns {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--gold);
  color: #000;
  font-family: "Rajdhani", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: all 0.25s;
}
.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 162, 39, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 36px;
  background: transparent;
  color: var(--text);
  font-family: "Rajdhani", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid var(--border-strong);
  cursor: pointer;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: all 0.25s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1400px) {
  .svc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .svc-card.featured {
    grid-column: span 1;
    flex-direction: column;
  }
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .process-steps::before {
    display: none;
  }
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .fac-cell.span2 {
    grid-column: span 1;
  }
  .fac-cell.row2 {
    grid-row: span 1;
  }
}
@media (max-width: 1100px) {
  .sec {
    padding: 80px 40px;
  }
  .cap-panel.active {
    grid-template-columns: 1fr;
  }
  .sus-layout {
    grid-template-columns: 1fr;
  }
  .page-hero-content {
    padding: 0 40px 48px;
  }
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 56px 40px;
  }
}
@media (max-width: 768px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .facilities-grid {
    grid-template-columns: 1fr;
  }
  .cap-tabs {
    gap: 0;
  }
  .cap-tab {
    padding: 10px 16px;
    font-size: 10px;
  }
}
