/* ============================================================
   UnTax Adda — Custom CSS
   Brand Colors: Pink #E91E8C | Black #1a1a1a | White #fff
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --primary:       #e91e8c;
  --primary-dark:  #c2176e;
  --primary-light: #f472b6;
  --primary-bg:    #fff0f8;
  --accent:        #1a1a1a;
  --text-dark:     #1a1a1a;
  --text-muted:    #6b7280;
  --text-light:    #9ca3af;
  --bg-light:      #f9fafb;
  --bg-section:    #f3f4f6;
  --border:        #e5e7eb;
  --white:         #ffffff;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08);
  --shadow:        0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:     0 10px 40px rgba(0,0,0,.14);
  --shadow-pink:   0 8px 32px rgba(233,30,140,.18);
  --radius:        12px;
  --radius-sm:     8px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --transition:    0.3s cubic-bezier(.4,0,.2,1);
  --font-main:     'Inter', 'Segoe UI', sans-serif;
  --font-heading:  'Poppins', 'Inter', sans-serif;
}

/* ── Base Reset ── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 15px;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ── Utility Classes ── */
.text-primary-custom { color: var(--primary) !important; }
.bg-primary-custom { background: var(--primary) !important; }
.bg-primary-light { background: var(--primary-bg) !important; }
.border-primary-custom { border-color: var(--primary) !important; }

.section-padding { padding: 80px 0; }
.section-padding-sm { padding: 50px 0; }

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.section-title span { color: var(--primary); }

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

.divider-pink {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
  margin: 0 auto 20px;
}
.divider-pink.left { margin: 0 0 20px; }

/* ── Buttons ── */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .3px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary-custom::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-primary-custom:hover { color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-pink); }
.btn-primary-custom:hover::before { opacity: 1; }
.btn-primary-custom:active { transform: translateY(0); }

.btn-outline-primary-custom {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 10px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-primary-custom:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink);
}

.btn-white-custom {
  background: var(--white);
  color: var(--primary);
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all var(--transition);
}
.btn-white-custom:hover { background: var(--primary-bg); color: var(--primary-dark); transform: translateY(-2px); }

/* ── Navbar ── */
.navbar-custom {
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(233,30,140,.1);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  transition: all var(--transition);
}
.navbar-custom.scrolled { padding: 8px 0; box-shadow: 0 4px 24px rgba(0,0,0,.1); }

.navbar-custom .navbar-brand img { height: 50px; transition: all var(--transition); }
.navbar-custom .navbar-brand:hover img { transform: scale(1.04); }

.navbar-custom .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  font-size: .9rem;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.navbar-custom .nav-link::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; background: var(--primary);
  transition: all var(--transition); border-radius: 1px;
}
.navbar-custom .nav-link:hover { color: var(--primary) !important; background: var(--primary-bg); }
.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after { left: 14px; right: 14px; }
.navbar-custom .nav-link.active { color: var(--primary) !important; }

