/* ==========================================================
   MOBILE FOOTER (footer-mob.css)
   Clean + Structured Layout for Mobile
========================================================== */

.new-footer {
  background: #081927;
  padding: 45px 0 20px;
  color: #ffffff;
  text-align: center;
}

.footer-content {
  width: 92%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/* ==========================================================
   ORDERING
========================================================== */

.footer-col:nth-child(1) { order: 1; }   /* Reach Us */
.footer-col:nth-child(2) { order: 2; }   /* Useful links + Follow Us */
.form-col { order: 3; }                  /* Map Section */
.visit-container { order: 4; }           /* Visitor Count */

/* ==========================================================
   REACH US BLOCK (unchanged)
========================================================== */

.footer-col h3 {
  color: #fbdd94;
  font-size: 1.23rem;
  margin-bottom: 14px;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
}
/* Address block */
.footer-col:nth-child(1) p {
  font-size: 0.82rem;
  line-height: 1.35;        /* tighter spacing */
  color: #d8e2e8;
  margin: 0 auto 12px auto;
  
  max-width: 280px;         /* fits inside the red box area */
  text-align: center;

  background: rgba(255,255,255,0.05);  /* subtle background */
  padding: 10px 12px;                  /* compact padding */
  border-radius: 6px;                  /* soft rounded block */
  border-left: 3px solid #fbdd94;      /* premium accent line */
}
.footer-col:nth-child(2) h3,
.footer-col:nth-child(2) .sm-title {
  display: none !important;   /* HIDE HEADINGS */
}

/* ==========================================================
   USEFUL LINKS + SOCIAL ICONS = 2 COLUMNS WITHOUT HEADINGS
========================================================== */

.footer-col:nth-child(2) {
  display: none;                    /* HIDE ENTIRE BLOCK FOR MOBILE ..................make sure to unhide this for any further modification */
  grid-template-columns: 1fr 1fr;   /* LEFT = LINKS, RIGHT = ICONS */
  align-items: flex-start;
  text-align: left;
  gap: 25px;
  margin-top: -10px;
}

/* LEFT COLUMN: ONLY USEFUL LINKS LIST */
.footer-col:nth-child(2) ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col:nth-child(2) ul li {
  margin-bottom: 10px;
}

.footer-col:nth-child(2) ul li a {
  font-size: 0.83rem;
  color: #dfe6ec;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col:nth-child(2) ul li a:hover {
  color: #0abf53;
  padding-left: 5px;
}

/* RIGHT COLUMN: SOCIAL ICONS */
.footer-col:nth-child(2) .social-links {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 0;
}

.social-links a {
  width: 35px;
  height: 35px;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1 rem;
  transition: 0.3s ease;
  border-radius: 4px;
}

.social-links a:hover {
  background: #0abf53;
  border-color: #0abf53;
  box-shadow: 0 0 12px rgba(10, 191, 83, 0.7);
}

/* ==========================================================
   MAP SECTION (same theme)
========================================================== */

.map-section {
  display: flex;
  justify-content: center;
}

.map-wrapper {
  width: 100%;
  max-width: 500px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(13, 37, 56, 0.25);
  border: 2px solid rgba(13, 37, 56, 0.15);
}

.map-wrapper iframe {
  width: 100%;
  height: 260px;
  border: none;
  border-radius: 14px;
  filter: grayscale(20%);
}

/* ==========================================================
   VISITOR COUNT
========================================================== */

.visit-count {
  background: rgba(255,255,255,0.1);
  padding: 10px 18px;
  border-radius: 8px;
  margin-top: 12px;
  color: #fbdd94;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.2);
}

/* ==========================================================
   COPYRIGHT
========================================================== */

.footer-bottom {
  margin-top: 35px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.75rem;
  color: #ced6db;
  text-align: center;
}
