/* =========================
   PUNEJUNCTION.COM
========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #fafafa;
  color: #222;
  overflow-x: hidden; /* LAYOUT COPYRIGHT WITH PUNEJUNCTION.COM */
}

/* =========================
   HEADINGS PUNEJUNCTION.COM
========================= */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: darkorange;
  text-align: center;
  letter-spacing: 0.5px;
}

/* MAIN TITLE */
h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

/* SECTION TITLE */
h2 {
  font-size: 24px;
  margin: 30px 0 20px;
  position: relative;
  text-transform: capitalize;
}

/* 🔥 PREMIUM UNDERLINE EFFECT */
h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin: 10px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, darkorange, #ffb347);
  transition: 0.3s ease;
}

/* subtle hover animation */
h2:hover::after {
  width: 90px;
}

/* SMALL HEADINGS */
h3 {
  font-size: 17px;
  margin: 10px 0 5px;
  font-weight: 600;
}

/* =========================
   CATEGORY BUTTONS
========================= */
.category-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 20px auto 25px;
  max-width: 900px;
}

.category-buttons button {
  background: linear-gradient(135deg, #055c57, #0a7c75);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-buttons button:hover {
  background: linear-gradient(135deg, darkorange, #ff8c00);
  transform: translateY(-3px);
}

/* =========================
   HEADER PUNEJUNCTION.COM
========================= */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 20px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1 1 300px;
}

.logo a {
  text-decoration: none;
  color: inherit;
}

.logo-text {
  text-align: center;
  line-height: 1.2;
}

.pune {
  color: darkorange;
  font-size: 40px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 3px;
  margin-bottom: -6px;
}

.junction {
  color: #055c57;
  font-size: 40px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 4px;
}

.tagline {
  font-size: 14px;
  letter-spacing: 1.5px;
}

#logo-ad {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

#logo-ad:hover {
  transform: scale(1.05);
}

.header-ads {
  display: flex;
  gap: 12px;
}

.ad {
  width: 400px;
  height: 100px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.ad:hover {
  transform: scale(1.05);
}

/* =========================
   LAYOUT PUNEJUNCTION.COM
========================= */
.container {
  display: flex;
  gap: 20px;
  padding: 20px;
}

.main { flex: 1; }
.sidebar { width: 250px; }

/* =========================
   FEATURED PUNEJUNCTION.COM
========================= */
.featured {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  flex: 1;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: 0.4s;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: 0.3s;
}

.card:hover img {
  transform: scale(1.08);
}

.card:hover::after {
  opacity: 1;
}

.overlay-btn {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translate(-50%, 10px);
  background: darkorange;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  opacity: 0;
  transition: 0.3s;
}

.card:hover .overlay-btn {
  opacity: 1;
  transform: translate(-50%, 0);
}

.card p {
  padding: 12px;
  font-size: 13px;
}

/* =========================
   GRID BY ARUN VERMA
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.grid-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: pointer;
}

.grid-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: 0.4s;
}

.grid-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: 0.3s;
}

.grid-item:hover img {
  transform: scale(1.08);
}

.grid-item:hover::after {
  opacity: 1;
}

.grid-item:hover .overlay-btn {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* captions */
.caption.location {
  font-size: 12px;
  color: #888;
  font-style: italic;
}

.caption.price {
  display: inline-block;
  font-size: 12px;
  color: #28a745;
  background: rgba(40,167,69,0.1);
  padding: 4px 10px;
  border-radius: 20px;
}

/* BUTTON */
.overlay-btn {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translate(-50%, 10px);
  background: darkorange;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  opacity: 0;
  transition: all 0.3s ease;
}

.grid-item:hover .overlay-btn {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* CAPTIONS */
.caption.location {
  font-size: 12px;
  color: #888;
  padding-top: 6px;
  font-style: italic;
}

.caption.location::before {
  content: "📍 ";
}

.caption.price {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  color: #28a745;
  font-weight: 600;
  background: rgba(40,167,69,0.1);
  padding: 4px 10px;
  border-radius: 20px;
}

.caption.price::before {
  content: "₹ ";
}

.grid-item h3 {
  padding: 8px 10px 4px;
}

.grid-item p {
  padding: 0 10px 12px;
  font-size: 13px;
  color: #555;
}

/* =========================
   SIDEBAR ADS BY ARUN VERMA
========================= */

/* SMALL ADS */
.ad-slot {
  width: 250px;
  height: 150px;
  margin: 0 auto 12px;
  border-radius: 10px;

  background-size: cover; /* DESIGNED BY ARUN VERMA 8087566637 */
  background-position: center;
  background-repeat: no-repeat;

  cursor: pointer;
  position: relative;
  overflow: hidden;

  transition: 0.3s;
}

/* overlay */
.ad-slot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: 0.3s;
}

/* button */
.ad-slot::before {
  content: "View Offer";
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%,10px);
  background: darkorange;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  opacity: 0;
  transition: 0.3s;
}

/* hover */
.ad-slot:hover {
  transform: scale(1.05);
}

.ad-slot:hover::after {
  opacity: 1;
}

.ad-slot:hover::before {
  opacity: 1;
  transform: translate(-50%,0);
}

/* BIG BANNER */
.sidebar-banner {
  width: 250px;
  height: 500px;
  margin: 0 auto 15px;
  border-radius: 10px;

  background-size: cover; /* PUNEJUNCTION.COM */
  background-position: center;
  background-repeat: no-repeat;

  cursor: pointer;
  position: relative;
  overflow: hidden;

  transition: 0.3s;
}

/* hover zoom */
.sidebar-banner:hover {
  transform: scale(1.05);
}

