:root {
    --primary-color: #2596be;
    --accent-color: #ffc107;
    --text-dark: #333;
    --bg-light: #f4f4f4;
    --transition: all 0.3s ease;
    --wcp-navy: #1a365d;    /* Deep professional blue */
    --wcp-gold: #ffc107;    /* Warm accent gold for headers/hover */
    --wcp-white: #ffffff;
    --wcp-light-gray: #f7fafc;
    --wcp-text-muted: #cbd5e0;
}

.site-footer {
  background-color: var(--wcp-navy);
  color: var(--wcp-white);
  padding-top: 40px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-top: 8px solid #00aad4;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr)) 2fr;
  gap: 20px;
}

/* Brand Header Style */
.footer-section h3 {
  color: var(--wcp-gold); /* Using the gold accent for visibility */
  text-align: left;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 22px;
  border-left: 3px solid var(--wcp-gold); /* Small brand flourish */
  padding-left: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section a {
  color: var(--wcp-white);
  text-decoration: none;
  opacity: 0.85;
  transition: all 0.2s ease;
}

.footer-section a:hover {
  color: var(--wcp-gold);
  opacity: 1;
  padding-left: 5px; /* Subtle interactive feel */
}

/* Contact Details */
address {
  font-style: normal;
  line-height: 1.4;
  color: var(--wcp-text-muted);
}

.footer-social a:hover {
  opacity: 1;
  padding-left: 0 !important
}
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

/* Style for icons to make them fit the dark background */
.social-icons img {
  border-radius: 8px;
  transition: scale 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* Copyright Bar */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding: 10px 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: var(--wcp-text-muted);
}

/* Responsive adjustment for small screens */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}