:root{
  --primary:#ec148c;
  --primary-dark:#d90f7f;
  --primary-soft:#fdeaf4;
  --dark:#182136;
  --text:#5f6c80;
  --muted:#94a3b8;
  --border:#f3dce8;
  --bg:#fcf7fb;
  --white:#ffffff;
  --shadow:0 18px 45px rgba(17,24,39,.08);
  --radius:24px;
}

*{
  box-sizing:border-box;
}

html,body{
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:linear-gradient(180deg,#fff 0%, #fcf7fb 100%);
  color:var(--dark);
}

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

img{
  max-width:100%;
  display:block;
}

.container{
  width:min(1280px, calc(100% - 40px));
  margin:0 auto;
}

.page-space{
  padding:34px 0 72px;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(12px);
  border-bottom:1px solid #f3e8ef;
}

.topbar.clean-navbar{
  min-height:82px;
  display:grid;
  grid-template-columns:220px 1fr 220px;
  grid-template-areas:"brand nav icons";
  align-items:center;
  gap:20px;
}

.brand{
  grid-area:brand;
  justify-self:start;
  font-size:2rem;
  font-weight:800;
  color:var(--primary);
  letter-spacing:-.03em;
  font-family:'Playfair Display',serif;
}

.global-search{
  display:none !important;
}

.nav-center{
  grid-area:nav;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:40px;
}

.nav-center a{
  font-size:1rem;
  font-weight:500;
  color:#475569;
  transition:.2s ease;
}

.nav-center a:hover,
.nav-icons a:hover{
  color:var(--primary-dark);
}

.nav-icons{
  grid-area:icons;
  justify-self:end;
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:22px;
}

.nav-icons a{
  font-size:1.2rem;
  color:#475569;
  transition:.2s ease;
}

/* TYPO */
h1,h2,h3,h4{
  margin:0 0 14px;
  color:var(--dark);
  letter-spacing:-.03em;
}

p{
  margin:0 0 14px;
  color:var(--text);
  line-height:1.8;
}

/* BUTTON */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  height:50px;
  padding:0 22px;
  border:none;
  border-radius:999px;
  background:linear-gradient(135deg,var(--primary),var(--primary-dark));
  color:#fff;
  font-family:inherit;
  font-size:.96rem;
  font-weight:700;
  cursor:pointer;
  transition:.25s ease;
  box-shadow:0 12px 24px rgba(236,20,140,.20);
}

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

.btn-sm{
  height:42px;
  padding:0 18px;
  font-size:.9rem;
}

.btn-outline{
  background:#fff;
  color:var(--primary-dark);
  border:1px solid #f3bfd7;
  box-shadow:none;
}

.btn-danger{
  background:linear-gradient(135deg,#ef4444,#dc2626);
  box-shadow:none;
}

/* CARD */
.card{
  background:rgba(255,255,255,.97);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow);
}

/* ALERT */
.alert{
  padding:14px 18px;
  border-radius:16px;
  margin-bottom:18px;
  font-weight:500;
}

.alert.success{
  background:#ecfdf5;
  color:#166534;
  border:1px solid #bbf7d0;
}

.alert.error{
  background:#fff1f2;
  color:#be123c;
  border:1px solid #fecdd3;
}

/* GRID */
.grid{
  display:grid;
  gap:22px;
}

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

.products-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
  gap:22px;
}

/* PRODUCT */
.product-card{
  display:flex;
  flex-direction:column;
  height:100%;
  overflow:hidden;
  transition:.25s ease;
}

.product-card:hover{
  transform:translateY(-5px);
}

.product-thumb{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:18px;
  margin-bottom:16px;
  background:#f8e8f1;
}

.product-desc{
  margin-bottom:14px;
}

.product-price{
  margin-top:auto;
  display:block;
}

.product-action{
  margin-top:14px;
}

.detail-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:28px;
  align-items:start;
}

.detail-image{
  width:100%;
  max-height:560px;
  object-fit:cover;
  border-radius:22px;
  background:#f6eef3;
}

.desc-box{
  padding:18px;
  background:#fff7fb;
  border:1px solid #f6d9e8;
  border-radius:18px;
  margin:18px 0;
}

/* SEARCH / FILTER */
.search-bar{
  display:grid;
  grid-template-columns:minmax(0,1fr) 220px 120px;
  gap:12px;
}

