@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@700;800;900&display=swap');

/* ====================================================================
   1. CORE CUSTOM PROPERTIES & DESIGN TOKENS
   ==================================================================== */
:root {
  --primary: #7c3aed;
  --primary-hover: #6d28d9;
  --secondary: #ec4899;
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --bg-light: #f1f5f9;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-inverse: #ffffff;
  --border-color: #e2e8f0;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(226, 232, 240, 0.8);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 25px -5px rgba(124, 58, 237, 0.1), 0 8px 10px -6px rgba(124, 58, 237, 0.05);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --radius-full: 9999px;
  --max-width: 1200px;
}

html.dark {
  --bg-body: #0b0f19;
  --bg-card: #151b2c;
  --bg-light: #1e2640;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-inverse: #0b0f19;
  --border-color: #222d46;
  --glass-bg: rgba(21, 27, 44, 0.85);
  --glass-border: rgba(34, 45, 70, 0.8);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -2px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -4px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 20px 25px -5px rgba(124, 58, 237, 0.2), 0 8px 10px -6px rgba(124, 58, 237, 0.1);
  color-scheme: dark;
}

/* ====================================================================
   2. ELEMENT RESETS & BASE LAYOUTS
   ==================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  transition: background-color 0.3s, color 0.3s;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

/* ====================================================================
   3. RESPONSIVE CONTAINERS & GRIDS SYSTEM
   ==================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.article-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
}

.article-single-layout {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (max-width: 1024px) {
  .article-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ====================================================================
   4. NAVIGATION & HEADER STYLES
   ==================================================================== */
.glass-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile drawer controls */
#mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

#mobile-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background: var(--bg-card);
  z-index: 999;
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s ease;
  visibility: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

#mobile-menu.open {
  transform: translateX(280px);
  visibility: visible;
}

html.no-scroll, body.no-scroll {
  overflow: hidden !important;
  height: 100% !important;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ====================================================================
   5. COMPONENT ELEMENT STYLES (BUTTONS, CARDS, INPUTS)
   ==================================================================== */
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 14px 0 rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(79, 70, 229, 0.4);
}

.btn-secondary {
  background-color: var(--bg-light);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--border-color);
  transform: translateY(-2px);
}

.circle-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-main);
}

.circle-btn:hover {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* Cards */
.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.card-hero-img {
  width: 100%;
  height: 12rem;
  background-image: linear-gradient(135deg, var(--primary), var(--secondary));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-hero-img span {
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.card-body {
  padding: 1.75rem;
}

.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Forms & Inputs */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  background-color: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

/* ====================================================================
   6. PREMIUM SECTIONS (HERO, GRADIENT MOTIFS)
   ==================================================================== */
.hero-banner {
  background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
  color: #ffffff;
  padding: 6rem 0;
  border-radius: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 4rem;
}

.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(79, 70, 229, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(90deg, #818cf8, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title-box {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* ====================================================================
   7. MODAL PANELS (SEARCH, POPUPS)
   ==================================================================== */
#search-modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 15, 25, 0.75);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding-top: 6rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

#search-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.search-box {
  width: 100%;
  max-width: 650px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  height: fit-content;
}

.search-header {
  display: flex;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.search-input {
  width: 100%;
  background: transparent;
  border: none;
  font-size: 1.1rem;
  color: var(--text-main);
  outline: none;
  padding-left: 2.25rem;
}

.search-icon-fixed {
  position: absolute;
  left: 1.5rem;
  color: var(--text-muted);
}

.search-close-btn {
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  color: var(--text-muted);
  border: none;
  background: transparent;
}

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

.search-results {
  max-height: 400px;
  overflow-y: auto;
}

.search-result-item {
  display: block;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.search-result-item:hover {
  background-color: var(--bg-light);
}

.search-result-item:last-child {
  border-bottom: none;
}

/* ====================================================================
   8. TYPOGRAPHY & ARTICLE PROSE STYLING
   ==================================================================== */
.prose {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-main);
}

.prose h1, .prose h2, .prose h3, .prose h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.prose h2 {
  font-size: 1.75rem;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.prose h3 {
  font-size: 1.4rem;
}

.prose p {
  margin-bottom: 1.5rem;
}

.prose blockquote {
  border-left: 4px solid var(--primary);
  background-color: var(--bg-light);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-main);
}

.prose pre {
  background-color: var(--bg-light);
  padding: 1.25rem;
  border-radius: var(--radius);
  overflow-x: auto;
  margin: 1.5rem 0;
  border: 1px solid var(--border-color);
}

.prose code {
  font-family: monospace;
  background-color: var(--bg-light);
  padding: 0.2rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 0.9em;
}

.prose ul, .prose ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose a:not(.btn) {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin: 2rem auto;
  display: block;
  box-shadow: var(--shadow);
}


.prose a:not(.btn):hover {
  color: var(--primary-hover);
  text-decoration: none;
}

/* ====================================================================
   9. MISCELLANEOUS UTILITIES (SCROLLBAR, WIDGETS)
   ==================================================================== */
/* Reading Progress */
.reading-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 1000;
  background: transparent;
}

.reading-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  width: 0;
}

/* Sidebar Widgets */
.sidebar-widget {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.sidebar-widget-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-latest-list {
  list-style: none;
}

/* Author Box */
.author-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.author-avatar {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow);
}

.author-details h4 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 640px) {
  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Floating Widgets (WhatsApp & Back to Top) */
#floating-whatsapp, #back-to-top {
  position: fixed;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}

#floating-whatsapp {
  bottom: 5.5rem;
  background-color: #25d366;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}
#floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.5);
  background-color: #20ba5a;
}

#back-to-top {
  bottom: 2rem;
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.35);
  opacity: 0;
  pointer-events: none;
}
#back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}
#back-to-top:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.5);
  background-color: var(--primary-hover);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ====================================================================
   10. HIDDEN UTILITY & GLOBAL HELPERS
   ==================================================================== */
.hidden { display: none !important; }
#mobile-menu-btn { display: none; }

.mobile-menu-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu-title { font-size: 1.25rem; font-weight: 800; }
.mobile-close-btn {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-main);
}
.search-hint { padding: 1.5rem; text-align: center; color: var(--text-muted); }

/* ====================================================================
   11. PAGE LAYOUT WRAPPERS
   ==================================================================== */
.page-main      { padding: 2rem 0 4rem; }
.home-main       { padding-top: 0; }
.page-main-lg   { padding: 1.5rem 0 5rem; }
.page-main-sm   { padding: 1.5rem 0 3rem; }

/* ====================================================================
   12. SITE FOOTER
   ==================================================================== */
