/* =========================
   FOOTER WRAPPER (ONLY IMAGE)
========================= */
.nw-ftr-wrapper {
  position: relative;

  /* ✅ ONLY BACKGROUND IMAGE */
  background: url('../images/background/Gemini_Generated_Image_8mebnn8mebnn8meb.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #ffffff;
  font-family: 'Playfair Display', serif;
  padding-top: 50px;
  overflow: hidden;
}

/* =========================
   CONTAINER
========================= */
.nw-ftr-container {
  width: 92%;
  max-width: 1400px;
  margin: auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}

/* =========================
   LOGO SECTION
========================= */
.nw-ftr-logo-sec {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.nw-ftr-logo-box {
  text-align: center;
  width: 150px;
  height: 150px;
}

.nw-ftr-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: contain;
  margin-bottom: 8px;
}

.nw-ftr-logo-text h2 {
  font-size: 26px;
  margin: 0;
  font-weight: 700;
}

.nw-ftr-logo-text span {
  font-size: 11px;
  letter-spacing: 2px;
  opacity: 0.9;
}

/* =========================
   DIVIDER
========================= */
.nw-ftr-main-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 60px;
  color: #ffffff;
}

.nw-ftr-main-line {
  flex: 1;
  height: 1px;
  background: #ffffff;
  margin: 0 15px;
}

.nw-ftr-diamond {
  flex-shrink: 0;
}

/* =========================
   ROW / COLUMNS
========================= */
.nw-ftr-row {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  padding-bottom: 60px;
  flex-wrap: wrap;
}

.nw-ftr-col {
  flex: 1;
  min-width: 230px;
}

/* =========================
   HEADINGS
========================= */
.nw-ftr-heading {
  font-size: 22px;
  margin-bottom: 20px;
  position: relative;
}

.nw-ftr-heading::after {
  content: "";
  width: 70px;
  height: 1px;
  background: #ffffff;
  display: block;
  margin-top: 6px;
}

/* =========================
   TEXT
========================= */
.nw-ftr-text {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 25px;
  text-align: justify;
}

/* =========================
   SOCIAL ICONS
========================= */
.nw-ftr-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.nw-ftr-social-btn {
  width: 36px;
  height: 36px;
  background: #ffffff;
  color: #000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nw-ftr-social-btn svg {
  width: 18px;
  height: 18px;
}

.nw-ftr-social-btn:hover {
  transform: translateY(-5px);
  background: #dddddd;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* =========================
   LINKS
========================= */
.nw-ftr-links {
  list-style: none;
  padding: 0;
}

.nw-ftr-links li {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
}

.nw-ftr-list-icon {
  width: 14px;
  height: 14px;
  fill: #ffffff;
  margin-right: 10px;
}

.nw-ftr-links a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  transition: 0.3s;
}

.nw-ftr-links a:hover {
  color: #ddd;
  padding-left: 5px;
}

/* =========================
   CONTACT
========================= */
.nw-ftr-contact-list {
  list-style: none;
  padding: 0;
}

.nw-ftr-contact-list li {
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
}

.nw-ftr-contact-icon {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  color: #ffffff;
  margin-top: 4px;
}

.nw-ftr-contact-list a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  word-break: break-word;
}

.nw-ftr-contact-list a:hover {
  color: #ddd;
}

/* =========================
   MAP
========================= */
.nw-ftr-map-wrapper {
  width: 100%;
  height: 130px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 15px;
  border: 1px solid rgba(255,255,255,0.3);
}

.nw-ftr-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ADDRESS */
.nw-ftr-address {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* =========================
   BOTTOM BAR
========================= */
.nw-ftr-bottom-bar {
  border-top: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.3);
  padding: 18px 0;
}

.nw-ftr-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.nw-ftr-highlight {
  color: #ffffff;
  font-weight: 600;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {

  .nw-ftr-container {
    padding: 0 20px;
  }

  .nw-ftr-row {
    flex-direction: column;
    gap: 40px;
  }

  .nw-ftr-bottom-flex {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .nw-ftr-logo-text h2 {
    font-size: 22px;
  }
}