/* ========================
   Footer Base
======================== */
footer,
.site-footer {
  background: #111111;
  color: #e0e0e0;
  font-size: 0.95rem;
  padding: 0; /* overall footer padding handled per section */
  display: flex;
  z-index: 10;
  flex-direction: column;
  gap: 20px; /* space between map, top, main, bottom */
}
.site-footer a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-footer a:hover {
    color: #00ff88;
    text-decoration: underline;
}

/* ========================
   Map Section
======================== */
.map-section {
  width: 100%;
  height: 280px;        /* slightly taller */
  margin-bottom: 20px;  /* space between map and footer-top */
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.map-section iframe:hover {
  transform: scale(1.02);
}

/* ========================
   Top Contact Info
======================== */
.footer-top {
  max-width: 1500px;
  width: 80%;    
  margin: 0 auto;       /* center horizontally */
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  padding: 20px;        /* inner spacing */
  gap: 25px;         
}

.footer-contact {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
}

/* ========================
   Footer Icon Circle Style
======================== */
.footer-icon-circle {
  width: 45px;
  height: 45px;
  background: #00ff88;              /* bright green circle */
  border-radius: 50%;               /* makes it round */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer-icon-circle i {
    color: #333; /* white icons inside *                   /* white icons inside */
  font-size: 18px;
}

/* Hover effect: light glow */
.footer-icon-circle:hover {
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.6);
  transform: scale(1.08);
}



.footer-contact .contact-item {
  display: flex;
align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  text-align: left;
}

.footer-contact .contact-item p {
  margin: 0;
  font-size: 0.85rem;
  color: #e0e0e0;
  line-height: 1.4;
}


.footer-top .footer-contact .contact-item p {
  font-size: 0.80rem; 
  margin-top: 5.5%;  /* smaller content text */
}
.footer-top .footer-contact .contact-item .address {
  font-size: 0.80rem; 
  margin-top: 2.5%;  /* smaller content text */
}


/* ========================
   Main Footer Sections
======================== */
.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;  /* Align all sections at the top */
    flex-wrap: wrap;
    padding: 30px 20px;
    border-top: 1px solid #333;
    
}

.footer-section {
    flex: 1;
    min-width: 220px;
    margin-bottom: 20px;
}
.footer-right-sections {
    display: flex;
    gap: 20px; /* reduce space between the 3 sections */
}
.footer-section.about {
    flex: 0 0 300px; /* fixed width for logo section */
}
.footer-section.links
.footer-right-sections .footer-section {
    flex: 0 0 auto; /* natural width, no stretching */
    min-width: 200px; /* optional, prevents too narrow columns */
}
.footer-section.about .about-content {
    display: flex;
    flex-direction: column;
    margin-top: -25 px;
}

.footer-section.about .footer-logo {
    max-width: 100px;
    margin-bottom: 10px;
    margin-top: -15px;
}

.footer-section.about p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-section h4 {
   margin-left: 19%;  
   margin-top: 5%;
    font-size: 1.2rem;
    color: #00ff88;
    margin-bottom: 10px;
}

.footer-section ul {
  margin-left: 20%;
   
    list-style: none;
    padding: 0;
    align-content: justify;
}

.footer-section ul li {
   font-size: 1.9 rem;
    margin-bottom: 8px;
  
}

.footer-section ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.85rem;
}

.footer-section ul li a:hover {
    color: #1abc9c;
}

.footer-section .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-section .social-icons a {
    display: inline-block;
    margin-right: 12px;
    font-size: 18px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background-color: #00ff88;
    color: #000;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-section .social-icons a:hover {
    background-color: #ffffff;
    color: #00ff88;
    transform: translateY(-3px);
}


/* ========================
   Footer Logo
======================== */
.footer-logo {
  max-width: 150px;     /* limit logo size */
  height: auto;         /* maintain aspect ratio */
  display: block;
  margin-bottom: 15px;  /* spacing below logo */
}

@media (max-width: 768px) {
  .footer-logo {
    max-width: 120px;
    margin: 0 auto 10px; /* center logo on mobile */
  }
}

/* ========================
   Footer Bottom
======================== */
.footer-bottom {
  text-align: center;
  padding: 10px 0;      /* slightly larger padding */
  border-top: 1px solid #333;
  font-size: 0.9rem;
  margin: 0;
  color: #999;
}

.footer-bottom p {
  margin: 0;
  line-height: 1;
}

/* ========================
   Responsive Footer
======================== */
@media (max-width: 768px) {
  .footer-top,
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-section {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .footer-contact .contact-item {
    flex-direction: column;
    text-align: center;
  }
  .footer-icon-circle {
    margin-bottom: 8px;
  }
}