/* =================================================================
   Location-Specific Sections Styles
   ================================================================= */

/* Location Directions Section */
/* Note: Parent .services-section already has padding, so we override */
.services-section .location-directions {
  padding: 0;
  margin-top: 2rem;
}

/* Transportation Options Grid */
.transport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.transport-card {
  background: white;
  border: 2px solid #E5E5E5;
  border-radius: 12px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  position: relative;
}

.transport-card:hover {
  border-color: #FF6B4A;
  box-shadow: 0 8px 24px rgba(255, 107, 74, 0.12);
  transform: translateY(-4px);
}

.transport-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.transport-title {
  font-size: 18px;
  font-weight: 600;
  color: #171717;
  margin-bottom: 8px;
}

.transport-time {
  font-size: 24px;
  font-weight: 700;
  color: #FF6B4A;
  margin-bottom: 20px;
}

.transport-details {
  background: #FAFAFA;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  font-size: 14px;
}

.detail-item:last-child {
  margin-bottom: 0;
}

.detail-label {
  color: #737373;
  font-weight: 500;
  margin-right: 12px;
  min-width: 80px;
}

.detail-value {
  color: #171717;
  font-weight: 600;
  text-align: right;
  flex: 1;
}

.route-steps {
  padding-left: 20px;
  margin: 20px 0;
}

.route-steps li {
  color: #525252;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.transport-cta {
  margin-top: 20px;
}

.btn-secondary-small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: white;
  color: #FF6B4A;
  border: 2px solid #FF6B4A;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-secondary-small:hover {
  background: #FF6B4A;
  color: white;
  transform: translateY(-1px);
}

/* Practical Information Grid */
.practical-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.info-card {
  background: white;
  border: 2px solid #E5E5E5;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

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

.info-card.primary {
  border-color: #FF6B4A;
  background: linear-gradient(135deg, #FFF7F5 0%, white 100%);
}

.info-card.accent {
  border-color: #60A5FA;
  background: linear-gradient(135deg, #EFF6FF 0%, white 100%);
}

.info-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #171717;
  margin-bottom: 20px;
}

.info-address {
  font-size: 16px;
  line-height: 1.8;
  color: #171717;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E5E5E5;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.info-list li {
  font-size: 14px;
  line-height: 1.8;
  color: #525252;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.info-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22C55E;
  font-weight: 700;
}

.info-cta {
  margin-top: 20px;
}

/* Hours Grid */
.hours-grid {
  margin-bottom: 20px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #F5F5F5;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row.closed {
  opacity: 0.5;
}

.hours-day {
  font-weight: 600;
  color: #171717;
  font-size: 14px;
}

.hours-time {
  text-align: right;
  color: #525252;
  font-size: 14px;
  line-height: 1.6;
}

.hours-note {
  background: #FFF7E6;
  border: 1px solid #FFE5B4;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: #854D0E;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Tips List */
.tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tips-list li {
  font-size: 14px;
  line-height: 1.8;
  color: #525252;
  margin-bottom: 16px;
  padding-left: 24px;
  position: relative;
}

.tips-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #60A5FA;
  font-weight: 700;
  font-size: 16px;
}

/* Legacy grid styles (keeping for backward compatibility) */
.services-section .directions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 100%; /* Use full container width */
  margin: 0 auto;
}

.directions-card {
  background: #FAFAFA;
  padding: 40px;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.directions-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.directions-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #171717;
}

.directions-list {
  font-size: 15px;
  line-height: 1.8;
  padding-left: 20px;
  color: #525252;
}

.directions-list li {
  margin-bottom: 12px;
}

.directions-cta {
  margin-top: 24px;
}

.btn-map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FF6B4A;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-map:hover {
  background: #E55A3A;
  color: white;
  transform: translateY(-1px);
}

.btn-map:active {
  transform: translateY(0);
}

/* Hours Card */
.hours-card {
  background: #FFF7F5;
  padding: 40px;
  border-radius: 12px;
  border: 2px solid #FFE5DF;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hours-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 74, 0.15);
}

.hours-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #171717;
}

.hours-list {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #525252;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.phone-highlight {
  background: white;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
}

.phone-highlight a {
  font-size: 20px;
  font-weight: 600;
  color: #FF6B4A;
  text-decoration: none;
  transition: color 0.2s ease;
}

.phone-highlight a:hover {
  color: #E55A3A;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .transport-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .practical-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .transport-grid {
    grid-template-columns: 1fr;
  }

  .transport-card,
  .info-card {
    padding: 24px 20px;
  }

  .transport-icon {
    font-size: 40px;
  }

  .transport-time {
    font-size: 20px;
  }

  .practical-info-grid {
    gap: 16px;
    margin-top: 32px;
  }

  .detail-item {
    flex-direction: column;
    gap: 4px;
  }

  .detail-label {
    min-width: auto;
  }

  .detail-value {
    text-align: left;
  }

  .services-section .directions-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .directions-card,
  .hours-card {
    padding: 24px;
  }

  .services-section .location-directions {
    padding: 0;
    margin-top: 1.5rem;
  }
}

/* =================================================================
   Reviews/Social Proof Section
   ================================================================= */

.reviews-section {
  padding: 80px 20px;
  background: var(--white);
}

.reviews-container {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.reviews-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #171717;
  margin-bottom: 16px;
}

.reviews-section p {
  font-size: 18px;
  color: #737373;
  margin-bottom: 32px;
  line-height: 1.6;
}

.rating-highlight {
  color: #FFB800;
  font-weight: 600;
}

.btn-reviews {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FF6B4A;
  text-decoration: none;
  font-weight: 500;
  border: 2px solid #FF6B4A;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.2s ease;
}

.btn-reviews:hover {
  background: #FF6B4A;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 74, 0.3);
}

.btn-reviews:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .reviews-section {
    padding: 60px 16px;
  }

  .reviews-section h2 {
    font-size: 24px;
  }

  .reviews-section p {
    font-size: 16px;
  }

  .btn-reviews {
    padding: 14px 24px;
    font-size: 15px;
  }
}

/* =================================================================
   Additional Location Page Utilities
   ================================================================= */

.location-highlight {
  color: #FF6B4A;
  font-weight: 600;
}

.distance-badge {
  display: inline-block;
  background: #FFF7F5;
  color: #FF6B4A;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-left: 8px;
}