.form-grid{
  display:grid;
  gap:14px;
}

.form-grid input,
.form-grid select,
.form-grid textarea,
.search-bar input,
.search-bar select{
  width:100%;
  min-height:48px;
  padding:12px 14px;
  border:1px solid #ecd8e4;
  border-radius:16px;
  background:#fff;
  font:inherit;
  color:var(--dark);
  outline:none;
}

.form-grid textarea{
  min-height:120px;
  resize:vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus,
.search-bar input:focus,
.search-bar select:focus{
  border-color:var(--primary);
  box-shadow:0 0 0 4px rgba(236,20,140,.1);
}

/* TABLE */
.table{
  width:100%;
  border-collapse:collapse;
}

.table th,
.table td{
  padding:14px 12px;
  text-align:left;
  border-bottom:1px solid #f0e6ed;
  vertical-align:top;
}

.table th{
  color:#64748b;
  font-size:.92rem;
  font-weight:700;
}

/* MISC */
.inline-form{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

.address-item{
  padding:14px 0;
  border-bottom:1px solid #f0e6ed;
}

.invoice-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}

.pagination{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:10px;
}

.page-link{
  min-width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid #edd7e5;
  color:#475569;
  font-weight:600;
}

.page-link.active{
  background:linear-gradient(135deg,var(--primary),var(--primary-dark));
  color:#fff;
  border-color:transparent;
}

.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 12px;
  border-radius:999px;
  font-size:.78rem;
  font-weight:700;
}

