/* Compact Footer Styles */
.compact-footer {
  position: relative;
  background: linear-gradient(135deg, #b7cfe7 0%, #e2e8f0 100%);
  overflow: hidden;

}

/* Decorative Elements */
.footer-decorations {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0.03;
}

.decoration-circle {
  position: absolute;
  border: 2px solid #16a34a;
  border-radius: 50%;
}

.circle-1 {
  width: 120px;
  height: 120px;
  top: 20px;
  right: 50px;
}

.circle-2 {
  width: 80px;
  height: 80px;
  bottom: 30px;
  left: 100px;
}

.circle-3 {
  width: 60px;
  height: 60px;
  top: 50%;
  left: 30px;
}

.cow-pattern {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 80px;
  height: 50px;
  opacity: 0.5;
}

.cow-pattern svg {
  width: 100%;
  height: 100%;
  fill: #16a34a;
}

.container {
  /* width: 100%; */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;

}

/* Footer Content */
.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 40px 0 20px;
}

.footer-section {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* Organization Section */
.org-section {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: white;
}

.org-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.org-logo {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.org-logo svg {
  width: 24px;
  height: 24px;
  color: white;
}

.org-header h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0;
  color: white;
}

.org-header p {
  font-size: 0.9rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.org-description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Social Icons */
.social-icons-compact {
  display: flex;
  gap: 10px;
  margin-top: 20px;

}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon.facebook {
  background: #1877f2;
}

.social-icon.twitter {
  background: #1da1f2;
}

.social-icon.instagram {
  background: #e4405f;
}

.social-icon.pinterest {
  background: #bd081c;
}

/* Section Titles */
.section-title-footer {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 15px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #16a34a;
  display: inline-block;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #4b5563;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 15px;
}

.footer-links a::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #16a34a;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: #16a34a;
  padding-left: 20px;
}

.footer-links a:hover::before {
  transform: translateX(3px);
}

/* Contact List */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #4b5563;
}

.contact-item i {
  width: 16px;
  color: #16a34a;
  font-size: 14px;
}

/* Map Section */
.map-section {
  position: relative;
  padding: 30px 15px 0px 15px !important;
}

.map-card {
  position: relative;
  height: 195px;
  border-radius: 8px;
  overflow: hidden;
  background: #f3f4f6;
}

.map-preview {
  width: 100%;
  height: 100%;
}

.map-preview iframe {
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.3s ease;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(22, 163, 74, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.map-card:hover .map-overlay {
  opacity: 1;
}

.map-card:hover .map-preview iframe {
  filter: grayscale(0%) opacity(1);
}

.map-overlay i {
  font-size: 24px;
  margin-bottom: 8px;
}

.map-overlay span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding: 20px 0;
  margin-top: 10px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom-content p {
  color: #6b7280;
  font-size: 0.85rem;
  margin: 0;
}

.footer-badges {
  display: flex;
  gap: 10px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #16a34a;
  color: white;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 500;
}

.badge i {
  font-size: 10px;
}

/* Responsive Design */
@media (min-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .org-section {
    grid-column: span 2;
  }
}

@media (min-width: 992px) {
  .footer-content {
    grid-template-columns: 5fr 1fr 5fr 0fr;
    gap: 30px;
    padding: 50px 0 25px
  }

  .org-section {
    grid-column: span 1;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    gap: 40px;
  }

  .footer-section {
    padding: 30px;
  }
}

/* Mobile Responsive */
@media (max-width: 639px) {
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .contact-item {
    font-size: 0.85rem;
  }

  .contact-item span {
    word-break: break-word;
  }


}



/* Remove conflicts with existing styles */
.compact-footer {
  box-sizing: border-box;
}

.compact-footer h3,
.compact-footer h4 {
  margin: 0;
}

.compact-footer p {
  margin: 0;
}

.compact-footer ul {
  margin: 0;
  padding: 0;
}

.visit-links {

  display: flex;
  gap: 27px;
  /* text-decoration: underline; */
  margin-top: 10px;
}

.visit-links li {
  transition: all 0.3s;
}

.visit-links li:hover {
  text-decoration: underline;
  cursor: pointer;
  transform: translateY(-4px);
}

@media (max-width:500px) {
  .visit-links {
    display: block;
  }
}