/**
 * Location Pages CSS - Design blocks for zones-intervention and location-specific pages
 */

/* Hero Section for Location Pages */
.hero-location { 
  background: linear-gradient(135deg, #005eb8, #00a6fb); 
  color: white; 
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero-location::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/paris-skyline-pattern.png') repeat-x bottom;
  opacity: 0.1;
  pointer-events: none;
}

.hero-paris { 
  background: linear-gradient(135deg, #005eb8, #00a6fb); 
  color: white; 
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero-paris::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/paris-skyline-pattern.png') repeat-x bottom;
  opacity: 0.1;
  pointer-events: none;
}

.hero-content { 
  max-width: 1200px; 
  margin: 0 auto; 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 3rem; 
  align-items: center; 
  position: relative; 
  z-index: 1; 
}

.location-badge,
.paris-badge { 
  background: rgba(255,255,255,0.2); 
  padding: 0.5rem 1rem; 
  border-radius: 20px; 
  font-size: 0.875rem; 
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.location-features,
.paris-features { 
  display: flex; 
  gap: 1.5rem; 
  margin-top: 2rem; 
  flex-wrap: wrap; 
}

.location-features span,
.paris-features span { 
  background: rgba(255,255,255,0.15); 
  padding: 0.5rem 1rem; 
  border-radius: 15px; 
  font-size: 0.875rem;
}

.hero-image img { 
  max-width: 100%; 
  height: auto; 
  border-radius: 12px; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.2); 
}

/* Arrondissements/Areas Section */
.arrondissements-section { 
  padding: 4rem 0; 
}

.arrond-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  gap: 1.5rem; 
  margin-top: 3rem; 
}

.arrond-card { 
  background: white; 
  border: 2px solid #e0e0e0; 
  border-radius: 12px; 
  padding: 1.5rem; 
  text-decoration: none; 
  color: inherit; 
  transition: all 0.3s ease;
  position: relative;
}

.arrond-card:hover { 
  border-color: #005eb8; 
  transform: translateY(-3px); 
  box-shadow: 0 8px 25px rgba(0,94,184,0.15); 
}

.arrond-card.central { 
  border-color: #ff6b35; 
}

.arrond-card.central:hover { 
  border-color: #ff5722; 
}

.arrond-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #005eb8;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.arrond-card.central .arrond-number { 
  background: #ff6b35; 
}

.arrond-card strong { 
  display: block; 
  font-size: 1.1rem; 
  margin-bottom: 0.5rem; 
  color: #005eb8;
  padding-right: 2.5rem;
}

.arrond-card.central strong { 
  color: #ff6b35; 
}

.arrond-details { 
  color: #666; 
  font-size: 0.875rem; 
  margin-bottom: 0.5rem; 
}

.arrond-quartiers { 
  font-size: 0.75rem; 
  color: #888; 
}

.metro-info { 
  margin-top: 0.5rem; 
  font-size: 0.75rem; 
  color: #4caf50;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Paris Specialties/Location Services */
.paris-specialites,
.location-services { 
  background: #f8f9fa; 
  padding: 4rem 0; 
}

.specialites-grid,
.services-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 2rem; 
  margin-top: 2rem; 
}

.specialite-card,
.service-card { 
  background: white; 
  border-radius: 12px; 
  overflow: hidden; 
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.specialite-card:hover,
.service-card:hover {
  transform: translateY(-3px);
}

.specialite-image,
.service-image { 
  position: relative; 
}

.specialite-image img,
.service-image img { 
  width: 100%; 
  height: 180px; 
  object-fit: cover; 
}

.specialite-badge,
.service-badge { 
  position: absolute; 
  top: 1rem; 
  left: 1rem; 
  background: #005eb8; 
  color: white; 
  padding: 0.25rem 0.75rem; 
  border-radius: 15px; 
  font-size: 0.75rem; 
}

.specialite-content,
.service-content { 
  padding: 1.5rem; 
}

/* Coverage Areas */
.coverage-section {
  padding: 4rem 0;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.coverage-item {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.coverage-item:hover {
  border-color: #005eb8;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,94,184,0.1);
}

.coverage-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.coverage-item h3 {
  color: #005eb8;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.coverage-item p {
  color: #666;
  font-size: 0.875rem;
}

/* Response Times */
.response-times {
  background: #f0f8ff;
  padding: 3rem 0;
}

.times-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.time-item {
  text-align: center;
}

.time-number {
  font-size: 3rem;
  font-weight: 700;
  color: #005eb8;
  display: block;
  line-height: 1;
}

.time-label {
  color: #666;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.time-description {
  color: #888;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

/* CTA Section for Locations */
.cta-paris,
.cta-location { 
  background: linear-gradient(135deg, #ff6b35, #ff5722); 
  color: white; 
  padding: 4rem 0; 
  text-align: center;
  position: relative;
}

.cta-paris::before,
.cta-location::before {
  content: '🗼';
  position: absolute;
  font-size: 8rem;
  opacity: 0.1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.cta-paris h2,
.cta-location h2 { 
  color: white; 
  margin-bottom: 1rem; 
  position: relative; 
  z-index: 1; 
}

.cta-paris p,
.cta-location p { 
  position: relative; 
  z-index: 1; 
}

.btn-paris,
.btn-location { 
  display: inline-block; 
  background: white; 
  color: #ff5722; 
  padding: 1rem 2rem; 
  border-radius: 8px; 
  text-decoration: none; 
  font-weight: 700; 
  font-size: 1.1rem; 
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.btn-paris:hover,
.btn-location:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Emergency Services Highlight */
.emergency-highlight {
  background: linear-gradient(135deg, #ff5722, #d32f2f);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 2rem 0;
}

.emergency-highlight h3 {
  color: white;
  margin-bottom: 1rem;
}

.emergency-phone {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  margin: 1rem 0;
}

.emergency-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.emergency-features span {
  background: rgba(255,255,255,0.2);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content { 
    grid-template-columns: 1fr; 
    text-align: center; 
  }
  
  .location-features,
  .paris-features { 
    justify-content: center; 
  }
  
  .arrond-grid { 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
  }
  
  .specialites-grid,
  .services-grid { 
    grid-template-columns: 1fr; 
  }
  
  .coverage-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .times-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  
  .emergency-features {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-location,
  .hero-paris {
    padding: 3rem 0;
  }
  
  .arrondissements-section,
  .paris-specialites,
  .location-services,
  .coverage-section,
  .cta-paris,
  .cta-location {
    padding: 3rem 0;
  }
  
  .arrond-card,
  .specialite-card,
  .service-card,
  .coverage-item {
    padding: 1rem;
  }
  
  .time-number {
    font-size: 2.5rem;
  }
}