.our-services-heading {
  position: relative;
  width: 100%;
  height: 60rem;
  background-color: var(--color-black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8rem;
  padding-top: 7rem;
}

.our-services-heading::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.72) 60%,
    rgba(255, 230, 0, 0.234) 90%,
    rgba(255, 234, 0, 0.523) 100%
  );
  pointer-events: none;
}

.our-services-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--color-primary) 0%,
    var(--color-primary-light) 40%,
    transparent 75%
  );
  pointer-events: none;
  z-index: 2;
}

.section-heading-services {
  color: var(--color-primary);
}

.services-hero {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  position: relative;
  z-index: 1;
}

.services-logo {
  height: 20rem;
  width: auto;
  filter: drop-shadow(0 0 28px rgba(232, 177, 30, 0.55))
    drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  flex-shrink: 0;
}

.services-header-box {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  border-left: 4px solid var(--color-primary);
  padding-left: 2.4rem;
}

.section-eyebrow,
.services-eyebrow,
.cta-eyebrow {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  padding: 0.5rem 1.2rem;
  border: 1.5px solid rgba(232, 177, 30, 0.45);
  border-radius: 4px;
  background: rgba(232, 177, 30, 0.1);
  width: fit-content;
}

.services-header {
  font-size: 5.6rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1.05;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.text-accent {
  color: var(--color-primary);
  text-shadow: 0 0 32px rgba(232, 177, 30, 0.55);
}

.services-description {
  width: 60%;
  font-size: 1.6rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

/* =====================
   APPLICATION NAV GRID
   ===================== */

.app-nav-section {
  background-color: var(--color-bg);
  padding: 8rem 4rem;
}

.app-nav-inner {
  max-width: 120rem;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header-title {
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--color-text-dark);
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-top: 1.2rem;
  margin-bottom: 1.4rem;
}

.section-header-description {
  font-size: 1.6rem;
  color: var(--color-text-mid);
  max-width: 56rem;
  margin: 0 auto;
  line-height: 1.7;
}

.app-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.app-nav-card {
  position: relative;
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.app-nav-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.app-nav-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.app-nav-card:hover .app-nav-img {
  transform: scale(1.05);
}

.app-nav-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.18) 55%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 1.6rem;
  transition: background 0.25s ease;
}

.app-nav-card:hover .app-nav-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(232, 177, 30, 0.12) 70%,
    transparent 100%
  );
}

.app-nav-label {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
}

.app-nav-label::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.25s ease;
}

.app-nav-card:hover .app-nav-label::after {
  width: 100%;
}

/* =====================
   APPLICATION DETAIL SECTIONS
   ===================== */

.application-section {
  padding: 9rem 4rem;
  background-color: #fff;
}

.application-section--alt {
  background-color: var(--color-bg);
}

.application-container {
  max-width: 120rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}

.application-section--alt .application-container {
  direction: rtl;
}

.application-section--alt .application-text-col {
  direction: ltr;
}

.application-img-col {
  direction: ltr;
}

.application-img {
  width: 100%;
  height: 42rem;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: block;
}

.application-text-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.application-heading {
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--color-text-dark);
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-top: 1.2rem;
  margin-bottom: 2.4rem;
}

.application-body {
  font-size: 1.55rem;
  line-height: 1.75;
  color: var(--color-text-mid);
  margin-bottom: 1.4rem;
}

.application-body:last-child {
  margin-bottom: 0;
}

/* =====================
   CTA SECTION
   ===================== */

.call-to-action-section-1 {
  background-color: var(--color-black);
  padding: 8rem 4rem;
  position: relative;
}

.call-to-action-section-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--color-primary) 0%,
    var(--color-primary-light) 40%,
    transparent 75%
  );
  pointer-events: none;
}

.cta-container {
  max-width: 120rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}

.cta-eyebrow {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  padding: 0.5rem 1.2rem;
  border: 1.5px solid rgba(232, 177, 30, 0.45);
  border-radius: 4px;
  background: rgba(232, 177, 30, 0.1);
  width: fit-content;
  margin-bottom: 1.6rem;
}

.cta-header {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.4rem;
  letter-spacing: -0.5px;
}

.cta-subtext {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.cta-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

.cta-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 2.8rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cta-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.cta-card-primary-link {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cta-card-primary-link:hover {
  color: var(--color-primary);
}

.cta-card-secondary {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.4);
}

.cta-email-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-decoration: none;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s ease;
}

.cta-email-row:last-of-type {
  border-bottom: none;
}

.cta-email-row:hover {
  border-bottom-color: rgba(232, 177, 30, 0.3);
}

.cta-email-label {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
}

.cta-email-address {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease;
}

.cta-email-row:hover .cta-email-address {
  color: var(--color-primary);
}

.cta-address {
  font-style: normal;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}
