/**
 * Jaunt Studio - Location & Industry Page Styles
 */

/* Location/Industry Hero */
.location-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 40px 80px;
  background: var(--color-dark);
  color: #fff;
}

.location-hero-content {
  max-width: 900px;
  text-align: center;
}

.location-hero-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 24px;
  display: block;
}

.location-hero-title {
  font-family: var(--font-primary);
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 24px 0;
  color: #fff;
}

.location-hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

/* Location Content */
.location-intro {
  padding: 100px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.location-intro p {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  margin: 0 0 24px 0;
}

/* Services Available Grid */
.location-services {
  padding: 80px 40px;
  background: var(--color-offwhite);
}

.location-services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.location-service-item {
  background: #fff;
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.location-service-icon {
  width: 40px;
  height: 40px;
  color: var(--color-orange);
  margin: 0 auto 12px;
}

.location-service-name {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #000;
}

.location-service-name a {
  color: #000;
  text-decoration: none;
  transition: color 0.2s ease;
}

.location-service-name a:hover {
  color: var(--color-orange);
}

.location-service-text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Why Choose Section */
.location-why {
  padding: 100px 40px;
  background: var(--color-dark);
}

.location-why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.location-why-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px 0;
}

.location-why-item p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ===========================
   RESPONSIVE - LOCATIONS
   =========================== */

@media (max-width: 768px) {
  .location-hero {
    padding: 140px 24px 60px;
    min-height: 40vh;
  }

  .location-intro {
    padding: 60px 24px;
  }

  .location-services {
    padding: 60px 24px;
  }

  .location-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .location-why {
    padding: 60px 24px;
  }

  .location-why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .location-services-grid {
    grid-template-columns: 1fr;
  }
}
