/* =============================================
   PAGES.CSS — Inner page styles for Fast Cyber
   ============================================= */

/* Page Hero / Breadcrumb Header */
.page-hero {
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  padding: 3rem 0;
}
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
.page-hero .breadcrumb a { color: #6b7280; text-decoration: none; }
.page-hero .breadcrumb a:hover { color: var(--primary); }
.page-hero .breadcrumb-sep { width: 14px; height: 14px; flex-shrink: 0; }
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.5rem;
}
.page-hero p {
  font-size: 1.1rem;
  color: #6b7280;
  margin: 0;
}
.page-hero-dark {
  background: #030712;
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
}
.page-hero-dark h1 { color: #fff; margin-bottom: 0.5rem; }
.page-hero-dark p { color: #9ca3af; margin: 0 auto; max-width: 36rem; }

/* Section spacing for inner pages */
.page-section { padding: 3rem 0; }
.page-section-lg { padding: 4rem 0; }

/* ---- INFO CARDS (contact, about) ---- */
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.info-card-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(0, 85, 255, 0.08);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.info-card-body p:first-child { font-weight: 600; color: #111827; margin: 0 0 0.2rem; }
.info-card-body p:last-child, .info-card-body a { color: #6b7280; font-size: 0.95rem; text-decoration: none; }
.info-card-body a:hover { color: var(--primary); }

/* WhatsApp CTA card */
.wa-card {
  background: rgba(37, 211, 102, 0.08);
  border-radius: 1.25rem;
  padding: 1.5rem;
  margin-top: 2rem;
}
.wa-card h3 { font-weight: 700; color: #111827; margin: 0 0 0.4rem; display: flex; align-items: center; gap: 0.5rem; }
.wa-card p { color: #6b7280; font-size: 0.875rem; margin: 0 0 1rem; }
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #25D366;
  color: #fff;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.wa-btn:hover { background: #22c55e; }

/* ---- CONTACT FORM ---- */
.contact-form-wrap {
  background: #f9fafb;
  border-radius: 1.5rem;
  padding: 2rem;
}
.contact-form-wrap h2 { font-size: 1.5rem; font-weight: 700; color: #111827; margin: 0 0 1.5rem; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media(max-width: 640px) { .form-grid-2 { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-label { font-size: 0.85rem; font-weight: 500; color: #374151; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 0.6rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: #111827;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--primary); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--primary-hover); }

/* ---- ABOUT PAGE ---- */
.about-story { max-width: 48rem; margin-bottom: 4rem; }
.about-story h2 { font-size: 1.5rem; font-weight: 700; color: #111827; margin: 0 0 1rem; }
.about-story p { color: #6b7280; line-height: 1.75; margin-bottom: 1rem; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-bottom: 4rem; }
.feature-card { background: #f9fafb; border-radius: 1.25rem; padding: 1.5rem; }
.feature-card-icon { width: 3rem; height: 3rem; background: rgba(0,85,255,0.08); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: var(--primary); }
.feature-card h3 { font-weight: 700; color: #111827; margin: 0 0 0.4rem; }
.feature-card p { color: #6b7280; font-size: 0.875rem; margin: 0; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; }
.why-item .why-icon { width: 2.5rem; height: 2.5rem; background: rgba(0,85,255,0.08); border-radius: 0.6rem; display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; color: var(--primary); }
.why-item h3 { font-weight: 600; color: #111827; margin: 0 0 0.3rem; }
.why-item p { color: #6b7280; font-size: 0.875rem; margin: 0; }
.about-why-section { background: #f9fafb; border-radius: 1.5rem; padding: 2rem; margin-bottom: 4rem; }

/* ---- PACKAGES ---- */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.package-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 0.75rem;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.package-card:hover { border-color: #e5e7eb; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.package-card-img {
  aspect-ratio: 3/2;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 0.875rem;
}
.package-card-body { padding: 1.25rem; }
.package-card h2 { font-weight: 700; color: #111827; margin: 0 0 0.3rem; font-size: 1rem; }
.package-card-desc { font-size: 0.8rem; color: #6b7280; font-weight: 500; margin: 0 0 0.75rem; }
.package-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-bottom: 0.75rem; }
.package-tag { font-size: 0.7rem; background: #f3f4f6; color: #6b7280; padding: 0.15rem 0.4rem; border-radius: 0.25rem; }
.package-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 0.75rem; border-top: 1px solid #f3f4f6; }
.package-count { font-size: 0.75rem; color: #9ca3af; }
.package-view { font-size: 0.875rem; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 0.25rem; }

/* ---- PRODUCT GRID (Category / Election pages) ---- */
.product-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 480px) { .product-page-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .product-page-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .product-page-grid { grid-template-columns: repeat(5, 1fr); } }
/* Inside sidebar layout, cap at 4 columns */
.cat-main .product-page-grid { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .cat-main .product-page-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .cat-main .product-page-grid { grid-template-columns: repeat(4, 1fr); } }

.product-page-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.product-page-card:hover { border-color: #e5e7eb; box-shadow: 0 6px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }
.product-page-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f9fafb;
  position: relative;
}
.product-page-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.product-page-card:hover .product-page-card-img img { transform: scale(1.05); }
.product-page-card-body { padding: 0.875rem; }
.product-cat-badge { display: inline-block; font-size: 0.7rem; font-weight: 600; color: var(--primary); background: #eff6ff; border-radius: 999px; padding: 0.15rem 0.5rem; margin-bottom: 0.25rem; text-transform: uppercase; letter-spacing: 0.04em; }
.product-page-card h3 {
  font-weight: 600;
  color: #111827;
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0 0 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-page-card p { font-size: 0.8rem; font-weight: 600; color: #111827; margin: 0; }

/* Category page hero banner */
.cat-page-hero {
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  padding: 3rem 0 2.5rem;
}
.cat-page-hero h1 { font-size: clamp(1.6rem, 4vw, 2.8rem); font-weight: 700; color: #111827; margin: 0 0 0.5rem; }
.cat-page-hero p { color: #6b7280; font-size: 1rem; margin: 0 0 1.5rem; max-width: 36rem; }
.cat-page-hero-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Election hero (dark) */
.election-hero {
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  padding: 3.5rem 0;
}
.election-hero h1 { font-size: clamp(1.8rem, 4vw, 3.2rem); font-weight: 700; color: #111827; margin: 0 0 1rem; line-height: 1.2; }
.election-hero p { color: #6b7280; font-size: 1.1rem; margin: 0 0 2rem; max-width: 36rem; }
.election-trust-bar { border-bottom: 1px solid #e5e7eb; padding: 2rem 0; }
.election-trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.election-trust-item { display: flex; align-items: center; gap: 1rem; }
.election-trust-icon { width: 3rem; height: 3rem; background: #f3f4f6; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #374151; }
.election-trust-item p:first-child { font-weight: 700; color: #111827; margin: 0 0 0.2rem; }
.election-trust-item p:last-child { font-size: 0.875rem; color: #6b7280; margin: 0; }

/* ---- BLOG ---- */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr;
  background: #f9fafb;
  border-radius: 1.5rem;
  overflow: hidden;
  margin-bottom: 2.5rem;
  text-decoration: none;
  transition: box-shadow 0.2s;
}
@media(min-width: 768px) { .blog-featured { grid-template-columns: 1fr 1fr; } }
.blog-featured:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.blog-featured-img { position: relative; aspect-ratio: 16/10; overflow: hidden; background: #e5e7eb; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-featured:hover .blog-featured-img img { transform: scale(1.05); }
.blog-featured-badge { position: absolute; top: 1rem; left: 1rem; background: var(--primary); color: #fff; font-size: 0.75rem; font-weight: 600; padding: 0.3rem 0.75rem; border-radius: 99px; }
.blog-featured-body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-date { display: flex; align-items: center; gap: 0.4rem; font-size: 0.875rem; color: #6b7280; margin-bottom: 0.75rem; }
.blog-featured h2 { font-size: 1.5rem; font-weight: 700; color: #111827; margin: 0 0 0.75rem; line-height: 1.3; }
.blog-featured-body p { color: #6b7280; margin: 0 0 1rem; }
.blog-read-more { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--primary); font-weight: 600; font-size: 0.95rem; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; }
.blog-card { text-decoration: none; display: block; }
.blog-card-img { aspect-ratio: 16/10; border-radius: 0.75rem; overflow: hidden; background: #e5e7eb; margin-bottom: 0.75rem; position: relative; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-date { display: flex; align-items: center; gap: 0.3rem; font-size: 0.75rem; color: #6b7280; margin-bottom: 0.4rem; }
.blog-card h3 { font-weight: 600; color: #111827; font-size: 0.95rem; margin: 0 0 0.4rem; line-height: 1.4; }
.blog-card:hover h3 { color: var(--primary); }
.blog-card-cat { font-size: 0.75rem; color: #6b7280; background: #f3f4f6; padding: 0.2rem 0.5rem; border-radius: 0.25rem; display: inline-block; }

/* ---- REVIEWS ---- */
.reviews-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media(min-width: 1024px) { .reviews-layout { grid-template-columns: 1fr 2fr; } }
.review-summary-card { background: #f9fafb; border-radius: 1.25rem; padding: 1.5rem; margin-bottom: 1.5rem; text-align: center; }
.review-big-score { font-size: 3rem; font-weight: 700; color: #111827; }
.review-stars { display: flex; align-items: center; justify-content: center; gap: 0.2rem; margin: 0.3rem 0; }
.review-star { color: #d1d5db; }
.review-star.filled { color: #f59e0b; }
.review-score-count { color: #6b7280; font-size: 0.875rem; }
.review-bars { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.review-bar-row { display: flex; align-items: center; gap: 0.75rem; }
.review-bar-label { font-size: 0.875rem; color: #6b7280; width: 2.5rem; text-align: right; }
.review-bar-track { flex: 1; height: 0.5rem; background: #e5e7eb; border-radius: 99px; overflow: hidden; }
.review-bar-fill { height: 100%; background: #f59e0b; border-radius: 99px; }
.review-bar-count { font-size: 0.875rem; color: #6b7280; width: 1.5rem; }
.review-write-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 1.25rem; padding: 1.5rem; }
.review-write-card h2 { font-size: 1.25rem; font-weight: 700; color: #111827; margin: 0 0 0.4rem; }
.review-write-card p { color: #6b7280; font-size: 0.875rem; margin: 0 0 1rem; }
.star-rating-input { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.star-rating-input button { background: none; border: none; cursor: pointer; padding: 0.25rem; color: #f59e0b; }
.empty-reviews { text-align: center; padding: 3rem; color: #6b7280; }
.empty-reviews-icon { width: 4rem; height: 4rem; background: #f3f4f6; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: #9ca3af; }

/* ---- PROSE (legal pages) ---- */
.prose-page { max-width: 52rem; margin: 0 auto; }
.prose-page h2 { font-size: 1.4rem; font-weight: 700; color: #111827; margin: 2.5rem 0 1rem; }
.prose-page h3 { font-size: 1.1rem; font-weight: 600; color: #111827; margin: 1.5rem 0 0.75rem; }
.prose-page p { color: #6b7280; line-height: 1.8; margin-bottom: 1rem; }
.prose-page ul { color: #6b7280; line-height: 1.8; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose-page li { margin-bottom: 0.4rem; }
.prose-page a { color: var(--primary); }
.prose-page strong { color: #374151; }
.prose-intro { font-size: 1.05rem; color: #374151; margin-bottom: 2rem; line-height: 1.8; }
.legal-icon-header { display: flex; align-items: flex-start; gap: 1rem; }
.legal-icon { width: 3.5rem; height: 3.5rem; background: rgba(0,85,255,0.08); border-radius: 1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--primary); }
.legal-header-updated { display: flex; align-items: center; gap: 0.4rem; font-size: 0.9rem; color: #6b7280; margin-top: 0.4rem; }
.policy-cta { background: rgba(0,85,255,0.05); border: 1px solid rgba(0,85,255,0.15); border-radius: 1.5rem; padding: 2rem; text-align: center; margin-top: 3rem; }
.policy-cta h2 { font-size: 1.5rem; font-weight: 700; color: #111827; margin: 0 0 0.5rem; }
.policy-cta p { color: #6b7280; margin: 0 0 1.5rem; }
.policy-cta-btns { display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: center; }
@media(min-width: 480px) { .policy-cta-btns { flex-direction: row; } }
.info-note { background: #eff6ff; border-radius: 0.75rem; padding: 1rem; margin-top: 1rem; font-size: 0.875rem; color: #1e40af; }
.info-note strong { color: #1d4ed8; }
.danger-note { background: #fef2f2; border-radius: 0.75rem; padding: 1rem; margin-top: 1rem; }
.danger-note p { color: #991b1b; font-size: 0.875rem; margin: 0 0 0.4rem; }

/* ---- SIGN IN / ACCOUNT ---- */
.auth-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 3rem 1rem; }
.auth-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 1.5rem; padding: 2.5rem; width: 100%; max-width: 440px; }
.auth-card h1 { font-size: 1.5rem; font-weight: 700; color: #111827; margin: 0 0 0.3rem; }
.auth-card p { color: #6b7280; margin: 0 0 1.5rem; font-size: 0.9rem; }
.auth-divider { display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: #e5e7eb; }
.auth-divider span { font-size: 0.8rem; color: #9ca3af; }
.auth-footer { text-align: center; margin-top: 1rem; font-size: 0.875rem; color: #6b7280; }
.auth-footer a { color: var(--primary); font-weight: 600; text-decoration: none; }
.track-order-section { padding: 4rem 0; }
.track-card { max-width: 560px; margin: 0 auto; background: #f9fafb; border-radius: 1.5rem; padding: 2rem; }
.track-card h2 { font-size: 1.5rem; font-weight: 700; color: #111827; margin: 0 0 0.5rem; }
.track-card p { color: #6b7280; margin: 0 0 1.5rem; }

/* ---- SITEMAP ---- */
.sitemap-section { margin-bottom: 2.5rem; }
.sitemap-section h2 { font-size: 1.25rem; font-weight: 700; color: #111827; margin: 0 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid #f3f4f6; }
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.5rem; }
.sitemap-link { display: flex; align-items: center; gap: 0.5rem; color: #374151; text-decoration: none; padding: 0.4rem 0; font-size: 0.9rem; }
.sitemap-link:hover { color: var(--primary); }
.sitemap-link svg { color: var(--primary); flex-shrink: 0; }

/* ---- Category page sort/filter bar ---- */
.cat-sort-bar { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; border-bottom: 1px solid #f3f4f6; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 0.75rem; }
.cat-sort-bar h2 { font-size: 1.1rem; font-weight: 700; color: #111827; margin: 0; }
.cat-sort-select { padding: 0.4rem 0.75rem; border: 1px solid #e5e7eb; border-radius: 0.5rem; font-size: 0.875rem; font-family: inherit; color: #374151; background: #fff; cursor: pointer; }

/* ---- Btn variants for inner pages ---- */
.btn-black {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #111827;
  color: #fff;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-black:hover { background: #1f2937; }
.btn-outline-gray {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #fff;
  color: #111827;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.btn-outline-gray:hover { border-color: #9ca3af; }

/* ---- Category page with sidebar layout ---- */
.cat-layout { display: flex; gap: 2.5rem; align-items: flex-start; padding-top: 2.5rem; padding-bottom: 0; }
.cat-sidebar {
  width: 200px;
  flex-shrink: 0;
  position: sticky;
  top: 5rem;
}
.cat-sidebar-heading { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #9ca3af; margin: 0 0 0.5rem; }
.cat-sidebar-list { list-style: none; margin: 0; padding: 0; }
.cat-sidebar-list li a {
  display: block;
  padding: 0.35rem 0.5rem;
  font-size: 0.875rem;
  color: #374151;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: background 0.15s, color 0.15s;
}
.cat-sidebar-list li a:hover { background: #f3f4f6; color: #111827; }
.cat-sidebar-list li a.active { background: #eff6ff; color: var(--primary); font-weight: 600; }
.cat-main { flex: 1; min-width: 0; }

/* ---- Category SEO section ---- */
.cat-seo-section { padding: 2.5rem 0 0; }
.cat-seo-section h2 { font-size: 1.4rem; font-weight: 700; color: #111827; margin: 0 0 1rem; }
.cat-seo-section p { color: #4b5563; line-height: 1.75; margin: 0 0 0.75rem; }

/* ---- Category FAQ ---- */
.cat-faq-section { padding: 2.5rem 0 0; }
.cat-faq-section h2 { font-size: 1.3rem; font-weight: 700; color: #111827; margin: 0 0 1.25rem; }
.cat-faq-item { border: 1px solid #e5e7eb; border-radius: 0.625rem; margin-bottom: 0.625rem; overflow: hidden; }
.cat-faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  background: #fff;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}
.cat-faq-btn:hover { background: #f9fafb; }
.cat-faq-btn svg { flex-shrink: 0; transition: transform 0.2s; }
.cat-faq-item.open .cat-faq-btn svg { transform: rotate(180deg); }
.cat-faq-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.cat-faq-item.open .cat-faq-body { max-height: 400px; }
.cat-faq-body p { padding: 0 1.25rem 1rem; margin: 0; color: #4b5563; line-height: 1.7; font-size: 0.925rem; }

/* ---- Why Choose section ---- */
.cat-usp-section { padding: 2.5rem 0 0; }
.cat-usp-section h2 { font-size: 1.3rem; font-weight: 700; color: #111827; margin: 0 0 1.25rem; }
.cat-usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.cat-usp-card { background: #f9fafb; border-radius: 0.75rem; padding: 1.25rem; }
.cat-usp-card h3 { font-size: 0.95rem; font-weight: 700; color: #111827; margin: 0 0 0.375rem; }
.cat-usp-card p { font-size: 0.875rem; color: #6b7280; margin: 0; line-height: 1.6; }

/* ---- Browse Other Categories ---- */
.cat-browse-section { padding: 2.5rem 0 2.5rem; }
.cat-browse-section h2 { font-size: 1.1rem; font-weight: 700; color: #111827; margin: 0 0 1rem; }
.cat-browse-row { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.cat-browse-tag {
  display: inline-block;
  padding: 0.45rem 1rem;
  background: #f3f4f6;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #374151;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.cat-browse-tag:hover { background: var(--primary); color: #fff; }

/* ---- Responsive ---- */
@media(max-width: 768px) {
  .page-hero { padding: 2rem 0; }
  .page-section { padding: 2rem 0; }
  .contact-form-wrap { padding: 1.5rem; }
  .cat-layout { flex-direction: column; gap: 1.5rem; padding-top: 1.5rem; }
  .cat-sidebar { width: 100%; position: static; }
  .cat-sidebar-list { display: flex; flex-wrap: wrap; gap: 0.375rem; }
  .cat-sidebar-list li a { padding: 0.35rem 0.75rem; border-radius: 999px; background: #f3f4f6; }
  .cat-usp-grid { grid-template-columns: 1fr; }
}
