.pd-footer {
  --background-dark: #1c1c1c;
  --accent: #c6a75e;
  --text-white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --text-faint: rgba(255, 255, 255, 0.6);
  --border-color: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(255, 255, 255, 0.2);
  --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--background-dark);
  color: var(--text-white);
  border-top: 1px solid var(--border-color);
  font-family: var(--font-family);
}

.pd-footer,
.pd-footer * {
  box-sizing: border-box;
}

.pd-footer * {
  margin: 0;
  padding: 0;
}

.pd-footer .footer-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

@media (min-width: 1024px) {
  .pd-footer .footer-container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.pd-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .pd-footer .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pd-footer .footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 0.5rem !important;
  overflow: hidden;
  margin-bottom: 1rem;
  transition: opacity 0.3s ease;
}

.pd-footer .footer-logo:hover {
  opacity: 0.8;
}

.pd-footer .footer-logo-img,
.pd-footer .footer-logo img {
  display: block;
  height: 4rem;
  width: auto;
  border-radius: 0;
  object-fit: contain;
}

.pd-footer .footer-logo-fallback {
  height: 4rem;
  width: 4rem;
  background-color: #ffffff;
  color: var(--background-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.75rem;
  border-radius: 0.5rem;
  letter-spacing: -1.5px;
}

.pd-footer .footer-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.625;
  margin-bottom: 0.75rem;
}

.pd-footer .footer-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
  margin-bottom: 1.25rem;
}

.pd-footer .footer-phone:hover {
  color: var(--accent);
}

.pd-footer .icon-phone {
  width: 16px;
  height: 16px;
}

.pd-footer .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.25rem;
}

/* Fine-tune spacing in the first footer column */
.pd-footer .footer-grid > div:first-child .footer-desc {
  margin-bottom: 0.5rem !important;
}

.pd-footer .footer-grid > div:first-child .footer-phone {
  margin-bottom: 1.75rem !important;
}

.pd-footer .footer-grid > div:first-child .social-links {
  margin-top: 0.5rem !important;
}

.pd-footer .social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border-hover);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.pd-footer .social-icon:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.pd-footer .social-icon i {
  font-size: 18px;
  line-height: 1;
}

.pd-footer .social-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

footer.pd-footer .footer-heading {
  color: var(--text-white);
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  text-transform: none !important;
  font-weight: 400;
}

.pd-footer .links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.pd-footer .footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.pd-footer .footer-link:hover {
  color: var(--accent);
}

.pd-footer .coverage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.pd-footer .coverage-item {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.pd-footer .coverage-item:hover {
  color: var(--accent);
}

.pd-footer .coverage-dot {
  color: var(--accent);
  margin: 0 0.5rem;
}

.pd-footer .other-brands-section {
  margin-top: 2rem;
}

footer.pd-footer .brands-heading {
  color: var(--text-white);
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  text-transform: none !important;
  font-weight: 400;
}

footer.pd-footer h4,
footer.pd-footer h4 span {
  text-transform: none !important;
}

#wrapper footer.pd-footer,
#wrapper footer.pd-footer * {
  text-transform: none !important;
}

.pd-footer .brands-flex {
  display: flex;
  gap: 1rem;
}

.pd-footer .brand-logo {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.pd-footer .brand-logo:hover {
  border-color: var(--accent);
}

.pd-footer .brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pd-footer .brand-fallback {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
}

.pd-footer .footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .pd-footer .footer-bottom {
    flex-direction: row;
  }
}

.pd-footer .copyright-text {
  color: var(--text-faint);
  font-size: 0.75rem;
}

.pd-footer .copyright-text a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pd-footer .copyright-text a:hover {
  color: var(--accent);
}

.pd-footer .policy-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.75rem;
}

.pd-footer .policy-links a {
  color: var(--text-faint);
  text-decoration: none;
  transition: color 0.3s ease;
}

.pd-footer .policy-links a:hover {
  color: var(--accent);
}
