/* location-detail.css
   Single-location page styles.
   Shared header/nav still comes from styleNew.css.
*/

.location-demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 5%;
  background: #111;
  color: #fff;
}

.location-demo-logo img {
  width: 170px;
  max-width: 42vw;
  height: auto;
  display: block;
}

.location-demo-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.location-demo-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

.location-page {
  background: #fff;
}

.location-hero {
  min-height: 480px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.location-hero-screen {
  min-height: 480px;
  padding: 70px 6%;
  background:
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.62) 48%, rgba(0,0,0,.22) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  font-weight: 800;
  color: #f3c14b;
}

.location-hero h1 {
  max-width: 900px;
  margin: 0 0 16px;
  font-size: clamp(34px, 6vw, 68px);
  line-height: .98;
}

.location-hero-copy {
  max-width: 820px;
  margin: 0;
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.45;
}

.location-hero-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.location-hero-buttons.center {
  justify-content: center;
}

.location-btn {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 8px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.location-btn.primary {
  background: #d71920;
  color: #fff;
}

.location-content {
  width: min(1180px, 94%);
  margin: 42px auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 30px;
}

.location-info-card,
.location-main-copy,
.location-process,
.location-bottom-cta {
  border-radius: 12px;
  box-shadow: 0 14px 38px rgba(0,0,0,.12);
}

.location-info-card {
  padding: 24px;
  align-self: start;
  background: #fff;
}

.location-info-card h2,
.location-main-copy h2,
.location-process h2,
.location-bottom-cta h2 {
  margin-top: 0;
}

.location-info-row {
  border-top: 1px solid rgba(0,0,0,.1);
  padding: 12px 0;
}

.location-info-row span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  color: #555;
}

.location-info-row p {
  margin: 5px 0 0;
  font-weight: 700;
}

.location-info-row a {
  color: #d71920;
}

.manager-photo {
  width: 180px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 18px;
  border-radius: 10px;
}

.location-main-copy {
  padding: 30px;
  background: #fff;
}

.location-main-copy p {
  font-size: 18px;
  line-height: 1.65;
}

.location-service-grid {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.location-service-grid article {
  padding: 20px;
  border-radius: 10px;
  background: #f4f4f4;
}

.location-service-grid h3 {
  margin: 0 0 8px;
}

.location-service-grid p {
  margin: 0;
  font-size: 15px;
}

.location-process {
  width: min(1180px, 94%);
  margin: 38px auto;
  padding: 30px;
  background: #111;
  color: #fff;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.process-steps div {
  padding: 18px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.09);
  text-align: center;
}

.process-steps span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: #d71920;
  color: #fff;
  font-weight: 900;
}

.process-steps p {
  margin: 0;
  font-weight: 800;
}

.location-bottom-cta {
  width: min(1180px, 94%);
  margin: 38px auto 55px;
  padding: 34px 24px;
  text-align: center;
  background: #f4f4f4;
}

.location-bottom-cta p {
  font-size: 18px;
}

@media (max-width: 900px) {
  .location-demo-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .location-content {
    grid-template-columns: 1fr;
  }

  .location-service-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-hero,
  .location-hero-screen {
    min-height: 420px;
  }

  .location-hero-screen {
    padding: 48px 5%;
    background: rgba(0,0,0,.68);
  }
}

@media (max-width: 520px) {
  .location-btn {
    width: 100%;
    text-align: center;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}
