/* Footer new theme - standalone styles for use in legacy WP-replicated pages */
:root {
  --color-primary: #2a7475;
  --color-primary-dark: #1f5859;
  --color-secondary: #c45c3e;
  --color-secondary-dark: #a3492f;
  --color-dark: #1a1a1a;
  --color-white: #fff;
  --max-width: 1200px;
  --radius: 12px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--color-secondary);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-secondary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(196, 92, 62, 0.3);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-dark);
}

.site-footer-new {
  background: #4a8b7a;
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  background: var(--color-white);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 58px !important;
  height: 58px !important;
  max-width: 58px !important;
  object-fit: contain;
}

.footer-brand p {
  max-width: 300px;
  font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--color-white);
  margin: 0 0 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-contact a {
  color: var(--color-white);
}

.footer-cta {
  margin-top: 1.25rem;
}

.footer-cta .btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

.footer-blog-intro {
  font-size: 0.9rem;
  margin: -0.5rem 0 0.75rem;
  opacity: 0.8;
}

.footer-brand h4 {
  margin-top: 1.5rem;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.social-icons a:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.social-icons svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-bottom p {
  margin: 0.25rem 0;
}

.footer-bottom a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

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