/* ===== Listing page ===== */
.listing {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 20px 40px;      /* header boşluğu + alt nefes */
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.listing h1 {
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 50px;
}

.listing h2 {
  font-size: 32px;
  margin: 0 0 22px;
  font-weight: 700;
}

.listing h3 { 
  font-size: 24px;
  margin: 0 0 6px;  
  font-weight: 700; 
}

.listing p { 
  margin: 0; 
  opacity: .9; 
}


/* ---------- HERO ---------- */
.listing-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  background: var(--block-bg);
  border-radius: 16px;
  padding: 28px;
  color: var(--text-color);
}

.listing-hero-left .lead {
  opacity: .92;
  line-height: 1.5;
  margin: 0 0 35px;
}

.btn-listing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  font-weight: 700;
  color: var(--text-color-negative);
  background: var(--color-bmx-darker);
  text-decoration: none;
  transition: transform .12s ease, filter .12s ease;
}
.btn-listing:hover { filter: brightness(1.05); }
.btn-listing:active { transform: translateY(1px); }

.listing-hero-right {
  display: grid;
  place-items: center;
}
.hero-diamond {
  width: min(320px, 90%);
  aspect-ratio: 1.4 / 1;                  
  filter: drop-shadow(0 8px 32px rgba(0,0,0,.35));
}

/* ---------- PROCESS (timeline) ---------- */
.listing-process {
  background: var(--block-bg);
  border-radius: 16px;
  padding: 28px;
  color: var(--text-color);
}


.process{
  list-style: none;
  margin: 0; padding: 0;
}

.process::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  /*background: var(--color-border-dark, rgba(255,255,255,.08));*/
  border-radius: 2px;
}

.process-item{
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: start;
  gap: 16px;
  padding: 16px 0;
}

/* Daire */
.dot{
  margin-top: 9px;
  width: 44px; height: 44px;
  border-radius: 42%;
  background: var(--block-bg2);
  border: 1px solid var(--color-border-dark, rgba(255,255,255,.08));
  display: grid; place-items: center;
  transition: filter .18s ease, border-color .18s ease, box-shadow .18s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);   /* hover’da yumuşak parıltı vereceğiz */
}

/* Rakam */
.dot .num{
  font-weight: 700;
  font-size: 16px;
  color: var(--text-color);
  line-height: 1;
}

/* Hover/odak: daire “BMX darker” filtresiyle yanar, sayı görünür kalır */
.process-item:hover .dot,
.process-item:focus-within .dot{
  /* global değişkenini kullanalım */
   background: var(--color-bmx-darker);
  border-color: transparent;

}




/* ---------- CONTACT / APPLY ---------- */
.listing-contact {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: stretch;
}

.contact-card,
.apply-card {
  background: var(--block-bg);
  border-radius: 16px;
  padding: 24px;
  color: var(--text-color);
    background:
    radial-gradient(120px 80px at 20% -10%, var(--color-bmx-shadow2, rgba(153,138,230,.1)) 0%, transparent 70%),
    var(--block-bg);
}

.contact-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120px 80px at 20% -10%, var(--color-bmx-shadow2, rgba(153,138,230,.1)) 0%, transparent 70%),
    var(--block-bg);
}

.contact-card .muted { opacity: .9; margin-bottom: 16px; }

.btn-telegram{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  height: 44px;
  padding: 0 16px;
  border-radius: 10px;
  margin-top: 20px;

  color: var(--text-color-negative);
  background: var(--color-bmx-darker);
  border: none;
  text-decoration: none;
  font-weight: 700;

  transition: filter .12s ease, transform .12s ease;
}
.btn-telegram:hover{ filter: brightness(1.05); }
.btn-telegram:active{ transform: translateY(1px); }

.btn-telegram .tg-icon{
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: block;

}

.apply-card .muted { opacity: .9; margin: 0 0 16px; }
.apply-card .link {
  color: var(--color-bmx-darker);
  text-decoration: none;
  font-weight: 700;
}
.apply-card .link:hover { text-decoration: underline; }
.btn-block { width: 100%; }

.btn-consultation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 10px;
  margin-top: 20px;

  font-weight: 700;
  color: var(--text-color-negative);
  background: var(--color-bmx-darker);
  text-decoration: none;
  transition: transform .12s ease, filter .12s ease;
}
.btn-consultation:hover { filter: brightness(1.05); }


/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px){
  .listing-hero{ grid-template-columns: 1fr; text-align: left; }
  .hero-diamond{ width: min(360px, 70%); }
}
@media (max-width: 900px){
  .listing-contact{ grid-template-columns: 1fr; }
}
