/* ===============================================================
   SERVICE / CONTENT PAGE DESIGN SYSTEM
   Extracted from the brand-development page so every page on the
   site shares one consistent design language instead of each
   carrying its own copy.
   =============================================================== */

/* ---------------- Hero ---------------- */
.service-hero {
  position: relative;
  width: 100%;
  height: 90vh;
  padding: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.service-bg {
  position: absolute;
  top: -25%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.service-hero-header {
  position: relative;
  z-index: 1;
  text-align: center;
}

.service-hero h1,
.service-hero h3 {
  color: var(--color-text);
  font-family: var(--font-secondary);
  text-transform: uppercase;
  text-align: center;
  line-height: 100%;
  margin: 0;
}

.service-hero h3 {
  font-size: 2vw;
  letter-spacing: 0;
  line-height: 105%;
  margin-bottom: 1em;
}

.service-hero h1 {
  margin: 0;
  font-size: 8vw;
}

.service-hero p {
  max-width: 600px;
  text-align: center;
  margin-top: 2em;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.6;
}

/* ---------------- Content shell ---------------- */
.service-content {
  width: 100%;
  padding: 8em 1.5em;
  background: var(--color-bg-secondary);
  border-radius: 12px 12px 0 0;
  margin-top: -6em;
  position: relative;
  z-index: 1;
}

.service-section {
  display: flex;
  margin-bottom: 6em;
}

.service-col:nth-child(1) { flex: 2; padding: 1em; }
.service-col:nth-child(2) { flex: 4; padding: 1em; }

.service-title {
  font-family: var(--font-secondary);
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1em;
  color: var(--color-text);
}

.service-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 2em;
  max-width: 600px;
}

/* ---------------- Offering cards ---------------- */
.offerings {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-bottom: 4em;
}

.offering-item {
  width: calc(50% - 0.5em);
  background: var(--color-bg);
  border-radius: 8px;
  padding: 2em;
  border: 1px solid transparent;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.offering-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.offering-icon {
  font-size: 36px;
  color: #ff6b00;
  margin-bottom: 1em;
}

.offering-title {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 0.5em;
  color: var(--color-text);
}

.offering-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

/* ---------------- Process steps ---------------- */
.process { padding: 4em 0; }

.process-heading {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2em;
  color: var(--color-text);
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}

.process-step {
  width: calc(33.33% - 1em);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2em;
  text-align: center;
  position: relative;
  transition: transform 0.3s, background 0.3s;
}

.process-step:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.14);
}

.step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 40px;
  height: 40px;
  background: linear-gradient(to right, #fc002d, #ff6b00);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  color: var(--color-text);
}

.step-title {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 1em;
  color: var(--color-text);
}

.step-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

/* ---------------- Example / card grid ---------------- */
.brand-examples { margin: 4em 0; }

.examples-heading {
  font-family: var(--font-secondary);
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 2em;
  text-align: center;
  color: var(--color-text);
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
}

.example-item {
  background: var(--color-bg);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.example-item:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.example-image {
  height: 200px;
  overflow: hidden;
}

.example-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.example-item:hover .example-image img { transform: scale(1.06); }

.example-details { padding: 2em; }

.example-title {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 1em;
  color: var(--color-text);
}

.example-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

/* ---------------- CTA ---------------- */
.cta-section {
  padding: 4em 0;
  text-align: center;
}

.cta-button {
  display: inline-block;
  padding: 1em 2em;
  background: linear-gradient(to right, #fc002d, #ff6b00);
  border-radius: 8px;
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(255, 107, 0, 0.4);
}

/* ---------------- Responsive ---------------- */
@media (max-width: 900px) {
  .service-hero h3 { font-size: 4vw; }
  .service-hero h1 { font-size: 12vw; }
  .service-section { flex-direction: column; }
  .offering-item { width: 100%; }
  .process-step { width: 100%; margin-bottom: 2em; }
  .examples-grid { grid-template-columns: 1fr; }
  .service-content { padding: 5em 1.25em; }
  .process-heading, .examples-heading { font-size: 1.6rem; }
}

@media (max-width: 600px) {
  .service-hero { height: 75vh; }
  .service-title { font-size: 1.5rem; }
}
