*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  font-family: "Inter", sans-serif;
  background:white;
  overflow-x:hidden;
}

/* =============================
   NAVBAR
============================= */

.navbar{
  position:fixed;
  top:0;left:0;
  width:100%;
  z-index:1000;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(10px);
  padding:14px 0;
  border-bottom:1px solid rgba(0,0,0,.06);
}

.container{
  width:86%;
  margin:auto;
}

.nav-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo img{
  height:42px;
  object-fit:contain;
}

.nav-links{
  display:flex;
  list-style:none;
  gap:28px;
}

.nav-links li a{
  text-decoration:none;
  color:#0c1323;
  font-weight:600;
  padding:6px 10px;
  border-radius:10px;
  transition:.25s;
}

.nav-links li a:hover{
  background:linear-gradient(90deg,#9A0059,#B21477,#ad3983);
  color:#fff;
}
.nav-links a:hover,
.nav-links .active{
  background:#9A0059;
  color:#fff;
}
.menu-btn{
  display:none;
  font-size:28px;
  font-weight:900;
  cursor:pointer;
}
/* HAMBURGER — 1200PX AND BELOW ONLY */
@media (max-width: 1200px){

  .menu-btn{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:100%;
    right:0;
    width:100%;
    flex-direction:column;
    background:#fff;
    padding:18px 0;
    text-align:center;
    gap:14px;

    opacity:0;
    pointer-events:none;
    transform:translateY(-10px);
    transition:.25s;
  }

  .nav-links.show{
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
  }
}
@media(max-width:820px){

  .menu-btn{display:block;}

  .nav-links{
    position:absolute;
    top:100%;right:0;width:100%;
    flex-direction:column;
    background:#fff;
    padding:18px 0;
    text-align:center;
    gap:14px;
    opacity:0;
    pointer-events:none;
    transform:translateY(-10px);
    transition:.25s;
  }

  .nav-links.show{
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
  }
}


/* ==========================
   FAQ HERO
========================== */

.faq-hero-wrap{
  padding:130px 6% 80px;
}

.faq-hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

.faq-hero-text{
  flex:1.2;
}

.faq-hero-text h1{
  font-size:56px;
  color:#0B1220;
  margin-bottom:18px;
}

.faq-hero-text p{
  font-size:18px;
  color:#374151;
  line-height:1.6;
  max-width:560px;
  margin-bottom:12px;
}

.faq-hero-img{
  flex:1;
  text-align:right;
}

.faq-hero-img img{
  max-width:520px;
  width:100%;
}

/* ==========================
   FAQ SECTION
========================== */

.faq-section{
  padding: 90px 6% 110px;
}

.faq-wrap{
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: flex-start;
  gap: 70px;
}

.faq-title-box h2{
  font-size: 46px;
  color:#0B1220;
}


/* ---- accordion ---- */

.faq-accordion{
  width: 100%;
}

.faq-item{
  border-bottom: 1px solid #e6e6e6;
}

.faq-question{
  width: 100%;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 600;
  border: none;
  background: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon-g{
  font-size: 36px;
  color: #982273;
  transition: .25s;
}

.faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: .3s ease;
}

.faq-answer p{
  padding: 0 0 18px 0;
  font-size: 16px;
  color:#374151;
  line-height: 1.6;
}


/* open state */
.faq-item.active .faq-answer{
  max-height: 400px;
}

.faq-item.active .faq-icon{
  transform: rotate(180deg);
}


/* Tablet */
@media(max-width: 900px){

  .faq-wrap{
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
  }

  .faq-title-box h2{
    font-size: 34px;
  }
}

/* Mobile */
@media(max-width: 520px){

  .faq-question{
    font-size: 16px;
  }

  .faq-title-box h2{
    font-size: 28px;
  }
}
.faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: .3s ease;
}

.faq-item.active .faq-answer{
  max-height: 400px;
}

.faq-item.active .faq-icon{
  transform: rotate(180deg);
}

/* =====================
   FAQ CTA SECTION
===================== */

.faq-cta{
  background: #ffa2b49f;
  text-align: center;
  padding: 110px 6% 120px;
}

.faq-cta h2{
  font-size: 56px;
  color: #000;
  margin-bottom: 12px;
}

.faq-cta p{
  color: #000;
  font-size: 20px;
  max-width: 820px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.faq-cta-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  max-width: 1080px;
  margin: auto;
}

