:root{
  --accent:#fffffe;
  --card-bg:rgba(10,10,10,.6);
  --border:rgba(255,255,255,.12);
  --text:#f5f5f5;
  --muted:#d0d0d0;
}

body{
  margin:0;
  font-family:'Inter',sans-serif;
  background:#000;
  color:var(--text);
}

/* FAQ Wrapper */
.faq-wrapper{
    position:relative;
    background:url('../update-images/crownsy93.jpg') center/cover no-repeat;
    padding:150px 20px 80px;
}

.faq-container{
  max-width:1100px;
  margin:auto;
}

.faq-header{
  text-align:center;
  margin-bottom:50px;
}

.faq-header h1{
  font-family:'Playfair Display',serif;
  font-size:clamp(26px,4vw,40px);
  margin-bottom:10px;
  text-shadow:0 2px 15px rgba(0,0,0,.6);
}

.faq-header p{
  color:var(--muted);
  max-width:700px;
  margin:auto;
}

/* FAQ Card */
.faq-card{
  background:var(--card-bg);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border:1px solid var(--border);
  border-radius:16px;
  padding:28px;
  box-shadow:0 20px 45px rgba(0,0,0,.35);
}

.faq-item{
  border-bottom:1px solid rgba(255,255,255,.08);
}

.faq-item:last-child{
  border-bottom:none;
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  color:var(--text);
  text-align:left;
  padding:18px 0;
  font-size:15px;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  transition:.3s;
}

.faq-question:hover{
  color:var(--accent);
}

.faq-question span:last-child{
  font-size:20px;
  color:var(--accent);
}

.faq-answer{
  overflow:hidden;
  height:0;
  transition:height .35s ease;
}

.faq-answer-content{
  padding:0 0 18px;
  color:var(--muted);
  font-size:14px;
  line-height:1.8;
}

/* Info Section */
.info-section{
  margin-top:60px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

.info-box{
  background:rgba(15,15,15,.5);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border:1px solid var(--border);
  border-radius:16px;
  padding:28px;
  transition:.35s;
  box-shadow:0 10px 30px rgba(0,0,0,.2);
}

.info-box:hover{
  transform:translateY(-6px);
  border-color:var(--accent);
  box-shadow:0 18px 35px rgba(0,0,0,.35);
}

.info-box h3{
  font-family:'Playfair Display',serif;
  font-size:18px;
  margin-bottom:12px;
  color:var(--accent);
}

.info-box p{
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
}

/* Highlight */
.info-highlight{
  margin-top:60px;
  padding:50px 40px;
  border-radius:18px;
  background:
    linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.65)),
    url('../update-images/crownsy5.jpg') center center/cover no-repeat;
  border:1px solid var(--border);
  text-align:center;
  box-shadow:0 20px 45px rgba(0,0,0,.35);
}

.info-highlight h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(22px,3vw,32px);
  margin-bottom:15px;
  text-shadow:0 2px 12px rgba(0,0,0,.6);
}

.info-highlight p{
  color:var(--muted);
  font-size:15px;
  max-width:700px;
  margin:auto;
  line-height:1.8;
}

/* CTA */
.faq-cta{
  margin-top:55px;
  text-align:center;
}

.faq-btn{
  display:inline-block;
  padding:13px 34px;
  border:1px solid var(--accent);
  color:var(--accent);
  text-decoration:none;
  border-radius:40px;
  transition:.35s;
  letter-spacing:.5px;
  backdrop-filter:blur(8px);
}

.faq-btn:hover{
  background:var(--accent);
  color:#000;
  box-shadow:0 0 25px rgba(198,169,93,.35);
}

/* Responsive */
@media(max-width:768px){

  .faq-wrapper{
    padding:120px 20px 60px;
    background-attachment:scroll;
  }

  .faq-card{
    padding:22px;
  }

  .info-highlight{
    padding:35px 25px;
  }

}

/* WhatsApp Floating Button */
.floating-wa{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#fff;
  color:#000;
  padding:12px 18px;
  border-radius:30px;
  cursor:pointer;
  font-weight:500;
  z-index:999;
  transition:.3s;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.floating-wa:hover{
  transform:translateY(-3px);
}

.wa-popup{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  z-index:1000;
  justify-content:center;
  align-items:center;
}

.wa-box{
  width:min(90%,380px);
  background:#fff;
  color:#111;
  padding:30px;
  border-radius:14px;
  text-align:center;
  box-shadow:0 20px 45px rgba(0,0,0,.35);
}

.wa-box button{
  display:block;
  width:100%;
  margin:12px 0;
  padding:12px;
  border:none;
  background:#000;
  color:#fff;
  border-radius:8px;
  cursor:pointer;
  transition:.3s;
}

.wa-box button:hover{
  background:var(--accent);
  color:#000;
}

.close{
  display:inline-block;
  margin-top:20px;
  cursor:pointer;
  color:#000;
  font-weight:600;
}