/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 06 2026 | 08:47:26 */
:root {
  --ft-bg-dark: #0f2410;       /* Ultra deep forest brand green base */
  --ft-bg-lighter: #163317;    /* Secondary slightly lighter green layer */
  --ft-accent-gold: #e6b326;   /* Clean brand deep gold accent */
  --ft-text-light: #ffffff;
  --ft-text-muted: rgba(255, 255, 255, 0.7);
}

.absolute-footer, .absolute-footer .container {
	padding: unset;
	max-width: unset;
}



.smcc-main-footer {
  background-color: var(--ft-bg-dark);
  color: var(--ft-text-light);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  padding-top: 4.5rem;
  width: 100vw;
  text-align: justify;
}

.footer-upper-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 3.5rem 1.5rem;
}

/* Footer Responsive Matrix Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1.2fr; /* Perfect balanced column system */
    gap: 4rem;
  }
}

/* Brand Summary Info Block */
.footer-brand-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ft-accent-gold);
  margin-top: 0;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.footer-brand-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ft-text-muted);
  margin-bottom: 1.75rem;
}

/* Interactive Social Icons System */
.footer-social-wrapper {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ft-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, color 0.2s ease;
}

.social-btn:hover {
  transform: translateY(-3px);
  background-color: var(--ft-accent-gold);
  color: #1a1a1a;
  border-color: var(--ft-accent-gold);
}

/* Menu Links Columns Styling */
.footer-col-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ft-text-light);
  margin-top: 0;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--ft-accent-gold);
  border-radius: 1px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 0.85rem;
}

.footer-links-list li a {
  color: var(--ft-text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer-links-list li a:hover {
  color: var(--ft-accent-gold);
  padding-left: 4px;
}

/* Contact Column Touchpoints list */
.footer-contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ft-text-muted);
  margin-bottom: 1rem;
}

.contact-detail-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-detail-item a:hover {
  color: var(--ft-accent-gold);
}

.detail-icon {
  width: 18px;
  height: 18px;
  color: var(--ft-accent-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Baseline Sub-Footer Bar Layout */
.footer-lower-baseline {
  background-color: var(--ft-bg-lighter);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
}

.footer-baseline-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.copyright-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-mottos {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-mottos .motto-separator {
  color: var(--ft-accent-gold);
}

@media (min-width: 768px) {
  .footer-baseline-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}