/* CLEAN MODERN FOOTER */
.site-footer {
  background: linear-gradient(135deg, #0e3b3a 0%, #0a2928 100%);
  color: #ffffff;
  margin-top: 80px;
  position: relative;
}

/* Wave Decoration */
.footer-wave {
  position: relative;
  top: -1px;
  width: 100%;
  line-height: 0;
}

.footer-wave svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Container */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 30px 30px;
}

/* Main Content Grid */
.footer-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

/* Column Headings */
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #60d5c5;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 24px 0;
}

/* Brand Section */
.brand-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.brand-icon {
  font-size: 40px;
  line-height: 1;
}

.brand-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.brand-tagline {
  font-size: 12px;
  color: #60d5c5;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 4px 0 0 0;
}

.brand-description {
  color: #b0b7be;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.brand-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  padding: 5px 12px;
  background: rgba(96, 213, 197, 0.15);
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  color: #60d5c5;
}

/* Info List */
.info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.info-item:hover {
  background: rgba(96, 213, 197, 0.1);
  transform: translateX(3px);
}

.info-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.info-item > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-label {
  font-size: 10px;
  color: #8b95a0;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 13px;
  color: #ffffff;
  font-weight: 500;
}

.office-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(96, 213, 197, 0.2);
  border-radius: 12px;
  padding: 20px;
}

.office-name {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.office-name span {
  font-size: 18px;
}

.office-name strong {
  font-size: 14px;
  color: #ffffff;
}

.office-address {
  color: #b0b7be;
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 16px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.office-hours strong {
  display: block;
  font-size: 12px;
  color: #60d5c5;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.hours-list > div {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.hours-list > div span:first-child {
  color: #8b95a0;
  font-weight: 600;
}

.hours-list > div span:last-child {
  color: #ffffff;
  font-weight: 500;
}

.closed {
  color: #ef4444 !important;
  font-weight: 700 !important;
}

.btn-map {
  display: inline-block;
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, #60d5c5, #4db8aa);
  color: #0a2928;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s;
}

.btn-map:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(96, 213, 197, 0.4);
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #8b95a0;
}

.footer-bottom strong {
  color: #ffffff;
  font-weight: 700;
}

.disclaimer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px !important;
}

.disclaimer svg {
  stroke: #60d5c5;
  flex-shrink: 0;
}

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-container {
    padding: 40px 20px 20px;
  }

  .brand-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-icon {
    font-size: 32px;
  }
}