/* overlay */
.sidebar-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: 0.3s;
}

/* button */
.sidebar-banner::before {
  content: "Know More";
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translate(-50%,10px);
  background: darkorange;
  color: #fff;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 13px;
  opacity: 0;
  transition: 0.3s;
}

.sidebar-banner:hover::after {
  opacity: 1;
}

.sidebar-banner:hover::before {
  opacity: 1;
  transform: translate(-50%,0);
}

/* =========================
   FOOTER PUNEJUNCTION.COM
========================= */
footer {
  background: linear-gradient(180deg, #111, #000);
  color: #ddd;
  padding: 40px 20px;
  text-align: center;
  margin-top: 30px;
}

/* layout */
.footer-columns {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* each column */
.footer-columns div {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* 🔥 divider lines */
.footer-columns div::after {
  content: "";
  position: absolute;
  right: -25px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255,140,0,0.6),
    transparent
  );
}

.footer-columns div:last-child::after {
  display: none;
}

/* links */
.footer-columns a {
  position: relative;
  color: #bbb;
  text-decoration: none;
  margin-bottom: 6px;
  padding-left: 18px;
  transition: all 0.3s ease;
}



/* 🔥 hover animation */
.footer-columns a:hover {
  color: #fff;
  transform: translateX(6px);
  text-shadow:
    0 0 6px rgba(255,140,0,0.6),
    0 0 12px rgba(255,140,0,0.4);
}

/* animated underline */
.footer-columns a::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, darkorange, #ffb347);
  transition: width 0.3s ease;
}

.footer-columns a:hover::after {
  width: calc(100% - 18px);
}

/* =========================
   COPYRIGHT PUNEJUNCTION.COM
========================= */
footer p {
  margin-top: 20px;
  color: #fff3b0; /* light yellow */
  font-size: 13px;
}

/* link always red */
footer p a {
  color: red;
  font-weight: bold;
  text-decoration: none;
}

footer p a:hover {
  text-decoration: underline;
}

/* =========================
   🔥 LISTING PAGE (UPDATED)
========================= */

.listing {
  max-width: 900px;
  margin: auto;
}


.listing-image {
  text-align: center; 
}

.listing-image img {
  width: 100%;
  max-width: 850px;
  border-radius: 12px;
  margin-top: 10px;
  display: inline-block; /* key fix */
  transition: transform 0.8s ease;
}

/* smooth cinematic zoom */
.listing-image:hover img {
  transform: scale(1.06);
}

/* caption */
.img-caption {
  text-align: center;
  font-size: 13px;
  color: #777;
  margin-top: 8px;
  font-style: italic;
}

/* ================= CONTENT ================= */
.listing-content {
  margin-top: 20px;
  line-height: 1.9;
  font-size: 15px;
  color: #444;
  background: #fff;
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}

/* ================= CONTACT BOX ================= */
.contact-box {
  margin-top: 25px;
  padding: 22px;
  background: linear-gradient(135deg, #055c57, #0a7c75);
  border-radius: 12px;
  color: #fff;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


.contact-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.contact-address {
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  max-width: 100%;
}

/* PHONE + TIME ROW */
.contact-row {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
}

/* ================= BUTTONS ================= */
.btn {
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
  display: inline-block;
}

/* WhatsApp */
.btn.primary {
  background: #25D366;
  color: #fff;
}

.btn.primary:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* Directions */
.btn.secondary {
  background: darkorange;
  color: #fff;
}

.btn.secondary:hover {
  background: #ff8c00;
  transform: translateY(-2px);
}

/* BUTTON GROUP */
.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* ================= NAV ================= */
.listing-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

/* BACK */
.btn.back {
  background: #eee;
  color: #333;
}

.btn.back:hover {
  background: #ddd;
}

/* EXPLORE */
.btn.explore {
  background: linear-gradient(135deg, darkorange, #ffb347);
  color: #fff;
}

.btn.explore:hover {
  transform: translateY(-2px);
}

/* =========================
   CLICKABLE CURSOR
========================= */

/* all links */
a {
  cursor: pointer;
}

/* images inside links */
a img {
  cursor: pointer;
}

/* featured cards */
.card a,
.card img {
  cursor: pointer;
}

/* grid items */
.grid-item a,
.grid-item img,
.grid-item h3 {
  cursor: pointer;
}

/* overlay button */
.overlay-btn {
  cursor: pointer;
}

/* =========================
   MOBILE PUNEJUNCTION.COM
========================= */
@media(max-width:768px){

  .container {
    flex-direction: column;
    padding: 10px;
  }

  .sidebar {
    width: 100%;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured {
    flex-direction: column;
  }

  .header {
    flex-direction: column;
    text-align: center;
  }

  .logo {
    flex-direction: column;
  }

  #logo-ad {
    margin-top: 10px;
  }

  .header-ads {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .ad {
    width: 90%;
    max-width: 320px;
    height: 80px;
  }

  .footer-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .sidebar-banner {
    width: 90%;
    max-width: 250px;
    height: 400px; /* PUNEJUNCTION.COM */
    margin: 20px auto;
  }
  
    .container { flex-direction:column; padding:10px; }

  .sidebar { width:100%; }

  .ad-slot,
  .sidebar-banner {
    margin-left: auto;
    margin-right: auto;
  }
  
   .listing-nav { flex-direction: column; gap: 10px; }
  .contact-buttons { flex-direction: column; }
  
  .listing-nav {
    flex-direction: column;
    gap: 10px;
  }

  .contact-buttons {
    flex-direction: column;
  }

  .contact-row {
    flex-direction: column;
    gap: 8px;
  }
}
  
}