<!-- header.php -->

<!-- All global styles previously inside <head> remain here -->
<style>
  /* Global reset for body & links */
  body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    color: #333;
  }
  a {
    color: inherit;
    text-decoration: none; /* ensure no underlines globally */
  }

  /* MAIN HEADER (Sticky) */
  .main-header {
    background: linear-gradient(to right, #003366, #0066cc);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .main-header .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    gap: 20px;
  }

  /* LEFT & RIGHT HEADER SECTIONS */
  .header-left, .header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
  }
  .header-logo img {
    height: 50px;
  }

  /* DESKTOP NAVBAR */
  .navbar ul {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
  }
  .navbar ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
  }
  .navbar ul li a:hover {
    background: #fff;
    color: #0066cc;
  }

  /* CONTACT INFO (desktop) */
  .contact-info-header {
    display: flex;
    gap: 15px;
  }
  .contact-item {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 5px 10px;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
  }
  .contact-item:hover {
    background: #fff;
    color: #0066cc;
  }
  .contact-item.whatsapp {
    border-color: #25d366;
  }
  .contact-item.whatsapp:hover {
    background: #25d366;
    color: #fff;
  }

  /* POST PROPERTY BUTTON */
  .post-property-btn {
    background: #ff5722;
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
  }
  .post-property-btn:hover {
    background: #e64a19;
  }

  /* MOBILE MENU ICON (Hamburger) */
  .mobile-menu-icon {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
  }

  /* MOBILE MENU */
  .mobile-menu {
    display: none;
    background-color: #003366;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 15px 0;
  }
  .mobile-menu.show {
    display: block;
  }
  .mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  .mobile-menu ul li {
    margin: 10px 0;
  }
  .mobile-menu ul li a {
    color: #fff;
    font-size: 16px;
    padding: 10px;
    display: inline-block;
    text-decoration: none;
  }
  .mobile-menu ul li a:hover {
    background: #0066cc;
    color: #fff;
  }
  .mobile-contact {
    text-align: center;
    margin-top: 10px;
  }
  .mobile-contact .contact-item {
    color: #fff;
    display: block;
    margin: 10px 0;
    font-size: 14px;
  }

  /* RESPONSIVE: under 768px show hamburger, hide desktop nav */
  @media (max-width: 768px) {
    .navbar ul,
    .contact-info-header {
      display: none;
    }
    .mobile-menu-icon {
      display: block;
    }
    .post-property-btn {
      font-size: 14px;
      padding: 6px 12px;
    }
  }
  @media (max-width: 480px) {
    .post-property-btn {
      font-size: 13px;
      padding: 5px 10px;
    }
  }


/* 
  We do not remove or reorder anything else. 
  The existing lines remain, we just add .footer-lower and .footer-inline-list
*/
.site-footer {
  background: linear-gradient(135deg, #2575fc, #6a11cb);
  color: #fff;
  margin-top: 40px;
  padding: 40px 20px 20px;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-left,
.footer-middle,
.footer-right {
  flex: 1;
  min-width: 220px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 15px;
}
.footer-about {
  line-height: 1.5;
  margin-bottom: 10px;
}

.footer-middle h4 {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 16px;
}
.footer-middle ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}
.footer-middle ul li {
  margin: 5px 0;
}
.footer-middle ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-middle ul li a i {
  margin-right: 6px;
  color: #ffd700; /* Gold tone for the arrow icon */
}
.footer-middle ul li a:hover {
  color: #ffd700;
}

.footer-right h4 {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 16px;
}
.social-links {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.social-links a {
  color: #fff;
  font-size: 15px;
  border: 1px solid #fff;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s, color 0.3s;
}
.social-links a:hover {
  color: #2575fc;
  background: #fff;
}

.contact-info {
  line-height: 1.6;
}
.contact-info a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-info a:hover {
  color: #ffd700;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 10px;
}
.footer-bottom p {
  margin: 0;
}

/* New block for the horizontal city/type/properties lists */
.footer-lower {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 10px; /* spacing above links */
}
.footer-lower h4 {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
}
.footer-inline-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0 0 20px 0; 
  padding: 0;
}
.footer-inline-list li {
  display: inline-block;
}
.footer-inline-list .sep {
  margin: 0 5px;
  color: #ffd700; 
}
.footer-inline-list li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.footer-inline-list li a:hover {
  color: #ffd700;
}

/* Responsive Breakpoint */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-left,
  .footer-middle,
  .footer-right {
    margin-bottom: 20px;
  }
}
</style>