.faq-cta-card{
  background: #fff;
  padding: 34px 24px;
  border-radius: 16px;
  box-shadow: 0 18px 28px rgba(0,0,0,.08);
  text-align: center;
  transition: .25s;
}

.faq-cta-card img{
  width: 64px;
  margin-bottom: 10px;
}

.faq-cta-card h4{
  margin-top: 8px;
  font-size: 18px;
  color: #0c1323;
  font-weight: 800;
}

.faq-cta-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 25px 36px rgba(0,0,0,.12);
}
.faq-icon{
  font-size: 60px;
  color: #982273;
  margin-bottom: 14px;
}
.faq-cta-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.faq-cta-card img{
  width: 70px;          /* same feel as icons */
  height: auto;
  margin-bottom: 14px;
  display: block;
}

.faq-icon{
  font-size: 70px;
  margin-bottom: 14px;
}


/* footer */
.footer{
  background:#fff;
  padding:70px 6% 50px;
  border-top:1px solid #eee;
}

.footer-container{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:60px;
}

.footer-logo{
  width:170px;
  margin-bottom:12px;
}

.footer-heading{
  margin:18px 0 10px;
  font-weight:700;

}

.store-buttons a img{
  width:170px;
  margin:8px 0;
  cursor:pointer;
}

.social-icons{
  margin-top:16px;
}

.social-icons i{
  font-size:22px;
  margin-right:10px;
  cursor:pointer;
}

.footer-col h4{
  margin-bottom:14px;
  font-weight:800;

}

.footer-col a,
.footer-col p{
  display:block;
  margin:7px 0;
  color:#333;
  text-decoration:none;
}

.footer-col a:hover{
  color:#9A0059;
}

.footer-bottom{
  margin-top:50px;
  text-align:center;
  font-size:14px;
  color:#444;
}

/* ===== RESPONSIVE ===== */

@media(max-width:1000px){
  .footer-container{
    grid-template-columns:1fr 1fr;
    gap:35px;
  }
}

@media(max-width:700px){
  .footer-container{
    grid-template-columns:1fr;
  }

  .footer{
    text-align:center;
  }

  .social-icons i{
    margin-right:6px;
  }
}
/* HERO — TABLET */
@media (max-width: 900px){
  .faq-hero{
    flex-direction: column;
    text-align: center;
  }

  .faq-hero-text{
    max-width: 620px;
    margin: auto;
  }

  .faq-hero-img{
    text-align: center;
  }

  .faq-hero-img img{
    max-width: 420px;
  }
}

/* HERO — MOBILE */
@media (max-width: 520px){
  .faq-hero-text h1{
    font-size: 34px;
    line-height: 1.2;
  }

  .faq-hero-text p{
    font-size: 15px;
  }

  .faq-hero-img img{
    max-width: 300px;
  }
}
/* FAQ CTA Responsive */

@media (max-width: 900px){
  .faq-cta-grid{
    grid-template-columns: repeat(2,1fr);
  }

  .faq-cta h2{
    font-size: 42px;
  }
}

@media (max-width: 600px){
  .faq-cta-grid{
    grid-template-columns: 1fr;
  }

  .faq-cta{
    padding: 70px 6%;
  }

  .faq-cta h2{
    font-size: 34px;
  }

  .faq-cta p{
    font-size: 16px;
  }
}
/* --------------------------
   MOBILE NAV (CLEAN + FIXED)
---------------------------*/

.menu-btn{
  display:none;
  font-size:30px;
  font-weight:900;
  cursor:pointer;
  z-index: 2000;
}

/* show hamburger on tablets + phones */
@media (max-width: 1024px){

  .menu-btn{
    display:block;
  }

  .nav-content{
    position: relative;
  }

  .nav-links{
    position:absolute;
    top:100%;
    right:0;
    width:100%;
    flex-direction:column;
    background:#fff;
    padding:18px 0;
    text-align:center;
    gap:14px;

    opacity:0;
    pointer-events:none;
    transform:translateY(-12px);
    transition:.25s;
    z-index:1500;
  }

  .nav-links.show{
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
  }
  
}
.menu-btn { display:none }
@media (max-width:1200px){ .menu-btn{display:block} ... }
@media (max-width:820px){ .menu-btn{display:block} ... }