.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

@media (max-width: 767px) {
  .nav-logo-img {
    height: 34px;
  }
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.service-block.reverse {
  direction: rtl;
}

.service-block.reverse>* {
  direction: ltr;
}

.service-img-side {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.service-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, #ece8e0 0%, #ddd8ce 100%);
  border: 2px dashed rgba(200, 169, 110, 0.45);
}

.service-img-placeholder i {
  font-size: 2.6rem;
  color: rgba(200, 169, 110, 0.6);
}

.service-img-placeholder span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(140, 118, 78, 0.75);
  text-align: center;
  padding: 0 20px;
}

.service-text-side {
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.service-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold, #c8a96e);
  margin-bottom: 12px;
  display: block;
}

.service-text-side h3 {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--charcoal, #1a1a12);
  margin-bottom: 6px;
  line-height: 1.2;
}

.service-divider {
  width: 40px;
  height: 3px;
  background: var(--gold, #c8a96e);
  margin: 16px 0 20px;
}

.service-text-side p {
  font-size: 0.93rem;
  line-height: 1.82;
  color: #555;
  margin-bottom: 22px;
}

.service-benefits-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal, #1a1a12);
  margin-bottom: 10px;
}

.service-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.service-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: #444;
  line-height: 1.5;
}

.service-benefits li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold, #c8a96e);
  margin-top: 7px;
}

.service-block.dark-text .service-text-side {
  background: var(--charcoal, #1a1a12);
}

.service-block.dark-text .service-text-side h3 {
  color: #fff;
}

.service-block.dark-text .service-text-side p {
  color: rgba(255, 255, 255, 0.55);
}

.service-block.dark-text .service-benefits-label {
  color: rgba(255, 255, 255, 0.7);
}

.service-block.dark-text .service-benefits li {
  color: rgba(255, 255, 255, 0.55);
}

.service-block.dark-text .service-img-placeholder {
  background: linear-gradient(135deg, #22201A 0%, #1A1812 100%);
  border-color: rgba(200, 169, 110, 0.22);
}

.service-block.dark-text .service-img-placeholder i {
  color: rgba(200, 169, 110, 0.38);
}

.service-block.dark-text .service-img-placeholder span {
  color: rgba(200, 169, 110, 0.48);
}

@media (max-width: 991px) {

  .service-block,
  .service-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .service-block.reverse>* {
    direction: ltr;
  }

  .service-img-side {
    min-height: 260px;
  }

  .service-text-side {
    padding: 36px 28px;
  }

  .service-text-side h3 {
    font-size: 1.3rem;
  }
}

.industry-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 169, 110, 0.12);
  padding: 32px 26px 28px;
  height: 100%;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.industry-card:hover {
  border-color: rgba(200, 169, 110, 0.4);
  background: rgba(255, 255, 255, 0.07);
}

.industry-icon-wrap {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(200, 169, 110, 0.3);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold, #c8a96e);
}

.industry-body h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.industry-body p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.industry-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.industry-tags li {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold, #c8a96e);
  border: 1px solid rgba(200, 169, 110, 0.25);
  padding: 3px 9px;
}

.industry-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  font-family: var(--font-serif, Georgia, serif);
  line-height: 1;
  pointer-events: none;
}

.exp-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.exp-tile {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px 20px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.exp-tile:hover {
  border-color: var(--gold, #c8a96e);
  box-shadow: 0 4px 24px rgba(200, 169, 110, 0.12);
}

.exp-tile-wide {
  grid-column: span 2;
}

.exp-tile i {
  font-size: 1.3rem;
  color: var(--gold, #c8a96e);
  flex-shrink: 0;
  margin-top: 2px;
}

.exp-tile strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--charcoal, #1a1a12);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.exp-tile span {
  display: block;
  font-size: 0.82rem;
  color: #666;
  line-height: 1.65;
}

@media (max-width: 576px) {
  .exp-highlights-grid {
    grid-template-columns: 1fr;
  }

  .exp-tile-wide {
    grid-column: span 1;
  }
}

.service-hero-icon {
  width: 72px;
  height: 72px;
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.service-full-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  padding: 48px 40px;
  transition: var(--transition);
  height: 100%;
}

.service-full-card:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.why-item:last-child {
  border-bottom: none;
}

.why-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}

@media (max-width: 767px) {
  .service-full-card {
    padding: 32px 24px;
  }
}