.site-footer {
  background-color: #0b0f19;
  color: #94a3b8;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid #1e2640;
}
.footer-grid {
  border-bottom: 1px solid #1e2640;
  padding-bottom: 2rem;
  margin-bottom: 1.5rem;
}
.footer-logo {
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  display: block;
}
.footer-logo span { color: var(--primary); }
.footer-desc { font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.footer-social-btn {
  width: 2.25rem; height: 2.25rem;
  border-radius: var(--radius-full);
  background-color: #1e2640;
  border: 1px solid #222d46;
  color: #f8fafc;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.8rem; font-weight: 700;
  text-decoration: none;
}
.footer-social-btn:hover { background-color: var(--primary); border-color: var(--primary); color: #fff; }
.footer-col-title { color: #ffffff; font-size: 1.1rem; font-weight: 700; margin-bottom: 1.25rem; }
.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.9rem; }
.footer-nav-list a { color: #94a3b8; transition: var(--transition); }
.footer-nav-list a:hover { color: #ffffff; }
.footer-newsletter-text { font-size: 0.85rem; margin-bottom: 1rem; }
.footer-newsletter-form { display: flex; border-radius: var(--radius); overflow: hidden; border: 1px solid #222d46; }
.footer-newsletter-input {
  flex: 1; background-color: #151b2c; border: none;
  padding: 0.75rem 1rem; color: #ffffff; outline: none; font-size: 0.9rem;
}
.footer-newsletter-btn {
  background-color: var(--primary); color: #ffffff; border: none;
  padding: 0 1.25rem; font-weight: 700; cursor: pointer; transition: var(--transition);
}
.footer-newsletter-btn:hover { background-color: var(--primary-hover); }
.footer-copyright { text-align: center; font-size: 0.85rem; color: #64748b; }

/* ====================================================================
   13. HERO SECTION
   ==================================================================== */
.hero-title {
  font-size: 3rem; color: #ffffff;
  max-width: 800px; margin: 0 auto 1.5rem; line-height: 1.2;
}
.hero-subtitle {
  font-size: 1.15rem; color: rgba(255,255,255,0.8);
  max-width: 650px; margin: 0 auto 2.5rem; line-height: 1.6;
}
.hero-cta-row { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-hero     { font-size: 1.05rem; padding: 0.9rem 2rem; }
.btn-ghost {
  font-size: 1.05rem; padding: 0.9rem 2rem;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #ffffff;
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: var(--radius); font-weight: 700; cursor: pointer; transition: var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }

/* ====================================================================
   14. SERVICES SECTION
   ==================================================================== */
.services-section {
  padding: 3.5rem 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.service-card    { padding: 2.5rem; display: flex; flex-direction: column; align-items: flex-start; text-align: left; background: var(--bg-card); border-radius: var(--radius); border: 1px solid var(--border-color); }
.service-icon    { width: 3.5rem; height: 3.5rem; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.service-icon-indigo  { background-color: rgba(79,70,229,0.1); color: var(--primary); }
.service-icon-pink    { background-color: rgba(236,72,153,0.1); color: var(--secondary); }
.service-icon-emerald { background-color: rgba(16,185,129,0.1); color: #10b981; }
.service-title   { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.75rem; color: var(--text-main); }
.service-desc    { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

.tutorials-section { padding: 3.5rem 0; transition: background-color 0.3s; }
.latest-tutorials-section { background-color: var(--bg-body); }
.popular-tutorials-section { background-color: var(--bg-light); }
.section-header { display: flex; align-items: center; justify-content: space-between; border-bottom: 2px solid var(--border-color); padding-bottom: 1rem; margin-bottom: 3rem; }
.section-header-title { font-size: 1.75rem; font-weight: 800; }
.section-header-desc  { color: var(--text-muted); font-size: 0.95rem; margin-top: 0.25rem; }

.about-section  { padding: 3.5rem 0; background-color: var(--bg-body); }
.about-inner    { display: flex; gap: 3rem; align-items: center; flex-wrap: wrap; justify-content: center; max-width: 900px; margin: 0 auto; }
.about-avatar   { width: 14rem; height: 14rem; border-radius: var(--radius-full); box-shadow: var(--shadow-lg); border: 4px solid rgba(79,70,229,0.2); object-fit: cover; }
.about-image    { flex-shrink: 0; display: flex; justify-content: center; align-items: center; }
.about-image-main { width: 100%; max-width: 320px; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); border: 1px solid var(--border-color); box-shadow: var(--shadow-lg); transition: var(--transition); }
.about-image-main:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.about-content  { flex: 1; min-width: 300px; }
.about-title    { font-size: 2.25rem; font-weight: 800; margin-bottom: 1.25rem; color: var(--text-main); }
.about-text     { color: var(--text-muted); margin-bottom: 1rem; font-size: 1.05rem; line-height: 1.6; }

/* ====================================================================
   15. CARD COLOR VARIANTS
   ==================================================================== */
.card-hero-orange  { background: linear-gradient(135deg, #f97316, #ef4444); }
.card-hero-emerald { background: linear-gradient(135deg, #10b981, #14b8a6); }
.card-hero-cyan    { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.card-hero-amber   { background: linear-gradient(135deg, #eab308, #f97316); }
.card-hero-gold    { background: linear-gradient(135deg, #f59e0b, #ec4899); }
.card-tag-orange   { color: #f97316; }
.card-tag-emerald  { color: #10b981; }
.card-tag-cyan     { color: #06b6d4; }
.card-tag-amber    { color: #eab308; }

/* ====================================================================
   16. SHOP PAGE COMPONENTS
   ==================================================================== */
.product-card   { position: relative; }
.product-badge  {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 0.75rem; font-weight: 800; padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full); z-index: 10; box-shadow: var(--shadow); color: #ffffff;
}
.badge-red    { background-color: #ef4444; }
.badge-green  { background-color: #10b981; }
.badge-indigo { background-color: #6366f1; }
.product-body    { display: flex; flex-direction: column; min-height: 16rem; justify-content: space-between; padding: 1.75rem; }
.product-footer  { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border-color); padding-top: 1.25rem; margin-top: 1.25rem; }
.price-old       { display: block; font-size: 0.8rem; text-decoration: line-through; color: var(--text-muted); margin-bottom: 0.2rem; }
.price-old-hidden{ display: block; font-size: 0.8rem; visibility: hidden; margin-bottom: 0.2rem; }
.price-current   { font-size: 1.5rem; font-weight: 900; color: var(--primary); }

/* ====================================================================
   17. SINGLE POST ARTICLE COMPONENTS
   ==================================================================== */
.breadcrumb     { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); margin-bottom: 2rem; display: flex; gap: 0.5rem; align-items: center; }
.breadcrumb a   { color: var(--primary); }
.article-card   { box-shadow: var(--shadow-lg); }
.article-hero   {
  background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
  color: #ffffff; padding: 4.5rem 3rem; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}
.article-hero-glow  { position: absolute; inset: 0; background-image: radial-gradient(circle at 10% 20%, rgba(79,70,229,0.2) 0%, transparent 50%); pointer-events: none; }
.article-hero-inner { position: relative; z-index: 10; max-width: 800px; }
.article-hero-tag   {
  display: inline-block; background-color: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  padding: 0.3rem 0.85rem; border-radius: var(--radius-full);
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 1.25rem; color: #ffffff;
}
.article-hero-title { font-size: 2.5rem; font-weight: 800; line-height: 1.25; margin-bottom: 1.5rem; color: #ffffff; }
.article-hero-meta  { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.article-meta-avatar{ width: 2.25rem; height: 2.25rem; border-radius: var(--radius-full); border: 2px solid rgba(255,255,255,0.3); }
.article-meta-author{ font-weight: 600; }
.article-content-grid { padding: 3rem; }

.article-summary {
  background-color: rgba(79,70,229,0.05);
  border-left: 4px solid var(--primary);
  padding: 1.5rem; border-radius: 0 var(--radius) var(--radius) 0; margin-bottom: 2rem;
  font-size: 1.05rem; font-weight: 500;
}
.toc-box   { background-color: var(--bg-light); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 2rem; }
.toc-title { margin-top: 0; margin-bottom: 1rem; font-size: 1.15rem; font-weight: 800; }
.toc-list  { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.95rem; }
.toc-list a{ color: var(--primary); font-weight: 600; }
.prose-hr  { border: none; border-top: 1px solid var(--border-color); margin: 3rem 0; }

.author-box-article {
  display: flex; gap: 2rem; align-items: flex-start;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-left: none; border-right: none; border-bottom: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 2.5rem;
}
@media (max-width: 640px) {
  .author-box-article {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.author-bio  { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1rem; }
.author-link { color: var(--primary); font-weight: 700; font-size: 0.9rem; }

.promo-card       { background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); color: #ffffff; padding: 2rem; text-align: center; border: none; border-radius: var(--radius-lg); }
.promo-card-title { font-size: 1.3rem; margin-bottom: 0.5rem; color: #ffffff; }
.promo-card-desc  { font-size: 0.85rem; color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; line-height: 1.5; }
.promo-card-btn   { display: block; background-color: #ffffff; color: var(--primary); width: 100%; border-radius: var(--radius-full); font-weight: 800; padding: 0.6rem 0; text-align: center; transition: var(--transition); }
.promo-card-btn:hover { opacity: 0.9; transform: translateY(-2px); }

.related-posts       { margin-top: 4rem; }
.related-posts-title { font-size: 1.75rem; font-weight: 800; margin-bottom: 2rem; }
.related-card-img    { display: block; width: 100%; height: 9rem; }
.related-card-body   { padding: 1.25rem; }
.related-card-title  { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.related-card-desc   { font-size: 0.85rem; color: var(--text-muted); }

/* ====================================================================
   18. CONTACT PAGE COMPONENTS
   ==================================================================== */
.contact-card { padding: 3rem; display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info-panel { display: flex; flex-direction: column; justify-content: space-between; min-height: 24rem; }
.contact-info-title { font-size: 1.4rem; margin-bottom: 1rem; }
.contact-info-desc  { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 2rem; }
.contact-info-list  { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-row   { display: flex; align-items: center; gap: 1rem; }
.contact-info-icon  { width: 3rem; height: 3rem; background-color: rgba(79,70,229,0.1); border-radius: var(--radius); font-size: 1.25rem; display: flex; align-items: center; justify-content: center; }
.contact-info-label { display: block; font-size: 0.7rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.contact-info-value { font-weight: 700; font-size: 0.95rem; }
.contact-info-link  { font-weight: 700; font-size: 0.95rem; color: var(--primary); }
.contact-social-label { display: block; font-size: 0.75rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.contact-socials { display: flex; gap: 0.75rem; }
.contact-form    { display: flex; flex-direction: column; gap: 1.25rem; }
.btn-submit      { width: 100%; padding: 0.9rem 0; font-size: 1rem; }
.success-msg     { text-align: center; padding: 2rem; background-color: rgba(16,185,129,0.05); border-left: 4px solid #10b981; border-radius: 0 var(--radius) var(--radius) 0; }
.success-icon    { font-size: 2.5rem; display: block; margin-bottom: 0.5rem; }
.success-title   { font-size: 1.25rem; font-weight: 800; color: #10b981; margin-bottom: 0.5rem; }
.success-desc    { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; }

/* ====================================================================
   19. RESPONSIVE OVERRIDES
   ==================================================================== */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }
  .hero-title    { font-size: 2rem; }
  .about-inner   { flex-direction: column; text-align: center; }
  .nav-menu      { display: none !important; }
  #mobile-menu-btn { display: flex !important; }
  .article-hero  { padding: 3rem 1.5rem; }
  .article-hero-title { font-size: 1.75rem; }
  .article-content-grid { padding: 1.5rem; }
  .contact-card  { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
  
  /* Responsive Header & Menu Enhancements */
  .header-container {
    padding: 0.75rem 1rem;
  }
  .logo {
    font-size: 1.3rem;
  }
  .header-actions {
    gap: 0.5rem;
  }
  .circle-btn {
    width: 2.2rem;
    height: 2.2rem;
  }
  .services-hero {
    padding: 2rem 0 1rem;
  }
}

/* ====================================================================
   20. CMS TOOL (add-post.html) SPECIFIC COMPONENTS
   ==================================================================== */
.cms-body        { padding: 3rem 0; }
.cms-container   { max-width: 1100px; }
.cms-header      { border-bottom: 1px solid var(--border-color); padding-bottom: 1.5rem; margin-bottom: 2.5rem; }
.cms-title       { font-size: 2.25rem; font-weight: 800; }
.cms-subtitle    { color: var(--text-muted); font-size: 0.95rem; margin-top: 0.25rem; }

.cms-form-card   { padding: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.cms-editor      { background-color: #ffffff; color: #000000; border-radius: 0 0 var(--radius) var(--radius); overflow: hidden; min-height: 380px; }
.ql-editor       { min-height: 380px; font-size: 1.05rem; line-height: 1.75; }

.cms-sidebar-card  { padding: 1.5rem; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.cms-sidebar-title { font-size: 1.15rem; font-weight: 700; border-bottom: 1px solid var(--border-color); padding-bottom: 0.75rem; margin-bottom: 0.25rem; }
.cms-label-row     { margin-bottom: 0.5rem; }
.cms-char-counter  { font-size: 0.75rem; color: var(--text-muted); font-weight: 700; }
.cms-warning       { font-size: 0.75rem; color: #f59e0b; font-weight: 700; margin-top: 0.35rem; display: block; }
.cms-tag-row       { gap: 0.5rem; margin-bottom: 0.75rem; }
.cms-tag-input     { padding: 0.6rem 1rem; font-size: 0.85rem; }
.cms-tags-container{ display: flex; flex-wrap: wrap; gap: 0.5rem; }

.tag-chip {
    background-color: rgba(79,70,229,0.1); color: var(--primary);
    padding: 0.35rem 0.85rem; border-radius: var(--radius-full);
    font-size: 0.75rem; font-weight: 700;
    display: inline-flex; align-items: center; gap: 0.5rem;
}
html.dark .tag-chip { background-color: rgba(79,70,229,0.2); color: #818cf8; }

.cms-stat-box   { background-color: var(--bg-light); padding: 1rem; border-radius: var(--radius); text-align: center; }
.cms-stat-label { display: block; font-size: 0.7rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.cms-stat-value { font-size: 1.5rem; font-weight: 800; color: var(--primary); }

.cms-actions-card    { padding: 1.5rem; text-align: center; }
.cms-generate-btn    { width: 100%; padding: 1rem 0; font-size: 1.1rem; margin-bottom: 0.75rem; }
.cms-actions-desc    { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }

/* Output Modal */
.cms-modal       { position: fixed; inset: 0; background: rgba(11,15,25,0.75); backdrop-filter: blur(12px); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 2rem; }
.cms-modal-card  { width: 100%; max-width: 800px; display: flex; flex-direction: column; max-height: 85vh; box-shadow: var(--shadow-lg); }
.cms-modal-header{ padding: 1.25rem 2rem; background-color: var(--bg-light); border-bottom: 1px solid var(--border-color); }
.cms-modal-title { font-size: 1.25rem; font-weight: 800; }
.cms-modal-body  { padding: 2rem; overflow-y: auto; display: flex; flex-direction: column; gap: 1.5rem; }

.cms-output-label         { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.cms-output-label-primary { color: var(--primary); }
.cms-output-label-green   { color: #10b981; margin: 0; }
.cms-output-label-amber   { color: #f59e0b; margin: 0; }
.cms-output-desc          { font-size: 0.85rem; color: var(--text-muted); }
.cms-output-row           { margin-bottom: 0.5rem; }
.cms-output-textarea      { font-family: monospace; font-size: 0.75rem; }
.cms-copy-btn             { font-size: 0.75rem; font-weight: 700; color: var(--primary); background: transparent; border: none; cursor: pointer; text-decoration: underline; }
.cms-filename             { font-weight: 700; color: var(--text-main); background-color: var(--bg-light); padding: 0.2rem 0.5rem; border-radius: 0.25rem; }

/* ====================================================================
   21. HOMEPAGE REBUILD & PREMIUM SECTIONS
   ==================================================================== */
/* Top Google-style Search Section */
.top-search-section {
  padding: 1.5rem 0 1rem;
  text-align: center;
  position: relative;
  background: var(--bg-body);
}
.top-search-logo {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 2rem;
  display: inline-block;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inline-search-results {
  max-width: 650px;
  margin: 1rem auto 0;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  text-align: left;
  overflow: hidden;
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 100;
}
.inline-search-results.active {
  display: block;
}
.inline-result-item {
  display: block;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
  text-decoration: none;
}
.inline-result-item:last-child {
  border-bottom: none;
}
.inline-result-item:hover {
  background: var(--bg-light);
}
.inline-result-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  display: block;
}
.inline-result-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
}
.top-search-form-wrapper {
  max-width: 650px;
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
}
.premium-search-form .search-form-wrapper {
  display: flex;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.5rem 0.35rem 1.5rem;
  align-items: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.premium-search-form .search-form-wrapper:focus-within {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}
.premium-search-form .search-icon {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
}
.premium-search-form .search-field {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: var(--text-main);
  outline: none;
  width: 100%;
}
.premium-search-form .search-submit {
  border-radius: var(--radius-full);
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: none;
  transition: var(--transition);
}

/* Double-column Hero Section */
.home-hero {
  padding: 3.5rem 0;
  background: var(--bg-light);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-label {
  display: inline-block;
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
html.dark .hero-label {
  background: rgba(79, 70, 229, 0.2);
  color: #818cf8;
}
.hero-main-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--text-main);
}
.hero-sub {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}
.hero-image-placeholder {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
}
.hero-image-placeholder::before {
  content: "💻 AsheeshKG Visual Placeholder";
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  padding: 1.5rem;
}
.hero-image-placeholder:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.hero-image-main {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.hero-image-main:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* Stats / Trusted By Section */
.trusted-by-section {
  padding: 2.5rem 0;
  text-align: center;
  background: var(--bg-body);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.stats-grid {
  display: flex;
  justify-content: center;
  gap: 4.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.stat-item {
  text-align: center;
}
.stat-item h3 {
  font-size: 2.75rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  margin: 0;
}

/* Why Choose Us Section */
.why-choose-us-section {
  background: var(--bg-body);
  padding: 3.5rem 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.why-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-main);
}
.why-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Tools Section New */
.tools-section-new {
  padding: 3.5rem 0;
  background: var(--bg-light);
}
.tools-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.tool-card {
  border: 1px solid var(--border-color);
  background: var(--bg-body);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.tool-card .tool-emoji {
  font-size: 3rem;
  margin-bottom: 1.25rem;
}
.tool-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}
.tool-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex: 1;
}

/* Premium Products Section */
.products-section {
  padding: 3.5rem 0;
  background: var(--bg-light);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.product-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(236, 72, 153, 0.08) 100%);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}
.product-thumb::before {
  content: "🎁 Premium Asset";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.9rem;
}
.product-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

/* Recommended Tools Section */
.tools-section {
  padding: 3.5rem 0;
  background: var(--bg-body);
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.tool-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  text-decoration: none;
}
.tool-item a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}
.tool-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}
.tool-item h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}
.tool-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* Newsletter Subscription Box */
.email-subscription-section {
  padding: 3.5rem 0;
  background: var(--bg-light);
}
.newsletter-card {
  max-width: 650px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  text-align: center;
}
.newsletter-card h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}
.newsletter-card p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.newsletter-input {
  flex: 1;
  min-width: 250px;
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  background: var(--bg-body);
  color: var(--text-main);
  outline: none;
  font-family: inherit;
  transition: var(--transition);
}
.newsletter-input:focus {
  border-color: var(--primary);
  background-color: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

/* FAQ Accordion Section */
.faq-section {
  padding: 1.5rem 0 0;
  background: var(--bg-body);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item-modern {
  background: var(--bg-body);
  margin-bottom: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item-modern:hover {
  border-color: var(--primary);
}
.faq-question-modern {
  padding: 1.25rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  margin: 0;
  outline: none;
  color: var(--text-main);
  transition: var(--transition);
}
.faq-question-modern::-webkit-details-marker {
  display: none;
}
.faq-question-modern:after {
  content: '+';
  font-size: 1.35rem;
  transition: transform 0.3s;
  color: var(--text-muted);
}
.faq-item-modern[open] .faq-question-modern {
  border-bottom: 1px solid var(--border-color);
}
.faq-item-modern[open] .faq-question-modern:after {
  transform: rotate(45deg);
  color: var(--primary);
}
.faq-answer-modern {
  padding: 1.25rem 2rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}
.faq-answer-modern p {
  margin: 0;
}

/* Final Conversion CTA Section */
.final-cta-section {
  padding: 6rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta-section h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  color: #ffffff;
}
.final-cta-section p {
  font-size: 1.15rem;
  margin-bottom: 2.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.btn-cta-final {
  background: #ffffff;
  color: var(--primary);
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  display: inline-block;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  text-decoration: none;
}
.btn-cta-final:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  background: var(--bg-light);
}



/* Responsive addition inside max-width 768px */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero-content { align-items: center; }
  .hero-buttons { justify-content: center; }
  .hero-image-placeholder { aspect-ratio: 16 / 9; }
  .stats-grid { gap: 2rem; }
  .newsletter-card { padding: 2rem 1.5rem; }
  .newsletter-form { flex-direction: column; }
}

/* Services Page Custom Styles */
.services-hero {
  padding: 3rem 0 1.5rem;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.08) 0%, transparent 60%);
}
.services-hero .hero-title {
  color: var(--text-main) !important;
}
.services-hero .hero-subtitle {
  color: var(--text-muted) !important;
  max-width: 750px;
}
.services-hero .hero-label {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(124, 58, 237, 0.08) !important;
  color: var(--primary) !important;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

html.dark .services-hero .hero-title {
  color: #ffffff !important;
}
html.dark .services-hero .hero-subtitle {
  color: rgba(255, 255, 255, 0.85) !important;
}
html.dark .services-hero .hero-label {
  background: rgba(124, 58, 237, 0.2) !important;
  color: #c084fc !important;
}
.services-showcase {
  padding: 4rem 0;
  background: var(--bg-light);
}
.calculator-card {
  max-width: 700px;
  margin: 3rem auto 0;
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.calc-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
}
.calc-option:hover {
  border-color: var(--primary);
  background-color: rgba(124, 58, 237, 0.02);
}
.calc-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  cursor: pointer;
}
.calc-result-box {
  background: rgba(124, 58, 237, 0.05);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  margin-top: 1.5rem;
}
.calc-price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  margin-top: 0.5rem;
}
.step-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(124, 58, 237, 0.18);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* About Page Specific Styles */
.about-profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: var(--transition);
}
.about-profile-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}
.about-profile-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid var(--primary);
  margin: 0 auto 1.5rem;
  display: block;
}
.profile-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}
.profile-tag {
  background: rgba(124, 58, 237, 0.08);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
}
.timeline-section {
  padding: 4.5rem 0;
  background: var(--bg-light);
}
.timeline-container {
  max-width: 800px;
  margin: 3rem auto 0;
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--border-color);
}
.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-dot {
  position: absolute;
  left: -2.6rem;
  top: 0.25rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid var(--bg-body);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}
.timeline-year {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  margin-bottom: 0.5rem;
}
.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.timeline-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}
.timeline-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.skills-progress-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
}
.skill-item {
  margin-bottom: 1.5rem;
}
.skill-item:last-child {
  margin-bottom: 0;
}
.skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
}
.skill-progress-bg {
  height: 10px;
  background: var(--border-color);
  border-radius: 50px;
  overflow: hidden;
}
.skill-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-hover));
  border-radius: 50px;
}

/* Custom Dropdown Navigation Styles */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  padding-bottom: 0.25rem;
}
.dropdown-toggle svg {
  transition: transform 0.2s ease;
}
.dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
  color: var(--primary);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: var(--radius);
  padding: 0.75rem 0;
  min-width: 200px;
  box-shadow: 0 10px 25px -5px rgba(124, 58, 237, 0.1), 0 8px 10px -6px rgba(124, 58, 237, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}
.dropdown-item {
  display: block;
  padding: 0.65rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  transition: var(--transition);
}
.dropdown-item:hover {
  background: rgba(124, 58, 237, 0.06);
  color: var(--primary);
  padding-left: 1.5rem;
}

/* Dark Mode Dropdown Overrides */
html.dark .dropdown-menu {
  background: rgba(17, 24, 39, 0.85);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
}

/* Collapsible Mobile Menu Accordion Drawer styles */
.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  cursor: pointer;
  transition: var(--transition);
}
.mobile-dropdown-toggle svg {
  transition: transform 0.3s ease;
}
.mobile-dropdown-toggle.open svg {
  transform: rotate(180deg);
  color: var(--primary);
}
.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(124, 58, 237, 0.02);
  border-radius: var(--radius);
  padding-left: 1rem;
}
.mobile-dropdown-menu.open {
  max-height: 350px;
  margin-top: 0.5rem;
  border-left: 2px solid var(--primary);
  padding-bottom: 0.5rem;
}
.mobile-dropdown-item {
  display: block;
  padding: 0.65rem 0.5rem;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
}
.mobile-dropdown-item:hover {
  color: var(--primary);
}

/* Premium Filter Pills Styling */
.filter-pill {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background-color: var(--bg-card);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  box-shadow: var(--shadow);
}
.filter-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.12);
}
.filter-pill.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(124, 58, 237, 0.25);
  transform: translateY(-1px);
}
.filter-pill:active {
  transform: translateY(0);
}

/* Secondary/Subcategory pills slight size adjustment */
#subcategory-filters-container .filter-pill {
  font-size: 0.85rem;
  padding: 0.45rem 1rem;
  background-color: var(--bg-light);
  border-color: transparent;
}
#subcategory-filters-container .filter-pill.active {
  background-color: var(--secondary);
  border-color: var(--secondary);
  box-shadow: 0 6px 12px rgba(236, 72, 153, 0.25);
  color: #ffffff;
}
#subcategory-filters-container .filter-pill:hover:not(.active) {
  border-color: var(--secondary);
  color: var(--secondary);
  box-shadow: 0 4px 10px rgba(236, 72, 153, 0.1);
}

/* Premium Social Sharing Buttons */
.share-box {
  margin: 3rem 0;
  padding: 1.5rem;
  background-color: var(--bg-card);
  border: 1px dashed var(--border-color);
  border-radius: var(--radius);
  text-align: center;
}

.share-title {
  display: block;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  background-color: var(--bg-light);
  text-decoration: none;
}

.share-whatsapp:hover {
  background-color: #25d366;
  border-color: #25d366;
  color: #ffffff;
}

.share-x:hover {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}

html.dark .share-x:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000000;
}

.share-facebook:hover {
  background-color: #1877f2;
  border-color: #1877f2;
  color: #ffffff;
}

.share-linkedin:hover {
  background-color: #0a66c2;
  border-color: #0a66c2;
  color: #ffffff;
}

.share-telegram:hover {
  background-color: #24a1de;
  border-color: #24a1de;
  color: #ffffff;
}

.share-copy:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

/* Premium 404 Page Custom Styles */
.error-container {
  max-width: 600px;
  margin: 1.5rem auto 3rem;
  text-align: center;
  position: relative;
  padding: 2.5rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.error-glow {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.error-code {
  font-family: 'Outfit', sans-serif;
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  animation: floatAnim 4s ease-in-out infinite;
}

@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.error-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.error-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.error-suggestions {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  position: relative;
  z-index: 2;
}

.error-suggestions h5 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.suggestion-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.suggestion-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--transition);
}

.suggestion-links a:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ====================================================================
   10. REUSABLE IN-POST CALLOUTS, CARDS & NOTICE BOXES
   ==================================================================== */

/* Standard Alert Notice & Warnings Callouts */
.notice-box {
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  margin: 2rem 0;
}

.notice-box.warning {
  border-left: 4px solid var(--secondary);
}

.notice-box.info {
  border-left: 4px solid var(--primary);
}

.notice-box h3, .notice-box h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.notice-box p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.notice-box ul {
  margin: 0.5rem 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.notice-box li {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* App Download CTA Card Block */
.app-cta-card {
  text-align: center;
  margin: 3rem 0;
  padding: 2.5rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
}

.app-cta-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.app-cta-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.app-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.app-cta-buttons .btn {
  padding: 0.75rem 2rem;
}

/* Step Walkthrough Layout Panel */
.step-walkthrough-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: var(--radius);
  margin: 2rem 0;
  box-shadow: var(--shadow);
}

.step-walkthrough-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-main);
}

.step-walkthrough-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.step-walkthrough-list {
  margin-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.95rem;
}

.step-walkthrough-list li {
  margin-bottom: 0;
  color: var(--text-muted);
}

/* About Page Social Links Row & Icons */
.social-links-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon-box:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.social-icon-box svg {
  fill: currentColor;
  width: 18px;
  height: 18px;
}

/* ====================================================================
   15. REDESIGNED PAGES CUSTOM COMPONENT CLASSES
       (Sarkari Kaam, Shop, Affiliates, Coupon Codes)
   ==================================================================== */

/* Specific Services Hero Background & Typography Overrides */
.services-hero.sarkari-hero {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
  padding: 2.5rem 0 2rem 0;
}
.services-hero.shop-hero {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
  padding: 2.5rem 0 2rem 0;
}
.services-hero.affiliate-hero {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
  padding: 2.5rem 0 2rem 0;
}
.services-hero.coupon-hero {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
  padding: 2.5rem 0 2rem 0;
}
.services-hero .hero-title {
  margin-top: 1rem;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-main) !important;
}
.services-hero .hero-subtitle {
  max-width: 750px;
  margin: 1rem auto 0 auto;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted) !important;
  line-height: 1.6;
}
.hero-label {
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
}

/* Category Filter Tabs & Buttons (Generic) */
.filter-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.filter-btn {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

/* Glassmorphism Disclosure Box (Generic) */
.disclosure-box {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: var(--transition);
}

.disclosure-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.disclosure-icon {
  background: rgba(124, 58, 237, 0.1);
  color: var(--primary);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.disclosure-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.disclosure-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .disclosure-box {
    flex-direction: column;
    padding: 1.5rem;
  }
}

/* Stats Showcase Panel (Generic) */
.stats-section {
  background: linear-gradient(135deg, var(--bg-light), var(--bg-body));
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 2rem 0;
  text-align: center;
  margin-top: 2rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .stat-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .stat-item {
    padding: 0.75rem;
  }
}

/* --- Sarkari Kaam Dashboard Styles --- */
.sarkari-section {
  padding: 2rem 0;
  background-color: var(--bg-body);
}

.sarkari-tabs {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  scrollbar-width: none;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
}
.sarkari-tabs::-webkit-scrollbar { display: none; }

.sarkari-tab-btn {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.sarkari-tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.sarkari-tab-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.link-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.link-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.link-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-grow: 1;
  padding-right: 0.75rem;
}

.link-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.link-card:hover .link-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
  transform: scale(1.08) rotate(5deg);
}

.link-texts {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.link-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
  line-height: 1.35;
}

.link-dept {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.link-btn {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: var(--transition);
  background: rgba(124, 58, 237, 0.08);
  color: var(--primary);
  border: 1px solid transparent;
  flex-shrink: 0;
}

.link-card:hover .link-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(124, 58, 237, 0.2);
}

.link-card-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, #ef4444, #f87171);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.15rem 0.65rem;
  border-bottom-left-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.link-card.show {
  display: flex;
  animation: linkEntrance 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.link-card.hide {
  display: none !important;
}

@keyframes linkEntrance {
  from {
    opacity: 0;
    transform: scale(0.97) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

html.dark .link-card {
  background-color: rgba(22, 28, 45, 0.4);
  border-color: rgba(255, 255, 255, 0.08);
}
html.dark .link-card:hover {
  border-color: var(--primary);
}
html.dark .link-btn {
  background: rgba(255, 255, 255, 0.05);
  color: var(--secondary);
}
html.dark .link-card:hover .link-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
}

@media (max-width: 768px) {
  .links-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Premium Shop Page Styles --- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.shop-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  min-height: 480px;
}

.shop-card.show {
  display: flex;
  animation: cardEntrance 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.shop-card.hide {
  display: none !important;
}

@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(15px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.shop-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.shop-img-container {
  width: 100%;
  height: 11rem;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
}

.shop-img-gradient-1 { background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(79, 70, 229, 0.05)); }
.shop-img-gradient-2 { background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(236, 72, 153, 0.05)); }
.shop-img-gradient-3 { background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05)); }
.shop-img-gradient-4 { background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05)); }
.shop-img-gradient-5 { background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05)); }
.shop-img-gradient-6 { background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(6, 182, 212, 0.05)); }

.shop-img-icon {
  font-size: 3.25rem;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
  transition: var(--transition);
}

.shop-card:hover .shop-img-icon {
  transform: scale(1.15) rotate(5deg);
}

.shop-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 10;
}
.badge-red { background: linear-gradient(135deg, #ef4444, #f87171); }
.badge-green { background: linear-gradient(135deg, #10b981, #34d399); }
.badge-blue { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.badge-purple { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.badge-orange { background: linear-gradient(135deg, #f97316, #fb923c); }
.badge-cyan { background: linear-gradient(135deg, #06b6d4, #22d3ee); }

.shop-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.shop-title {
  font-size: 1.25rem;
  font-weight: 850;
  color: var(--text-main);
  margin: 0;
  line-height: 1.35;
}

.shop-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.shop-features {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.shop-features li {
  font-size: 0.825rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.shop-features li svg {
  color: var(--primary);
  flex-shrink: 0;
}

.shop-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
  margin-top: auto;
}

.shop-price-container {
  display: flex;
  flex-direction: column;
}

.shop-price-old {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: var(--text-muted);
  margin-bottom: 0.1rem;
}

.shop-price-current {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.shop-btn {
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.shop-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(124, 58, 237, 0.25);
}

html.dark .shop-card {
  background-color: rgba(22, 28, 45, 0.4);
  border-color: rgba(255, 255, 255, 0.08);
}
html.dark .shop-card:hover {
  border-color: var(--primary);
}
html.dark .shop-img-container {
  border-color: rgba(255, 255, 255, 0.08);
}
html.dark .shop-features li svg {
  color: var(--secondary);
}

@media (max-width: 768px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Premium Affiliate Page Styles --- */
.affiliate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .affiliate-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.affiliate-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 450px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.affiliate-card.show {
  display: flex;
  animation: cardEntrance 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.affiliate-card.hide {
  display: none !important;
}

.affiliate-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.affiliate-card.featured {
  border-color: rgba(124, 58, 237, 0.4);
}

.affiliate-card.featured::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, rgba(124, 58, 237, 0) 70%);
  z-index: 1;
  pointer-events: none;
  transition: var(--transition);
}

.affiliate-card.featured:hover::after {
  transform: scale(1.2);
  background: radial-gradient(circle, rgba(236, 72, 153, 0.25) 0%, rgba(124, 58, 237, 0) 70%);
}

.brand-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.brand-logo {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(236, 72, 153, 0.1));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  transition: var(--transition);
}

.affiliate-card:hover .brand-logo {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
}

.badge-category {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

.badge-category.hosting {
  background: rgba(124, 58, 237, 0.08);
  color: var(--primary);
}

.badge-category.themes {
  background: rgba(236, 72, 153, 0.08);
  color: var(--secondary);
}

.badge-category.tools {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
}

.deal-tag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.35rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: var(--transition);
  z-index: 10;
}

.affiliate-card:hover .deal-tag {
  transform: translateX(-50%) translateY(0);
}

.affiliate-card.featured .deal-tag {
  transform: translateX(-50%) translateY(0);
}

.card-details {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.affiliate-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.affiliate-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}

.benefit-item {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.benefit-item svg {
  flex-shrink: 0;
  color: #10b981;
}

.deal-footer {
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.deal-pricing-block {
  background-color: var(--bg-light);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.affiliate-card:hover .deal-pricing-block {
  background-color: rgba(124, 58, 237, 0.05);
}

.pricing-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.pricing-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
}

.btn-claim {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--bg-light);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 0.85rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: none;
}

.btn-claim:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35);
}

.affiliate-card.featured .btn-claim {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

.affiliate-card.featured .btn-claim:hover {
  background: linear-gradient(135deg, var(--primary-hover), var(--secondary));
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.4);
}

html.dark .affiliate-card.featured {
  border-color: rgba(236, 72, 153, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* --- Premium Coupon Codes Page Styles --- */
.coupon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .coupon-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.coupon-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 460px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.coupon-card.show {
  display: flex;
  animation: cardEntrance 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.coupon-card.hide {
  display: none !important;
}

.coupon-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.coupon-card.featured {
  border-color: rgba(124, 58, 237, 0.4);
}

.coupon-card.featured::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, rgba(124, 58, 237, 0) 70%);
  z-index: 1;
  pointer-events: none;
  transition: var(--transition);
}

.coupon-card.featured:hover::after {
  transform: scale(1.2);
  background: radial-gradient(circle, rgba(236, 72, 153, 0.25) 0%, rgba(124, 58, 237, 0) 70%);
}

.savings-tag {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.coupon-card:hover .savings-tag {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.coupon-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: var(--text-main);
}

.coupon-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.coupon-expiry {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ef4444;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.coupon-box {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg-light);
  border: 2px dashed var(--border-color);
  border-radius: var(--radius);
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  margin-bottom: 1rem;
  transition: var(--transition);
  overflow: hidden;
  z-index: 2;
}

.coupon-card:hover .coupon-box {
  border-color: var(--primary);
  background: rgba(124, 58, 237, 0.02);
}

.coupon-code-text {
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: 0.05em;
  flex-grow: 1;
  user-select: all;
}

.btn-copy {
  background: var(--primary);
  color: #ffffff;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: calc(var(--radius) - 4px);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 2px 6px rgba(124, 58, 237, 0.2);
}

.btn-copy:hover {
  background: var(--primary-hover);
  transform: scale(1.03);
}

.btn-copy.copied {
  background: #10b981;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.2);
  animation: bounceScale 0.3s ease;
}

@keyframes bounceScale {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.coupon-card.featured .btn-claim {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

.coupon-card.featured .btn-claim:hover {
  background: linear-gradient(135deg, var(--primary-hover), var(--secondary));
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.4);
}

html.dark .coupon-card.featured {
  border-color: rgba(236, 72, 153, 0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* Helper Utilities */
.text-center {
  text-align: center;
}
.services-hero .hero-label-sarkari {
  background: rgba(59, 130, 246, 0.08) !important;
  color: #2563eb !important;
}
html.dark .services-hero .hero-label-sarkari {
  background: rgba(59, 130, 246, 0.2) !important;
  color: #60a5fa !important;
}

/* Featured Guide Components */
.guides-section {
  margin-bottom: 2.5rem;
}
.section-main-title {
  font-size: 1.35rem;
  font-weight: 850;
  margin-bottom: 1.25rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.guides-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.guide-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.guide-card-header {
  color: var(--primary);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.guide-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text-main);
  line-height: 1.3;
}
.guide-card-desc {
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}
.guide-section-divider {
  border: 0;
  border-top: 1px solid var(--border-color);
  margin: 2.5rem 0;
}
.guide-btn-align {
  align-self: flex-start;
}

@media (max-width: 768px) {
  .guides-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Helper Utilities & Specific Redesigned Page Additions */
.w-100 {
  width: 100% !important;
}
.text-secondary {
  color: var(--secondary) !important;
}
.affiliate-section {
  padding: 2rem 0;
}
.coupon-section {
  padding: 2rem 0;
  background-color: var(--bg-body);
}
.coupon-code-text.auto-applied {
  font-size: 0.95rem !important;
  font-family: sans-serif !important;
  font-weight: 700 !important;
  color: var(--text-muted) !important;
}
.newsletter-form .btn {
  padding: 0 2rem;
}

/* Brand Logo Gradients */
.logo-hostinger {
  background: linear-gradient(135deg, #6366f1, #4f46e5) !important;
  color: #ffffff !important;
}
.logo-hostarmada {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
  color: #ffffff !important;
}
.logo-siteground {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  color: #ffffff !important;
}
.logo-namecheap {
  background: linear-gradient(135deg, #f97316, #ea580c) !important;
  color: #ffffff !important;
}
.logo-envato {
  background: linear-gradient(135deg, #84cc16, #65a30d) !important;
  color: #ffffff !important;
}
.logo-newspaper {
  background: linear-gradient(135deg, #0284c7, #0369a1) !important;
  color: #ffffff !important;
}
.logo-newsmag {
  background: linear-gradient(135deg, #0ea5e9, #0284c7) !important;
  color: #ffffff !important;
}
.logo-smartmag {
  background: linear-gradient(135deg, #a855f7, #9333ea) !important;
  color: #ffffff !important;
}
.logo-jannah {
  background: linear-gradient(135deg, #e11d48, #be123c) !important;
  color: #ffffff !important;
}
.logo-jnews {
  background: linear-gradient(135deg, #ec4899, #db2777) !important;
  color: #ffffff !important;
}
.logo-zoxnews {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: #ffffff !important;
}
.logo-generatepress {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  color: #ffffff !important;
}
.logo-amazon {
  background: linear-gradient(135deg, #f59e0b, #d97706) !important;
  color: #ffffff !important;
}
.logo-mycircle11 {
  background: linear-gradient(135deg, #dc2626, #991b1b) !important;
  color: #ffffff !important;
}
.logo-flipkart {
  background: linear-gradient(135deg, #2874f0, #ffe11b) !important;
}

/* Pricing Estimator Section & Custom Styles */
.estimator-section {
  padding: 3.5rem 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.section-title-box .hero-label + .section-title {
  margin-top: 0.5rem;
}
.calculator-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--text-main);
}
.calc-option small {
  color: var(--text-muted);
}
.calc-result-box span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
}
.calc-result-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}
.calc-result-box .btn {
  margin-top: 1rem;
  display: inline-block;
}

/* --- Responsive Video Player --- */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: 2rem 0;
  border: 1px solid var(--border-color);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ====================================================================
   11. BLOCKQUOTE COPY BUTTON
   ==================================================================== */
.prose blockquote, blockquote {
  position: relative !important;
  padding-right: 4.5rem !important;
}

.btn-quote-copy {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.6rem;
  font-size: 0.75rem;
  font-family: inherit;
  font-weight: 600;
  color: var(--text-muted);
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  user-select: none;
  z-index: 5;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-quote-copy svg {
  display: block;
  flex-shrink: 0;
  transition: stroke 0.2s ease;
}

.btn-quote-copy .success-icon {
  display: none;
  stroke: #10b981;
}

.btn-quote-copy:hover {
  color: var(--text-main);
  background-color: var(--bg-light);
  border-color: var(--primary);
  transform: translateY(-1px);
}

.btn-quote-copy:active {
  transform: translateY(0);
}

@media (hover: hover) {
  blockquote:hover .btn-quote-copy {
    opacity: 1;
  }
}

@media (hover: none) {
  .btn-quote-copy {
    opacity: 0.85;
  }
}

.btn-quote-copy.copied {
  color: #10b981;
  border-color: #10b981;
  background-color: rgba(16, 185, 129, 0.08);
  opacity: 1 !important;
}

.btn-quote-copy.copied .copy-icon {
  display: none;
}

.btn-quote-copy.copied .success-icon {
  display: block;
}

/* ====================================================================
   16. ARTICLE CONTENT CUSTOM COMPONENTS (Tables, Pros/Cons, CTAs)
   ==================================================================== */

/* Premium Tables in Prose */
.table-container {
  width: 100%;
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

/* Custom styled scrollbar for tables */
.table-container::-webkit-scrollbar {
  height: 6px;
}
.table-container::-webkit-scrollbar-track {
  background: var(--bg-light);
}
.table-container::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 3px;
}
.table-container::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.925rem;
  text-align: left;
}

.comparison-table th {
  background: var(--bg-light);
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 1.1rem 1.25rem;
  border-bottom: 2px solid var(--border-color);
  font-family: 'Outfit', sans-serif;
  white-space: nowrap;
}

.comparison-table td {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-muted);
  vertical-align: middle;
  white-space: nowrap;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* Featured row highlight */
.comparison-table tr.featured-row {
  background: rgba(124, 58, 237, 0.04);
}
.comparison-table tr.featured-row td {
  color: var(--text-main);
}
.comparison-table tr.featured-row td:first-child {
  font-weight: 700;
  border-left: 4px solid var(--primary);
}

.comparison-table tbody tr:hover:not(.featured-row) {
  background: rgba(124, 58, 237, 0.02);
}

/* Pricing Highlight */
.pricing-value-table {
  font-weight: 700;
  color: var(--primary);
}

/* Status Badges */
.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.badge-status.success {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.badge-status.fail {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

/* Pro & Con Boxes */
.pro-con-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .pro-con-box {
    grid-template-columns: 1fr;
  }
}

.pro-box, .con-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.pro-box {
  border-left: 4px solid #10b981;
}

.con-box {
  border-left: 4px solid #ef4444;
}

.pro-box h4, .con-box h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}

.pro-box h4 {
  color: #10b981;
}

.con-box h4 {
  color: #ef4444;
}

.pro-box ul, .con-box ul {
  margin: 0;
  padding-left: 1.25rem;
}

.pro-box li, .con-box li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.5;
}

/* Call to Action Container & Buttons */
.cta-container {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
  transition: var(--transition);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
  filter: brightness(1.1);
}

/* Dynamic FAQ Styles */
.faq-question {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
}

.faq-answer {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}







