
/* Address Detail Page Styles */
.address-detail-container {
  background-color: #f8fafc;
  min-height: 100vh;
}

.address-detail-main {
  padding: 2rem 0;
}

.address-detail-breadcrumb {
  margin-bottom: 2rem;
}

.address-detail-breadcrumb .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #ffffff;
}

.address-detail-breadcrumb .breadcrumb a {
  color: #ffffff;
  text-decoration: none;
}

.address-detail-breadcrumb .breadcrumb a:hover {
  text-decoration: underline;
}

.address-detail-header {
  background-color: #2563eb;
  color: white;
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.address-detail-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.address-detail-location {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.address-detail-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.address-type-badge {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.address-detail-stats {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.9;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.main-content {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.content-section {
  padding: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.content-section:last-child {
  border-bottom: none;
}

.section-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.provider-info {
  background-color: #f1f5f9;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.provider-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.provider-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.provider-link:hover {
  text-decoration: underline;
}

.description-text {
  color: #475569;
  line-height: 1.6;
  background-color: #f8fafc;
  padding: 1.5rem;
  border-radius: 0.5rem;
}

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

.service-item {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.service-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.service-icon {
  background-color: #dbeafe;
  color: #2563eb;
  padding: 0.75rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.service-name {
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.service-description {
  color: #64748b;
  font-size: 0.875rem;
}

.sidebar {
  position: sticky;
  top: 2rem;
  height: fit-content;
}

.pricing-card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.pricing-header {
  background-color: #2563eb;
  color: white;
  padding: 1.5rem;
}

.pricing-title {
  font-size: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-subtitle {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}

.pricing-content {
  padding: 1.5rem;
}

.price-option {
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.price-option.highlighted {
  border-color: #2563eb;
  background-color: #f8fafc;
}

.price-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.price-name {
  font-weight: bold;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-period {
  font-size: 0.875rem;
  color: #64748b;
}

.price-amount {
  font-size: 1.25rem;
  font-weight: bold;
  color: #2563eb;
}

.price-note {
  font-size: 0.75rem;
  color: #64748b;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background-color: #2563eb;
  color: white;
}

.btn-primary:hover {
  background-color: #1d4ed8;
}

.btn-secondary {
  background-color: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
  background-color: #e2e8f0;
}

.contact-card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.contact-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 1rem;
}

.contact-description {
  color: #64748b;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-link {
  color: #2563eb;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-link:hover {
  text-decoration: underline;
}

.security-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .address-detail-title {
    font-size: 2rem;
  }
  
  .address-detail-location {
    font-size: 1.125rem;
  }
  
  .address-detail-header {
    padding: 2rem 0;
  }
  
  .content-section {
    padding: 1.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-content {
    padding: 1rem;
  }
}