.badge-gray{background:#e5e7eb;color:#374151}
.badge-blue{background:#dbeafe;color:#1d4ed8}
.badge-purple{background:#ede9fe;color:#6d28d9}
.badge-green{background:#dcfce7;color:#166534}
.badge-red{background:#fee2e2;color:#991b1b}
.badge-yellow{background:#fef3c7;color:#92400e}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
  margin-top:14px;
}

.gallery-thumb{
  width:100%;
  height:92px;
  object-fit:cover;
  border-radius:14px;
  border:1px solid #f1dbe7;
}

/* HOMEPAGE */
.hero-section{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:center;
  min-height:calc(100vh - 130px);
  padding:26px 0 36px;
}

.hero-copy{
  max-width:640px;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--primary-soft);
  color:var(--primary);
  border-radius:999px;
  padding:12px 20px;
  font-size:.92rem;
  font-weight:600;
  margin-bottom:28px;
}

.hero-title{
  font-family:'Playfair Display',serif;
  font-size:clamp(3rem, 6vw, 5.2rem);
  line-height:.98;
  letter-spacing:-.04em;
  margin-bottom:22px;
  color:#111827;
}

.hero-title span{
  color:var(--primary);
}

.hero-desc{
  max-width:620px;
  color:var(--text);
  font-size:1.08rem;
  line-height:1.85;
  margin-bottom:30px;
}

.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:34px;
}

.hero-btn,
.hero-btn-outline{
  min-width:170px;
  height:56px;
  border-radius:14px;
  font-size:1rem;
}

.hero-btn{
  background:linear-gradient(135deg,var(--primary),var(--primary-dark));
  box-shadow:none;
}

.hero-btn-outline{
  background:#fff;
  border:1.5px solid var(--primary);
  color:var(--primary);
  box-shadow:none;
}

.hero-more{
  max-width:660px;
  background:#fff;
  border:1px solid #f3d8e7;
  border-radius:18px;
  padding:18px 20px;
  margin-bottom:24px;
}

.hero-stats{
  display:flex;
  gap:44px;
  flex-wrap:wrap;
}

.hero-stats div{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.hero-stats strong{
  color:var(--primary);
  font-size:2rem;
  line-height:1;
  font-weight:700;
}

.hero-stats span{
  color:var(--text);
  font-size:1rem;
}

.hero-media{
  display:flex;
  justify-content:flex-end;
}

.hero-image-wrap{
  width:min(100%, 700px);
  border-radius:30px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#f5edf2;
}

.hero-image-wrap img{
  width:100%;
  height:700px;
  object-fit:cover;
  display:block;
}

/* BENEFITS */
.benefits-section{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:26px;
  padding:36px 0 90px;
}

.benefit-card{
  text-align:center;
  padding:34px 22px;
  border-radius:24px;
  background:transparent;
}
.benefit-card{
  text-align:center;
  transition:0.3s ease;
}

.benefit-card:hover{
  transform:translateY(-5px);
}

.benefit-icon{
  width:74px;
  height:74px;
  margin:0 auto 18px;
  border-radius:999px;
  background:var(--primary-soft);
  color:var(--primary);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2rem;
}

.benefit-card h3{
  font-size:1.1rem;
  margin-bottom:12px;
}

.benefit-card p{
  margin:0;
  color:var(--text);
  line-height:1.7;
}

/* PRODUCTS HOME */
.products-home{
  padding:18px 0 20px;
}

.section-intro{
  text-align:center;
  max-width:760px;
  margin:0 auto 40px;
}

.section-intro .hero-badge{
  margin-bottom:18px;
}

.section-intro h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(2.4rem,5vw,4.4rem);
  line-height:1.05;
  margin-bottom:14px;
  color:#111827;
}

.section-intro p{
  color:var(--text);
  font-size:1.08rem;
}
.products-grid{
  padding-top:32px;
}

.products-home .products-grid{
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:24px;
}

.products-home .product-card{
  border-radius:22px;
  padding:18px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:0 10px 28px rgba(17,24,39,.05);
}

.products-home .product-card h3{
  margin-bottom:8px;
}

.product-brand{
  color:var(--primary);
  font-weight:600;
}

.product-link{
  margin-top:12px;
  width:100%;
}
.show-all-wrap{
  margin-top:32px;
  display:flex;
  justify-content:center;
}
/* blog */
.blog-page{
  padding: 20px 0 10px;
}

.blog-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:24px;
  margin-top:28px;
}

.blog-card{
  display:flex;
  flex-direction:column;
  height:100%;
  overflow:hidden;
  padding:0;
}

.blog-thumb{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

.blog-content{
  display:flex;
  flex-direction:column;
  flex:1;
  padding:20px;
}

.blog-category{
  display:inline-block;
  font-size:12px;
  font-weight:600;
  color:#b26b7d;
  background:#fdf1f4;
  padding:6px 10px;
  border-radius:999px;
  margin-bottom:12px;
  align-self:flex-start;
}

.blog-card h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.35;
}

.blog-meta{
  font-size:13px;
  color:#777;
  margin-bottom:12px;
}

.blog-btn{
  margin-top:auto;
  align-self:flex-start;
}

/* FOOTER */
.site-footer{
  margin-top:56px;
  background:#fff;
  border-top:1px solid var(--border);
  padding-top:10px;
}

.footer-wrap{
  display:block;
  color:#64748b;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  padding:34px 0 14px;
}

.footer-col h3,
.footer-col h4{
  color:#111827;
  margin-bottom:12px;
}

.footer-col p{
  font-size:14px;
  line-height:1.7;
  color:#64748b;
}

.footer-col a{
  color:var(--primary);
}

.footer-col a:hover{
  text-decoration:underline;
}

.wa-link{
  display:inline-block;
  margin-top:8px;
  padding:8px 14px;
  background:var(--primary);
  color:#fff !important;
  border-radius:999px;
  font-size:13px;
  transition:.2s;
}

.wa-link:hover{
  background:var(--primary-dark);
  text-decoration:none !important;
}

.footer-bottom{
  border-top:1px solid #f2e4ec;
  margin-top:20px;
  padding:20px 0 8px;
  text-align:center;
  font-size:13px;
  color:#9ca3af;
}

/* PRINT */
@media print{
  .site-header,
  .site-footer,
  .btn,
  .alert,
  .global-search,
  .nav-links,
  .nav-center,
  .nav-icons{
    display:none !important;
  }

  body{
    background:#fff;
  }

  .container,
  .page-space{
    width:100%;
    margin:0;
    padding:0;
  }

  .print-area{
    border:none !important;
    box-shadow:none !important;
    padding:0 !important;
  }
}

/* RESPONSIVE */
@media (max-width:1100px){
  .topbar.clean-navbar{
    grid-template-columns:1fr;
    grid-template-areas:
      "brand"
      "nav"
      "icons";
    justify-items:center;
    gap:14px;
    padding:14px 0;
  }

  .brand,
  .nav-icons{
    justify-self:center;
  }

  .nav-center,
  .nav-icons{
    justify-content:center;
  }

  .hero-section{
    grid-template-columns:1fr;
  }

  .hero-media{
    justify-content:center;
  }

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

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

  .footer-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:768px){
  .detail-grid,
  .two-cols,
  .search-bar{
    grid-template-columns:1fr;
  }

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

  .page-space{
    padding:24px 0 40px;
  }

  .card{
    padding:18px;
  }

  .nav-center{
    gap:20px;
    flex-wrap:wrap;
  }

  .hero-title{
    font-size:2.8rem;
  }

  .hero-image-wrap img{
    height:420px;
  }

  .hero-stats{
    gap:24px;
  }

  .benefits-section,
  .products-home .products-grid{
    grid-template-columns:1fr;
  }

  .hero-actions{
    flex-wrap:wrap;
  }
}

/* AUTH FORGOT / RESET PASSWORD */
.auth-page{
  min-height:calc(100vh - 220px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px 0 48px;
}

.auth-card{
  width:100%;
  background:#fff;
  border:1px solid var(--border);
  border-radius:32px;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.auth-card-wide{
  display:grid;
  grid-template-columns:1fr 1fr;
  max-width:1120px;
}

.auth-visual{
  position:relative;
  padding:54px 48px;
  color:#fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.28), transparent 28%),
    linear-gradient(135deg,var(--primary),var(--primary-dark));
  overflow:hidden;
}

.auth-visual::after{
  content:"";
  position:absolute;
  right:-90px;
  bottom:-90px;
  width:240px;
  height:240px;
  border-radius:50%;
  background:rgba(255,255,255,.16);
}

.auth-badge{
  position:relative;
  z-index:1;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.18);
  color:#fff;
  font-size:.88rem;
  font-weight:700;
  margin-bottom:28px;
}

.auth-visual h1{
  position:relative;
  z-index:1;
  color:#fff;
  font-family:'Playfair Display',serif;
  font-size:clamp(2.8rem,5vw,4.8rem);
  line-height:1;
  margin-bottom:18px;
}

.auth-visual p{
  position:relative;
  z-index:1;
  color:rgba(255,255,255,.92);
  font-size:1.03rem;
  line-height:1.85;
}

.auth-steps,
.password-rules{
  position:relative;
  z-index:1;
  display:grid;
  gap:14px;
  margin-top:32px;
}

.auth-steps div,
.password-rules div{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.16);
  backdrop-filter:blur(10px);
}

.auth-steps span{
  width:34px;
  height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 34px;
  border-radius:999px;
  background:#fff;
  color:var(--primary);
  font-weight:800;
}

.auth-steps p{
  margin:0;
  color:#fff;
  line-height:1.5;
}

.password-rules i{
  width:28px;
  height:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:#fff;
  color:var(--primary);
}

.auth-form-panel{
  padding:54px 48px;
  background:
    radial-gradient(circle at top right, rgba(236,20,140,.08), transparent 32%),
    #fff;
}

.auth-form-panel h2{
  font-family:'Playfair Display',serif;
  font-size:2.35rem;
  color:#111827;
  margin-bottom:8px;
}

.auth-muted{
  color:var(--text);
  margin-bottom:26px;
}

.auth-form{
  display:grid;
  gap:12px;
}

.auth-form label{
  font-weight:700;
  color:var(--dark);
  margin-top:4px;
}

.input-icon-wrap{
  position:relative;
}

.input-icon-wrap i{
  position:absolute;
  left:17px;
  top:50%;
  transform:translateY(-50%);
  color:var(--primary);
  pointer-events:none;
}

.input-icon-wrap input{
  width:100%;
  min-height:54px;
  padding:13px 16px 13px 48px;
  border:1px solid #ecd8e4;
  border-radius:18px;
  background:#fff;
  font:inherit;
  color:var(--dark);
  outline:none;
}

.input-icon-wrap input:focus{
  border-color:var(--primary);
  box-shadow:0 0 0 4px rgba(236,20,140,.10);
}

.auth-submit{
  width:100%;
  height:56px;
  margin-top:12px;
  font-size:1rem;
}

.reset-demo-box{
  padding:16px;
  border:1px solid #f3bfd7;
  border-radius:18px;
  background:#fff7fb;
  margin-bottom:22px;
  overflow-wrap:anywhere;
}

.reset-demo-box strong{
  display:block;
  color:var(--dark);
  margin-bottom:6px;
}

.reset-demo-box p,
.reset-demo-box small{
  display:block;
  color:var(--text);
  margin:0 0 8px;
}

.reset-demo-box a{
  display:block;
  color:var(--primary-dark);
  font-weight:700;
  margin-bottom:8px;
}

.auth-help-box{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:14px 16px;
  border-radius:18px;
  background:var(--primary-soft);
  color:var(--primary-dark);
  margin-top:18px;
  font-weight:600;
}

.auth-link-text{
  text-align:center;
  margin:22px 0 0;
}

.auth-link-text a{
  color:var(--primary-dark);
  font-weight:800;
}

@media(max-width:900px){
  .auth-card-wide{
    grid-template-columns:1fr;
  }

  .auth-visual,
  .auth-form-panel{
    padding:36px 24px;
  }
}

@media(max-width:560px){
  .auth-page{
    padding-top:0;
  }

  .auth-card{
    border-radius:24px;
  }

  .auth-visual h1{
    font-size:2.5rem;
  }
}

/* HELP & FAQ PAGE */
.contact-page {
  max-width: 860px;
  margin: 0 auto;
}

.contact-hero {
  text-align: center;
  padding: 56px 40px;
  background: linear-gradient(135deg, #ffffff 0%, var(--primary-soft) 100%);
  border: 1px solid var(--border);
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}

.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 18px;
}

.contact-hero p {
  max-width: 620px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
}

.contact-wa-btn {
  background: linear-gradient(135deg, #25d366 0%, #1ebd5d 100%) !important;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.25) !important;
  font-size: 1rem;
  padding: 0 28px;
  height: 54px;
}

.contact-wa-btn i {
  font-size: 1.3rem;
}

.contact-wa-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.35) !important;
}

.faq-search-wrapper {
  max-width: 500px;
  margin: 24px auto 0;
  position: relative;
}

.faq-search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.faq-search-box .search-icon {
  position: absolute;
  left: 20px;
  color: var(--muted);
  font-size: 1.1rem;
}

.faq-search-box input {
  width: 100%;
  height: 54px;
  padding: 12px 50px 12px 52px;
  font-size: 0.98rem;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.faq-search-box input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(236, 20, 140, 0.12), var(--shadow);
}

.search-clear-btn {
  position: absolute;
  right: 18px;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 5px;
  font-size: 1.1rem;
  transition: color 0.2s ease;
}

.search-clear-btn:hover {
  color: var(--primary-dark);
}

/* Accordion FAQ */
.faq-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 56px;
}

