/* =====================================================
   FOOTER (DARK BLUE)
===================================================== */
.site-footer {
  background: linear-gradient(
    180deg,
    #0b2a45 0%,   /* yuqori to‘q ko‘k */
    #071f33 100%  /* pastki yanada to‘q */
  );
  color: #d6e2f0;
  font-family: "Segoe UI", system-ui, sans-serif;
}


/* CONTAINER */
.footer-container {
  max-width: 1600px;
  margin: auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

/* TITLES */
.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* TEXT */
.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* LINKS */
.footer-link,
.footer-menu a,
.map-link {
  color: #f3c22c;
  text-decoration: none;
  font-size: 14px;
}

.footer-link:hover,
.footer-menu a:hover,
.map-link:hover {
  text-decoration: underline;
}

/* MENU */
.footer-menu {
  list-style: none;
}
.footer-menu li {
  margin-bottom: 8px;
}

/* =====================================================
   SUBSCRIBE
===================================================== */
.subscribe-form {
  display: flex;
  margin-bottom: 14px;
}

.subscribe-form input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
}

.subscribe-form button {
  background: #f3c22c;
  border: none;
  padding: 0 16px;
  cursor: pointer;
  font-weight: 600;
}

/* =====================================================
   SOCIAL ICONS
===================================================== */
.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background: #222;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease;
}

.social-icons a:hover {
  background: #f3c22c;
  color: #000;
}

/* =====================================================
   FOOTER BOTTOM
===================================================== */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-links a {
  color: #aaa;
  margin-left: 16px;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: #f3c22c;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links a {
    margin-left: 0;
    margin-right: 12px;
  }
}





/* ================= GOOGLE MAP FOOTER ================= */
.footer-map {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
  margin-bottom: 10px;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Map ostidagi matn */
.map-caption {
  font-size: 13px;
  color: #bbb;
  line-height: 1.5;
}


/* ================= STICKY FOOTER SETUP ================= */

/* HTML va BODY to‘liq balandlik */
html, body {
  height: 100%;
}

/* BODY — flex container */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ASOSIY KONTENT */
.site-content {
  flex: 1;   /* MUHIM: kontent qolgan joyni egallaydi */
}

/* FOOTER */
.site-footer {
  margin-top: auto; /* FOOTERNI PASTGA YOPISHTIRADI */
}

