/* ═══════════════════════════════════════════════
   FEATURES.CSS — New Premium Features
   D'Laptop Story V Care
═══════════════════════════════════════════════ */


/* ── 2. OPEN NOW BADGE ── */
.ab-open {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; padding: 3px 10px;
  border-radius: 20px; border: 1px solid;
}
.ab-open.open  { color: #22C55E; border-color: rgba(34,197,94,.3); background: rgba(34,197,94,.08); }
.ab-open.open::before  { content:''; width:6px; height:6px; border-radius:50%; background:#22C55E; animation:blink 2s infinite; }
.ab-open.closed { color: #EF4444; border-color: rgba(239,68,68,.3); background: rgba(239,68,68,.08); }
.ab-open.closed::before { content:''; width:6px; height:6px; border-radius:50%; background:#EF4444; }

/* ── 3. GOOGLE MAP ── */
.map-wrap {
  margin-top: 32px; border-radius: 4px; overflow: hidden;
  border: 1px solid rgba(201,168,76,.2);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.map-wrap iframe { display: block; width: 100%; height: 260px; }

/* ── 4. FAQ SECTION ── */
.faq { background: linear-gradient(180deg,#08090F 0%,#0B0C15 100%); }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; text-align: left; gap: 20px;
  color: var(--cream, #F2EDE5);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 500; letter-spacing: .03em;
  transition: color .25s ease;
}
.faq-q:hover { color: #C9A84C; }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid rgba(212,32,39,.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #D42027; font-size: 16px;
  transition: transform .3s ease, background .3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(212,32,39,.1); }
.faq-item.open .faq-q { color: #C9A84C; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 300;
  color: #8A8580; line-height: 1.9;
}
.faq-a.open { max-height: 200px; padding-bottom: 20px; }

/* ── 5. PRICE CALCULATOR ── */
.price-calc { background: linear-gradient(180deg,#0C0E18 0%,#090B12 100%); }
.calc-inner {
  max-width: 680px; margin: 0 auto;
  background: linear-gradient(135deg,#0d1020,#090b14);
  border: 1px solid rgba(212,32,39,.15);
  border-radius: 4px; padding: 52px;
}
.calc-select-wrap { position: relative; margin: 32px 0 24px; }
.calc-select {
  width: 100%; background: rgba(255,255,255,.03);
  border: none; border-bottom: 1px solid rgba(255,255,255,.15);
  color: #F2EDE5; font-family: 'Montserrat',sans-serif;
  font-size: 15px; padding: 14px 0; cursor: pointer;
  outline: none; transition: border-color .25s ease;
  -webkit-appearance: none; appearance: none;
}
.calc-select:focus { border-bottom-color: #D42027; }
.calc-select option { background: #0d1020; }
.calc-arrow {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  color: #C9A84C; pointer-events: none; font-size: 12px;
}
.calc-result {
  display: none; margin-top: 24px; padding: 28px;
  background: rgba(212,32,39,.04);
  border: 1px solid rgba(212,32,39,.15);
  border-radius: 4px; text-align: center;
  animation: fadeIn .4s ease;
}
@keyframes fadeIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
.calc-result.show { display: block; }
.calc-price {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px,5vw,52px); font-weight: 400;
  color: #C9A84C; line-height: 1; margin-bottom: 8px;
}
.calc-note {
  font-size: 12px; color: #8A8580; letter-spacing: .08em;
  margin-bottom: 20px;
}
.calc-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #D42027; color: #fff;
  font-family: 'Montserrat',sans-serif; font-size: 11px;
  font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  padding: 12px 28px; border-radius: 3px; text-decoration: none;
  transition: background .25s ease, transform .25s ease;
}
.calc-wa:hover { background: #b81920; transform: translateY(-2px); }

@media(max-width:768px) {
  .calc-inner { padding: 32px 20px; }
  .loader-logo { width: 140px; }
}

/* ── SHARED ── */
.faq-head, .calc-head { text-align: center; margin-bottom: 52px; }
