:root {
  --fcd-primary: #005b8f;
  --fcd-border-radius: 6px;
  --fcd-card-bg: #ffffff;
  --fcd-card-border: #e0e0e0;
  --fcd-spacing-sm: 0.75rem;
  --fcd-spacing-md: 1.25rem;
  --fcd-spacing-lg: 2rem;
  --fcd-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

a:focus {
  outline: 2px solid var(--fcd-primary);
  outline-offset: 2px;
}

.fcd-directory {
  margin: var(--fcd-spacing-lg) 0;
}

.fcd-directory__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--fcd-spacing-md);
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 600px) {
  .fcd-directory__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .fcd-directory__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fcd-directory__empty {
  padding: var(--fcd-spacing-lg);
  text-align: center;
  color: #666;
}

.fcd-directory__empty p {
  margin: 0;
  font-size: 1rem;
}

.fcd-card {
  background: var(--fcd-card-bg);
  border: 1px solid var(--fcd-card-border);
  border-radius: var(--fcd-border-radius);
  padding: var(--fcd-spacing-md);
  box-shadow: var(--fcd-shadow);
  transition: box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.fcd-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.fcd-card__title {
  margin-top: 0;
  margin-bottom: var(--fcd-spacing-sm);
  font-size: 1.25rem;
  font-weight: 600;
}

.fcd-card__title a {
  color: var(--fcd-primary);
  text-decoration: none;
}

.fcd-card__title a:hover {
  text-decoration: underline;
}

.fcd-card__title a:focus {
  outline: 2px solid var(--fcd-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

.fcd-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #555;
}

.fcd-card__location {
  display: flex;
  align-items: center;
}

.fcd-card__location::before {
  content: "📍";
  margin-right: 0.4rem;
}

.fcd-card__phone {
  display: flex;
  align-items: center;
}

.fcd-card__phone::before {
  content: "📞";
  margin-right: 0.4rem;
}

.fcd-listing {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--fcd-spacing-md);
}

.fcd-listing__header {
  margin-bottom: var(--fcd-spacing-lg);
  border-bottom: 2px solid var(--fcd-card-border);
  padding-bottom: var(--fcd-spacing-md);
}

.fcd-listing__title {
  margin: 0 0 var(--fcd-spacing-sm) 0;
  font-size: 2rem;
  color: #222;
}

.fcd-listing__subtitle {
  font-size: 1.1rem;
  color: #666;
  display: flex;
  align-items: center;
}

.fcd-listing__subtitle::before {
  content: "📍";
  margin-right: 0.5rem;
}

.fcd-listing__contact {
  display: flex;
  flex-direction: column;
  gap: var(--fcd-spacing-sm);
  margin-bottom: var(--fcd-spacing-lg);
}

@media (min-width: 600px) {
  .fcd-listing__contact {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .fcd-btn {
    flex: 0 1 auto;
  }
}

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

.fcd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--fcd-border-radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.fcd-btn--primary {
  background: var(--fcd-primary);
  color: #ffffff;
}

.fcd-btn--primary:hover {
  background: #004875;
  color: #ffffff;
}

.fcd-btn--secondary {
  background: #ffffff;
  color: var(--fcd-primary);
  border: 2px solid var(--fcd-primary);
}

.fcd-btn--secondary:hover {
  background: var(--fcd-primary);
  color: #ffffff;
}

.fcd-btn:focus {
  outline: 3px solid var(--fcd-primary);
  outline-offset: 2px;
}

.fcd-btn--primary:focus {
  outline-color: #004875;
}

.fcd-btn--secondary:focus {
  outline-color: var(--fcd-primary);
}

.fcd-listing__info {
  background: #f9f9f9;
  border: 1px solid var(--fcd-card-border);
  border-radius: var(--fcd-border-radius);
  padding: var(--fcd-spacing-md);
  margin-bottom: var(--fcd-spacing-lg);
}

.fcd-listing__info-item {
  margin-bottom: var(--fcd-spacing-md);
}

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

.fcd-listing__info-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fcd-listing__info-value {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.fcd-listing__content {
  margin-bottom: var(--fcd-spacing-lg);
  line-height: 1.7;
}

.fcd-claim-section {
  margin-top: var(--fcd-spacing-lg);
}

.fcd-claim-box {
  background: #f9f9f9;
  border: 1px solid var(--fcd-card-border);
  border-radius: var(--fcd-border-radius);
  padding: var(--fcd-spacing-md);
}

.fcd-claim-box__title {
  margin-top: 0;
  margin-bottom: var(--fcd-spacing-md);
  font-size: 1.5rem;
  color: #333;
}

.fcd-claim-box__description {
  margin-bottom: var(--fcd-spacing-md);
  color: #555;
  line-height: 1.6;
}

.fcd-claim-form {
  max-width: 600px;
}

.fcd-claim-form p {
  margin-bottom: var(--fcd-spacing-md);
}

.fcd-claim-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: #333;
}

.fcd-claim-form .required {
  color: #d32f2f;
}

.fcd-claim-form input[type="text"],
.fcd-claim-form input[type="email"],
.fcd-claim-form textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--fcd-card-border);
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}

.fcd-claim-form input[type="text"]:focus,
.fcd-claim-form input[type="email"]:focus,
.fcd-claim-form textarea:focus {
  outline: 2px solid var(--fcd-primary);
  outline-offset: 0;
  border-color: var(--fcd-primary);
  box-shadow: 0 0 0 3px rgba(0, 91, 143, 0.15);
}



.fcd-message-success {
  padding: var(--fcd-spacing-sm) var(--fcd-spacing-md);
  margin-bottom: var(--fcd-spacing-md);
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: var(--fcd-border-radius);
  color: #155724;
}

.fcd-message-error {
  padding: var(--fcd-spacing-sm) var(--fcd-spacing-md);
  margin-bottom: var(--fcd-spacing-md);
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: var(--fcd-border-radius);
  color: #721c24;
}

.fcd-message-success p,
.fcd-message-error p {
  margin: 0;
}