.navbar-top-bar {
  background: linear-gradient(135deg, var(--accent), #2d2d2d);
  color: #ccc;
  font-size: .78rem;
  padding: 7px 0;
}
.navbar-top-bar a { color: #f0f0f0; }
.navbar-top-bar a:hover { color: var(--primary); }

/* ── Hero Section ── */
.hero-section {
  background: linear-gradient(135deg, #1a0a12 0%, #2d0f20 40%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(233,30,140,.18) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(233,30,140,.1) 0%, transparent 50%);
}
.hero-section .hero-content { position: relative; z-index: 2; }
.hero-section .hero-badge {
  display: inline-block;
  background: rgba(233,30,140,.15);
  border: 1px solid rgba(233,30,140,.3);
  color: var(--primary-light);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-section h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-section h1 .highlight { color: var(--primary); }
.hero-section .hero-desc {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-section .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat { text-align: center; }
.hero-stat .number { font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.hero-stat .label { color: rgba(255,255,255,.6); font-size: .8rem; margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

.hero-visual { position: relative; z-index: 2; }
.hero-card-float {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--white);
}
.hero-float-badge {
  position: absolute;
  background: var(--white);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Cards ── */
.card-custom {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.card-custom:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(233,30,140,.2); }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-pink); border-color: rgba(233,30,140,.25); }
.service-card:hover::before { transform: scaleX(1); }

.service-card .icon-wrap {
  width: 72px; height: 72px;
  background: var(--primary-bg);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  transition: all var(--transition);
}
.service-card:hover .icon-wrap { background: var(--primary); color: var(--white); }

/* ── Plan Cards ── */
.plan-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  height: 100%;
}
.plan-card.featured {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: var(--primary);
  color: var(--white);
  transform: scale(1.04);
  box-shadow: var(--shadow-pink);
}
.plan-card.featured * { color: rgba(255,255,255,.9); }
.plan-card.featured h3,
.plan-card.featured .plan-price { color: var(--white); }
.plan-card:not(.featured):hover { border-color: var(--primary); box-shadow: var(--shadow-pink); transform: translateY(-6px); }

.plan-card .plan-price { font-size: 2.5rem; font-weight: 800; line-height: 1; }
.plan-card .plan-price sup { font-size: 1.2rem; font-weight: 600; }
.plan-card .plan-price span { font-size: .95rem; font-weight: 400; opacity: .7; }

.plan-card .plan-badge {
  position: absolute; top: -1px; right: 24px;
  background: var(--primary);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.plan-card.featured .plan-badge { background: var(--white); color: var(--primary); }

.plan-feature-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.plan-feature-item:last-child { border-bottom: none; }
.plan-feature-item .check { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.plan-card.featured .plan-feature-item { border-color: rgba(255,255,255,.15); }
.plan-card.featured .plan-feature-item .check { color: rgba(255,255,255,.9); }

/* ── Blog Cards ── */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  height: 100%;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(233,30,140,.2); }
.blog-card .blog-img { height: 220px; object-fit: cover; width: 100%; transition: transform .5s ease; }
.blog-card:hover .blog-img { transform: scale(1.05); }
.blog-card .blog-img-wrap { overflow: hidden; }
.blog-card .blog-body { padding: 24px; }
.blog-card .blog-cat { font-size: .75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--primary); background: var(--primary-bg); padding: 3px 10px; border-radius: 50px; display: inline-block; margin-bottom: 12px; }
.blog-card .blog-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-card .blog-excerpt { color: var(--text-muted); font-size: .88rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card .blog-meta { font-size: .8rem; color: var(--text-light); display: flex; align-items: center; gap: 12px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }

/* ── Video Cards ── */
.video-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.video-thumb-wrap { position: relative; padding-top: 56.25%; overflow: hidden; }
.video-thumb-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.video-card:hover .video-thumb-wrap img { transform: scale(1.08); }
.video-play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.35);
  transition: background var(--transition);
}
.video-card:hover .video-play-btn { background: rgba(233,30,140,.5); }
.video-play-btn svg { width: 52px; height: 52px; color: white; filter: drop-shadow(0 2px 8px rgba(0,0,0,.4)); transition: transform var(--transition); }
.video-card:hover .video-play-btn svg { transform: scale(1.15); }

/* ── Video Modal ── */
.video-modal .modal-content { background: #000; border: none; border-radius: var(--radius-lg); overflow: hidden; }
.video-modal .modal-header { background: #111; border: none; padding: 16px 20px; }
.video-modal .btn-close { filter: invert(1); }
.video-embed-wrapper { position: relative; padding-top: 56.25%; }
.video-embed-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ── SEO Score Widget ── */
.seo-score-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800;
  margin: 0 auto 12px;
}
.seo-score-circle.good { background: #d1fae5; color: #065f46; }
.seo-score-circle.ok   { background: #fef3c7; color: #92400e; }
.seo-score-circle.poor { background: #fee2e2; color: #991b1b; }

.seo-check-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .88rem; }
.seo-check-item:last-child { border-bottom: none; }
.seo-check-item .check-icon { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .7rem; flex-shrink: 0; }
.seo-check-item .check-icon.pass { background: #d1fae5; color: #065f46; }
.seo-check-item .check-icon.fail { background: #fee2e2; color: #991b1b; }

/* ── Admin / Dashboard Sidebar ── */
.admin-wrapper { display: flex; min-height: 100vh; }

.admin-sidebar {
  width: 260px; min-width: 260px;
  background: linear-gradient(180deg, #1a0a12 0%, #1a1a2e 100%);
  position: fixed;
  left: 0; top: 0; bottom: 0;
  overflow-y: auto; overflow-x: hidden;
  transition: all var(--transition);
  z-index: 1040;
  box-shadow: 4px 0 20px rgba(0,0,0,.2);
}
.admin-sidebar::-webkit-scrollbar { width: 4px; }
.admin-sidebar::-webkit-scrollbar-thumb { background: rgba(233,30,140,.4); }

.sidebar-brand {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; gap: 12px;
}
.sidebar-brand img { height: 44px; }

.sidebar-section-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  padding: 20px 20px 8px;
}

.sidebar-nav .nav-item .nav-link {
  color: rgba(255,255,255,.7);
  padding: 11px 20px;
  font-size: .87rem;
  font-weight: 500;
  border-radius: 0;
  display: flex; align-items: center; gap: 12px;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.sidebar-nav .nav-item .nav-link svg,
.sidebar-nav .nav-item .nav-link i { font-size: 1.1rem; opacity: .8; flex-shrink: 0; }
.sidebar-nav .nav-item .nav-link:hover { color: var(--white); background: rgba(233,30,140,.12); border-left-color: var(--primary); }
.sidebar-nav .nav-item .nav-link.active { color: var(--white); background: rgba(233,30,140,.2); border-left-color: var(--primary); }
.sidebar-nav .nav-item .nav-link .badge-count { margin-left: auto; background: var(--primary); font-size: .65rem; padding: 2px 7px; border-radius: 10px; }

.admin-main {
  flex: 1;
  margin-left: 260px;
  min-width: 0;
  display: flex; flex-direction: column;
}

.admin-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 28px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow-sm);
}

.admin-content { padding: 28px; flex: 1; background: var(--bg-light); }

.page-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.page-header h1 { font-size: 1.5rem; font-weight: 700; margin: 0; }

/* ── Stat Cards ── */
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  display: flex; align-items: center; gap: 20px;
  transition: all var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.stat-card .stat-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: var(--primary-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}
.stat-card .stat-value { font-size: 1.8rem; font-weight: 800; line-height: 1; color: var(--text-dark); }
.stat-card .stat-label { font-size: .8rem; color: var(--text-muted); margin-top: 4px; }
.stat-card .stat-change { font-size: .75rem; font-weight: 600; }
.stat-card .stat-change.up { color: #059669; }
.stat-card .stat-change.down { color: #dc2626; }

/* ── Data Tables ── */
.table-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}
.table-card .table-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white);
}
.table-card .table-header h3 { font-size: 1rem; font-weight: 700; margin: 0; }
.table-custom { margin: 0; }
.table-custom thead th { background: var(--bg-light); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); border: none; padding: 12px 16px; }
.table-custom tbody td { padding: 14px 16px; vertical-align: middle; font-size: .88rem; border-color: var(--border); }
.table-custom tbody tr { transition: background var(--transition); }
.table-custom tbody tr:hover { background: var(--primary-bg); }

/* ── Forms ── */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px;
}
.form-label { font-size: .85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: .9rem;
  transition: all var(--transition);
  background: var(--white);
  color: var(--text-dark);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(233,30,140,.12);
  outline: none;
}
.input-group-text { background: var(--bg-light); border: 1.5px solid var(--border); color: var(--text-muted); }

/* ── Alert / Toast ── */
.alert-custom { border-radius: var(--radius); border: none; padding: 14px 20px; font-size: .9rem; }
.alert-success-custom { background: #d1fae5; color: #065f46; }
.alert-danger-custom { background: #fee2e2; color: #991b1b; }
.alert-warning-custom { background: #fef3c7; color: #92400e; }
.alert-info-custom { background: #dbeafe; color: #1e40af; }

/* ── Toast Notification ── */
.toast-container-custom { position: fixed; top: 20px; right: 20px; z-index: 9999; }
.toast-custom { min-width: 300px; border-radius: var(--radius); box-shadow: var(--shadow-lg); animation: slideIn .3s ease; }
@keyframes slideIn { from { opacity: 0; transform: translateX(100%); } to { opacity: 1; transform: translateX(0); } }

/* ── Badges ── */
.badge-pink { background: var(--primary-bg); color: var(--primary); border: 1px solid rgba(233,30,140,.2); font-size: .75rem; font-weight: 600; padding: 4px 10px; border-radius: 50px; }

/* ── Tags ── */
.tag-cloud a {
  display: inline-block;
  background: var(--bg-light);
  color: var(--text-muted);
  font-size: .78rem;
  padding: 4px 12px;
  border-radius: 50px;
  margin: 3px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.tag-cloud a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ── Testimonials ── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 20px; right: 28px;
  font-size: 5rem; font-family: Georgia, serif;
  color: rgba(233,30,140,.1); line-height: 1;
}
.testimonial-card:hover { box-shadow: var(--shadow-pink); transform: translateY(-4px); }
.testimonial-stars { color: #f59e0b; font-size: .9rem; margin-bottom: 16px; }
.testimonial-text { color: var(--text-muted); font-size: .95rem; line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(233,30,140,.2); }
.testimonial-name { font-weight: 700; font-size: .9rem; }
.testimonial-role { font-size: .78rem; color: var(--text-muted); }

/* ── FAQ ── */
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item.active { border-color: rgba(233,30,140,.3); box-shadow: 0 4px 16px rgba(233,30,140,.1); }
.faq-question {
  padding: 18px 24px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-weight: 600; font-size: .95rem;
  transition: color var(--transition);
}
.faq-item.active .faq-question { color: var(--primary); }
.faq-question .faq-icon { transition: transform var(--transition); flex-shrink: 0; color: var(--primary); }
.faq-item.active .faq-question .faq-icon { transform: rotate(180deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: all .4s ease; color: var(--text-muted); line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 500px; padding: 0 24px 18px; }

/* ── Footer ── */
.footer-main {
  background: linear-gradient(135deg, #1a0a12 0%, #1a1a2e 100%);
  color: rgba(255,255,255,.75);
  padding: 70px 0 0;
}
.footer-logo img { height: 52px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-about { color: rgba(255,255,255,.65); font-size: .88rem; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--primary); color: white; transform: translateY(-3px); }

.footer-heading { color: var(--white); font-size: .9rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid rgba(233,30,140,.4); display: inline-block; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .88rem; transition: all var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-links a::before { content: '→'; color: var(--primary); font-size: .75rem; opacity: 0; transition: all var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 8px; }
.footer-links a:hover::before { opacity: 1; }

.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; font-size: .88rem; }
.footer-contact-icon { color: var(--primary); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  background: rgba(0,0,0,.3);
  padding: 18px 0;
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--primary); }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 9998;
  transition: all var(--transition);
  animation: pulse-green 2s infinite;
}
.whatsapp-float:hover { color: white; transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
@keyframes pulse-green {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,.6), 0 0 0 8px rgba(37,211,102,.1); }
}

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 94px; right: 28px;
  width: 42px; height: 42px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  z-index: 9997;
  opacity: 0; pointer-events: none;
  transition: all var(--transition);
  box-shadow: var(--shadow-pink);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { color: white; background: var(--primary-dark); transform: translateY(-3px); }

/* ── Breadcrumb ── */
.breadcrumb-custom { background: var(--bg-light); border-bottom: 1px solid var(--border); padding: 14px 0; }
.breadcrumb-custom .breadcrumb { margin: 0; background: none; padding: 0; }
.breadcrumb-custom .breadcrumb-item a { color: var(--primary); font-size: .88rem; }
.breadcrumb-custom .breadcrumb-item.active { color: var(--text-muted); font-size: .88rem; }
.breadcrumb-custom .breadcrumb-item+.breadcrumb-item::before { color: var(--text-light); }

/* ── Query/Order Status Timeline ── */
.status-timeline { position: relative; padding-left: 32px; }
.status-timeline::before { content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; padding-bottom: 24px; }
.timeline-dot {
  position: absolute; left: -27px; top: 4px;
  width: 16px; height: 16px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-item.pending .timeline-dot { background: #f59e0b; box-shadow: 0 0 0 2px #f59e0b; }
.timeline-item.completed .timeline-dot { background: #059669; box-shadow: 0 0 0 2px #059669; }

/* ── Progress Bar ── */
.progress-custom { height: 8px; border-radius: 4px; background: var(--border); overflow: hidden; }
.progress-custom .progress-bar { background: linear-gradient(90deg, var(--primary), var(--primary-light)); border-radius: 4px; transition: width .8s ease; }

/* ── Checkout ── */
.checkout-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.order-summary-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.order-summary-total { display: flex; justify-content: space-between; font-size: 1.1rem; font-weight: 700; color: var(--text-dark); padding-top: 16px; margin-top: 8px; }

/* ── Blog Single ── */
.blog-content { font-size: 1.05rem; line-height: 1.85; color: var(--text-dark); }
.blog-content h2,h3,h4 { color: var(--text-dark); font-weight: 700; margin: 32px 0 16px; }
.blog-content p { margin-bottom: 20px; }
.blog-content img { border-radius: var(--radius); box-shadow: var(--shadow); margin: 24px auto; display: block; }
.blog-content ul,ol { padding-left: 24px; margin-bottom: 20px; }
.blog-content li { margin-bottom: 8px; }
.blog-content blockquote { border-left: 4px solid var(--primary); background: var(--primary-bg); padding: 20px 24px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 24px 0; font-style: italic; color: var(--text-dark); }
.blog-content pre { background: #1e1e2e; color: #cdd6f4; border-radius: var(--radius); padding: 20px; overflow-x: auto; font-size: .88rem; margin: 24px 0; }
.blog-content code { background: var(--primary-bg); color: var(--primary); padding: 2px 7px; border-radius: 4px; font-size: .88rem; }
.blog-content pre code { background: none; color: inherit; padding: 0; }

/* ── Animations ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in { opacity: 0; transition: opacity .6s ease; }
.fade-in.visible { opacity: 1; }

.slide-right { opacity: 0; transform: translateX(-24px); transition: opacity .6s ease, transform .6s ease; }
.slide-right.visible { opacity: 1; transform: translateX(0); }

/* ── Page Loader ── */
#page-loader {
  position: fixed; inset: 0;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  z-index: 99999;
  transition: opacity .4s ease;
}
.loader-ring { width: 48px; height: 48px; border: 4px solid var(--primary-bg); border-top-color: var(--primary); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute; bottom: -40%; left: -5%;
  width: 300px; height: 300px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.cta-section * { position: relative; z-index: 1; }

/* ── Steps / Process ── */
.step-item { text-align: center; position: relative; padding: 0 16px; }
.step-number {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; font-size: 1.3rem; font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-pink);
}
.step-connector { position: absolute; top: 28px; left: calc(50% + 32px); right: calc(-50% + 32px); height: 2px; background: var(--border); z-index: 0; }

/* ── Mobile Responsive ── */
@media (max-width: 991.98px) {
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .hero-section { min-height: auto; padding: 70px 0; }
  .plan-card.featured { transform: none; }
}

@media (max-width: 767.98px) {
  .section-padding { padding: 50px 0; }
  .hero-section h1 { font-size: 2rem; }
  .hero-stats { gap: 20px; }
  .admin-content { padding: 16px; }
  .stat-card { flex-direction: column; text-align: center; }
  .whatsapp-float { bottom: 20px; right: 20px; }
}

@media (max-width: 575.98px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary-custom, .hero-ctas .btn-outline-primary-custom { width: 100%; justify-content: center; }
  .admin-topbar { padding: 12px 16px; }
  .page-header { flex-direction: column; align-items: flex-start; }
}

/* ── Print Styles ── */
@media print {
  .admin-sidebar, .admin-topbar, .whatsapp-float, .back-to-top { display: none !important; }
  .admin-main { margin-left: 0 !important; }
  body { font-size: 12px; }
}