.faq-item {
  border: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-item:hover {
  border-color: #f3bfd7;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(236, 20, 140, 0.04);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 1.08rem;
  font-weight: 600;
  margin: 0;
  color: var(--dark);
  line-height: 1.5;
  transition: color 0.25s ease;
}

.faq-icon-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-question:hover h3 {
  color: var(--primary-dark);
}

.faq-question:hover .faq-icon-indicator {
  background: var(--primary);
  color: #fff;
}

/* Accordion Active State */
.faq-item.active {
  border-color: #f3bfd7;
  box-shadow: 0 12px 30px rgba(236, 20, 140, 0.06);
}

.faq-item.active .faq-question h3 {
  color: var(--primary-dark);
}

.faq-item.active .faq-icon-indicator {
  transform: rotate(180deg);
  background: var(--primary-dark);
  color: #fff;
}

/* Smooth content collapse */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
  padding: 0 28px 24px;
  border-top: 1px dashed var(--border);
  padding-top: 18px;
}

.faq-answer p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.85;
  color: var(--text);
}

/* No results state */
.faq-no-results {
  text-align: center;
  padding: 48px 24px;
  margin-bottom: 56px;
}

.no-results-icon {
  font-size: 3rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.faq-no-results h3 {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.faq-no-results p {
  color: var(--text);
  max-width: 460px;
  margin: 0 auto;
}

/* Bottom CTA block */
.contact-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 40px;
  background: linear-gradient(135deg, #ffffff 0%, #fdf5f9 100%);
  border: 1px solid var(--border);
}

.contact-bottom-info {
  flex: 1;
}

.contact-bottom h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-bottom p {
  margin: 0;
  font-size: 1rem;
}

/* ANIMATIONS */
.animate-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .contact-bottom {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 20px;
  }
  
  .contact-hero {
    padding: 40px 20px;
  }
  
  .faq-question {
    padding: 20px 22px;
  }
  
  .faq-answer-content {
    padding: 0 22px 20px;
    padding-top: 14px;
  }
}

